mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
Remove unused string
This commit is contained in:
@@ -305,7 +305,7 @@
|
||||
},
|
||||
"icu:migratingToSQLCipher": {
|
||||
"messageformat": "Optimizing messages... {status} complete.",
|
||||
"description": "Message shown on the loading screen while we are doing application optimizations"
|
||||
"description": "(Deleted 2025/02/06) Message shown on the loading screen while we are doing application optimizations"
|
||||
},
|
||||
"icu:archivedConversations": {
|
||||
"messageformat": "Archived Chats",
|
||||
|
||||
@@ -18,10 +18,10 @@ describe('setupI18n', () => {
|
||||
assert.strictEqual(i18n('icu:reportIssue'), 'Contact Support');
|
||||
});
|
||||
it('returns message with single substitution', () => {
|
||||
const actual = i18n('icu:migratingToSQLCipher', {
|
||||
status: '45/200',
|
||||
const actual = i18n('icu:ContactListItem__remove-system--title', {
|
||||
title: 'Alice',
|
||||
});
|
||||
assert.equal(actual, 'Optimizing messages... 45/200 complete.');
|
||||
assert.equal(actual, 'Unable to remove Alice');
|
||||
});
|
||||
it('returns message with multiple substitutions', () => {
|
||||
const actual = i18n('icu:theyChangedTheTimer', {
|
||||
|
||||
Reference in New Issue
Block a user