aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2020-01-14 17:49:38 +0100
committerLibravatar vantezzen <hello@vantezzen.io>2020-01-14 17:49:38 +0100
commitba12ec4112c251bead29c8166e8ee69c48839482 (patch)
tree8764ed83f7b6a87ea717ec37f55a2e6a494ecd97
parentMerge branch 'develop' (diff)
parentBump version number (diff)
downloadferdium-app-ba12ec4112c251bead29c8166e8ee69c48839482.tar.gz
ferdium-app-ba12ec4112c251bead29c8166e8ee69c48839482.tar.zst
ferdium-app-ba12ec4112c251bead29c8166e8ee69c48839482.zip
Merge branch 'develop'
-rw-r--r--README.md5
-rw-r--r--appveyor.yml2
-rw-r--r--build-helpers/entitlements.mas.inherit.plist20
-rw-r--r--build-helpers/entitlements.mas.plist20
-rw-r--r--build-helpers/images/icon.icobin20327 -> 317035 bytes
-rw-r--r--electron-builder.yml5
-rw-r--r--next_release.md47
-rw-r--r--package-lock.json2
-rw-r--r--package.json2
m---------recipes0
-rw-r--r--src/components/auth/Locked.js1
-rw-r--r--src/components/ui/ImageUpload.js2
-rw-r--r--src/components/ui/WebviewLoader/index.js4
-rw-r--r--src/containers/settings/EditServiceScreen.js2
-rw-r--r--src/i18n/locales/af.json4
-rw-r--r--src/i18n/locales/ar.json4
-rw-r--r--src/i18n/locales/bs.json4
-rw-r--r--src/i18n/locales/ca.json4
-rw-r--r--src/i18n/locales/cs.json4
-rw-r--r--src/i18n/locales/da.json4
-rw-r--r--src/i18n/locales/de.json44
-rw-r--r--src/i18n/locales/defaultMessages.json4
-rw-r--r--src/i18n/locales/el.json4
-rw-r--r--src/i18n/locales/en-US.json2
-rw-r--r--src/i18n/locales/es.json4
-rw-r--r--src/i18n/locales/fi.json4
-rw-r--r--src/i18n/locales/fr.json4
-rw-r--r--src/i18n/locales/ga.json4
-rw-r--r--src/i18n/locales/he.json4
-rw-r--r--src/i18n/locales/hr.json4
-rw-r--r--src/i18n/locales/hu.json4
-rw-r--r--src/i18n/locales/id.json4
-rw-r--r--src/i18n/locales/it.json4
-rw-r--r--src/i18n/locales/ja.json4
-rw-r--r--src/i18n/locales/ka.json4
-rw-r--r--src/i18n/locales/ko.json4
-rw-r--r--src/i18n/locales/nl-BE.json4
-rw-r--r--src/i18n/locales/nl.json30
-rw-r--r--src/i18n/locales/no.json4
-rw-r--r--src/i18n/locales/pl.json4
-rw-r--r--src/i18n/locales/pt-BR.json4
-rw-r--r--src/i18n/locales/pt.json4
-rw-r--r--src/i18n/locales/ro.json4
-rw-r--r--src/i18n/locales/ru.json4
-rw-r--r--src/i18n/locales/sk.json4
-rw-r--r--src/i18n/locales/sl.json4
-rw-r--r--src/i18n/locales/sr.json4
-rw-r--r--src/i18n/locales/sv.json4
-rw-r--r--src/i18n/locales/tr.json4
-rw-r--r--src/i18n/locales/uk.json4
-rw-r--r--src/i18n/locales/vi.json4
-rw-r--r--src/i18n/locales/zh-HANT.json4
-rw-r--r--src/i18n/locales/zh.json4
-rw-r--r--src/i18n/messages/src/components/ui/WebviewLoader/index.json2
-rw-r--r--src/i18n/messages/src/containers/settings/EditServiceScreen.json2
m---------src/internal-server0
56 files changed, 206 insertions, 130 deletions
diff --git a/README.md b/README.md
index c2a4f4aeb..1f50307ba 100644
--- a/README.md
+++ b/README.md
@@ -104,6 +104,7 @@ If you use an AUR Helper e.g. yay, simply install it via `yay -S ferdi-bin`.
104- [x] Add CTRL+← and CTRL+→ shortcuts and menu options to go back and forward in the service browsing history([#39](https://github.com/getferdi/ferdi/issues/39)) 104- [x] Add CTRL+← and CTRL+→ shortcuts and menu options to go back and forward in the service browsing history([#39](https://github.com/getferdi/ferdi/issues/39))
105- [x] Add option to show a browser-like navigation bar on all services 105- [x] Add option to show a browser-like navigation bar on all services
106- [x] Add option to change accent color 106- [x] Add option to change accent color
107- [x] Add local [recipe repository](https://github.com/getferdi/recipes) that removes the need of downloading recipes from a remote server
107- [x] Add portable version for Windows 108- [x] Add portable version for Windows
108- [x] Add Process Manager to find services using a lot of resources 109- [x] Add Process Manager to find services using a lot of resources
109- [x] Add "npm run prepare-code" command for development to lint and beautify code 110- [x] Add "npm run prepare-code" command for development to lint and beautify code
@@ -193,7 +194,9 @@ Deliverables will be available in the `out` folder.
193### Release 194### Release
194 195
195```bash 196```bash
196$ git checkout develop && git pull && git checkout master 197$ git checkout develop && git pull
198$ git submodule update --remote --force
199$ git checkout master
197$ git merge --no-ff develop 200$ git merge --no-ff develop
198$ git tag v5.3.4-beta.4 201$ git tag v5.3.4-beta.4
199$ git push --tags 202$ git push --tags
diff --git a/appveyor.yml b/appveyor.yml
index 693fdb700..ff32387a6 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,7 +1,7 @@
1environment: 1environment:
2 APPVEYOR_CACHE_SKIP_RESTORE: true 2 APPVEYOR_CACHE_SKIP_RESTORE: true
3 3
4version: 5.4.1-beta.3.{build} 4version: 5.4.1-beta.4.{build}
5 5
6install: 6install:
7 - git submodule update --init --recursive 7 - git submodule update --init --recursive
diff --git a/build-helpers/entitlements.mas.inherit.plist b/build-helpers/entitlements.mas.inherit.plist
new file mode 100644
index 000000000..ef14228f0
--- /dev/null
+++ b/build-helpers/entitlements.mas.inherit.plist
@@ -0,0 +1,20 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<plist version="1.0">
4 <dict>
5 <key>com.apple.security.cs.allow-jit</key>
6 <true/>
7 <key>com.apple.security.cs.allow-unsigned-executable-memory</key>
8 <true/>
9 <key>com.apple.security.cs.disable-library-validation</key>
10 <true/>
11 <key>com.apple.security.device.camera</key>
12 <true/>
13 <key>com.apple.security.device.microphone</key>
14 <true/>
15 <key>com.apple.security.device.audio-input</key>
16 <true/>
17 <key>com.apple.security.network.client</key>
18 <true/>
19 </dict>
20</plist> \ No newline at end of file
diff --git a/build-helpers/entitlements.mas.plist b/build-helpers/entitlements.mas.plist
new file mode 100644
index 000000000..ef14228f0
--- /dev/null
+++ b/build-helpers/entitlements.mas.plist
@@ -0,0 +1,20 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<plist version="1.0">
4 <dict>
5 <key>com.apple.security.cs.allow-jit</key>
6 <true/>
7 <key>com.apple.security.cs.allow-unsigned-executable-memory</key>
8 <true/>
9 <key>com.apple.security.cs.disable-library-validation</key>
10 <true/>
11 <key>com.apple.security.device.camera</key>
12 <true/>
13 <key>com.apple.security.device.microphone</key>
14 <true/>
15 <key>com.apple.security.device.audio-input</key>
16 <true/>
17 <key>com.apple.security.network.client</key>
18 <true/>
19 </dict>
20</plist> \ No newline at end of file
diff --git a/build-helpers/images/icon.ico b/build-helpers/images/icon.ico
index b7667d97f..56120519d 100644
--- a/build-helpers/images/icon.ico
+++ b/build-helpers/images/icon.ico
Binary files differ
diff --git a/electron-builder.yml b/electron-builder.yml
index 4fa6c0b15..23625c825 100644
--- a/electron-builder.yml
+++ b/electron-builder.yml
@@ -12,6 +12,11 @@ mac:
12 category: public.app-category.productivity 12 category: public.app-category.productivity
13 icon: ./build-helpers/images/icon.icns 13 icon: ./build-helpers/images/icon.icns
14 darkModeSupport: true 14 darkModeSupport: true
15 entitlements: "./build-helpers/entitlements.mas.plist"
16 entitlementsInherit: "./build-helpers/entitlements.mas.inherit.plist"
17 extendInfo:
18 NSMicrophoneUsageDescription: "This app requires camera access for video messaging services."
19 NSCameraUsageDescription: "This app requires microphone access for audio messaging services."
15 20
16afterSign: ./build-helpers/notarize.js 21afterSign: ./build-helpers/notarize.js
17 22
diff --git a/next_release.md b/next_release.md
deleted file mode 100644
index ae472bce9..000000000
--- a/next_release.md
+++ /dev/null
@@ -1,47 +0,0 @@
1# Next release
2Infos about the next release:
3
4## Beta
5v5.4.0-beta.5:
6- Updated translations
7- Remove "&" sign from window menu bar (#65)
8- Extend debug information
9- Use SSH for submodules
10- Move hibernation indicator to bottom left (#129 (comment))
11- Add fix for 1.1.1.1 hack (#146)
12- Fix darkmode not loading correctly (#158)
13- Add adaptable Dark Mode that will respect the system's darkmode setting ([#173](https://github.com/getferdi/ferdi/issues/173))
14
15## Minor
16v5.4.0
17
18### Features
19- **Merge Franz 5.4.0**
20- **Use Ferdi without an Account**: Simply choose "Use Ferdi without an Account" on the login screen
21- **Accent color**: Change Ferdi's accent color
22- **Darkmode**:
23 - Easily open and edit any service's `darkmode.css` through the new "Open darkmode.css" button
24 - Add adaptable Dark Mode that will respect the system's darkmode setting ([#173](https://github.com/getferdi/ferdi/issues/173) - @steliyan)
25- **Hibernation**: Activate service hibernation to save battery
26- **Smaller file size**: Ferdi is now 17% smaller
27- **Annoucements**: Always get notified about the latest features of Ferdi
28- **Navigation bar**: Add option to always show a service navigation bar
29
30### Minor changes
31- Sorting applications in QuickSwitch by last used
32- Add info about teams only being available on Franz servers
33- Add toggle to disable dark mode on per-service basis
34- Add toggle to disable universal Dark Mode
35- Improve switching between accounts
36- Extend debug information
37- Add fix for 1.1.1.1 hack (#146)
38
39### Bug fixes
40- Fix universal darkmode for WhatsApp and Threema QR Codes
41- Fix darkmode not activating on reload
42- Fix disabling/enabling service not correctly reloading webview (#116)
43- Remove "&" sign from window menu bar (#65)
44
45### Changes in building Ferdi
46- Update Building Node Version
47- Use SSH for submodules \ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
index 2ffd534e0..9c9b1aeb7 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
1{ 1{
2 "name": "ferdi", 2 "name": "ferdi",
3 "version": "5.4.1-beta.3", 3 "version": "5.4.1-beta.4",
4 "lockfileVersion": 1, 4 "lockfileVersion": 1,
5 "requires": true, 5 "requires": true,
6 "dependencies": { 6 "dependencies": {
diff --git a/package.json b/package.json
index 2641cb721..acf4852d2 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
2 "name": "ferdi", 2 "name": "ferdi",
3 "productName": "Ferdi", 3 "productName": "Ferdi",
4 "appId": "com.kytwb.ferdi", 4 "appId": "com.kytwb.ferdi",
5 "version": "5.4.1-beta.3", 5 "version": "5.4.1-beta.5",
6 "description": "Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.", 6 "description": "Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.",
7 "copyright": "kytwb", 7 "copyright": "kytwb",
8 "main": "index.js", 8 "main": "index.js",
diff --git a/recipes b/recipes
Subproject ecf037c35f39f283bca2078486d5eb4ad42ec2d Subproject cea06d3a1645be7896659f06088caf9668ce783
diff --git a/src/components/auth/Locked.js b/src/components/auth/Locked.js
index ca571f20e..e7f3dc78b 100644
--- a/src/components/auth/Locked.js
+++ b/src/components/auth/Locked.js
@@ -87,6 +87,7 @@ export default @observer class Locked extends Component {
87 <Input 87 <Input
88 field={form.$('password')} 88 field={form.$('password')}
89 showPasswordToggle 89 showPasswordToggle
90 focus
90 /> 91 />
91 {error.code === 'invalid-credentials' && ( 92 {error.code === 'invalid-credentials' && (
92 <p className="error-message center">{intl.formatMessage(messages.invalidCredentials)}</p> 93 <p className="error-message center">{intl.formatMessage(messages.invalidCredentials)}</p>
diff --git a/src/components/ui/ImageUpload.js b/src/components/ui/ImageUpload.js
index 83a05554b..e0b608b96 100644
--- a/src/components/ui/ImageUpload.js
+++ b/src/components/ui/ImageUpload.js
@@ -91,7 +91,7 @@ export default @observer class ImageUpload extends Component {
91 onDrop={this.onDrop.bind(this)} 91 onDrop={this.onDrop.bind(this)}
92 className={cssClasses} 92 className={cssClasses}
93 multiple={multiple} 93 multiple={multiple}
94 accept="image/jpeg, image/png" 94 accept="image/jpeg, image/png, image/svg+xml"
95 > 95 >
96 <i className="mdi mdi-file-image" /> 96 <i className="mdi mdi-file-image" />
97 <p> 97 <p>
diff --git a/src/components/ui/WebviewLoader/index.js b/src/components/ui/WebviewLoader/index.js
index 923f10327..c58d69374 100644
--- a/src/components/ui/WebviewLoader/index.js
+++ b/src/components/ui/WebviewLoader/index.js
@@ -10,7 +10,7 @@ import styles from './styles';
10const messages = defineMessages({ 10const messages = defineMessages({
11 loading: { 11 loading: {
12 id: 'service.webviewLoader.loading', 12 id: 'service.webviewLoader.loading',
13 defaultMessage: '!!!Loading', 13 defaultMessage: '!!!Loading {service}',
14 }, 14 },
15}); 15});
16 16
@@ -30,7 +30,7 @@ export default @injectSheet(styles) @observer class WebviewLoader extends Compon
30 return ( 30 return (
31 <FullscreenLoader 31 <FullscreenLoader
32 className={classes.component} 32 className={classes.component}
33 title={`${intl.formatMessage(messages.loading)} ${name}`} 33 title={`${intl.formatMessage(messages.loading, { service: name })}`}
34 /> 34 />
35 ); 35 );
36 } 36 }
diff --git a/src/containers/settings/EditServiceScreen.js b/src/containers/settings/EditServiceScreen.js
index d18d7fb9b..99c40b086 100644
--- a/src/containers/settings/EditServiceScreen.js
+++ b/src/containers/settings/EditServiceScreen.js
@@ -51,7 +51,7 @@ const messages = defineMessages({
51 }, 51 },
52 customUrl: { 52 customUrl: {
53 id: 'settings.service.form.customUrl', 53 id: 'settings.service.form.customUrl',
54 defaultMessage: '!!!Custom server', 54 defaultMessage: '!!!Service URL',
55 }, 55 },
56 indirectMessages: { 56 indirectMessages: {
57 id: 'settings.service.form.indirectMessages', 57 id: 'settings.service.form.indirectMessages',
diff --git a/src/i18n/locales/af.json b/src/i18n/locales/af.json
index 00bb7de2c..750ff9b89 100644
--- a/src/i18n/locales/af.json
+++ b/src/i18n/locales/af.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Get started", 219 "services.getStarted": "Get started",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Edit account", 224 "settings.account.account.editButton": "Edit account",
225 "settings.account.accountType.basic": "Basic Account", 225 "settings.account.accountType.basic": "Basic Account",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Update profile", 229 "settings.account.buttonSave": "Update profile",
228 "settings.account.deleteAccount": "Delete account", 230 "settings.account.deleteAccount": "Delete account",
229 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 231 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
diff --git a/src/i18n/locales/ar.json b/src/i18n/locales/ar.json
index b9294123d..3b0227007 100644
--- a/src/i18n/locales/ar.json
+++ b/src/i18n/locales/ar.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Get started", 219 "services.getStarted": "Get started",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Edit account", 224 "settings.account.account.editButton": "Edit account",
225 "settings.account.accountType.basic": "Basic Account", 225 "settings.account.accountType.basic": "Basic Account",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Update profile", 229 "settings.account.buttonSave": "Update profile",
228 "settings.account.deleteAccount": "Delete account", 230 "settings.account.deleteAccount": "Delete account",
229 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 231 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
diff --git a/src/i18n/locales/bs.json b/src/i18n/locales/bs.json
index 00bb7de2c..750ff9b89 100644
--- a/src/i18n/locales/bs.json
+++ b/src/i18n/locales/bs.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Get started", 219 "services.getStarted": "Get started",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Edit account", 224 "settings.account.account.editButton": "Edit account",
225 "settings.account.accountType.basic": "Basic Account", 225 "settings.account.accountType.basic": "Basic Account",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Update profile", 229 "settings.account.buttonSave": "Update profile",
228 "settings.account.deleteAccount": "Delete account", 230 "settings.account.deleteAccount": "Delete account",
229 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 231 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
diff --git a/src/i18n/locales/ca.json b/src/i18n/locales/ca.json
index 3ecf0caaf..f34984b12 100644
--- a/src/i18n/locales/ca.json
+++ b/src/i18n/locales/ca.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Introducció", 219 "services.getStarted": "Introducció",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Editar Compte", 224 "settings.account.account.editButton": "Editar Compte",
225 "settings.account.accountType.basic": "Compte bàsic", 225 "settings.account.accountType.basic": "Compte bàsic",
226 "settings.account.accountType.premium": "Compte de Suport Premium", 226 "settings.account.accountType.premium": "Compte de Suport Premium",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Actualitzar el perfil", 229 "settings.account.buttonSave": "Actualitzar el perfil",
228 "settings.account.deleteAccount": "Esborrar compte", 230 "settings.account.deleteAccount": "Esborrar compte",
229 "settings.account.deleteEmailSent": "Has rebut un correu electrònic amb un enllaç per confirmar l'eliminació del compte. El teu compte i la seva informació no podran ser restaurats!", 231 "settings.account.deleteEmailSent": "Has rebut un correu electrònic amb un enllaç per confirmar l'eliminació del compte. El teu compte i la seva informació no podran ser restaurats!",
diff --git a/src/i18n/locales/cs.json b/src/i18n/locales/cs.json
index 0932ba6ae..aef8b6837 100644
--- a/src/i18n/locales/cs.json
+++ b/src/i18n/locales/cs.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Začněme", 219 "services.getStarted": "Začněme",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Upravit účet", 224 "settings.account.account.editButton": "Upravit účet",
225 "settings.account.accountType.basic": "Základní účet", 225 "settings.account.accountType.basic": "Základní účet",
226 "settings.account.accountType.premium": "Prémiový účet podporovatele", 226 "settings.account.accountType.premium": "Prémiový účet podporovatele",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Aktualizovat profil", 229 "settings.account.buttonSave": "Aktualizovat profil",
228 "settings.account.deleteAccount": "Smazat účet", 230 "settings.account.deleteAccount": "Smazat účet",
229 "settings.account.deleteEmailSent": "Na váš mail byl odeslán email s odkazem pro potvrzení smazání účtu. Váš účet a data poté nepůjde obnovit!", 231 "settings.account.deleteEmailSent": "Na váš mail byl odeslán email s odkazem pro potvrzení smazání účtu. Váš účet a data poté nepůjde obnovit!",
diff --git a/src/i18n/locales/da.json b/src/i18n/locales/da.json
index 00bb7de2c..750ff9b89 100644
--- a/src/i18n/locales/da.json
+++ b/src/i18n/locales/da.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Get started", 219 "services.getStarted": "Get started",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Edit account", 224 "settings.account.account.editButton": "Edit account",
225 "settings.account.accountType.basic": "Basic Account", 225 "settings.account.accountType.basic": "Basic Account",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Update profile", 229 "settings.account.buttonSave": "Update profile",
228 "settings.account.deleteAccount": "Delete account", 230 "settings.account.deleteAccount": "Delete account",
229 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 231 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
diff --git a/src/i18n/locales/de.json b/src/i18n/locales/de.json
index 2905bba4c..34e0c5c37 100644
--- a/src/i18n/locales/de.json
+++ b/src/i18n/locales/de.json
@@ -21,8 +21,8 @@
21 "feature.planSelection.fullscreen.dialog.message": "Du bist dabei, auf ein kostenloses Konto herunterzustufen. Bist du sicher? Klicke stattdessen hier, um mehr Dienste und Funktionen für nur {currency}{price} pro Monat zu erhalten.", 21 "feature.planSelection.fullscreen.dialog.message": "Du bist dabei, auf ein kostenloses Konto herunterzustufen. Bist du sicher? Klicke stattdessen hier, um mehr Dienste und Funktionen für nur {currency}{price} pro Monat zu erhalten.",
22 "feature.planSelection.fullscreen.dialog.title": "Deinen Ferdi Plan herunterstufen", 22 "feature.planSelection.fullscreen.dialog.title": "Deinen Ferdi Plan herunterstufen",
23 "feature.planSelection.fullscreen.subheadline": "It's time to make a choice. Ferdi works best on our Personal and Professional plans. Please have a look and choose the best one for you.", 23 "feature.planSelection.fullscreen.subheadline": "It's time to make a choice. Ferdi works best on our Personal and Professional plans. Please have a look and choose the best one for you.",
24 "feature.planSelection.fullscreen.welcome": "Are you ready to choose, {name}", 24 "feature.planSelection.fullscreen.welcome": "Bist du bereit zu wählen, {name}",
25 "feature.planSelection.personal.text": "More services, no waiting - ideal for personal use.", 25 "feature.planSelection.personal.text": "Weitere Dienste, keine Wartezeiten - ideal für den persönlichen Gebrauch.",
26 "feature.planSelection.pricesBasedOnAnnualPayment": "All prices based on yearly payment", 26 "feature.planSelection.pricesBasedOnAnnualPayment": "All prices based on yearly payment",
27 "feature.planSelection.pro.text": "Unlimited services and professional features for you - and your team.", 27 "feature.planSelection.pro.text": "Unlimited services and professional features for you - and your team.",
28 "feature.quickSwitch.info": "Wähle einen Service mit TAB, ↑ und ↓. Um einen Service zu öffnen, drücke ENTER.", 28 "feature.quickSwitch.info": "Wähle einen Service mit TAB, ↑ und ↓. Um einen Service zu öffnen, drücke ENTER.",
@@ -39,7 +39,7 @@
39 "feature.todos.premium.info": "Ferdi Todos sind jetzt für Premium User verfügbar!", 39 "feature.todos.premium.info": "Ferdi Todos sind jetzt für Premium User verfügbar!",
40 "feature.todos.premium.rollout": "Alle anderen müssen sich noch ein wenig gedulden.", 40 "feature.todos.premium.rollout": "Alle anderen müssen sich noch ein wenig gedulden.",
41 "feature.todos.premium.upgrade": "Account Upgrade", 41 "feature.todos.premium.upgrade": "Account Upgrade",
42 "feature.trialStatusBar.cta": "Upgrade now", 42 "feature.trialStatusBar.cta": "Jetzt upgraden",
43 "feature.trialStatusBar.expired": "Your free Ferdi {plan} Trial has expired, please upgrade your account.", 43 "feature.trialStatusBar.expired": "Your free Ferdi {plan} Trial has expired, please upgrade your account.",
44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade": "Auf kostenlosen Plan herunterstufen", 44 "feature.trialStatusBar.fullscreen.dialog.cta.downgrade": "Auf kostenlosen Plan herunterstufen",
45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade": "Personal Plan wählen", 45 "feature.trialStatusBar.fullscreen.dialog.cta.upgrade": "Personal Plan wählen",
@@ -78,8 +78,8 @@
78 "locked.password.label": "Passwort", 78 "locked.password.label": "Passwort",
79 "locked.submit.label": "Entsperren", 79 "locked.submit.label": "Entsperren",
80 "login.changeServer": "Server wechseln", 80 "login.changeServer": "Server wechseln",
81 "login.customServerQuestion": "Du benutzt einen Franz Account zum anmelden?", 81 "login.customServerQuestion": "Du benutzt ein Franz-Konto zum Anmelden?",
82 "login.customServerSuggestion": "Versuche, deinen Franz account zu importieren", 82 "login.customServerSuggestion": "Versuche dein Franz-Konto in Ferdi zu importieren",
83 "login.email.label": "E-Mail-Adresse", 83 "login.email.label": "E-Mail-Adresse",
84 "login.headline": "Anmelden", 84 "login.headline": "Anmelden",
85 "login.invalidCredentials": "E-Mail-Adresse oder Passwort ungültig", 85 "login.invalidCredentials": "E-Mail-Adresse oder Passwort ungültig",
@@ -163,20 +163,20 @@
163 "password.submit.label": "Absenden", 163 "password.submit.label": "Absenden",
164 "password.successInfo": "Wir haben Dir eine E-Mail mit weiteren Anweisungen geschickt", 164 "password.successInfo": "Wir haben Dir eine E-Mail mit weiteren Anweisungen geschickt",
165 "premiumFeature.button.upgradeAccount": "Account erweitern", 165 "premiumFeature.button.upgradeAccount": "Account erweitern",
166 "pricing.features.accountSync": "Account Synchronisation", 166 "pricing.features.accountSync": "Konto-Synchronisierung",
167 "pricing.features.adFree": "Keine Werbung", 167 "pricing.features.adFree": "Keine Werbung",
168 "pricing.features.appDelays": "Keine unnötigen Unterbrechungen", 168 "pricing.features.appDelays": "Keine unnötigen Unterbrechungen",
169 "pricing.features.customWebsites": "Hinzufügen von eigenen Websites", 169 "pricing.features.customWebsites": "Hinzufügen von eigenen Websites",
170 "pricing.features.desktopNotifications": "Desktop Notifications", 170 "pricing.features.desktopNotifications": "Desktop Benachrichtigungen",
171 "pricing.features.onPremise": "On-premise & andere Hosted Services", 171 "pricing.features.onPremise": "On-premise & andere Hosted Services",
172 "pricing.features.recipes": "Choose from more than 70 Services", 172 "pricing.features.recipes": "hlen Sie aus mehr als 70 Diensten",
173 "pricing.features.serviceProxies": "Service-Proxies", 173 "pricing.features.serviceProxies": "Service-Proxies",
174 "pricing.features.spellchecker": "Rechtschreibprüfung", 174 "pricing.features.spellchecker": "Rechtschreibprüfung",
175 "pricing.features.teamManagement": "Team-Management", 175 "pricing.features.teamManagement": "Team-Management",
176 "pricing.features.thirdPartyServices": "Integration von Services über Drittanbieter", 176 "pricing.features.thirdPartyServices": "Integration von Services über Drittanbieter",
177 "pricing.features.unlimitedServices": "Unbegrenztes hinzufügen von Services", 177 "pricing.features.unlimitedServices": "Unbegrenztes hinzufügen von Services",
178 "pricing.features.upToSixServices": "Add up to 6 services", 178 "pricing.features.upToSixServices": "Bis zu 6 Dienste hinzufügen",
179 "pricing.features.upToThreeServices": "Add up to 3 services", 179 "pricing.features.upToThreeServices": "Bis zu 3 Dienste hinzufügen",
180 "pricing.features.workspaces": "Arbeitsbereiche", 180 "pricing.features.workspaces": "Arbeitsbereiche",
181 "pricing.plan.free": "Ferdi kostenlos", 181 "pricing.plan.free": "Ferdi kostenlos",
182 "pricing.plan.legacy": "Ferdi Premium", 182 "pricing.plan.legacy": "Ferdi Premium",
@@ -215,15 +215,17 @@
215 "service.restrictedHandler.customUrl.text": "Bitte ein Upgrade zu Ferdi Professional durchführen um benutzerdefinierte URLs und Self Hosted Services verwenden zu können.", 215 "service.restrictedHandler.customUrl.text": "Bitte ein Upgrade zu Ferdi Professional durchführen um benutzerdefinierte URLs und Self Hosted Services verwenden zu können.",
216 "service.restrictedHandler.serviceLimit.headline": "Du hast deine maximale Anzahl an Services erreicht.", 216 "service.restrictedHandler.serviceLimit.headline": "Du hast deine maximale Anzahl an Services erreicht.",
217 "service.restrictedHandler.serviceLimit.text": "Bitte führe eine Upgrade deines Accounts durch um mehr als {count} Services verwenden zu können.", 217 "service.restrictedHandler.serviceLimit.text": "Bitte führe eine Upgrade deines Accounts durch um mehr als {count} Services verwenden zu können.",
218 "service.webviewLoader.loading": "Lade", 218 "service.webviewLoader.loading": "Lade {service}",
219 "services.getStarted": "Los geht's!", 219 "services.getStarted": "Los geht's!",
220 "services.login": "Bitte melde dich an, um Ferdi zu benutzen.", 220 "services.login": "Bitte melde dich an, um Ferdi zu benutzen.",
221 "services.serverInfo": "Optional können Sie Ihren Ferdi-Server durch Klicken auf das Zahnrad unten-links ändern.", 221 "services.serverInfo": "Optional können Sie Ihren Ferdi-Server durch Klicken auf das Zahnrad unten-links ändern.",
222 "services.serverless": "Ferdi ohne einen Account verwenden", 222 "services.serverless": "Ferdi ohne ein Konto verwenden",
223 "services.welcome": "Willkommen bei Ferdi!", 223 "services.welcome": "Willkommen bei Ferdi!",
224 "settings.account.account.editButton": "Konto bearbeiten", 224 "settings.account.account.editButton": "Konto bearbeiten",
225 "settings.account.accountType.basic": "Basis-Konto", 225 "settings.account.accountType.basic": "Basis-Konto",
226 "settings.account.accountType.premium": "Premium Lizenz", 226 "settings.account.accountType.premium": "Premium Lizenz",
227 "settings.account.accountUnavailable": "Konto nicht verfügbar",
228 "settings.account.accountUnavailableInfo": "Du verwendest Ferdi ohne ein Konto. Wenn du Ferdi mit einem Konto verwenden möchtest und deine Dienste über alle verschiedene Computer hinweg synchronisieren möchtest, wählen bitte einen Server in den Einstellungen und melde dich danach an.",
227 "settings.account.buttonSave": "Profil aktualisieren", 229 "settings.account.buttonSave": "Profil aktualisieren",
228 "settings.account.deleteAccount": "Benutzerkonto löschen", 230 "settings.account.deleteAccount": "Benutzerkonto löschen",
229 "settings.account.deleteEmailSent": "Du hast eine E-Mail zur Bestätigung der Löschung Deines Benutzerkontos erhalten. Dein Benutzerkonto und Deine Daten können nach der Löschung nicht wiederhergestellt werden!", 231 "settings.account.deleteEmailSent": "Du hast eine E-Mail zur Bestätigung der Löschung Deines Benutzerkontos erhalten. Dein Benutzerkonto und Deine Daten können nach der Löschung nicht wiederhergestellt werden!",
@@ -236,7 +238,7 @@
236 "settings.account.headlineProfile": "Profil aktualisieren", 238 "settings.account.headlineProfile": "Profil aktualisieren",
237 "settings.account.headlineSubscription": "Dein Abonnement", 239 "settings.account.headlineSubscription": "Dein Abonnement",
238 "settings.account.headlineTrialUpgrade": "Hol dir die kostenlose 14-tägige Ferdi Professional Testlizenz!", 240 "settings.account.headlineTrialUpgrade": "Hol dir die kostenlose 14-tägige Ferdi Professional Testlizenz!",
239 "settings.account.headlineUpgradeAccount": "Hol dir ein Upgrade deines Accounts und bekomme alle Features von Ferdi!", 241 "settings.account.headlineUpgradeAccount": "Hol dir ein Upgrade deines Kontos und bekomme alle Features von Ferdi",
240 "settings.account.invoiceDownload": "Herunterladen", 242 "settings.account.invoiceDownload": "Herunterladen",
241 "settings.account.manageSubscription.label": "Dein Abonnement verwalten", 243 "settings.account.manageSubscription.label": "Dein Abonnement verwalten",
242 "settings.account.successInfo": "Deine Änderungen wurden gespeichert", 244 "settings.account.successInfo": "Deine Änderungen wurden gespeichert",
@@ -261,12 +263,12 @@
261 "settings.app.form.beta": "Beta-Versionen einbeziehen", 263 "settings.app.form.beta": "Beta-Versionen einbeziehen",
262 "settings.app.form.darkMode": "Die dunkle Seite erwartet dich! (Dark Mode)", 264 "settings.app.form.darkMode": "Die dunkle Seite erwartet dich! (Dark Mode)",
263 "settings.app.form.enableGPUAcceleration": "Hardwarebeschleunigung aktivieren", 265 "settings.app.form.enableGPUAcceleration": "Hardwarebeschleunigung aktivieren",
264 "settings.app.form.enableLock": "Enable Password Lock", 266 "settings.app.form.enableLock": "Passwort-Sperre aktivieren",
265 "settings.app.form.enableSpellchecking": "Rechtschreibprüfung aktivieren", 267 "settings.app.form.enableSpellchecking": "Rechtschreibprüfung aktivieren",
266 "settings.app.form.enableSystemTray": "Ferdi im Infobereich anzeigen", 268 "settings.app.form.enableSystemTray": "Ferdi im Infobereich anzeigen",
267 "settings.app.form.enableTodos": "Ferdi Todos aktivieren", 269 "settings.app.form.enableTodos": "Ferdi Todos aktivieren",
268 "settings.app.form.hibernate": "\"Service Hibernation\" aktivieren", 270 "settings.app.form.hibernate": "\"Service Hibernation\" aktivieren",
269 "settings.app.form.hibernationStrategy": "\"Service Hibernation\" Zeit", 271 "settings.app.form.hibernationStrategy": "\"Service Hibernation\"-Strategie",
270 "settings.app.form.keepAllWorkspacesLoaded": "Alle Arbeitsbereiche geladen lassen", 272 "settings.app.form.keepAllWorkspacesLoaded": "Alle Arbeitsbereiche geladen lassen",
271 "settings.app.form.language": "Sprache", 273 "settings.app.form.language": "Sprache",
272 "settings.app.form.lockPassword": "Passwort", 274 "settings.app.form.lockPassword": "Passwort",
@@ -289,16 +291,16 @@
289 "settings.app.headlineGeneral": "Allgemeines", 291 "settings.app.headlineGeneral": "Allgemeines",
290 "settings.app.headlineLanguage": "Sprache", 292 "settings.app.headlineLanguage": "Sprache",
291 "settings.app.headlineUpdates": "Updates", 293 "settings.app.headlineUpdates": "Updates",
292 "settings.app.hibernateInfo": "Standardmäßig öffnet Ferdi alle Ihre Dienste im Hintergrund, so dass diese bereit sind, wenn du sie verwenden möchtest. Service Hibernation wird Ihre Dienste nach einer bestimmten Zeitspanne schließen. Dies ist nützlich, um RAM zu speichern oder Dienste davon abzuhalten, deinen Computer zu verlangsamen.", 294 "settings.app.hibernateInfo": "Standardmäßig öffnet Ferdi alle deine Dienste im Hintergrund, sodass diese bereit sind, wenn du sie verwenden möchtest. \"Service Hibernation\" wird deine Dienste nach einer bestimmten Zeitspanne schließen. Dies ist nützlich, um RAM zu speichern oder Dienste davon abzuhalten, deinen Computer zu verlangsamen.",
293 "settings.app.languageDisclaimer": "Offizielle Übersetzungen: Englisch & Deutsch. Alle anderen Sprachen sind Übersetzungen der Ferdi Community.", 295 "settings.app.languageDisclaimer": "Offizielle Übersetzungen: Englisch & Deutsch. Alle anderen Sprachen sind Übersetzungen der Ferdi Community.",
294 "settings.app.lockInfo": "Password Lock allows you to keep your messages protected.\nUsing Password Lock, you will be prompted to enter your password everytime you start Ferdi or lock Ferdi yourself using the lock symbol in the bottom left corner or the shortcut CMD/CTRL+Shift+L.", 296 "settings.app.lockInfo": "Die Passwort-Sperre erlaubt es dir, deine Nachrichten zu schützen.\nMit der Passwort-Sperre wirst du beim Starten von Ferdi und wenn du das Programm manuell sperrst, darum gebeten, dein Passwort einzugeben.\nDu kannst Ferdi über das Sperrsymbol in der unteren linken Ecke oder dem Shortcut CMD/CTRL+Shift+L sperren.",
295 "settings.app.lockedPassword": "Passwort", 297 "settings.app.lockedPassword": "Passwort",
296 "settings.app.lockedPasswordInfo": "Bitte stelle sicher, dass du ein Passwort setzt, an welches du dich erinnern kannst.\nSolltest du dieses Passwort vergessen, musst du Ferdi neu installieren.", 298 "settings.app.lockedPasswordInfo": "Bitte stelle sicher, dass du ein Passwort setzt, an welches du dich erinnern kannst.\nSolltest du dieses Passwort vergessen, musst du Ferdi neu installieren.",
297 "settings.app.restartRequired": "Änderungen werden erst nach einem Neustart wirksam.", 299 "settings.app.restartRequired": "Änderungen werden erst nach einem Neustart wirksam.",
298 "settings.app.scheduledDNDInfo": "Die geplante \"Nicht-stören\"-Funktion erlaubt es dir eine Zeitspanne festzulegen, in der du keine Benachrichtigungen von Ferdi erhalten möchtest.", 300 "settings.app.scheduledDNDInfo": "Die geplante \"Nicht-stören\"-Funktion erlaubt es dir eine Zeitspanne festzulegen, in der du keine Benachrichtigungen von Ferdi erhalten möchtest.",
299 "settings.app.scheduledDNDTimeInfo": "Zeiten im 24-Stunden-Format (z.B. 18:00). Endzeit kann vor Beginn der Startzeit sein (z.B. 17:00 Uhr, Ende 09:00), um die Funktion über Nacht zu aktivieren.", 301 "settings.app.scheduledDNDTimeInfo": "Zeiten im 24-Stunden-Format (z.B. 18:00). Endzeit kann vor Beginn der Startzeit sein (z.B. 17:00 Uhr, Ende 09:00), um die Funktion über Nacht zu aktivieren.",
300 "settings.app.serverInfo": "Wir empfehlen dir, dich nach dem Ändern des Servers abzumelden, da Ihre Einstellungen möglicherweise sonst nicht auf dem Server gespeichert werden können.", 302 "settings.app.serverInfo": "Wir empfehlen dir, dich nach dem Ändern des Servers abzumelden, da Ihre Einstellungen möglicherweise sonst nicht auf dem Server gespeichert werden können.",
301 "settings.app.serverMoneyInfo": "You are using the official Franz Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Franz's server resources - which Franz's creator has to pay for.\nPlease still consider [Link 1]paying for a Franz account[/Link] or [Link 2]using a self-hosted ferdi-server[/Link] (if you have the knowledge and resources to do so). \nBy using Ferdi, you still profit greatly from Franz's recipe store, server resources and its development.", 303 "settings.app.serverMoneyInfo": "Du verwendest den Franz's offiziellen Server.\nWir wissen, dass Ferdi es dir erlaubt, alle Funktionen kostenlos zu nutzen, aber du verwendest immer noch Franz's Serverressourcen - für die Franz's Entwickler zahlen müssen.\nBitte überlege dir, [Link 1]für ein Franz Premium-Account zu zahlen[/Link] oder [Link 2]dir einen eigene Server einzurichten[/Link] (wenn du das Wissen und die Ressourcen dazu hast). \nDurch die Nutzung von Ferdi profitierst du noch immer stark von Franz's Diensten, Serverressourcen und seiner Entwicklung.",
302 "settings.app.subheadlineCache": "Cache", 304 "settings.app.subheadlineCache": "Cache",
303 "settings.app.todoServerInfo": "Dieser Server wird für die Funktion \"Ferdi Todo\" verwendet. (Standard: https://app.franztodos.com)", 305 "settings.app.todoServerInfo": "Dieser Server wird für die Funktion \"Ferdi Todo\" verwendet. (Standard: https://app.franztodos.com)",
304 "settings.app.translationHelp": "Hilf uns, Ferdi in Deine Sprache zu übersetzen.", 306 "settings.app.translationHelp": "Hilf uns, Ferdi in Deine Sprache zu übersetzen.",
@@ -443,9 +445,9 @@
443 "subscription.cta.allOptions": "Alle Optionen anzeigen", 445 "subscription.cta.allOptions": "Alle Optionen anzeigen",
444 "subscription.cta.choosePlan": "Wähle deine Lizenz", 446 "subscription.cta.choosePlan": "Wähle deine Lizenz",
445 "subscription.includedProFeatures": "Die Ferdi Professional Lizenz beinhaltet:", 447 "subscription.includedProFeatures": "Die Ferdi Professional Lizenz beinhaltet:",
446 "subscription.interval.per": "per {interval}", 448 "subscription.interval.per": "pro {interval}",
447 "subscription.interval.perMonth": "per month", 449 "subscription.interval.perMonth": "pro Monat",
448 "subscription.interval.perMonthPerUser": "per month & user", 450 "subscription.interval.perMonthPerUser": "pro Monat und Benutzer",
449 "subscription.planItem.upgradeAccount": "Account Upgrade", 451 "subscription.planItem.upgradeAccount": "Account Upgrade",
450 "subscription.teaser.includedFeatures": "Bezahlte Ferdi Lizenzen beinhalten:", 452 "subscription.teaser.includedFeatures": "Bezahlte Ferdi Lizenzen beinhalten:",
451 "subscription.teaser.intro": "Ferdi 5 ist voll gepackt mit vielen neuen Features, damit du für jegliche kommunikative Eventualität gerüstet bist. Nimm dir was du brauchst und leg los!", 453 "subscription.teaser.intro": "Ferdi 5 ist voll gepackt mit vielen neuen Features, damit du für jegliche kommunikative Eventualität gerüstet bist. Nimm dir was du brauchst und leg los!",
diff --git a/src/i18n/locales/defaultMessages.json b/src/i18n/locales/defaultMessages.json
index 429930278..fe324cd67 100644
--- a/src/i18n/locales/defaultMessages.json
+++ b/src/i18n/locales/defaultMessages.json
@@ -3809,7 +3809,7 @@
3809 { 3809 {
3810 "descriptors": [ 3810 "descriptors": [
3811 { 3811 {
3812 "defaultMessage": "!!!Loading", 3812 "defaultMessage": "!!!Loading {service}",
3813 "end": { 3813 "end": {
3814 "column": 3, 3814 "column": 3,
3815 "line": 14 3815 "line": 14
@@ -3936,7 +3936,7 @@
3936 } 3936 }
3937 }, 3937 },
3938 { 3938 {
3939 "defaultMessage": "!!!Custom server", 3939 "defaultMessage": "!!!Service URL",
3940 "end": { 3940 "end": {
3941 "column": 3, 3941 "column": 3,
3942 "line": 55 3942 "line": 55
diff --git a/src/i18n/locales/el.json b/src/i18n/locales/el.json
index 137bd93cb..b31d971a6 100644
--- a/src/i18n/locales/el.json
+++ b/src/i18n/locales/el.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Ξεκινήστε", 219 "services.getStarted": "Ξεκινήστε",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Επεξεργασία λογαριασμού", 224 "settings.account.account.editButton": "Επεξεργασία λογαριασμού",
225 "settings.account.accountType.basic": "Βασικός λογαριασμός", 225 "settings.account.accountType.basic": "Βασικός λογαριασμός",
226 "settings.account.accountType.premium": "Λογαριασμός Premium Υποστηρικτή", 226 "settings.account.accountType.premium": "Λογαριασμός Premium Υποστηρικτή",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Ενημέρωση προφίλ", 229 "settings.account.buttonSave": "Ενημέρωση προφίλ",
228 "settings.account.deleteAccount": "Διαγραφή λογαριασμού", 230 "settings.account.deleteAccount": "Διαγραφή λογαριασμού",
229 "settings.account.deleteEmailSent": "Έχετε λάβει ένα email με έναν σύνδεσμο για την επιβεβαίωση της διαγραφής του λογαριασμού σας. Ο λογαριασμός και τα δεδομένα σας δεν μπορούν να ανακτηθούν!", 231 "settings.account.deleteEmailSent": "Έχετε λάβει ένα email με έναν σύνδεσμο για την επιβεβαίωση της διαγραφής του λογαριασμού σας. Ο λογαριασμός και τα δεδομένα σας δεν μπορούν να ανακτηθούν!",
diff --git a/src/i18n/locales/en-US.json b/src/i18n/locales/en-US.json
index ee85566bb..5acb277ef 100644
--- a/src/i18n/locales/en-US.json
+++ b/src/i18n/locales/en-US.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Get started", 219 "services.getStarted": "Get started",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
diff --git a/src/i18n/locales/es.json b/src/i18n/locales/es.json
index 6df814503..ddf2b89c7 100644
--- a/src/i18n/locales/es.json
+++ b/src/i18n/locales/es.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Por favor suscribase al Plan Ferdi Profesional para utilizar urls personalizadas y servicios auto alojados.", 215 "service.restrictedHandler.customUrl.text": "Por favor suscribase al Plan Ferdi Profesional para utilizar urls personalizadas y servicios auto alojados.",
216 "service.restrictedHandler.serviceLimit.headline": "Ha llegado al límite del servicio.", 216 "service.restrictedHandler.serviceLimit.headline": "Ha llegado al límite del servicio.",
217 "service.restrictedHandler.serviceLimit.text": "Por favor mejore su cuenta para poder utilizar más de {count} servicios.", 217 "service.restrictedHandler.serviceLimit.text": "Por favor mejore su cuenta para poder utilizar más de {count} servicios.",
218 "service.webviewLoader.loading": "Cargando", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Primeros pasos", 219 "services.getStarted": "Primeros pasos",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Editar cuenta", 224 "settings.account.account.editButton": "Editar cuenta",
225 "settings.account.accountType.basic": "Cuenta Básica", 225 "settings.account.accountType.basic": "Cuenta Básica",
226 "settings.account.accountType.premium": "Cuenta Colaborador Premium", 226 "settings.account.accountType.premium": "Cuenta Colaborador Premium",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Actualizar perfil", 229 "settings.account.buttonSave": "Actualizar perfil",
228 "settings.account.deleteAccount": "Eliminar cuenta", 230 "settings.account.deleteAccount": "Eliminar cuenta",
229 "settings.account.deleteEmailSent": "Has recibido un correo electrónico con un enlace para confirmar la eliminación de su cuenta. ¡Tu cuenta y datos no podrán ser restaurados!", 231 "settings.account.deleteEmailSent": "Has recibido un correo electrónico con un enlace para confirmar la eliminación de su cuenta. ¡Tu cuenta y datos no podrán ser restaurados!",
diff --git a/src/i18n/locales/fi.json b/src/i18n/locales/fi.json
index 00bb7de2c..750ff9b89 100644
--- a/src/i18n/locales/fi.json
+++ b/src/i18n/locales/fi.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Get started", 219 "services.getStarted": "Get started",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Edit account", 224 "settings.account.account.editButton": "Edit account",
225 "settings.account.accountType.basic": "Basic Account", 225 "settings.account.accountType.basic": "Basic Account",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Update profile", 229 "settings.account.buttonSave": "Update profile",
228 "settings.account.deleteAccount": "Delete account", 230 "settings.account.deleteAccount": "Delete account",
229 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 231 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
diff --git a/src/i18n/locales/fr.json b/src/i18n/locales/fr.json
index 84f8b3895..a69d8c834 100644
--- a/src/i18n/locales/fr.json
+++ b/src/i18n/locales/fr.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "S'il vous plaît améliorer au Plan Ferdi Professionnel pour utilisé les urls modifié et les services hébergé soi-même.", 215 "service.restrictedHandler.customUrl.text": "S'il vous plaît améliorer au Plan Ferdi Professionnel pour utilisé les urls modifié et les services hébergé soi-même.",
216 "service.restrictedHandler.serviceLimit.headline": "Vous avez atteint votre limite de service.", 216 "service.restrictedHandler.serviceLimit.headline": "Vous avez atteint votre limite de service.",
217 "service.restrictedHandler.serviceLimit.text": "S'il vous plaît améliorer votre compte pour utilisé plus que {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "S'il vous plaît améliorer votre compte pour utilisé plus que {count} services.",
218 "service.webviewLoader.loading": "Chargement", 218 "service.webviewLoader.loading": "Chargement de {service}",
219 "services.getStarted": "Commencer", 219 "services.getStarted": "Commencer",
220 "services.login": "S'il vous plaît connectez-vous pour utiliser Ferdi.", 220 "services.login": "S'il vous plaît connectez-vous pour utiliser Ferdi.",
221 "services.serverInfo": "Optionnellement, vous pouvez changer votre serveur Ferdi en cliquant sur la roue dentée en bas au coin gauche.", 221 "services.serverInfo": "Optionnellement, vous pouvez changer votre serveur Ferdi en cliquant sur la roue dentée en bas au coin gauche.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Modifier le compte", 224 "settings.account.account.editButton": "Modifier le compte",
225 "settings.account.accountType.basic": "Compte de base", 225 "settings.account.accountType.basic": "Compte de base",
226 "settings.account.accountType.premium": "Compte supporteur premium", 226 "settings.account.accountType.premium": "Compte supporteur premium",
227 "settings.account.accountUnavailable": "Compte indisponible",
228 "settings.account.accountUnavailableInfo": "Vous utilisez Ferdi sans compte. Si vous souhaitez utiliser Ferdi avec un compte et garder vos services synchronisés entre les installations, sélectionnez un serveur dans l'onglet Paramètres, puis connectez-vous.",
227 "settings.account.buttonSave": "Mettre à jour le profil", 229 "settings.account.buttonSave": "Mettre à jour le profil",
228 "settings.account.deleteAccount": "Supprimer le compte", 230 "settings.account.deleteAccount": "Supprimer le compte",
229 "settings.account.deleteEmailSent": "Vous avez reçu un email contenant le lien pour confirmer la suppression de votre compte. Votre compte et les données qui lui sont associés ne pourront être récupérés!", 231 "settings.account.deleteEmailSent": "Vous avez reçu un email contenant le lien pour confirmer la suppression de votre compte. Votre compte et les données qui lui sont associés ne pourront être récupérés!",
diff --git a/src/i18n/locales/ga.json b/src/i18n/locales/ga.json
index a580a03c2..f7ab2fb17 100644
--- a/src/i18n/locales/ga.json
+++ b/src/i18n/locales/ga.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Cuir tús", 219 "services.getStarted": "Cuir tús",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Cuir cuntas in eagar", 224 "settings.account.account.editButton": "Cuir cuntas in eagar",
225 "settings.account.accountType.basic": "Bunchuntas", 225 "settings.account.accountType.basic": "Bunchuntas",
226 "settings.account.accountType.premium": "Cuntas Phŕeimhthacadóra Ferdi", 226 "settings.account.accountType.premium": "Cuntas Phŕeimhthacadóra Ferdi",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Nuashonraigh próifíl", 229 "settings.account.buttonSave": "Nuashonraigh próifíl",
228 "settings.account.deleteAccount": "Scrios cuntas", 230 "settings.account.deleteAccount": "Scrios cuntas",
229 "settings.account.deleteEmailSent": "Fuair tú ríomhphost chun scriosadh do chuntais a dheimhniú. Ní féidir do chuntas agus do chuid sonraí a thabhairt ar ais!", 231 "settings.account.deleteEmailSent": "Fuair tú ríomhphost chun scriosadh do chuntais a dheimhniú. Ní féidir do chuntas agus do chuid sonraí a thabhairt ar ais!",
diff --git a/src/i18n/locales/he.json b/src/i18n/locales/he.json
index 00bb7de2c..750ff9b89 100644
--- a/src/i18n/locales/he.json
+++ b/src/i18n/locales/he.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Get started", 219 "services.getStarted": "Get started",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Edit account", 224 "settings.account.account.editButton": "Edit account",
225 "settings.account.accountType.basic": "Basic Account", 225 "settings.account.accountType.basic": "Basic Account",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Update profile", 229 "settings.account.buttonSave": "Update profile",
228 "settings.account.deleteAccount": "Delete account", 230 "settings.account.deleteAccount": "Delete account",
229 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 231 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
diff --git a/src/i18n/locales/hr.json b/src/i18n/locales/hr.json
index b94733de5..e7fcdf4bb 100644
--- a/src/i18n/locales/hr.json
+++ b/src/i18n/locales/hr.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Započnimo!", 219 "services.getStarted": "Započnimo!",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Uredi račun", 224 "settings.account.account.editButton": "Uredi račun",
225 "settings.account.accountType.basic": "Osnovni račun", 225 "settings.account.accountType.basic": "Osnovni račun",
226 "settings.account.accountType.premium": "Premium račun", 226 "settings.account.accountType.premium": "Premium račun",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Ažuriraj profil", 229 "settings.account.buttonSave": "Ažuriraj profil",
228 "settings.account.deleteAccount": "Izbrisati račun", 230 "settings.account.deleteAccount": "Izbrisati račun",
229 "settings.account.deleteEmailSent": "Dobili ste email s linkom putem kojeg ćete potvrditi brisanje računa. Vaš račun i podatke neće biti moguće vratiti. ", 231 "settings.account.deleteEmailSent": "Dobili ste email s linkom putem kojeg ćete potvrditi brisanje računa. Vaš račun i podatke neće biti moguće vratiti. ",
diff --git a/src/i18n/locales/hu.json b/src/i18n/locales/hu.json
index 7dd0b4771..fe21d1f90 100644
--- a/src/i18n/locales/hu.json
+++ b/src/i18n/locales/hu.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Betöltés", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Kezdj hozzá", 219 "services.getStarted": "Kezdj hozzá",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Fiók szerkesztése", 224 "settings.account.account.editButton": "Fiók szerkesztése",
225 "settings.account.accountType.basic": "Alap Fiók", 225 "settings.account.accountType.basic": "Alap Fiók",
226 "settings.account.accountType.premium": "Prémium Támogató Fiók", 226 "settings.account.accountType.premium": "Prémium Támogató Fiók",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Profil frissítése", 229 "settings.account.buttonSave": "Profil frissítése",
228 "settings.account.deleteAccount": "Fiók törlése", 230 "settings.account.deleteAccount": "Fiók törlése",
229 "settings.account.deleteEmailSent": "A fiókod törléséhez egy e-mailt küldtük a törlést megerősítő linkkel. A linkre kattintást követően a fiókod és az adatait már nem állíthatók vissza többé!", 231 "settings.account.deleteEmailSent": "A fiókod törléséhez egy e-mailt küldtük a törlést megerősítő linkkel. A linkre kattintást követően a fiókod és az adatait már nem állíthatók vissza többé!",
diff --git a/src/i18n/locales/id.json b/src/i18n/locales/id.json
index 68b37ca5b..dbaf2cba1 100644
--- a/src/i18n/locales/id.json
+++ b/src/i18n/locales/id.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Memuat", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Memulai", 219 "services.getStarted": "Memulai",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Edit akun", 224 "settings.account.account.editButton": "Edit akun",
225 "settings.account.accountType.basic": "Akun Dasar", 225 "settings.account.accountType.basic": "Akun Dasar",
226 "settings.account.accountType.premium": "Akun Pendukung Premium", 226 "settings.account.accountType.premium": "Akun Pendukung Premium",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Perbarui profil", 229 "settings.account.buttonSave": "Perbarui profil",
228 "settings.account.deleteAccount": "Hapus akun", 230 "settings.account.deleteAccount": "Hapus akun",
229 "settings.account.deleteEmailSent": "Anda menerima email dengan tautan untuk mengonfirmasi penghapusan akun. Akun dan data Anda tidak bisa dipulihkan!", 231 "settings.account.deleteEmailSent": "Anda menerima email dengan tautan untuk mengonfirmasi penghapusan akun. Akun dan data Anda tidak bisa dipulihkan!",
diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json
index 89e3a903e..359554996 100644
--- a/src/i18n/locales/it.json
+++ b/src/i18n/locales/it.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Per favore aggiorna al piano Ferdi Professional per usare url personalizzati e servizi da te ospitati.", 215 "service.restrictedHandler.customUrl.text": "Per favore aggiorna al piano Ferdi Professional per usare url personalizzati e servizi da te ospitati.",
216 "service.restrictedHandler.serviceLimit.headline": "Hai raggiunto il tuo limite di servizio.", 216 "service.restrictedHandler.serviceLimit.headline": "Hai raggiunto il tuo limite di servizio.",
217 "service.restrictedHandler.serviceLimit.text": "Per favore potenzia il tuo account per usare più di {count} servizi.", 217 "service.restrictedHandler.serviceLimit.text": "Per favore potenzia il tuo account per usare più di {count} servizi.",
218 "service.webviewLoader.loading": "Caricamento", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Iniziamo", 219 "services.getStarted": "Iniziamo",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Modifica account", 224 "settings.account.account.editButton": "Modifica account",
225 "settings.account.accountType.basic": "Account Base", 225 "settings.account.accountType.basic": "Account Base",
226 "settings.account.accountType.premium": "Account Supporter Premium ", 226 "settings.account.accountType.premium": "Account Supporter Premium ",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Aggiorna profilo", 229 "settings.account.buttonSave": "Aggiorna profilo",
228 "settings.account.deleteAccount": "Elimina account", 230 "settings.account.deleteAccount": "Elimina account",
229 "settings.account.deleteEmailSent": "Hai ricevuto un'email con un link per confermare l'eliminazione del tuo account. I dati del tuo account non potranno più essere ripristinati!", 231 "settings.account.deleteEmailSent": "Hai ricevuto un'email con un link per confermare l'eliminazione del tuo account. I dati del tuo account non potranno più essere ripristinati!",
diff --git a/src/i18n/locales/ja.json b/src/i18n/locales/ja.json
index 3dcdb75eb..2cd6d2c9d 100644
--- a/src/i18n/locales/ja.json
+++ b/src/i18n/locales/ja.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "はじめる", 219 "services.getStarted": "はじめる",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "アカウントの編集", 224 "settings.account.account.editButton": "アカウントの編集",
225 "settings.account.accountType.basic": "Basicアカウント", 225 "settings.account.accountType.basic": "Basicアカウント",
226 "settings.account.accountType.premium": "Premium Supporterアカウント", 226 "settings.account.accountType.premium": "Premium Supporterアカウント",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "プロフィールの更新", 229 "settings.account.buttonSave": "プロフィールの更新",
228 "settings.account.deleteAccount": "アカウントを削除", 230 "settings.account.deleteAccount": "アカウントを削除",
229 "settings.account.deleteEmailSent": "アカウント削除の確認メールを送信しました。あなたのアカウントとデータは復旧できません!", 231 "settings.account.deleteEmailSent": "アカウント削除の確認メールを送信しました。あなたのアカウントとデータは復旧できません!",
diff --git a/src/i18n/locales/ka.json b/src/i18n/locales/ka.json
index 18d5d2da4..47b083b69 100644
--- a/src/i18n/locales/ka.json
+++ b/src/i18n/locales/ka.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "დაწყება", 219 "services.getStarted": "დაწყება",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "ანგარიშის მართვა", 224 "settings.account.account.editButton": "ანგარიშის მართვა",
225 "settings.account.accountType.basic": "ძირითადი ანგარიში", 225 "settings.account.accountType.basic": "ძირითადი ანგარიში",
226 "settings.account.accountType.premium": "პრემიუმ მხარდამჭერის ანგარიში", 226 "settings.account.accountType.premium": "პრემიუმ მხარდამჭერის ანგარიში",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "პროფილის განახლება", 229 "settings.account.buttonSave": "პროფილის განახლება",
228 "settings.account.deleteAccount": "Delete account", 230 "settings.account.deleteAccount": "Delete account",
229 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 231 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
diff --git a/src/i18n/locales/ko.json b/src/i18n/locales/ko.json
index 00bb7de2c..750ff9b89 100644
--- a/src/i18n/locales/ko.json
+++ b/src/i18n/locales/ko.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Get started", 219 "services.getStarted": "Get started",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Edit account", 224 "settings.account.account.editButton": "Edit account",
225 "settings.account.accountType.basic": "Basic Account", 225 "settings.account.accountType.basic": "Basic Account",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Update profile", 229 "settings.account.buttonSave": "Update profile",
228 "settings.account.deleteAccount": "Delete account", 230 "settings.account.deleteAccount": "Delete account",
229 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 231 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
diff --git a/src/i18n/locales/nl-BE.json b/src/i18n/locales/nl-BE.json
index f2a6895e6..a4f91e452 100644
--- a/src/i18n/locales/nl-BE.json
+++ b/src/i18n/locales/nl-BE.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Aan het laden", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Beginnen", 219 "services.getStarted": "Beginnen",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Account bewerken", 224 "settings.account.account.editButton": "Account bewerken",
225 "settings.account.accountType.basic": "Basis Account", 225 "settings.account.accountType.basic": "Basis Account",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Profiel bijwerken", 229 "settings.account.buttonSave": "Profiel bijwerken",
228 "settings.account.deleteAccount": "Account verwijderen", 230 "settings.account.deleteAccount": "Account verwijderen",
229 "settings.account.deleteEmailSent": "U heeft een email ontvangen met een bevestiginslink om uw account te verwijderen. Uw account en de bijhorende gegevens kunnen niet meer worden herstel na deze actie!", 231 "settings.account.deleteEmailSent": "U heeft een email ontvangen met een bevestiginslink om uw account te verwijderen. Uw account en de bijhorende gegevens kunnen niet meer worden herstel na deze actie!",
diff --git a/src/i18n/locales/nl.json b/src/i18n/locales/nl.json
index f9c00b899..354fb8ae1 100644
--- a/src/i18n/locales/nl.json
+++ b/src/i18n/locales/nl.json
@@ -72,11 +72,11 @@
72 "invite.skip.label": "Ik wil dit later doen", 72 "invite.skip.label": "Ik wil dit later doen",
73 "invite.submit.label": "Uitnodigingen verzenden", 73 "invite.submit.label": "Uitnodigingen verzenden",
74 "invite.successInfo": "Uitnodigingen verzonden", 74 "invite.successInfo": "Uitnodigingen verzonden",
75 "locked.headline": "Locked", 75 "locked.headline": "Vergrendeld",
76 "locked.info": "Ferdi is currently locked. Please unlock Ferdi with your password to see your messages.", 76 "locked.info": "Ferdi is momenteel vergrendeld. Ontgrendel Ferdi met je wachtwoord om je berichten te bekijken.",
77 "locked.invalidCredentials": "Password invalid", 77 "locked.invalidCredentials": "Verkeerd wachtwoord",
78 "locked.password.label": "Password", 78 "locked.password.label": "Wachtwoord",
79 "locked.submit.label": "Unlock", 79 "locked.submit.label": "Ontgrendelen",
80 "login.changeServer": "Change server", 80 "login.changeServer": "Change server",
81 "login.customServerQuestion": "Using a custom Ferdi server?", 81 "login.customServerQuestion": "Using a custom Ferdi server?",
82 "login.customServerSuggestion": "Try importing your Franz account", 82 "login.customServerSuggestion": "Try importing your Franz account",
@@ -85,7 +85,7 @@
85 "login.invalidCredentials": "E-mailadres of wachtwoord ongeldig", 85 "login.invalidCredentials": "E-mailadres of wachtwoord ongeldig",
86 "login.link.password": "Wachtwoord vergeten", 86 "login.link.password": "Wachtwoord vergeten",
87 "login.link.signup": "Maak een gratis account aan", 87 "login.link.signup": "Maak een gratis account aan",
88 "login.password.label": "Password", 88 "login.password.label": "Wachtwoord",
89 "login.serverLogout": "De sessie is verlopen, log alsjeblieft opnieuw in.", 89 "login.serverLogout": "De sessie is verlopen, log alsjeblieft opnieuw in.",
90 "login.submit.label": "Inloggen", 90 "login.submit.label": "Inloggen",
91 "login.tokenExpired": "De sessie is verlopen, log alsjeblieft opnieuw in.", 91 "login.tokenExpired": "De sessie is verlopen, log alsjeblieft opnieuw in.",
@@ -136,7 +136,7 @@
136 "menu.view.enterFullScreen": "Gebruik volledig scherm", 136 "menu.view.enterFullScreen": "Gebruik volledig scherm",
137 "menu.view.exitFullScreen": "Volledig scherm verlaten", 137 "menu.view.exitFullScreen": "Volledig scherm verlaten",
138 "menu.view.forward": "Forward", 138 "menu.view.forward": "Forward",
139 "menu.view.lockFerdi": "Lock Ferdi", 139 "menu.view.lockFerdi": "Ferdi vergrendelen",
140 "menu.view.openQuickSwitch": "Open Quick Switch", 140 "menu.view.openQuickSwitch": "Open Quick Switch",
141 "menu.view.reloadFranz": "Herlaad Ferdi", 141 "menu.view.reloadFranz": "Herlaad Ferdi",
142 "menu.view.reloadService": "Een service opnieuw laden", 142 "menu.view.reloadService": "Een service opnieuw laden",
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Aan het laden", 218 "service.webviewLoader.loading": "{service} wordt geladen",
219 "services.getStarted": "Begin", 219 "services.getStarted": "Begin",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Bewerk account", 224 "settings.account.account.editButton": "Bewerk account",
225 "settings.account.accountType.basic": "Basisaccount", 225 "settings.account.accountType.basic": "Basisaccount",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Update profiel", 229 "settings.account.buttonSave": "Update profiel",
228 "settings.account.deleteAccount": "Verwijder account", 230 "settings.account.deleteAccount": "Verwijder account",
229 "settings.account.deleteEmailSent": "Je hebt een e-mail ontvangen met een link om het verwijderen van je account te bevestigen. Je accountgegevens en -data kunnen na verwijderen niet meer worden teruggehaald!", 231 "settings.account.deleteEmailSent": "Je hebt een e-mail ontvangen met een link om het verwijderen van je account te bevestigen. Je accountgegevens en -data kunnen na verwijderen niet meer worden teruggehaald!",
@@ -269,10 +271,10 @@
269 "settings.app.form.hibernationStrategy": "Hibernation strategy", 271 "settings.app.form.hibernationStrategy": "Hibernation strategy",
270 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded", 272 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
271 "settings.app.form.language": "Taal", 273 "settings.app.form.language": "Taal",
272 "settings.app.form.lockPassword": "Password", 274 "settings.app.form.lockPassword": "Wachtwoord",
273 "settings.app.form.minimizeToSystemTray": "Minimaliseer Ferdi naar systeemvak", 275 "settings.app.form.minimizeToSystemTray": "Minimaliseer Ferdi naar systeemvak",
274 "settings.app.form.noUpdates": "Disable updates", 276 "settings.app.form.noUpdates": "Disable updates",
275 "settings.app.form.privateNotifications": "Don't show message content in notifications", 277 "settings.app.form.privateNotifications": "Toon geen bericht-inhoud in meldingen",
276 "settings.app.form.runInBackground": "Houd Ferdi open op de achtergrond wanneer het venster gesloten wordt", 278 "settings.app.form.runInBackground": "Houd Ferdi open op de achtergrond wanneer het venster gesloten wordt",
277 "settings.app.form.scheduledDNDEnabled": "Enable scheduled Do-not-Disturb", 279 "settings.app.form.scheduledDNDEnabled": "Enable scheduled Do-not-Disturb",
278 "settings.app.form.scheduledDNDEnd": "To", 280 "settings.app.form.scheduledDNDEnd": "To",
@@ -292,8 +294,8 @@
292 "settings.app.hibernateInfo": "By default, Ferdi will keep all your services open and loaded in the background so they are ready when you want to use them. Service Hibernation will unload your services after a specified amount. This is useful to save RAM or keeping services from slowing down your computer.", 294 "settings.app.hibernateInfo": "By default, Ferdi will keep all your services open and loaded in the background so they are ready when you want to use them. Service Hibernation will unload your services after a specified amount. This is useful to save RAM or keeping services from slowing down your computer.",
293 "settings.app.languageDisclaimer": "Ferdi spreekt officieel Engels en Duits. Alle andere talen worden beheerd door de community.", 295 "settings.app.languageDisclaimer": "Ferdi spreekt officieel Engels en Duits. Alle andere talen worden beheerd door de community.",
294 "settings.app.lockInfo": "Password Lock allows you to keep your messages protected.\nUsing Password Lock, you will be prompted to enter your password everytime you start Ferdi or lock Ferdi yourself using the lock symbol in the bottom left corner or the shortcut CMD/CTRL+Shift+L.", 296 "settings.app.lockInfo": "Password Lock allows you to keep your messages protected.\nUsing Password Lock, you will be prompted to enter your password everytime you start Ferdi or lock Ferdi yourself using the lock symbol in the bottom left corner or the shortcut CMD/CTRL+Shift+L.",
295 "settings.app.lockedPassword": "Password", 297 "settings.app.lockedPassword": "Wachtwoord",
296 "settings.app.lockedPasswordInfo": "Please make sure to set a password you'll remember.\nIf you loose this password, you will have to reinstall Ferdi.", 298 "settings.app.lockedPasswordInfo": "Zorg ervoor dat je een wachtwoord instelt dat je niet vergeet.\nAls je dit wachtwoord verliest, moet je Ferdi opnieuw installeren.",
297 "settings.app.restartRequired": "Deze wijziging heeft een herstart nodig", 299 "settings.app.restartRequired": "Deze wijziging heeft een herstart nodig",
298 "settings.app.scheduledDNDInfo": "Scheduled Do-not-Disturb allows you to define a period of time in which you do not want to get Notifications from Ferdi.", 300 "settings.app.scheduledDNDInfo": "Scheduled Do-not-Disturb allows you to define a period of time in which you do not want to get Notifications from Ferdi.",
299 "settings.app.scheduledDNDTimeInfo": "Times in 24-Hour-Format. End time can be before start time (e.g. start 17:00, end 09:00) to enable Do-not-Disturb overnight.", 301 "settings.app.scheduledDNDTimeInfo": "Times in 24-Hour-Format. End time can be before start time (e.g. start 17:00, end 09:00) to enable Do-not-Disturb overnight.",
@@ -421,7 +423,7 @@
421 "sidebar.addNewService": "Voeg service toe", 423 "sidebar.addNewService": "Voeg service toe",
422 "sidebar.closeTodosDrawer": "Close Ferdi Todos", 424 "sidebar.closeTodosDrawer": "Close Ferdi Todos",
423 "sidebar.closeWorkspaceDrawer": "Werkruimtepagina sluiten", 425 "sidebar.closeWorkspaceDrawer": "Werkruimtepagina sluiten",
424 "sidebar.lockFerdi": "Lock Ferdi", 426 "sidebar.lockFerdi": "Ferdi vergrendelen",
425 "sidebar.muteApp": "Berichten & geluid uitschakelen", 427 "sidebar.muteApp": "Berichten & geluid uitschakelen",
426 "sidebar.openTodosDrawer": "Open Ferdi Todos", 428 "sidebar.openTodosDrawer": "Open Ferdi Todos",
427 "sidebar.openWorkspaceDrawer": "Werkruimtepagina openen", 429 "sidebar.openWorkspaceDrawer": "Werkruimtepagina openen",
@@ -436,7 +438,7 @@
436 "signup.legal.privacy": "Privacyvoorwaarden", 438 "signup.legal.privacy": "Privacyvoorwaarden",
437 "signup.legal.terms": "Gebruiksvoorwaarden", 439 "signup.legal.terms": "Gebruiksvoorwaarden",
438 "signup.link.login": "Heb je al een account? Log in!", 440 "signup.link.login": "Heb je al een account? Log in!",
439 "signup.password.label": "Password", 441 "signup.password.label": "Wachtwoord",
440 "signup.submit.label": "Account aanmaken", 442 "signup.submit.label": "Account aanmaken",
441 "subscription.bestValue": "Best value", 443 "subscription.bestValue": "Best value",
442 "subscription.cta.activateTrial": "Yes, start the free Ferdi Professional trial", 444 "subscription.cta.activateTrial": "Yes, start the free Ferdi Professional trial",
diff --git a/src/i18n/locales/no.json b/src/i18n/locales/no.json
index 00bb7de2c..750ff9b89 100644
--- a/src/i18n/locales/no.json
+++ b/src/i18n/locales/no.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Get started", 219 "services.getStarted": "Get started",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Edit account", 224 "settings.account.account.editButton": "Edit account",
225 "settings.account.accountType.basic": "Basic Account", 225 "settings.account.accountType.basic": "Basic Account",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Update profile", 229 "settings.account.buttonSave": "Update profile",
228 "settings.account.deleteAccount": "Delete account", 230 "settings.account.deleteAccount": "Delete account",
229 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 231 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
diff --git a/src/i18n/locales/pl.json b/src/i18n/locales/pl.json
index e5496f0eb..64b1f8b15 100644
--- a/src/i18n/locales/pl.json
+++ b/src/i18n/locales/pl.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Ładowanie", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Zacznij", 219 "services.getStarted": "Zacznij",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Modyfikuj konta", 224 "settings.account.account.editButton": "Modyfikuj konta",
225 "settings.account.accountType.basic": "Podstawowe konto", 225 "settings.account.accountType.basic": "Podstawowe konto",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Uaktualnij profil", 229 "settings.account.buttonSave": "Uaktualnij profil",
228 "settings.account.deleteAccount": "Usuń konto", 230 "settings.account.deleteAccount": "Usuń konto",
229 "settings.account.deleteEmailSent": "Wysłaliśmy email z linkiem do potwierdzenia usunięcia konta. Konto oraz dane są usuwane trwale i nie można tego cofnąć!", 231 "settings.account.deleteEmailSent": "Wysłaliśmy email z linkiem do potwierdzenia usunięcia konta. Konto oraz dane są usuwane trwale i nie można tego cofnąć!",
diff --git a/src/i18n/locales/pt-BR.json b/src/i18n/locales/pt-BR.json
index 6929864a0..de56a60a4 100644
--- a/src/i18n/locales/pt-BR.json
+++ b/src/i18n/locales/pt-BR.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Por favor suscribase al Plan Ferdi Profesional para utilizar urls personalizadas y servicios auto alojados.", 215 "service.restrictedHandler.customUrl.text": "Por favor suscribase al Plan Ferdi Profesional para utilizar urls personalizadas y servicios auto alojados.",
216 "service.restrictedHandler.serviceLimit.headline": "Ha llegado al límite del servicio.", 216 "service.restrictedHandler.serviceLimit.headline": "Ha llegado al límite del servicio.",
217 "service.restrictedHandler.serviceLimit.text": "Por favor mejore su cuenta para poder utilizar más de {count} servicios.", 217 "service.restrictedHandler.serviceLimit.text": "Por favor mejore su cuenta para poder utilizar más de {count} servicios.",
218 "service.webviewLoader.loading": "Carregando", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Iniciar", 219 "services.getStarted": "Iniciar",
220 "services.login": "Por favor, inicie sua sessão para usar Ferdi.", 220 "services.login": "Por favor, inicie sua sessão para usar Ferdi.",
221 "services.serverInfo": "Opcionalmente, você pode mudar seu servidor Ferdi clicando no icon de roda dentada no canto inferior esquerdo.", 221 "services.serverInfo": "Opcionalmente, você pode mudar seu servidor Ferdi clicando no icon de roda dentada no canto inferior esquerdo.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Editar conta", 224 "settings.account.account.editButton": "Editar conta",
225 "settings.account.accountType.basic": "Conta Básica", 225 "settings.account.accountType.basic": "Conta Básica",
226 "settings.account.accountType.premium": "Conta Apoiador Premium", 226 "settings.account.accountType.premium": "Conta Apoiador Premium",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Atualizar perfil", 229 "settings.account.buttonSave": "Atualizar perfil",
228 "settings.account.deleteAccount": "Excluir conta", 230 "settings.account.deleteAccount": "Excluir conta",
229 "settings.account.deleteEmailSent": "Você recebeu um e-mail com um link para confirmar a exclusão da sua conta. Atenção! Sua conta e dados não poderão ser restaurados!", 231 "settings.account.deleteEmailSent": "Você recebeu um e-mail com um link para confirmar a exclusão da sua conta. Atenção! Sua conta e dados não poderão ser restaurados!",
diff --git a/src/i18n/locales/pt.json b/src/i18n/locales/pt.json
index 645bb2043..4a320588d 100644
--- a/src/i18n/locales/pt.json
+++ b/src/i18n/locales/pt.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "A ler", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Vamos começar", 219 "services.getStarted": "Vamos começar",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Editar conta", 224 "settings.account.account.editButton": "Editar conta",
225 "settings.account.accountType.basic": "Conta Básica", 225 "settings.account.accountType.basic": "Conta Básica",
226 "settings.account.accountType.premium": "Conta Premium", 226 "settings.account.accountType.premium": "Conta Premium",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Atualizar o perfil", 229 "settings.account.buttonSave": "Atualizar o perfil",
228 "settings.account.deleteAccount": "Apagar conta", 230 "settings.account.deleteAccount": "Apagar conta",
229 "settings.account.deleteEmailSent": "Recebeu um email com um endereço para confirmar a remoção da sua conta. A sua conta e dados não poderão ser restaurados!", 231 "settings.account.deleteEmailSent": "Recebeu um email com um endereço para confirmar a remoção da sua conta. A sua conta e dados não poderão ser restaurados!",
diff --git a/src/i18n/locales/ro.json b/src/i18n/locales/ro.json
index 00bb7de2c..750ff9b89 100644
--- a/src/i18n/locales/ro.json
+++ b/src/i18n/locales/ro.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Get started", 219 "services.getStarted": "Get started",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Edit account", 224 "settings.account.account.editButton": "Edit account",
225 "settings.account.accountType.basic": "Basic Account", 225 "settings.account.accountType.basic": "Basic Account",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Update profile", 229 "settings.account.buttonSave": "Update profile",
228 "settings.account.deleteAccount": "Delete account", 230 "settings.account.deleteAccount": "Delete account",
229 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 231 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
diff --git a/src/i18n/locales/ru.json b/src/i18n/locales/ru.json
index 4828e8a37..171417689 100644
--- a/src/i18n/locales/ru.json
+++ b/src/i18n/locales/ru.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Загрузка", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Начать работу", 219 "services.getStarted": "Начать работу",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Редактировать аккаунт", 224 "settings.account.account.editButton": "Редактировать аккаунт",
225 "settings.account.accountType.basic": "Базовый аккаунт", 225 "settings.account.accountType.basic": "Базовый аккаунт",
226 "settings.account.accountType.premium": "Премиум аккаунт", 226 "settings.account.accountType.premium": "Премиум аккаунт",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Обновить профиль", 229 "settings.account.buttonSave": "Обновить профиль",
228 "settings.account.deleteAccount": "Удалить аккаунт", 230 "settings.account.deleteAccount": "Удалить аккаунт",
229 "settings.account.deleteEmailSent": "Вам выслано письмо с ссылкой для подтверждения удаления аккаунта. После этого ваш аккаунт и данные не смогут быть восстановлены!", 231 "settings.account.deleteEmailSent": "Вам выслано письмо с ссылкой для подтверждения удаления аккаунта. После этого ваш аккаунт и данные не смогут быть восстановлены!",
diff --git a/src/i18n/locales/sk.json b/src/i18n/locales/sk.json
index 0c47d3844..ccf2e7b0d 100644
--- a/src/i18n/locales/sk.json
+++ b/src/i18n/locales/sk.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Načítava", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Začíname", 219 "services.getStarted": "Začíname",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Upraviť účet", 224 "settings.account.account.editButton": "Upraviť účet",
225 "settings.account.accountType.basic": "Základný účet", 225 "settings.account.accountType.basic": "Základný účet",
226 "settings.account.accountType.premium": "Prémiový účet podporovateľa", 226 "settings.account.accountType.premium": "Prémiový účet podporovateľa",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Aktualizovať profil", 229 "settings.account.buttonSave": "Aktualizovať profil",
228 "settings.account.deleteAccount": "Odstrániť účet", 230 "settings.account.deleteAccount": "Odstrániť účet",
229 "settings.account.deleteEmailSent": "Bol vám odoslaný e-mail s odkazom pre potvrdenie odstránenia vášho účtu. Váš účet a údaje sa nebudú dať obnoviť!", 231 "settings.account.deleteEmailSent": "Bol vám odoslaný e-mail s odkazom pre potvrdenie odstránenia vášho účtu. Váš účet a údaje sa nebudú dať obnoviť!",
diff --git a/src/i18n/locales/sl.json b/src/i18n/locales/sl.json
index 00bb7de2c..750ff9b89 100644
--- a/src/i18n/locales/sl.json
+++ b/src/i18n/locales/sl.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Get started", 219 "services.getStarted": "Get started",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Edit account", 224 "settings.account.account.editButton": "Edit account",
225 "settings.account.accountType.basic": "Basic Account", 225 "settings.account.accountType.basic": "Basic Account",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Update profile", 229 "settings.account.buttonSave": "Update profile",
228 "settings.account.deleteAccount": "Delete account", 230 "settings.account.deleteAccount": "Delete account",
229 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 231 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
diff --git a/src/i18n/locales/sr.json b/src/i18n/locales/sr.json
index 39ce2e022..c140ce73d 100644
--- a/src/i18n/locales/sr.json
+++ b/src/i18n/locales/sr.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Započnimo! ", 219 "services.getStarted": "Započnimo! ",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Uredi račun", 224 "settings.account.account.editButton": "Uredi račun",
225 "settings.account.accountType.basic": "Osnovni račun", 225 "settings.account.accountType.basic": "Osnovni račun",
226 "settings.account.accountType.premium": "Premium račun", 226 "settings.account.accountType.premium": "Premium račun",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Ažuriraj profil", 229 "settings.account.buttonSave": "Ažuriraj profil",
228 "settings.account.deleteAccount": "Обриши налог", 230 "settings.account.deleteAccount": "Обриши налог",
229 "settings.account.deleteEmailSent": "Добили сте имејл са линком путем којег потврђујете брисање свог налога. Ваш налог и подаци не могу бити повраћени!", 231 "settings.account.deleteEmailSent": "Добили сте имејл са линком путем којег потврђујете брисање свог налога. Ваш налог и подаци не могу бити повраћени!",
diff --git a/src/i18n/locales/sv.json b/src/i18n/locales/sv.json
index 00bb7de2c..750ff9b89 100644
--- a/src/i18n/locales/sv.json
+++ b/src/i18n/locales/sv.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Get started", 219 "services.getStarted": "Get started",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Edit account", 224 "settings.account.account.editButton": "Edit account",
225 "settings.account.accountType.basic": "Basic Account", 225 "settings.account.accountType.basic": "Basic Account",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Update profile", 229 "settings.account.buttonSave": "Update profile",
228 "settings.account.deleteAccount": "Delete account", 230 "settings.account.deleteAccount": "Delete account",
229 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 231 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
diff --git a/src/i18n/locales/tr.json b/src/i18n/locales/tr.json
index d4998a5e9..fd429bfde 100644
--- a/src/i18n/locales/tr.json
+++ b/src/i18n/locales/tr.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Yükleniyor", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Haydi başlayalım", 219 "services.getStarted": "Haydi başlayalım",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Hesabı düzenle", 224 "settings.account.account.editButton": "Hesabı düzenle",
225 "settings.account.accountType.basic": "Basit Hesap", 225 "settings.account.accountType.basic": "Basit Hesap",
226 "settings.account.accountType.premium": "Premium Destekçi Hesabı", 226 "settings.account.accountType.premium": "Premium Destekçi Hesabı",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Profili güncelle", 229 "settings.account.buttonSave": "Profili güncelle",
228 "settings.account.deleteAccount": "Hesabı sil", 230 "settings.account.deleteAccount": "Hesabı sil",
229 "settings.account.deleteEmailSent": "Hesabınızın silinmesini onaylamanız için e-posta adresinize gönderilen bağlantıya tıklayınız. Bu işlem sonrasında hesabınız ve bilgileriniz geri getirilemez!", 231 "settings.account.deleteEmailSent": "Hesabınızın silinmesini onaylamanız için e-posta adresinize gönderilen bağlantıya tıklayınız. Bu işlem sonrasında hesabınız ve bilgileriniz geri getirilemez!",
diff --git a/src/i18n/locales/uk.json b/src/i18n/locales/uk.json
index 1e61b1ea7..1a5c56211 100644
--- a/src/i18n/locales/uk.json
+++ b/src/i18n/locales/uk.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Почати", 219 "services.getStarted": "Почати",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Редагувати акаунт", 224 "settings.account.account.editButton": "Редагувати акаунт",
225 "settings.account.accountType.basic": "Базовий акаунт", 225 "settings.account.accountType.basic": "Базовий акаунт",
226 "settings.account.accountType.premium": "Преміум Акаунт Прихильника", 226 "settings.account.accountType.premium": "Преміум Акаунт Прихильника",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Оновити профіль", 229 "settings.account.buttonSave": "Оновити профіль",
228 "settings.account.deleteAccount": "Видалити обліковий запис", 230 "settings.account.deleteAccount": "Видалити обліковий запис",
229 "settings.account.deleteEmailSent": "Ви отримали електронного листа з посиланням, щоб підтвердити видалення облікового запису. Ваш обліковий запис і дані не можна буде відновити!", 231 "settings.account.deleteEmailSent": "Ви отримали електронного листа з посиланням, щоб підтвердити видалення облікового запису. Ваш обліковий запис і дані не можна буде відновити!",
diff --git a/src/i18n/locales/vi.json b/src/i18n/locales/vi.json
index 00bb7de2c..750ff9b89 100644
--- a/src/i18n/locales/vi.json
+++ b/src/i18n/locales/vi.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Get started", 219 "services.getStarted": "Get started",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Edit account", 224 "settings.account.account.editButton": "Edit account",
225 "settings.account.accountType.basic": "Basic Account", 225 "settings.account.accountType.basic": "Basic Account",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Update profile", 229 "settings.account.buttonSave": "Update profile",
228 "settings.account.deleteAccount": "Delete account", 230 "settings.account.deleteAccount": "Delete account",
229 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 231 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
diff --git a/src/i18n/locales/zh-HANT.json b/src/i18n/locales/zh-HANT.json
index 5c7ab6c50..32effd8d8 100644
--- a/src/i18n/locales/zh-HANT.json
+++ b/src/i18n/locales/zh-HANT.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "開始使用", 219 "services.getStarted": "開始使用",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "更改帳戶資訊", 224 "settings.account.account.editButton": "更改帳戶資訊",
225 "settings.account.accountType.basic": "基本帳戶", 225 "settings.account.accountType.basic": "基本帳戶",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "更新帳戶資訊", 229 "settings.account.buttonSave": "更新帳戶資訊",
228 "settings.account.deleteAccount": "Delete account", 230 "settings.account.deleteAccount": "Delete account",
229 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 231 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
diff --git a/src/i18n/locales/zh.json b/src/i18n/locales/zh.json
index 00bb7de2c..750ff9b89 100644
--- a/src/i18n/locales/zh.json
+++ b/src/i18n/locales/zh.json
@@ -215,7 +215,7 @@
215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.", 215 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.", 216 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.", 217 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
218 "service.webviewLoader.loading": "Loading", 218 "service.webviewLoader.loading": "Loading {service}",
219 "services.getStarted": "Get started", 219 "services.getStarted": "Get started",
220 "services.login": "Please login to use Ferdi.", 220 "services.login": "Please login to use Ferdi.",
221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 221 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
@@ -224,6 +224,8 @@
224 "settings.account.account.editButton": "Edit account", 224 "settings.account.account.editButton": "Edit account",
225 "settings.account.accountType.basic": "Basic Account", 225 "settings.account.accountType.basic": "Basic Account",
226 "settings.account.accountType.premium": "Premium Supporter Account", 226 "settings.account.accountType.premium": "Premium Supporter Account",
227 "settings.account.accountUnavailable": "Account is unavailable",
228 "settings.account.accountUnavailableInfo": "You are using Ferdi without an account. If you want to use Ferdi with an account and keep your services synchronized across installations, please select a server in the Settings tab then login.",
227 "settings.account.buttonSave": "Update profile", 229 "settings.account.buttonSave": "Update profile",
228 "settings.account.deleteAccount": "Delete account", 230 "settings.account.deleteAccount": "Delete account",
229 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 231 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
diff --git a/src/i18n/messages/src/components/ui/WebviewLoader/index.json b/src/i18n/messages/src/components/ui/WebviewLoader/index.json
index ef3e4b593..9caabef25 100644
--- a/src/i18n/messages/src/components/ui/WebviewLoader/index.json
+++ b/src/i18n/messages/src/components/ui/WebviewLoader/index.json
@@ -1,7 +1,7 @@
1[ 1[
2 { 2 {
3 "id": "service.webviewLoader.loading", 3 "id": "service.webviewLoader.loading",
4 "defaultMessage": "!!!Loading", 4 "defaultMessage": "!!!Loading {service}",
5 "file": "src/components/ui/WebviewLoader/index.js", 5 "file": "src/components/ui/WebviewLoader/index.js",
6 "start": { 6 "start": {
7 "line": 11, 7 "line": 11,
diff --git a/src/i18n/messages/src/containers/settings/EditServiceScreen.json b/src/i18n/messages/src/containers/settings/EditServiceScreen.json
index 42ca42125..9b46a1e6f 100644
--- a/src/i18n/messages/src/containers/settings/EditServiceScreen.json
+++ b/src/i18n/messages/src/containers/settings/EditServiceScreen.json
@@ -79,7 +79,7 @@
79 }, 79 },
80 { 80 {
81 "id": "settings.service.form.customUrl", 81 "id": "settings.service.form.customUrl",
82 "defaultMessage": "!!!Custom server", 82 "defaultMessage": "!!!Service URL",
83 "file": "src/containers/settings/EditServiceScreen.js", 83 "file": "src/containers/settings/EditServiceScreen.js",
84 "start": { 84 "start": {
85 "line": 52, 85 "line": 52,
diff --git a/src/internal-server b/src/internal-server
Subproject cca6cd984caf729722153e58f44c01319c4bd63 Subproject f534147e00fc889769845b9207572ce63ef3cad