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",
"restoreUsingRecoveryPhrase": "Restore your account",
"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.",
"welcomeToYourSession": "Welcome to your Session",
"newSession": "New Session",

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

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

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

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

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

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

Loading…
Cancel
Save