Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marius-wieschollek/passwords-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius David Wieschollek <passwords.public@mdns.eu>2021-01-05 23:49:31 +0300
committerMarius David Wieschollek <passwords.public@mdns.eu>2021-01-05 23:49:31 +0300
commitab6c795177bd9a801a7ca09d1ac6c57eeab294a7 (patch)
treefe2569d5fcf0825a1e54bc861462675c155b901e /src/platform/generic/_locales/en
parent86d610c9589f6d6c23be917dd3653c9bcf856b3b (diff)
Improve server version message
Signed-off-by: Marius David Wieschollek <passwords.public@mdns.eu>
Diffstat (limited to 'src/platform/generic/_locales/en')
-rw-r--r--src/platform/generic/_locales/en/messages.json10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/platform/generic/_locales/en/messages.json b/src/platform/generic/_locales/en/messages.json
index ca065d3..c63441d 100644
--- a/src/platform/generic/_locales/en/messages.json
+++ b/src/platform/generic/_locales/en/messages.json
@@ -492,12 +492,20 @@
}
},
"ToastServerCheckMessage" : {
- "message" : "The account \"$SERVER$\" uses a server running an outdated version of passwords. The server must be updated before the account can be reactivated in the extension settings.",
+ "message" : "The account \"$SERVER$\" uses passwords $SERVERVERSION$, but this extension requires at least $MINVERSION$. The app needs to be updated before the account can be activated again in the settings.",
"description" : "Text of the toast notification when an account was disabled because the server uses an outdated and unsupported version of the passwords app",
"placeholders": {
"server": {
"content": "$1",
"example": "My Nextcloud"
+ },
+ "minversion" : {
+ "content": "$2",
+ "example": "2020.1"
+ },
+ "serverversion": {
+ "content": "$3",
+ "example": "2020.3"
}
}
},