aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitmodules6
-rw-r--r--README.md41
-rw-r--r--docs/linux.md11
-rw-r--r--src/components/auth/Login.js2
-rw-r--r--src/components/auth/Signup.js2
-rw-r--r--src/components/auth/Welcome.js2
-rw-r--r--src/components/subscription/SubscriptionForm.js2
-rw-r--r--src/i18n/locales/af.json2
-rw-r--r--src/i18n/locales/ar.json2
-rw-r--r--src/i18n/locales/bs.json2
-rw-r--r--src/i18n/locales/ca.json2
-rw-r--r--src/i18n/locales/cs.json2
-rw-r--r--src/i18n/locales/da.json2
-rw-r--r--src/i18n/locales/de.json4
-rw-r--r--src/i18n/locales/el.json2
-rw-r--r--src/i18n/locales/es.json2
-rw-r--r--src/i18n/locales/fi.json2
-rw-r--r--src/i18n/locales/fr.json2
-rw-r--r--src/i18n/locales/ga.json2
-rw-r--r--src/i18n/locales/he.json2
-rw-r--r--src/i18n/locales/hr.json2
-rw-r--r--src/i18n/locales/hu.json2
-rw-r--r--src/i18n/locales/id.json2
-rw-r--r--src/i18n/locales/it.json2
-rw-r--r--src/i18n/locales/ja.json2
-rw-r--r--src/i18n/locales/ka.json2
-rw-r--r--src/i18n/locales/ko.json2
-rw-r--r--src/i18n/locales/nl-BE.json2
-rw-r--r--src/i18n/locales/nl.json2
-rw-r--r--src/i18n/locales/no.json2
-rw-r--r--src/i18n/locales/pl.json2
-rw-r--r--src/i18n/locales/pt-BR.json2
-rw-r--r--src/i18n/locales/pt.json2
-rw-r--r--src/i18n/locales/ro.json2
-rw-r--r--src/i18n/locales/ru.json2
-rw-r--r--src/i18n/locales/sk.json2
-rw-r--r--src/i18n/locales/sl.json2
-rw-r--r--src/i18n/locales/sr.json2
-rw-r--r--src/i18n/locales/sv.json2
-rw-r--r--src/i18n/locales/tr.json2
-rw-r--r--src/i18n/locales/uk.json2
-rw-r--r--src/i18n/locales/vi.json2
-rw-r--r--src/i18n/locales/zh-HANT.json6
-rw-r--r--src/i18n/locales/zh-Hant.json444
-rw-r--r--src/i18n/locales/zh.json2
45 files changed, 81 insertions, 509 deletions
diff --git a/.gitmodules b/.gitmodules
index f1f9fcec8..d121d6c01 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,6 +1,8 @@
1[submodule "recipes"] 1[submodule "recipes"]
2 path = recipes 2 path = recipes
3 url = https://github.com/getferdi/recipes 3 url = git@github.com:getferdi/recipes.git
4 ignore = all
4[submodule "src/server"] 5[submodule "src/server"]
5 path = src/server 6 path = src/server
6 url = https://github.com/getferdi/internal-server.git 7 url = git@github.com:getferdi/internal-server.git
8 ignore = all
diff --git a/README.md b/README.md
index cac5c0202..eb237f76e 100644
--- a/README.md
+++ b/README.md
@@ -55,6 +55,27 @@ You can find the installers in the [latest release](https://github.com/getferdi/
55 55
56### Preparations 56### Preparations
57 57
58#### Install OS dependencies
59
60##### Debian/Ubuntu
61
62```bash
63$ apt install libx11-dev libxext-dev libxss-dev libxkbfile-dev
64```
65
66##### Fedora
67
68```bash
69$ dnf install libX11-devel libXext-devel libXScrnSaver-devel libxkbfile-devel
70```
71
72##### Windows
73
74```bash
75$ npm install --global windows-build-tools // Windows 10
76$ npm install --global windows-build-tools --vs2015 // Windows 7
77```
78
58#### Clone repository with submodule 79#### Clone repository with submodule
59 80
60```bash 81```bash
@@ -63,13 +84,11 @@ $ cd getferdi
63$ git submodule update --init --recursive 84$ git submodule update --init --recursive
64``` 85```
65 86
66#### Install Linux OS dependencies 87It is important you execute the last command to get the required submodules (recipes, server).
67
68[Guide: Linux distribution specific dependencies](docs/linux.md)
69 88
70#### Use right NodeJS version 89#### Use right NodeJS version
71 90
72Please make sure you are running NodeJS v10 (v10.16.3 suggested). Versions above will throw an errow when trying to install due to an [old fsevent dependency](https://github.com/fsevents/fsevents/issues/278) 91Please make sure you are running NodeJS v10 (v10.16.3 suggested). Versions above will throw an errow when trying to install due to an [old fsevent dependency](https://github.com/fsevents/fsevents/issues/278).
73 92
74#### Fix native modules to match current electron node version 93#### Fix native modules to match current electron node version
75 94
@@ -79,7 +98,7 @@ $ npm run rebuild
79 98
80### Install dependencies 99### Install dependencies
81 100
82Run the following command to install all dependencies, and link sibling modules with Franz. 101Run the following command to install all dependencies, and link sibling modules with Ferdi.
83 102
84```bash 103```bash
85$ npx lerna bootstrap 104$ npx lerna bootstrap
@@ -87,9 +106,9 @@ $ npx lerna bootstrap
87 106
88If you previously ran `npm install` it sometimes is necessary to delete your `node_modules` folder before running `npx lerna bootstrap`. 107If you previously ran `npm install` it sometimes is necessary to delete your `node_modules` folder before running `npx lerna bootstrap`.
89 108
90### Run Ferdi Development App 109### Start development app
91 110
92Run these two commands **simultaneously** in different console tabs. 111Run these two commands **simultaneously** in different console tabs:
93 112
94```bash 113```bash
95$ npm run dev 114$ npm run dev
@@ -98,7 +117,7 @@ $ npm run start
98 117
99Be aware that the development database will be reset regularly. 118Be aware that the development database will be reset regularly.
100 119
101## Packaging 120### Packaging
102 121
103```bash 122```bash
104$ npm run build 123$ npm run build
@@ -106,14 +125,16 @@ $ npm run build
106 125
107Deliverables will be available in the `out` folder. 126Deliverables will be available in the `out` folder.
108 127
109## Release 128### Release
110 129
111```bash 130```bash
131$ git checkout develop && git pull && git checkout master
132$ git merge --no-ff develop
112$ git tag v5.3.4-beta.4 133$ git tag v5.3.4-beta.4
113$ git push --tags 134$ git push --tags
114``` 135```
115 136
116When pushing a new tag, the CI build will create a draft GitHub release and upload the deliverables in the draft release assets. Wait for all the assets to be uploaded before publishing the draft release. 137When pushing a new tag, the CI builds will create a draft GitHub release and upload the deliverables in the draft release assets. Wait for all the assets to be uploaded before publishing the draft release.
117 138
118## Contributors ✨ 139## Contributors ✨
119 140
diff --git a/docs/linux.md b/docs/linux.md
deleted file mode 100644
index 43ffa313b..000000000
--- a/docs/linux.md
+++ /dev/null
@@ -1,11 +0,0 @@
1# Linux distribution specific dependencies
2
3## Debian/Ubuntu
4```bash
5$ apt install libx11-dev libxext-dev libxss-dev libxkbfile-dev
6```
7
8## Fedora
9```bash
10$ dnf install libX11-devel libXext-devel libXScrnSaver-devel libxkbfile-devel
11```
diff --git a/src/components/auth/Login.js b/src/components/auth/Login.js
index e58016e25..e25121de0 100644
--- a/src/components/auth/Login.js
+++ b/src/components/auth/Login.js
@@ -70,7 +70,7 @@ const messages = defineMessages({
70 }, 70 },
71}); 71});
72 72
73export default @observer @inject('actions') class Login extends Component { 73export default @inject('actions') @observer class Login extends Component {
74 static propTypes = { 74 static propTypes = {
75 onSubmit: PropTypes.func.isRequired, 75 onSubmit: PropTypes.func.isRequired,
76 isSubmitting: PropTypes.bool.isRequired, 76 isSubmitting: PropTypes.bool.isRequired,
diff --git a/src/components/auth/Signup.js b/src/components/auth/Signup.js
index 47e9daf18..a166155a7 100644
--- a/src/components/auth/Signup.js
+++ b/src/components/auth/Signup.js
@@ -74,7 +74,7 @@ const messages = defineMessages({
74 }, 74 },
75}); 75});
76 76
77export default @observer @inject('actions') class Signup extends Component { 77export default @inject('actions') @observer class Signup extends Component {
78 static propTypes = { 78 static propTypes = {
79 onSubmit: PropTypes.func.isRequired, 79 onSubmit: PropTypes.func.isRequired,
80 isSubmitting: PropTypes.bool.isRequired, 80 isSubmitting: PropTypes.bool.isRequired,
diff --git a/src/components/auth/Welcome.js b/src/components/auth/Welcome.js
index 2ca8b430f..1453c1d7c 100644
--- a/src/components/auth/Welcome.js
+++ b/src/components/auth/Welcome.js
@@ -22,7 +22,7 @@ const messages = defineMessages({
22 }, 22 },
23}); 23});
24 24
25export default @observer @inject('actions') class Login extends Component { 25export default @inject('actions') @observer class Login extends Component {
26 static propTypes = { 26 static propTypes = {
27 loginRoute: PropTypes.string.isRequired, 27 loginRoute: PropTypes.string.isRequired,
28 signupRoute: PropTypes.string.isRequired, 28 signupRoute: PropTypes.string.isRequired,
diff --git a/src/components/subscription/SubscriptionForm.js b/src/components/subscription/SubscriptionForm.js
index cdfbbe60d..effd04f7a 100644
--- a/src/components/subscription/SubscriptionForm.js
+++ b/src/components/subscription/SubscriptionForm.js
@@ -34,7 +34,7 @@ const styles = () => ({
34 }, 34 },
35}); 35});
36 36
37export default @observer @injectSheet(styles) class SubscriptionForm extends Component { 37export default @injectSheet(styles) @observer class SubscriptionForm extends Component {
38 static propTypes = { 38 static propTypes = {
39 selectPlan: PropTypes.func.isRequired, 39 selectPlan: PropTypes.func.isRequired,
40 isActivatingTrial: PropTypes.bool.isRequired, 40 isActivatingTrial: PropTypes.bool.isRequired,
diff --git a/src/i18n/locales/af.json b/src/i18n/locales/af.json
index 2e3034367..628880d9f 100644
--- a/src/i18n/locales/af.json
+++ b/src/i18n/locales/af.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.", 271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
diff --git a/src/i18n/locales/ar.json b/src/i18n/locales/ar.json
index 2e3034367..628880d9f 100644
--- a/src/i18n/locales/ar.json
+++ b/src/i18n/locales/ar.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.", 271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
diff --git a/src/i18n/locales/bs.json b/src/i18n/locales/bs.json
index 2e3034367..628880d9f 100644
--- a/src/i18n/locales/bs.json
+++ b/src/i18n/locales/bs.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.", 271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
diff --git a/src/i18n/locales/ca.json b/src/i18n/locales/ca.json
index 41aaf37a3..2c8696f8e 100644
--- a/src/i18n/locales/ca.json
+++ b/src/i18n/locales/ca.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Memòria cau", 269 "settings.app.subheadlineCache": "Memòria cau",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Ajuda'ns a traduir Ferdi en la teva llengua.", 271 "settings.app.translationHelp": "Ajuda'ns a traduir Ferdi en la teva llengua.",
diff --git a/src/i18n/locales/cs.json b/src/i18n/locales/cs.json
index 7f9b29c8a..cd4b7bfcd 100644
--- a/src/i18n/locales/cs.json
+++ b/src/i18n/locales/cs.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Mezipaměť", 269 "settings.app.subheadlineCache": "Mezipaměť",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Pomozte nám přeložit Ferdi do svého jazyka.", 271 "settings.app.translationHelp": "Pomozte nám přeložit Ferdi do svého jazyka.",
diff --git a/src/i18n/locales/da.json b/src/i18n/locales/da.json
index 2e3034367..628880d9f 100644
--- a/src/i18n/locales/da.json
+++ b/src/i18n/locales/da.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.", 271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
diff --git a/src/i18n/locales/de.json b/src/i18n/locales/de.json
index aef231f05..6b7ac8a35 100644
--- a/src/i18n/locales/de.json
+++ b/src/i18n/locales/de.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "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.", 267 "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.",
268 "settings.app.serverMoneyInfo": "Du verwenden den offiziellen Franz Server für Ferdi.\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 profitieren Sie noch immer stark von Franz's Diensten, Serverressourcen und seiner Entwicklung.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "Dieser Server wird für die Funktion \"Ferdi Todo\" verwendet. (Standard: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "Dieser Server wird für die Funktion \"Ferdi Todo\" verwendet. (Standard: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Hilf uns, Ferdi in Deine Sprache zu übersetzen.", 271 "settings.app.translationHelp": "Hilf uns, Ferdi in Deine Sprache zu übersetzen.",
@@ -357,7 +357,7 @@
357 "settings.team.intro": "Mit Ferdi für Teams kannst du Premium Lizenzen für Kolleginnen und Kollegen oder Freunde und Familienmitglieder kaufen und verwalten - so viele du willst.", 357 "settings.team.intro": "Mit Ferdi für Teams kannst du Premium Lizenzen für Kolleginnen und Kollegen oder Freunde und Familienmitglieder kaufen und verwalten - so viele du willst.",
358 "settings.team.manageAction": "Verwalte dein Team auf getferdi.com", 358 "settings.team.manageAction": "Verwalte dein Team auf getferdi.com",
359 "settings.team.teamsUnavailable": "Teams sind nicht verfügbar", 359 "settings.team.teamsUnavailable": "Teams sind nicht verfügbar",
360 "settings.team.teamsUnavailableInfo": "Teams sind derzeit nur bei der Verwendung des Franz Servers und nach der Zahlung für Franz Professional verfügbar. \nBitte ändern Sie Ihren Server auf https://api.franzinfra.com, um Teams zu verwenden.", 360 "settings.team.teamsUnavailableInfo": "Teams sind derzeit nur bei der Verwendung des Franz Servers und nach der Zahlung für Franz Professional verfügbar.\nBitte ändern Sie Ihren Server auf https://api.franzinfra.com, um Teams zu verwenden.",
361 "settings.team.upgradeAction": "Account Upgrade durchführen", 361 "settings.team.upgradeAction": "Account Upgrade durchführen",
362 "settings.user.form.accountType.company": "Firma", 362 "settings.user.form.accountType.company": "Firma",
363 "settings.user.form.accountType.individual": "Einzelperson", 363 "settings.user.form.accountType.individual": "Einzelperson",
diff --git a/src/i18n/locales/el.json b/src/i18n/locales/el.json
index af4b990ec..e8c9d1aae 100644
--- a/src/i18n/locales/el.json
+++ b/src/i18n/locales/el.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Λανθάνουσα μνήμη", 269 "settings.app.subheadlineCache": "Λανθάνουσα μνήμη",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Βοηθήστε μας να μεταφράσουμε το Ferdi στη δική σας γλώσσα.", 271 "settings.app.translationHelp": "Βοηθήστε μας να μεταφράσουμε το Ferdi στη δική σας γλώσσα.",
diff --git a/src/i18n/locales/es.json b/src/i18n/locales/es.json
index 86a2256f0..178dcfc51 100644
--- a/src/i18n/locales/es.json
+++ b/src/i18n/locales/es.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Caché", 269 "settings.app.subheadlineCache": "Caché",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Ayúdanos a traducir Ferdi a tu idioma.", 271 "settings.app.translationHelp": "Ayúdanos a traducir Ferdi a tu idioma.",
diff --git a/src/i18n/locales/fi.json b/src/i18n/locales/fi.json
index 2e3034367..628880d9f 100644
--- a/src/i18n/locales/fi.json
+++ b/src/i18n/locales/fi.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.", 271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
diff --git a/src/i18n/locales/fr.json b/src/i18n/locales/fr.json
index 594a009aa..508eb875e 100644
--- a/src/i18n/locales/fr.json
+++ b/src/i18n/locales/fr.json
@@ -265,7 +265,7 @@
265 "settings.app.scheduledDNDInfo": "Planifier le Ne-pas-Déranger vous permet de définir une période de temps dans lequel vous ne voulez pas de notifications de Ferdi.", 265 "settings.app.scheduledDNDInfo": "Planifier le Ne-pas-Déranger vous permet de définir une période de temps dans lequel vous ne voulez pas de notifications de Ferdi.",
266 "settings.app.scheduledDNDTimeInfo": "Le temps est en format 24 heures. La fin du temps peut être avant le début du temps (ex: début 17:00, fin 09:00) pour activer le Ne-pas-Déranger durant la nuit.", 266 "settings.app.scheduledDNDTimeInfo": "Le temps est en format 24 heures. La fin du temps peut être avant le début du temps (ex: début 17:00, fin 09:00) pour activer le Ne-pas-Déranger durant la nuit.",
267 "settings.app.serverInfo": "On vous recommande de vous déconnecter après d'avoir changer votre serveur dans vos paramètres au risque que les paramètres ne sois pas sauvegarder.", 267 "settings.app.serverInfo": "On vous recommande de vous déconnecter après d'avoir changer votre serveur dans vos paramètres au risque que les paramètres ne sois pas sauvegarder.",
268 "settings.app.serverMoneyInfo": "Vous êtes entrain d'utilisé le serveur officiel de Franz pour Ferdi.\nNous savons que Ferdi vous permet d'utilisé toutes les fonctionnalités gratuitement mais vous êtes toujours entrain d'utilisé les resources des serveurs de Franz - dont les créateurs paient pour.\nS'il vous plaît [Link 1]payé pour un compte Franz[/Link] ou [Link 2]utilisé un ferdi-serveur hébergé soi-même[/Link] (si vous avez la connaissance et les resources pour).\nEn utilisant Ferdi, vous profité beaucoup des recettes de Franz, resources serveurs et son développement.", 268 "settings.app.serverMoneyInfo": "Vous êtes entrain d'utilisé le serveur officiel de Franz pour Ferdi.\nNous savons que Ferdi vous permet d'utilisé toutes les fonctionnalités gratuitement mais vous êtes toujours entrain d'utilisé les resources des serveurs de Franz - dont les créateurs paient pour.\nS'il vous plaît [Link 1]payé pour un compte Franz[/Link] ou [Link 2]utilisé un ferdi-serveur hébergé par soi-même[/Link] (si vous avez la connaissance et les resources pour).\nEn utilisant Ferdi, vous profité beaucoup des recettes de Franz, resources serveurs et son développement.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "Ce serveur va être utilisé pour la fonction \"Ferdi Todo\". (défaut: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "Ce serveur va être utilisé pour la fonction \"Ferdi Todo\". (défaut: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Aidez-nous à traduire Ferdi dans votre langue.", 271 "settings.app.translationHelp": "Aidez-nous à traduire Ferdi dans votre langue.",
diff --git a/src/i18n/locales/ga.json b/src/i18n/locales/ga.json
index aa86fe6d1..acd72ee0b 100644
--- a/src/i18n/locales/ga.json
+++ b/src/i18n/locales/ga.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Taisce", 269 "settings.app.subheadlineCache": "Taisce",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Cabhraigh linn Ferdi a aistriú i do theanga.", 271 "settings.app.translationHelp": "Cabhraigh linn Ferdi a aistriú i do theanga.",
diff --git a/src/i18n/locales/he.json b/src/i18n/locales/he.json
index 2e3034367..628880d9f 100644
--- a/src/i18n/locales/he.json
+++ b/src/i18n/locales/he.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.", 271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
diff --git a/src/i18n/locales/hr.json b/src/i18n/locales/hr.json
index a0d5bc659..94ea0582d 100644
--- a/src/i18n/locales/hr.json
+++ b/src/i18n/locales/hr.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Predmemorija", 269 "settings.app.subheadlineCache": "Predmemorija",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Pomozite nam prevesti aplikaciju na Vaš jezik. ", 271 "settings.app.translationHelp": "Pomozite nam prevesti aplikaciju na Vaš jezik. ",
diff --git a/src/i18n/locales/hu.json b/src/i18n/locales/hu.json
index cce492d56..83d454eec 100644
--- a/src/i18n/locales/hu.json
+++ b/src/i18n/locales/hu.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Gyorsítótár", 269 "settings.app.subheadlineCache": "Gyorsítótár",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Segíts nekünk a Ferdi-ot lefordítani a nyelvedre.", 271 "settings.app.translationHelp": "Segíts nekünk a Ferdi-ot lefordítani a nyelvedre.",
diff --git a/src/i18n/locales/id.json b/src/i18n/locales/id.json
index aa1cc6463..dcbd826c3 100644
--- a/src/i18n/locales/id.json
+++ b/src/i18n/locales/id.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Singgahan", 269 "settings.app.subheadlineCache": "Singgahan",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Bantu kami menerjemahkan Ferdi ke bahasa Anda.", 271 "settings.app.translationHelp": "Bantu kami menerjemahkan Ferdi ke bahasa Anda.",
diff --git a/src/i18n/locales/it.json b/src/i18n/locales/it.json
index d6f6549da..9a49fb6ce 100644
--- a/src/i18n/locales/it.json
+++ b/src/i18n/locales/it.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Aiutaci a tradurre Ferdi nella tua lingua.", 271 "settings.app.translationHelp": "Aiutaci a tradurre Ferdi nella tua lingua.",
diff --git a/src/i18n/locales/ja.json b/src/i18n/locales/ja.json
index afda9ca1c..49c886dc6 100644
--- a/src/i18n/locales/ja.json
+++ b/src/i18n/locales/ja.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "キャッシュ", 269 "settings.app.subheadlineCache": "キャッシュ",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Ferdiの翻訳作業にご協力をお願いします。", 271 "settings.app.translationHelp": "Ferdiの翻訳作業にご協力をお願いします。",
diff --git a/src/i18n/locales/ka.json b/src/i18n/locales/ka.json
index 3878f8eeb..0065b1b56 100644
--- a/src/i18n/locales/ka.json
+++ b/src/i18n/locales/ka.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.", 271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
diff --git a/src/i18n/locales/ko.json b/src/i18n/locales/ko.json
index 2e3034367..628880d9f 100644
--- a/src/i18n/locales/ko.json
+++ b/src/i18n/locales/ko.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.", 271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
diff --git a/src/i18n/locales/nl-BE.json b/src/i18n/locales/nl-BE.json
index 1176d0f00..dda3e65f5 100644
--- a/src/i18n/locales/nl-BE.json
+++ b/src/i18n/locales/nl-BE.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Help ons om Ferdi te vertalen naar uw taal.", 271 "settings.app.translationHelp": "Help ons om Ferdi te vertalen naar uw taal.",
diff --git a/src/i18n/locales/nl.json b/src/i18n/locales/nl.json
index dab8545c9..af26ffa1e 100644
--- a/src/i18n/locales/nl.json
+++ b/src/i18n/locales/nl.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Help ons om Ferdi uw taal te laten spreken.", 271 "settings.app.translationHelp": "Help ons om Ferdi uw taal te laten spreken.",
diff --git a/src/i18n/locales/no.json b/src/i18n/locales/no.json
index 2e3034367..628880d9f 100644
--- a/src/i18n/locales/no.json
+++ b/src/i18n/locales/no.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.", 271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
diff --git a/src/i18n/locales/pl.json b/src/i18n/locales/pl.json
index 85dde2229..6b4eb7d6e 100644
--- a/src/i18n/locales/pl.json
+++ b/src/i18n/locales/pl.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Pamięć podręczna", 269 "settings.app.subheadlineCache": "Pamięć podręczna",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Pomóż nam tłumaczyć Ferdi na Twój język.", 271 "settings.app.translationHelp": "Pomóż nam tłumaczyć Ferdi na Twój język.",
diff --git a/src/i18n/locales/pt-BR.json b/src/i18n/locales/pt-BR.json
index 0b8a51750..3d16482c9 100644
--- a/src/i18n/locales/pt-BR.json
+++ b/src/i18n/locales/pt-BR.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "memória cache", 269 "settings.app.subheadlineCache": "memória cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Ajude-nos a traduzir o Ferdi para seu idioma.", 271 "settings.app.translationHelp": "Ajude-nos a traduzir o Ferdi para seu idioma.",
diff --git a/src/i18n/locales/pt.json b/src/i18n/locales/pt.json
index 8948f223a..175322720 100644
--- a/src/i18n/locales/pt.json
+++ b/src/i18n/locales/pt.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Ajude-nos a traduzir a Ferdi para a sua língua.", 271 "settings.app.translationHelp": "Ajude-nos a traduzir a Ferdi para a sua língua.",
diff --git a/src/i18n/locales/ro.json b/src/i18n/locales/ro.json
index 2e3034367..628880d9f 100644
--- a/src/i18n/locales/ro.json
+++ b/src/i18n/locales/ro.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.", 271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
diff --git a/src/i18n/locales/ru.json b/src/i18n/locales/ru.json
index 557cf0de6..c1ae5cafd 100644
--- a/src/i18n/locales/ru.json
+++ b/src/i18n/locales/ru.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Кэш", 269 "settings.app.subheadlineCache": "Кэш",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Помогите нам перевести Ferdi на ваш язык.", 271 "settings.app.translationHelp": "Помогите нам перевести Ferdi на ваш язык.",
diff --git a/src/i18n/locales/sk.json b/src/i18n/locales/sk.json
index 398f4c85a..aa8c65005 100644
--- a/src/i18n/locales/sk.json
+++ b/src/i18n/locales/sk.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Vyrovnávacia pamäť", 269 "settings.app.subheadlineCache": "Vyrovnávacia pamäť",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Pomôžte nám preložiť Ferdi do svojho jazyka.", 271 "settings.app.translationHelp": "Pomôžte nám preložiť Ferdi do svojho jazyka.",
diff --git a/src/i18n/locales/sl.json b/src/i18n/locales/sl.json
index 2e3034367..628880d9f 100644
--- a/src/i18n/locales/sl.json
+++ b/src/i18n/locales/sl.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.", 271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
diff --git a/src/i18n/locales/sr.json b/src/i18n/locales/sr.json
index 8493077bb..97ec48859 100644
--- a/src/i18n/locales/sr.json
+++ b/src/i18n/locales/sr.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Кеш", 269 "settings.app.subheadlineCache": "Кеш",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Pomozite nam prevesti aplikaciju na Vaš jezik. ", 271 "settings.app.translationHelp": "Pomozite nam prevesti aplikaciju na Vaš jezik. ",
diff --git a/src/i18n/locales/sv.json b/src/i18n/locales/sv.json
index 2e3034367..628880d9f 100644
--- a/src/i18n/locales/sv.json
+++ b/src/i18n/locales/sv.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.", 271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
diff --git a/src/i18n/locales/tr.json b/src/i18n/locales/tr.json
index 734e8a2dd..1fd54a50d 100644
--- a/src/i18n/locales/tr.json
+++ b/src/i18n/locales/tr.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Önbellek", 269 "settings.app.subheadlineCache": "Önbellek",
270 "settings.app.todoServerInfo": "Bu sunucu \"Ferdi Yapılacaklar Listesi\" özelliği için kullanılacakdır. (varsayılan: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "Bu sunucu \"Ferdi Yapılacaklar Listesi\" özelliği için kullanılacakdır. (varsayılan: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Ferdi'ı senin diline tercüme etmemiz için yardım et.", 271 "settings.app.translationHelp": "Ferdi'ı senin diline tercüme etmemiz için yardım et.",
diff --git a/src/i18n/locales/uk.json b/src/i18n/locales/uk.json
index d0525983f..d6da96961 100644
--- a/src/i18n/locales/uk.json
+++ b/src/i18n/locales/uk.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Кеш", 269 "settings.app.subheadlineCache": "Кеш",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Допоможіть перекласти Ferdi на Вашу мову.", 271 "settings.app.translationHelp": "Допоможіть перекласти Ferdi на Вашу мову.",
diff --git a/src/i18n/locales/vi.json b/src/i18n/locales/vi.json
index 2e3034367..628880d9f 100644
--- a/src/i18n/locales/vi.json
+++ b/src/i18n/locales/vi.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.", 271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
diff --git a/src/i18n/locales/zh-HANT.json b/src/i18n/locales/zh-HANT.json
index 678554c05..899591ab0 100644
--- a/src/i18n/locales/zh-HANT.json
+++ b/src/i18n/locales/zh-HANT.json
@@ -54,6 +54,7 @@
54 "locked.invalidCredentials": "Password invalid", 54 "locked.invalidCredentials": "Password invalid",
55 "locked.password.label": "Password", 55 "locked.password.label": "Password",
56 "locked.submit.label": "Unlock", 56 "locked.submit.label": "Unlock",
57 "login.changeServer": "Change server",
57 "login.customServerQuestion": "Using a custom Ferdi server?", 58 "login.customServerQuestion": "Using a custom Ferdi server?",
58 "login.customServerSuggestion": "Try importing your Franz account", 59 "login.customServerSuggestion": "Try importing your Franz account",
59 "login.email.label": "電子郵件信箱", 60 "login.email.label": "電子郵件信箱",
@@ -186,6 +187,7 @@
186 "services.getStarted": "開始使用", 187 "services.getStarted": "開始使用",
187 "services.login": "Please login to use Ferdi.", 188 "services.login": "Please login to use Ferdi.",
188 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 189 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
190 "services.serverless": "Use Ferdi without an Account",
189 "services.welcome": "歡迎使用 Ferdi", 191 "services.welcome": "歡迎使用 Ferdi",
190 "settings.account.account.editButton": "更改帳戶資訊", 192 "settings.account.account.editButton": "更改帳戶資訊",
191 "settings.account.accountType.basic": "基本帳戶", 193 "settings.account.accountType.basic": "基本帳戶",
@@ -263,7 +265,7 @@
263 "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.", 265 "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.",
264 "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.", 266 "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.",
265 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
266 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
267 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
268 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
269 "settings.app.translationHelp": "Help us to translate Ferdi into your language.", 271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
@@ -354,6 +356,8 @@
354 "settings.team.headline": "Team", 356 "settings.team.headline": "Team",
355 "settings.team.intro": "You and your team use Ferdi? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.", 357 "settings.team.intro": "You and your team use Ferdi? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.",
356 "settings.team.manageAction": "Manage your Team on getferdi.com", 358 "settings.team.manageAction": "Manage your Team on getferdi.com",
359 "settings.team.teamsUnavailable": "Teams are unavailable",
360 "settings.team.teamsUnavailableInfo": "Teams are currently only available when using the Franz Server and after paying for Franz Professional. Please change your server to https://api.franzinfra.com to use teams.",
357 "settings.team.upgradeAction": "Upgrade your Account", 361 "settings.team.upgradeAction": "Upgrade your Account",
358 "settings.user.form.accountType.company": "公司", 362 "settings.user.form.accountType.company": "公司",
359 "settings.user.form.accountType.individual": "個人", 363 "settings.user.form.accountType.individual": "個人",
diff --git a/src/i18n/locales/zh-Hant.json b/src/i18n/locales/zh-Hant.json
deleted file mode 100644
index 678554c05..000000000
--- a/src/i18n/locales/zh-Hant.json
+++ /dev/null
@@ -1,444 +0,0 @@
1{
2 "app.errorHandler.action": "Reload",
3 "app.errorHandler.headline": "Something went wrong",
4 "feature.announcements.changelog.headline": "Changes in Ferdi {version}",
5 "feature.delayApp.headline": "Please purchase a Ferdi Supporter License to skip waiting",
6 "feature.delayApp.text": "Ferdi will continue in {seconds} seconds.",
7 "feature.delayApp.trial.action": "Yes, I want the free 14 day trial of Ferdi Professional",
8 "feature.delayApp.trial.actionShort": "Activate the free Ferdi Professional trial",
9 "feature.delayApp.trial.headline": "Get the free Ferdi Professional 14 day trial and skip the line",
10 "feature.delayApp.upgrade.action": "Get a Ferdi Supporter License",
11 "feature.delayApp.upgrade.actionShort": "Upgrade account",
12 "feature.quickSwitch.info": "Select a service with TAB, ↑ and ↓. Open a service with ENTER.",
13 "feature.quickSwitch.search": "Search...",
14 "feature.quickSwitch.title": "QuickSwitch",
15 "feature.serviceLimit.limitReached": "You have added {amount} out of {limit} services that are included in your plan. Please upgrade your account to add more services.",
16 "feature.shareFranz.action.email": "Send as email",
17 "feature.shareFranz.action.facebook": "Share on Facebook",
18 "feature.shareFranz.action.twitter": "Share on Twitter",
19 "feature.shareFranz.headline": "Ferdi is better together!",
20 "feature.shareFranz.shareText.email": "I've added {count} services to Ferdi! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.getferdi.com",
21 "feature.shareFranz.shareText.twitter": "I've added {count} services to Ferdi! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.getferdi.com /cc @FerdiMessenger",
22 "feature.shareFranz.text": "Tell your friends and colleagues how awesome Ferdi is and help us to spread the word.",
23 "feature.todos.premium.info": "Ferdi Todos are available to premium users now!",
24 "feature.todos.premium.rollout": "Everyone else will have to wait a little longer.",
25 "feature.todos.premium.upgrade": "Upgrade Account",
26 "global.api.unhealthy": "無法連接到Ferdi網路服務",
27 "global.franzProRequired": "Ferdi Professional Required",
28 "global.notConnectedToTheInternet": "您未連上網際網路",
29 "global.spellchecker.useDefault": "Use System Default ({default})",
30 "global.spellchecking.autodetect": "Detect language automatically",
31 "global.spellchecking.autodetect.short": "Automatic",
32 "global.spellchecking.language": "Spell checking language",
33 "global.upgradeButton.upgradeToPro": "Upgrade to Ferdi Professional",
34 "import.headline": "匯入您的 Ferdi 4 服務",
35 "import.notSupportedHeadline": "此服務不被 Ferdi 5 支持",
36 "import.skip.label": "我想手動匯入",
37 "import.submit.label": "匯入服務",
38 "infobar.authRequestFailed": "There were errors while trying to perform an authenticated request. Please try logging out and back in if this error persists.",
39 "infobar.buttonChangelog": "What is new?",
40 "infobar.buttonInstallUpdate": "重新啟動並且更新",
41 "infobar.buttonReloadServices": "重新載入",
42 "infobar.requiredRequestsFailed": "無法載入服務與帳戶資訊",
43 "infobar.servicesUpdated": "您的服務已更新",
44 "infobar.trialActivated": "Your trial was successfully activated. Happy messaging!",
45 "infobar.updateAvailable": "有新的更新可安裝",
46 "invite.email.label": "電子郵件信箱",
47 "invite.headline.friends": "邀請三個人",
48 "invite.name.label": "名子",
49 "invite.skip.label": "我想晚點進行",
50 "invite.submit.label": "Send invites",
51 "invite.successInfo": "Invitations sent successfully",
52 "locked.headline": "Locked",
53 "locked.info": "Ferdi is currently locked. Please unlock Ferdi with your password to see your messages.",
54 "locked.invalidCredentials": "Password invalid",
55 "locked.password.label": "Password",
56 "locked.submit.label": "Unlock",
57 "login.customServerQuestion": "Using a custom Ferdi server?",
58 "login.customServerSuggestion": "Try importing your Franz account",
59 "login.email.label": "電子郵件信箱",
60 "login.headline": "登入",
61 "login.invalidCredentials": "電子郵件帳戶或密碼有誤",
62 "login.link.password": "密碼重設",
63 "login.link.signup": "建立一個免費帳戶",
64 "login.password.label": "Password",
65 "login.serverLogout": "登入狀態過期,請重新登入",
66 "login.submit.label": "登入",
67 "login.tokenExpired": "登入狀態過期,請重新登入",
68 "menu.Todoss.closeTodosDrawer": "Close Todos drawer",
69 "menu.Todoss.openTodosDrawer": "Open Todos drawer",
70 "menu.app.about": "About Ferdi",
71 "menu.app.announcement": "What's new?",
72 "menu.app.autohideMenuBar": "Auto-hide menu bar",
73 "menu.app.checkForUpdates": "Check for updates",
74 "menu.app.hide": "Hide",
75 "menu.app.hideOthers": "Hide Others",
76 "menu.app.quit": "Quit",
77 "menu.app.settings": "Settings",
78 "menu.app.unhide": "Unhide",
79 "menu.edit": "Edit",
80 "menu.edit.copy": "Copy",
81 "menu.edit.cut": "Cut",
82 "menu.edit.delete": "Delete",
83 "menu.edit.emojiSymbols": "Emoji & Symbols",
84 "menu.edit.paste": "Paste",
85 "menu.edit.pasteAndMatchStyle": "Paste And Match Style",
86 "menu.edit.redo": "Redo",
87 "menu.edit.selectAll": "Select All",
88 "menu.edit.speech": "Speech",
89 "menu.edit.startDictation": "Start Dictation",
90 "menu.edit.startSpeaking": "Start Speaking",
91 "menu.edit.stopSpeaking": "Stop Speaking",
92 "menu.edit.undo": "Undo",
93 "menu.file": "File",
94 "menu.help": "Help",
95 "menu.help.changelog": "Changelog",
96 "menu.help.debugInfo": "Copy Debug Information",
97 "menu.help.debugInfoCopiedBody": "Your Debug Information has been copied to your clipboard.",
98 "menu.help.debugInfoCopiedHeadline": "Ferdi Debug Information",
99 "menu.help.learnMore": "Learn More",
100 "menu.help.privacy": "Privacy Statement",
101 "menu.help.support": "Support",
102 "menu.help.tos": "Terms of Service",
103 "menu.services": "Services",
104 "menu.services.activatePreviousService": "Activate previous service",
105 "menu.services.addNewService": "Add New Service...",
106 "menu.services.goHome": "Home",
107 "menu.services.setNextServiceActive": "Activate next service",
108 "menu.todos": "Todos",
109 "menu.todos.enableTodos": "Enable Todos",
110 "menu.view": "View",
111 "menu.view.back": "Back",
112 "menu.view.enterFullScreen": "Enter Full Screen",
113 "menu.view.exitFullScreen": "Exit Full Screen",
114 "menu.view.forward": "Forward",
115 "menu.view.lockFerdi": "Lock Ferdi",
116 "menu.view.openQuickSwitch": "Open Quick Switch",
117 "menu.view.reloadFranz": "Reload Ferdi",
118 "menu.view.reloadService": "Reload Service",
119 "menu.view.resetZoom": "Actual Size",
120 "menu.view.toggleDevTools": "Toggle Developer Tools",
121 "menu.view.toggleFullScreen": "Toggle Full Screen",
122 "menu.view.toggleServiceDevTools": "Toggle Service Developer Tools",
123 "menu.view.toggleTodosDevTools": "Toggle Todos Developer Tools",
124 "menu.view.zoomIn": "Zoom In",
125 "menu.view.zoomOut": "Zoom Out",
126 "menu.window": "Window",
127 "menu.window.close": "Close",
128 "menu.window.minimize": "Minimize",
129 "menu.workspaces": "Workspaces",
130 "menu.workspaces.addNewWorkspace": "Add New Workspace...",
131 "menu.workspaces.closeWorkspaceDrawer": "Close workspace drawer",
132 "menu.workspaces.defaultWorkspace": "All services",
133 "menu.workspaces.openWorkspaceDrawer": "Open workspace drawer",
134 "password.email.label": "電子郵件信箱",
135 "password.headline": "密碼重設",
136 "password.link.login": "登入您的帳戶",
137 "password.link.signup": "建立一個免費帳戶",
138 "password.noUser": "此電子郵件帳戶不存在",
139 "password.submit.label": "送出",
140 "password.successInfo": "請重新確認您的電子郵件信箱",
141 "premiumFeature.button.upgradeAccount": "Upgrade account",
142 "pricing.features.adFree": "Forever ad-free",
143 "pricing.features.appDelays": "No Waiting Screens",
144 "pricing.features.customWebsites": "Add Custom Websites",
145 "pricing.features.onPremise": "On-premise & other Hosted Services",
146 "pricing.features.serviceProxies": "Service Proxies",
147 "pricing.features.spellchecker": "Spellchecker support",
148 "pricing.features.teamManagement": "Team Management",
149 "pricing.features.thirdPartyServices": "Install 3rd party services",
150 "pricing.features.unlimitedServices": "Add unlimited services",
151 "pricing.features.workspaces": "Workspaces",
152 "pricing.plan.free": "Ferdi Free",
153 "pricing.plan.legacy": "Ferdi Premium",
154 "pricing.plan.personal": "Ferdi Personal",
155 "pricing.plan.personal-monthly": "Ferdi Personal Monthly",
156 "pricing.plan.personal-yearly": "Ferdi Personal Yearly",
157 "pricing.plan.pro": "Ferdi Professional",
158 "pricing.plan.pro-monthly": "Ferdi Professional Monthly",
159 "pricing.plan.pro-yearly": "Ferdi Professional Yearly",
160 "pricing.trial.cta.accept": "Yes, upgrade my account to Ferdi Professional",
161 "pricing.trial.cta.skip": "Continue to Ferdi",
162 "pricing.trial.error": "Sorry, we could not activate your trial!",
163 "pricing.trial.features.headline": "Ferdi Professional includes:",
164 "pricing.trial.headline": "Ferdi Professional",
165 "pricing.trial.subheadline": "Your personal welcome offer:",
166 "pricing.trial.terms.automaticTrialEnd": "Your free trial ends automatically after 14 days",
167 "pricing.trial.terms.headline": "No strings attached",
168 "pricing.trial.terms.noCreditCard": "No credit card required",
169 "service.crashHandler.action": "Reload {name}",
170 "service.crashHandler.autoReload": "Trying to automatically restore {name} in {seconds} seconds",
171 "service.crashHandler.headline": "Oh no!",
172 "service.crashHandler.text": "{name} has caused an error.",
173 "service.disabledHandler.action": "Enable {name}",
174 "service.disabledHandler.headline": "{name} is disabled",
175 "service.errorHandler.action": "Reload {name}",
176 "service.errorHandler.editAction": "Edit {name}",
177 "service.errorHandler.headline": "Oh no!",
178 "service.errorHandler.message": "Error",
179 "service.errorHandler.text": "{name} has failed to load.",
180 "service.restrictedHandler.action": "Upgrade Account",
181 "service.restrictedHandler.customUrl.headline": "Ferdi Professional Plan required",
182 "service.restrictedHandler.customUrl.text": "Please upgrade to the Ferdi Professional plan to use custom urls & self hosted services.",
183 "service.restrictedHandler.serviceLimit.headline": "You have reached your service limit.",
184 "service.restrictedHandler.serviceLimit.text": "Please upgrade your account to use more than {count} services.",
185 "service.webviewLoader.loading": "Loading",
186 "services.getStarted": "開始使用",
187 "services.login": "Please login to use Ferdi.",
188 "services.serverInfo": "Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
189 "services.welcome": "歡迎使用 Ferdi",
190 "settings.account.account.editButton": "更改帳戶資訊",
191 "settings.account.accountType.basic": "基本帳戶",
192 "settings.account.accountType.premium": "Premium Supporter Account",
193 "settings.account.buttonSave": "更新帳戶資訊",
194 "settings.account.deleteAccount": "Delete account",
195 "settings.account.deleteEmailSent": "You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
196 "settings.account.deleteInfo": "If you don't need your Ferdi account any longer, you can delete your account and all related data here.",
197 "settings.account.headline": "帳戶",
198 "settings.account.headlineAccount": "帳戶資訊",
199 "settings.account.headlineDangerZone": "Danger Zone",
200 "settings.account.headlineInvoices": "Invoices",
201 "settings.account.headlinePassword": "更改密碼",
202 "settings.account.headlineProfile": "更新帳戶資訊",
203 "settings.account.headlineSubscription": "您的訂閱",
204 "settings.account.headlineTrialUpgrade": "Get the free 14 day Ferdi Professional Trial",
205 "settings.account.headlineUpgradeAccount": "Upgrade your account & get the full Ferdi experience",
206 "settings.account.invoiceDownload": "下載",
207 "settings.account.manageSubscription.label": "管理訂閱",
208 "settings.account.successInfo": "您的更改已經儲存",
209 "settings.account.trial": "Free Trial",
210 "settings.account.trialEndsIn": "Your free trial ends in {duration}.",
211 "settings.account.trialUpdateBillingInfo": "Please update your billing info to continue using {license} after your trial period.",
212 "settings.account.tryReloadServices": "Try again",
213 "settings.account.tryReloadUserInfoRequest": "Try again",
214 "settings.account.upgradeToPro.label": "Upgrade to Ferdi Professional",
215 "settings.account.userInfoRequestFailed": "無法載入帳戶資訊",
216 "settings.account.yourLicense": "Your Ferdi License",
217 "settings.app.accentColorInfo": "Write your accent color in a CSS-compatible format. (Default: #7367f0)",
218 "settings.app.buttonClearAllCache": "Clear cache",
219 "settings.app.buttonInstallUpdate": "重新啟動並且更新",
220 "settings.app.buttonSearchForUpdate": "Check for updates",
221 "settings.app.cacheInfo": "Ferdi cache is currently using {size} of disk space.",
222 "settings.app.currentVersion": "當前版本:",
223 "settings.app.form.accentColor": "Accent color",
224 "settings.app.form.autoLaunchInBackground": "背景啟動",
225 "settings.app.form.autoLaunchOnStart": "開機時啟動",
226 "settings.app.form.beta": "包含開發中版本",
227 "settings.app.form.darkMode": "Join the Dark Side",
228 "settings.app.form.enableGPUAcceleration": "Enable GPU Acceleration",
229 "settings.app.form.enableLock": "Enable Ferdi password lock",
230 "settings.app.form.enableSpellchecking": "Enable spell checking",
231 "settings.app.form.enableSystemTray": "在系統匣上顯示",
232 "settings.app.form.enableTodos": "Enable Ferdi Todos",
233 "settings.app.form.hibernate": "Enable service hibernation",
234 "settings.app.form.hibernationStrategy": "Hibernation strategy",
235 "settings.app.form.keepAllWorkspacesLoaded": "Keep all workspaces loaded",
236 "settings.app.form.language": "語言",
237 "settings.app.form.lockPassword": "Ferdi Lock password",
238 "settings.app.form.minimizeToSystemTray": "最小化至系統匣",
239 "settings.app.form.noUpdates": "Disable updates",
240 "settings.app.form.privateNotifications": "Don't show message content in notifications",
241 "settings.app.form.runInBackground": "關閉時保持在背景運作",
242 "settings.app.form.scheduledDNDEnabled": "Enable scheduled Do-not-Disturb",
243 "settings.app.form.scheduledDNDEnd": "To",
244 "settings.app.form.scheduledDNDStart": "From",
245 "settings.app.form.server": "Server",
246 "settings.app.form.showDisabledServices": "Display disabled services tabs",
247 "settings.app.form.showMessagesBadgesWhenMuted": "Show unread message badge when notifications are disabled",
248 "settings.app.form.showServiceNavigationBar": "Always show service navigation bar",
249 "settings.app.form.todoServer": "Todo Server",
250 "settings.app.form.universalDarkMode": "Enable universal Dark Mode",
251 "settings.app.headline": "Settings",
252 "settings.app.headlineAdvanced": "Advanced",
253 "settings.app.headlineAppearance": "Appearance",
254 "settings.app.headlineGeneral": "一般",
255 "settings.app.headlineLanguage": "語言",
256 "settings.app.headlineUpdates": "更新",
257 "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.",
258 "settings.app.languageDisclaimer": "Official translations are English & German. All other languages are community based translations.",
259 "settings.app.lockInfo": "Ferdi password lock allows you to keep your messages protected.\nUsing Ferdi 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.",
260 "settings.app.lockedPassword": "Ferdi Lock Password",
261 "settings.app.lockedPasswordInfo": "Please make sure to set a password you'll remember.\nIf you loose this password, you will have to reinstall Ferdi.",
262 "settings.app.restartRequired": "Changes require restart",
263 "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.",
264 "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.",
265 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
266 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.",
267 "settings.app.subheadlineCache": "Cache",
268 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
269 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",
270 "settings.app.universalDarkModeInfo": "Universal Dark Mode tries to dynamically generate dark mode styles for services that are otherwise not currently supported.",
271 "settings.app.updateStatusAvailable": "有可用更新,下載中...",
272 "settings.app.updateStatusSearching": "檢查更新中...",
273 "settings.app.updateStatusUpToDate": "已經是最新版本了",
274 "settings.invite.headline": "Invite Friends",
275 "settings.navigation.account": "帳戶",
276 "settings.navigation.availableServices": "可用服務",
277 "settings.navigation.logout": "登出",
278 "settings.navigation.settings": "Settings",
279 "settings.navigation.supportFerdi": "Support Ferdi",
280 "settings.navigation.team": "Manage Team",
281 "settings.navigation.yourServices": "您的服務",
282 "settings.navigation.yourWorkspaces": "Your workspaces",
283 "settings.recipes.all": "All services",
284 "settings.recipes.custom": "Custom Services",
285 "settings.recipes.customService.headline.communityRecipes": "Community 3rd Party Recipes",
286 "settings.recipes.customService.headline.customRecipes": "Custom 3rd Party Recipes",
287 "settings.recipes.customService.headline.devRecipes": "Your Development Service Recipes",
288 "settings.recipes.customService.intro": "To add a custom service, copy the service recipe to:",
289 "settings.recipes.customService.openDevDocs": "Developer Documentation",
290 "settings.recipes.customService.openFolder": "Open folder",
291 "settings.recipes.headline": "可用服務",
292 "settings.recipes.missingService": "Missing a service?",
293 "settings.recipes.mostPopular": "熱門",
294 "settings.recipes.nothingFound": "抱歉,找不到您所要的服務",
295 "settings.recipes.servicesSuccessfulAddedInfo": "新增服務成功",
296 "settings.searchService": "Search service",
297 "settings.service.error.goBack": "返回",
298 "settings.service.error.headline": "Error",
299 "settings.service.error.message": "無法載入服務元件",
300 "settings.service.form.addServiceHeadline": "新增 {name}",
301 "settings.service.form.availableServices": "可用服務",
302 "settings.service.form.customUrl": "Custom server",
303 "settings.service.form.customUrlPremiumInfo": "To add self hosted services, you need a Ferdi Premium Supporter Account.",
304 "settings.service.form.customUrlUpgradeAccount": "升級帳戶",
305 "settings.service.form.customUrlValidationError": "Could not validate custom {name} server.",
306 "settings.service.form.deleteButton": "刪除",
307 "settings.service.form.editServiceHeadline": "Edit {name}",
308 "settings.service.form.enableAudio": "Enable audio",
309 "settings.service.form.enableBadge": "Show unread message badges",
310 "settings.service.form.enableDarkMode": "Enable Dark Mode",
311 "settings.service.form.enableNotification": "啟用通知",
312 "settings.service.form.enableService": "啟用服務",
313 "settings.service.form.headlineBadges": "Unread message badges",
314 "settings.service.form.headlineGeneral": "一般",
315 "settings.service.form.headlineNotifications": "Notifications",
316 "settings.service.form.icon": "Custom icon",
317 "settings.service.form.iconDelete": "Delete",
318 "settings.service.form.iconUpload": "Drop your image, or click here",
319 "settings.service.form.indirectMessageInfo": "除了 @username, @channel, @here 之外,當您參與的頻道有訊息時,就會通知",
320 "settings.service.form.indirectMessages": "針對全部訊息顯示通知",
321 "settings.service.form.isMutedInfo": "When disabled, all notification sounds and audio playback are muted",
322 "settings.service.form.name": "名子",
323 "settings.service.form.openDarkmodeCss": "Open darkmode.css",
324 "settings.service.form.proxy.headline": "HTTP/HTTPS Proxy Settings",
325 "settings.service.form.proxy.host": "Proxy Host/IP",
326 "settings.service.form.proxy.info": "Proxy settings will not synced with the Ferdi servers.",
327 "settings.service.form.proxy.isEnabled": "Use Proxy",
328 "settings.service.form.proxy.password": "Password (optional)",
329 "settings.service.form.proxy.port": "Port",
330 "settings.service.form.proxy.restartInfo": "Please restart Ferdi after changing proxy Settings.",
331 "settings.service.form.proxy.user": "User (optional)",
332 "settings.service.form.saveButton": "儲存",
333 "settings.service.form.tabHosted": "Hosted",
334 "settings.service.form.tabOnPremise": "Self hosted ⭐️",
335 "settings.service.form.team": "Team",
336 "settings.service.form.useHostedService": "Use the hosted {name} service.",
337 "settings.service.form.yourServices": "您的服務",
338 "settings.services.deletedInfo": "服務已刪除",
339 "settings.services.discoverServices": "服務列表",
340 "settings.services.headline": "您的服務",
341 "settings.services.noServicesAdded": "您還沒加入任何服務",
342 "settings.services.servicesRequestFailed": "Could not load your services",
343 "settings.services.tooltip.isDisabled": "已停用服務",
344 "settings.services.tooltip.isMuted": "All sounds are muted",
345 "settings.services.tooltip.notificationsDisabled": "已停用通知",
346 "settings.services.updatedInfo": "您的更改已經儲存",
347 "settings.supportFerdi.github": "Star on GitHub",
348 "settings.supportFerdi.headline": "Support Ferdi",
349 "settings.supportFerdi.openCollective": "Support our Open Collective",
350 "settings.supportFerdi.share": "Tell your Friends",
351 "settings.supportFerdi.title": "Do you like Ferdi? Spread the love!",
352 "settings.team.contentHeadline": "Ferdi for Teams",
353 "settings.team.copy": "Ferdi for Teams gives you the option to invite co-workers to your team by sending them email invitations and manage their subscriptions in your account’s preferences. Don’t waste time setting up subscriptions for every team member individually, forget about multiple invoices and different billing cycles - one team to rule them all!",
354 "settings.team.headline": "Team",
355 "settings.team.intro": "You and your team use Ferdi? You can now manage Premium subscriptions for as many colleagues, friends or family members as you want, all from within one account.",
356 "settings.team.manageAction": "Manage your Team on getferdi.com",
357 "settings.team.upgradeAction": "Upgrade your Account",
358 "settings.user.form.accountType.company": "公司",
359 "settings.user.form.accountType.individual": "個人",
360 "settings.user.form.accountType.label": "帳戶類型",
361 "settings.user.form.accountType.non-profit": "非營利",
362 "settings.user.form.currentPassword": "舊密碼",
363 "settings.user.form.email": "電子郵件信箱",
364 "settings.user.form.firstname": "名子",
365 "settings.user.form.lastname": "姓氏",
366 "settings.user.form.newPassword": "新密碼",
367 "settings.workspace.add.form.name": "名子",
368 "settings.workspace.add.form.submitButton": "Create workspace",
369 "settings.workspace.form.buttonDelete": "Delete workspace",
370 "settings.workspace.form.buttonSave": "Save workspace",
371 "settings.workspace.form.keepLoaded": "Keep this workspace loaded*",
372 "settings.workspace.form.keepLoadedInfo": "*This option will be overwritten by the global \"Keep all workspaces loaded\" option.",
373 "settings.workspace.form.name": "名子",
374 "settings.workspace.form.servicesInWorkspaceHeadline": "Services in this Workspace",
375 "settings.workspace.form.yourWorkspaces": "Your workspaces",
376 "settings.workspaces.deletedInfo": "Workspace has been deleted",
377 "settings.workspaces.headline": "Your workspaces",
378 "settings.workspaces.noWorkspacesAdded": "You haven't added any workspaces yet.",
379 "settings.workspaces.tryReloadWorkspaces": "Try again",
380 "settings.workspaces.updatedInfo": "您的更改已經儲存",
381 "settings.workspaces.workspaceFeatureHeadline": "Less is More: Introducing Ferdi Workspaces",
382 "settings.workspaces.workspaceFeatureInfo": "Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time. You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.",
383 "settings.workspaces.workspacesRequestFailed": "Could not load your workspaces",
384 "sidebar.addNewService": "Add new service",
385 "sidebar.closeTodosDrawer": "Close Ferdi Todos",
386 "sidebar.closeWorkspaceDrawer": "Close workspace drawer",
387 "sidebar.lockFerdi": "Lock Ferdi",
388 "sidebar.muteApp": "Disable notifications & audio",
389 "sidebar.openTodosDrawer": "Open Ferdi Todos",
390 "sidebar.openWorkspaceDrawer": "Open workspace drawer",
391 "sidebar.settings": "Settings",
392 "sidebar.unmuteApp": "Enable notifications & audio",
393 "signup.email.label": "電子郵件信箱",
394 "signup.emailDuplicate": "此電子郵件信箱已被註冊",
395 "signup.firstname.label": "名子",
396 "signup.headline": "註冊",
397 "signup.lastname.label": "姓氏",
398 "signup.legal.info": "在建立帳戶同時,您同意:",
399 "signup.legal.privacy": "Privacy Statement",
400 "signup.legal.terms": "服務條款",
401 "signup.link.login": "您已有一個帳戶,請問是否要登入?",
402 "signup.password.label": "Password",
403 "signup.submit.label": "建立帳戶",
404 "subscription.cta.activateTrial": "Yes, start the free Ferdi Professional trial",
405 "subscription.cta.allOptions": "See all options",
406 "subscription.cta.choosePlan": "Choose your plan",
407 "subscription.includedProFeatures": "The Ferdi Professional Plan includes:",
408 "subscription.teaser.includedFeatures": "Paid Ferdi Plans include:",
409 "subscription.teaser.intro": "Ferdi 5 comes with a wide range of new features to boost up your everyday communication - batteries included. Check out our new plans and find out which one suits you most!",
410 "subscriptionPopup.buttonCancel": "取消",
411 "subscriptionPopup.buttonDone": "完成",
412 "tabs.item.deleteService": "刪除",
413 "tabs.item.disableAudio": "Disable audio",
414 "tabs.item.disableNotifications": "停用通知",
415 "tabs.item.disableService": "停用服務",
416 "tabs.item.edit": "Edit",
417 "tabs.item.enableAudio": "Enable audio",
418 "tabs.item.enableNotification": "啟用通知",
419 "tabs.item.enableService": "啟用服務",
420 "tabs.item.reload": "Reload",
421 "validation.email": "{field} is not valid",
422 "validation.minLength": "{field} should be at least {length} characters long",
423 "validation.oneRequired": "At least one is required",
424 "validation.required": "{field} is required",
425 "validation.url": "{field} is not a valid URL",
426 "webControls.back": "Back",
427 "webControls.forward": "Forward",
428 "webControls.goHome": "Home",
429 "webControls.openInBrowser": "Open in Browser",
430 "webControls.reload": "Reload",
431 "welcome.loginButton": "登入",
432 "welcome.signupButton": "建立一個免費帳戶",
433 "workspaceDrawer.addNewWorkspaceLabel": "Add new workspace",
434 "workspaceDrawer.allServices": "All services",
435 "workspaceDrawer.headline": "Workspaces",
436 "workspaceDrawer.item.contextMenuEdit": "edit",
437 "workspaceDrawer.item.noServicesAddedYet": "No services added yet",
438 "workspaceDrawer.premiumCtaButtonLabel": "Create your first workspace",
439 "workspaceDrawer.proFeatureBadge": "Premium feature",
440 "workspaceDrawer.reactivatePremiumAccountLabel": "Reactivate premium account",
441 "workspaceDrawer.workspaceFeatureInfo": "<p>Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.</p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.</p>",
442 "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings",
443 "workspaces.switchingIndicator.switchingTo": "Switching to"
444}
diff --git a/src/i18n/locales/zh.json b/src/i18n/locales/zh.json
index 2e3034367..628880d9f 100644
--- a/src/i18n/locales/zh.json
+++ b/src/i18n/locales/zh.json
@@ -265,7 +265,7 @@
265 "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.", 265 "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.",
266 "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.", 266 "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.",
267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.", 267 "settings.app.serverInfo": "We advice you to logout after changing your server as your settings might not be saved otherwise.",
268 "settings.app.serverMoneyInfo": "You are using the official Ferdi Server for Ferdi.\nWe know that Ferdi allows you to use all its features for free but you are still using Ferdi's server resources - which Ferdi's creator has to pay for.\nPlease still consider [Link 1]paying for a Ferdi 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 Ferdi's recipe store, server resources and its development.", 268 "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.",
269 "settings.app.subheadlineCache": "Cache", 269 "settings.app.subheadlineCache": "Cache",
270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)", 270 "settings.app.todoServerInfo": "This server will be used for the \"Ferdi Todo\" feature. (default: https://app.franztodos.com)",
271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.", 271 "settings.app.translationHelp": "Help us to translate Ferdi into your language.",