From 0c9c3c23a469ac3b8e057564ceddf8b3f338dc35 Mon Sep 17 00:00:00 2001 From: yflory Date: Fri, 8 Jan 2021 16:57:33 +0100 Subject: [PATCH 1/4] Remove unused translation key --- www/common/translations/messages.json | 1 - 1 file changed, 1 deletion(-) diff --git a/www/common/translations/messages.json b/www/common/translations/messages.json index 367d19b72..e2d9a0533 100644 --- a/www/common/translations/messages.json +++ b/www/common/translations/messages.json @@ -1505,7 +1505,6 @@ "admin_support_collapse": "Collapse", "admin_support_first": "Created on: ", "admin_support_last": "Updated on: ", - "offlineNoCacheError": "You are offline and this document is not available.", "access_offline": "You are currently offline. Access management is not available.", "share_noContactsOffline": "You are currently offline. Contacts are not available." } From 72b82f412b8c52baa0bd213bf607f14c9eb6e473 Mon Sep 17 00:00:00 2001 From: Weblate Date: Fri, 8 Jan 2021 16:57:11 +0100 Subject: [PATCH 2/4] Translated using Weblate (German) Currently translated at 100.0% (1411 of 1411 strings) Translation: CryptPad/App Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/de/ --- www/common/translations/messages.de.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/www/common/translations/messages.de.json b/www/common/translations/messages.de.json index 5c9d18cbc..911f8c9f2 100644 --- a/www/common/translations/messages.de.json +++ b/www/common/translations/messages.de.json @@ -1504,5 +1504,8 @@ "admin_support_closed": "Geschlossene Tickets:", "admin_support_answered": "Beantwortete Tickets:", "admin_support_normal": "Unbeantwortete Tickets:", - "admin_support_premium": "Premium-Tickets:" + "admin_support_premium": "Premium-Tickets:", + "access_offline": "Du bist offline. Verwaltung von Zugriffsrechten ist nicht verfügbar.", + "share_noContactsOffline": "Du bist offline. Kontakte sind nicht verfügbar.", + "offlineNoCacheError": "Du bist offline und das Dokument ist nicht verfügbar." } From a35521474e6da7d6f76b3cd94bf61857ea09b6c9 Mon Sep 17 00:00:00 2001 From: Weblate Date: Fri, 8 Jan 2021 16:58:00 +0100 Subject: [PATCH 3/4] Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: CryptPad/App Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/ --- www/common/translations/messages.de.json | 3 +-- www/common/translations/messages.fr.json | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/www/common/translations/messages.de.json b/www/common/translations/messages.de.json index 911f8c9f2..6ee050cc8 100644 --- a/www/common/translations/messages.de.json +++ b/www/common/translations/messages.de.json @@ -1506,6 +1506,5 @@ "admin_support_normal": "Unbeantwortete Tickets:", "admin_support_premium": "Premium-Tickets:", "access_offline": "Du bist offline. Verwaltung von Zugriffsrechten ist nicht verfügbar.", - "share_noContactsOffline": "Du bist offline. Kontakte sind nicht verfügbar.", - "offlineNoCacheError": "Du bist offline und das Dokument ist nicht verfügbar." + "share_noContactsOffline": "Du bist offline. Kontakte sind nicht verfügbar." } diff --git a/www/common/translations/messages.fr.json b/www/common/translations/messages.fr.json index 7a1e435ef..6f7961daf 100644 --- a/www/common/translations/messages.fr.json +++ b/www/common/translations/messages.fr.json @@ -1498,6 +1498,5 @@ "history_trimPrompt": "Ce document a accumulé {0} d'historique qui peut ralentir le temps de chargement. Envisagez de supprimer l'historique s'il n'est pas nécessaire.", "contacts_confirmCancel": "Êtes-vous sûr de vouloir annuler votre demande de contact avec {0} ?", "share_noContactsOffline": "Vous êtes déconnecté. Les contacts ne sont pas disponibles.", - "access_offline": "Vous êtes déconnecté. La gestion de l'accès n'est pas disponible.", - "offlineNoCacheError": "Vous êtes déconnecté et ce document n'est pas disponible." + "access_offline": "Vous êtes déconnecté. La gestion de l'accès n'est pas disponible." } From 25e67c20278bd6768fe42f6c49daedbdce1669b8 Mon Sep 17 00:00:00 2001 From: yflory Date: Fri, 8 Jan 2021 17:38:58 +0100 Subject: [PATCH 4/4] Fix FALSE_INIT error --- www/common/outer/async-store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/outer/async-store.js b/www/common/outer/async-store.js index 343dda673..0d8546289 100644 --- a/www/common/outer/async-store.js +++ b/www/common/outer/async-store.js @@ -2653,7 +2653,7 @@ define([ // "cb" may have already been called by onCacheReady store.returned = returned; - if (typeof(cb) === 'function') { cb(); } + if (typeof(cb) === 'function') { cb(returned); } store.offline = false; sendDriveEvent('NETWORK_RECONNECT'); // Tell inner that we're now online