1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Desktop: Made sync more reliable by making it skip items that time out, and improved sync status screen

This commit is contained in:
Laurent Cozic
2021-05-15 20:56:49 +02:00
parent 0b46880a00
commit 15fe119256
5 changed files with 107 additions and 19 deletions

View File

@@ -578,7 +578,7 @@ function localesFromLanguageCode(languageCode: string, locales: string[]): strin
});
}
function _(s: string, ...args: any[]) {
function _(s: string, ...args: any[]): string {
const strings = localeStrings(currentLocale_);
let result = strings[s];
if (result === '' || result === undefined) result = s;