Merge pull request #2185 from Bilb/clean-up-translations

remove some unused strings + bump to 1.8.2
pull/2193/head
Audric Ackermann 3 years ago committed by GitHub
commit b0b16f920f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -347,7 +347,7 @@
"linkDevice": "Link Device", "linkDevice": "Link Device",
"restoreUsingRecoveryPhrase": "Restore your account", "restoreUsingRecoveryPhrase": "Restore your account",
"or": "or", "or": "or",
"ByUsingThisService...": "By using this service, you agree to our <a href=\"https://getsession.org/legal/#tos\">Terms of Service</a> and <a href=\"https://getsession.org/privacy-policy/\" target=\"_blank\">Privacy Policy</a>", "ByUsingThisService...": "By using this service, you agree to our <a href=\"https://getsession.org/terms-of-service\">Terms of Service</a> and <a href=\"https://getsession.org/privacy-policy/\" target=\"_blank\">Privacy Policy</a>",
"beginYourSession": "Begin your Session.", "beginYourSession": "Begin your Session.",
"welcomeToYourSession": "Welcome to your Session", "welcomeToYourSession": "Welcome to your Session",
"newSession": "New Session", "newSession": "New Session",

@ -42,10 +42,9 @@
'click .close': 'close', 'click .close': 'close',
}, },
render_attributes: { render_attributes: {
title: i18n('submitDebugLog'), title: i18n('debugLog'),
cancel: i18n('cancel'), cancel: i18n('cancel'),
submit: i18n('saveLogToDesktop'), submit: i18n('saveLogToDesktop'),
close: i18n('gotIt'),
debugLogExplanation: i18n('debugLogExplanation'), debugLogExplanation: i18n('debugLogExplanation'),
}, },
close() { close() {

@ -2,7 +2,7 @@
"name": "session-desktop", "name": "session-desktop",
"productName": "Session", "productName": "Session",
"description": "Private messaging from your desktop", "description": "Private messaging from your desktop",
"version": "1.8.1", "version": "1.8.2",
"license": "GPL-3.0", "license": "GPL-3.0",
"author": { "author": {
"name": "Oxen Labs", "name": "Oxen Labs",

@ -45,8 +45,8 @@ export type SessionIconType =
| 'plus' | 'plus'
| 'plusThin' | 'plusThin'
| 'reply' | 'reply'
| 'search'
| 'send' | 'send'
| 'search'
| 'shield' | 'shield'
| 'star' | 'star'
| 'stopwatch' | 'stopwatch'

@ -23,7 +23,7 @@ export const ContactListItem = (props: Props) => {
const isGroup = !useIsPrivate(pubkey); const isGroup = !useIsPrivate(pubkey);
const title = name ? name : pubkey; const title = name ? name : pubkey;
const displayName = isMe ? window.i18n('me') : title; const displayName = isMe ? window.i18n('you') : title;
return ( return (
<div <div

@ -196,14 +196,6 @@ export function pushOriginalNotFound() {
pushToastError('originalMessageNotFound', window.i18n('originalMessageNotFound')); pushToastError('originalMessageNotFound', window.i18n('originalMessageNotFound'));
} }
export function pushOriginalNoLongerAvailable() {
pushToastError('originalMessageNotAvailable', window.i18n('originalMessageNotAvailable'));
}
export function pushFoundButNotLoaded() {
pushToastError('messageFoundButNotLoaded', window.i18n('messageFoundButNotLoaded'));
}
export function pushTooManyMembers() { export function pushTooManyMembers() {
pushToastError('tooManyMembers', window.i18n('closedGroupMaxSize')); pushToastError('tooManyMembers', window.i18n('closedGroupMaxSize'));
} }

@ -163,7 +163,6 @@ export type LocalizerKeys =
| 'setPasswordInvalid' | 'setPasswordInvalid'
| 'timerOption_30_seconds_abbreviated' | 'timerOption_30_seconds_abbreviated'
| 'removeResidueMembers' | 'removeResidueMembers'
| 'timerOption_1_hour_abbreviated'
| 'areYouSureDeleteEntireAccount' | 'areYouSureDeleteEntireAccount'
| 'noGivenPassword' | 'noGivenPassword'
| 'closedGroupInviteOkText' | 'closedGroupInviteOkText'
@ -278,7 +277,6 @@ export type LocalizerKeys =
| 'trustThisContactDialogTitle' | 'trustThisContactDialogTitle'
| 'received' | 'received'
| 'trimDatabaseConfirmationBody' | 'trimDatabaseConfirmationBody'
| 'privacyPolicy'
| 'setPasswordFail' | 'setPasswordFail'
| 'clearNickname' | 'clearNickname'
| 'connectToServerSuccess' | 'connectToServerSuccess'
@ -388,6 +386,7 @@ export type LocalizerKeys =
| 'timerOption_30_seconds' | 'timerOption_30_seconds'
| 'createAccount' | 'createAccount'
| 'timerOption_1_minute_abbreviated' | 'timerOption_1_minute_abbreviated'
| 'timerOption_1_hour_abbreviated'
| 'timerOption_12_hours' | 'timerOption_12_hours'
| 'unblockToSend' | 'unblockToSend'
| 'timerOption_1_minute' | 'timerOption_1_minute'

Loading…
Cancel
Save