aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-03-07 16:13:53 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-03-07 16:13:53 +0100
commitae77c7c5dee548bd5032c80a0ad8aa294e7e4ff2 (patch)
tree81b0a642ac0a7d55b9f095873a857e5263b32dd7 /src
parentMerge branch 'develop' into chore/react-intl-manager (diff)
downloadferdium-app-ae77c7c5dee548bd5032c80a0ad8aa294e7e4ff2.tar.gz
ferdium-app-ae77c7c5dee548bd5032c80a0ad8aa294e7e4ff2.tar.zst
ferdium-app-ae77c7c5dee548bd5032c80a0ad8aa294e7e4ff2.zip
Fix unused i18n strings
Diffstat (limited to 'src')
-rw-r--r--src/components/settings/account/AccountDashboard.js4
-rw-r--r--src/i18n/globalMessages.js4
-rw-r--r--src/i18n/locales/defaultMessages.json78
-rw-r--r--src/i18n/locales/en-US.json8
-rw-r--r--src/i18n/messages/src/components/auth/Import.json2
-rw-r--r--src/i18n/messages/src/components/auth/Invite.json2
-rw-r--r--src/i18n/messages/src/components/auth/Login.json2
-rw-r--r--src/i18n/messages/src/components/auth/Password.json2
-rw-r--r--src/i18n/messages/src/components/auth/Pricing.json2
-rw-r--r--src/i18n/messages/src/components/auth/Signup.json2
-rw-r--r--src/i18n/messages/src/components/auth/Welcome.json2
-rw-r--r--src/i18n/messages/src/components/layout/AppLayout.json2
-rw-r--r--src/i18n/messages/src/components/layout/Sidebar.json2
-rw-r--r--src/i18n/messages/src/components/services/content/ErrorHandlers/WebviewErrorHandler.json2
-rw-r--r--src/i18n/messages/src/components/services/content/ServiceDisabled.json2
-rw-r--r--src/i18n/messages/src/components/services/content/Services.json2
-rw-r--r--src/i18n/messages/src/components/services/content/WebviewCrashHandler.json2
-rw-r--r--src/i18n/messages/src/components/services/tabs/TabItem.json2
-rw-r--r--src/i18n/messages/src/components/settings/account/AccountDashboard.json43
-rw-r--r--src/i18n/messages/src/components/settings/navigation/SettingsNavigation.json2
-rw-r--r--src/i18n/messages/src/components/settings/recipes/RecipesDashboard.json2
-rw-r--r--src/i18n/messages/src/components/settings/services/EditServiceForm.json2
-rw-r--r--src/i18n/messages/src/components/settings/services/ServiceError.json2
-rw-r--r--src/i18n/messages/src/components/settings/services/ServiceItem.json2
-rw-r--r--src/i18n/messages/src/components/settings/services/ServicesDashboard.json2
-rw-r--r--src/i18n/messages/src/components/settings/settings/EditSettingsForm.json2
-rw-r--r--src/i18n/messages/src/components/settings/user/EditUserForm.json2
-rw-r--r--src/i18n/messages/src/components/subscription/SubscriptionForm.json2
-rw-r--r--src/i18n/messages/src/components/subscription/SubscriptionPopup.json2
-rw-r--r--src/i18n/messages/src/components/ui/PremiumFeatureContainer/index.json2
-rw-r--r--src/i18n/messages/src/components/util/ErrorBoundary/index.json2
-rw-r--r--src/i18n/messages/src/containers/settings/EditServiceScreen.json2
-rw-r--r--src/i18n/messages/src/containers/settings/EditSettingsScreen.json2
-rw-r--r--src/i18n/messages/src/containers/settings/EditUserScreen.json2
-rw-r--r--src/i18n/messages/src/features/delayApp/Component.json2
-rw-r--r--src/i18n/messages/src/features/shareFranz/Component.json2
-rw-r--r--src/i18n/messages/src/helpers/validation-helpers.json2
-rw-r--r--src/i18n/messages/src/i18n/globalMessages.json39
-rw-r--r--src/i18n/messages/src/lib/Menu.json2
39 files changed, 90 insertions, 152 deletions
diff --git a/src/components/settings/account/AccountDashboard.js b/src/components/settings/account/AccountDashboard.js
index f2d3ca8c0..181b95c8c 100644
--- a/src/components/settings/account/AccountDashboard.js
+++ b/src/components/settings/account/AccountDashboard.js
@@ -44,10 +44,6 @@ const messages = defineMessages({
44 id: 'settings.account.accountType.premium', 44 id: 'settings.account.accountType.premium',
45 defaultMessage: '!!!Premium Supporter Account', 45 defaultMessage: '!!!Premium Supporter Account',
46 }, 46 },
47 accountTypeEnterprise: {
48 id: 'settings.account.accountType.enterprise',
49 defaultMessage: '!!!Enterprise Account',
50 },
51 accountEditButton: { 47 accountEditButton: {
52 id: 'settings.account.account.editButton', 48 id: 'settings.account.account.editButton',
53 defaultMessage: '!!!Edit Account', 49 defaultMessage: '!!!Edit Account',
diff --git a/src/i18n/globalMessages.js b/src/i18n/globalMessages.js
index 7b1618602..1b5ece223 100644
--- a/src/i18n/globalMessages.js
+++ b/src/i18n/globalMessages.js
@@ -1,10 +1,6 @@
1import { defineMessages } from 'react-intl'; 1import { defineMessages } from 'react-intl';
2 2
3export default defineMessages({ 3export default defineMessages({
4 upgradeAccount: {
5 id: 'global.premium.upgradeAccount',
6 defaultMessage: '!!!Please upgrade your account to add a new service.',
7 },
8 APIUnhealthy: { 4 APIUnhealthy: {
9 id: 'global.api.unhealthy', 5 id: 'global.api.unhealthy',
10 defaultMessage: '!!!Can\'t connect to Franz Online Services', 6 defaultMessage: '!!!Can\'t connect to Franz Online Services',
diff --git a/src/i18n/locales/defaultMessages.json b/src/i18n/locales/defaultMessages.json
index 11fd88f58..065398dc6 100644
--- a/src/i18n/locales/defaultMessages.json
+++ b/src/i18n/locales/defaultMessages.json
@@ -1177,107 +1177,94 @@
1177 } 1177 }
1178 }, 1178 },
1179 { 1179 {
1180 "defaultMessage": "!!!Enterprise Account",
1181 "end": {
1182 "column": 3,
1183 "line": 50
1184 },
1185 "file": "src/components/settings/account/AccountDashboard.js",
1186 "id": "settings.account.accountType.enterprise",
1187 "start": {
1188 "column": 25,
1189 "line": 47
1190 }
1191 },
1192 {
1193 "defaultMessage": "!!!Edit Account", 1180 "defaultMessage": "!!!Edit Account",
1194 "end": { 1181 "end": {
1195 "column": 3, 1182 "column": 3,
1196 "line": 54 1183 "line": 50
1197 }, 1184 },
1198 "file": "src/components/settings/account/AccountDashboard.js", 1185 "file": "src/components/settings/account/AccountDashboard.js",
1199 "id": "settings.account.account.editButton", 1186 "id": "settings.account.account.editButton",
1200 "start": { 1187 "start": {
1201 "column": 21, 1188 "column": 21,
1202 "line": 51 1189 "line": 47
1203 } 1190 }
1204 }, 1191 },
1205 { 1192 {
1206 "defaultMessage": "!!!Download", 1193 "defaultMessage": "!!!Download",
1207 "end": { 1194 "end": {
1208 "column": 3, 1195 "column": 3,
1209 "line": 58 1196 "line": 54
1210 }, 1197 },
1211 "file": "src/components/settings/account/AccountDashboard.js", 1198 "file": "src/components/settings/account/AccountDashboard.js",
1212 "id": "settings.account.invoiceDownload", 1199 "id": "settings.account.invoiceDownload",
1213 "start": { 1200 "start": {
1214 "column": 19, 1201 "column": 19,
1215 "line": 55 1202 "line": 51
1216 } 1203 }
1217 }, 1204 },
1218 { 1205 {
1219 "defaultMessage": "!!!Could not load user information", 1206 "defaultMessage": "!!!Could not load user information",
1220 "end": { 1207 "end": {
1221 "column": 3, 1208 "column": 3,
1222 "line": 62 1209 "line": 58
1223 }, 1210 },
1224 "file": "src/components/settings/account/AccountDashboard.js", 1211 "file": "src/components/settings/account/AccountDashboard.js",
1225 "id": "settings.account.userInfoRequestFailed", 1212 "id": "settings.account.userInfoRequestFailed",
1226 "start": { 1213 "start": {
1227 "column": 25, 1214 "column": 25,
1228 "line": 59 1215 "line": 55
1229 } 1216 }
1230 }, 1217 },
1231 { 1218 {
1232 "defaultMessage": "!!!Try again", 1219 "defaultMessage": "!!!Try again",
1233 "end": { 1220 "end": {
1234 "column": 3, 1221 "column": 3,
1235 "line": 66 1222 "line": 62
1236 }, 1223 },
1237 "file": "src/components/settings/account/AccountDashboard.js", 1224 "file": "src/components/settings/account/AccountDashboard.js",
1238 "id": "settings.account.tryReloadUserInfoRequest", 1225 "id": "settings.account.tryReloadUserInfoRequest",
1239 "start": { 1226 "start": {
1240 "column": 28, 1227 "column": 28,
1241 "line": 63 1228 "line": 59
1242 } 1229 }
1243 }, 1230 },
1244 { 1231 {
1245 "defaultMessage": "!!!Delete account", 1232 "defaultMessage": "!!!Delete account",
1246 "end": { 1233 "end": {
1247 "column": 3, 1234 "column": 3,
1248 "line": 70 1235 "line": 66
1249 }, 1236 },
1250 "file": "src/components/settings/account/AccountDashboard.js", 1237 "file": "src/components/settings/account/AccountDashboard.js",
1251 "id": "settings.account.deleteAccount", 1238 "id": "settings.account.deleteAccount",
1252 "start": { 1239 "start": {
1253 "column": 17, 1240 "column": 17,
1254 "line": 67 1241 "line": 63
1255 } 1242 }
1256 }, 1243 },
1257 { 1244 {
1258 "defaultMessage": "!!!If you don't need your Franz account any longer, you can delete your account and all related data here.", 1245 "defaultMessage": "!!!If you don't need your Franz account any longer, you can delete your account and all related data here.",
1259 "end": { 1246 "end": {
1260 "column": 3, 1247 "column": 3,
1261 "line": 74 1248 "line": 70
1262 }, 1249 },
1263 "file": "src/components/settings/account/AccountDashboard.js", 1250 "file": "src/components/settings/account/AccountDashboard.js",
1264 "id": "settings.account.deleteInfo", 1251 "id": "settings.account.deleteInfo",
1265 "start": { 1252 "start": {
1266 "column": 14, 1253 "column": 14,
1267 "line": 71 1254 "line": 67
1268 } 1255 }
1269 }, 1256 },
1270 { 1257 {
1271 "defaultMessage": "!!!You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 1258 "defaultMessage": "!!!You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
1272 "end": { 1259 "end": {
1273 "column": 3, 1260 "column": 3,
1274 "line": 78 1261 "line": 74
1275 }, 1262 },
1276 "file": "src/components/settings/account/AccountDashboard.js", 1263 "file": "src/components/settings/account/AccountDashboard.js",
1277 "id": "settings.account.deleteEmailSent", 1264 "id": "settings.account.deleteEmailSent",
1278 "start": { 1265 "start": {
1279 "column": 19, 1266 "column": 19,
1280 "line": 75 1267 "line": 71
1281 } 1268 }
1282 } 1269 }
1283 ], 1270 ],
@@ -3248,94 +3235,81 @@
3248 { 3235 {
3249 "descriptors": [ 3236 "descriptors": [
3250 { 3237 {
3251 "defaultMessage": "!!!Please upgrade your account to add a new service.",
3252 "end": {
3253 "column": 3,
3254 "line": 7
3255 },
3256 "file": "src/i18n/globalMessages.js",
3257 "id": "global.premium.upgradeAccount",
3258 "start": {
3259 "column": 18,
3260 "line": 4
3261 }
3262 },
3263 {
3264 "defaultMessage": "!!!Can't connect to Franz Online Services", 3238 "defaultMessage": "!!!Can't connect to Franz Online Services",
3265 "end": { 3239 "end": {
3266 "column": 3, 3240 "column": 3,
3267 "line": 11 3241 "line": 7
3268 }, 3242 },
3269 "file": "src/i18n/globalMessages.js", 3243 "file": "src/i18n/globalMessages.js",
3270 "id": "global.api.unhealthy", 3244 "id": "global.api.unhealthy",
3271 "start": { 3245 "start": {
3272 "column": 16, 3246 "column": 16,
3273 "line": 8 3247 "line": 4
3274 } 3248 }
3275 }, 3249 },
3276 { 3250 {
3277 "defaultMessage": "!!!You are not connected to the internet.", 3251 "defaultMessage": "!!!You are not connected to the internet.",
3278 "end": { 3252 "end": {
3279 "column": 3, 3253 "column": 3,
3280 "line": 15 3254 "line": 11
3281 }, 3255 },
3282 "file": "src/i18n/globalMessages.js", 3256 "file": "src/i18n/globalMessages.js",
3283 "id": "global.notConnectedToTheInternet", 3257 "id": "global.notConnectedToTheInternet",
3284 "start": { 3258 "start": {
3285 "column": 29, 3259 "column": 29,
3286 "line": 12 3260 "line": 8
3287 } 3261 }
3288 }, 3262 },
3289 { 3263 {
3290 "defaultMessage": "!!!Spell checking language", 3264 "defaultMessage": "!!!Spell checking language",
3291 "end": { 3265 "end": {
3292 "column": 3, 3266 "column": 3,
3293 "line": 19 3267 "line": 15
3294 }, 3268 },
3295 "file": "src/i18n/globalMessages.js", 3269 "file": "src/i18n/globalMessages.js",
3296 "id": "global.spellchecking.language", 3270 "id": "global.spellchecking.language",
3297 "start": { 3271 "start": {
3298 "column": 24, 3272 "column": 24,
3299 "line": 16 3273 "line": 12
3300 } 3274 }
3301 }, 3275 },
3302 { 3276 {
3303 "defaultMessage": "!!!Use System Default ({default})", 3277 "defaultMessage": "!!!Use System Default ({default})",
3304 "end": { 3278 "end": {
3305 "column": 3, 3279 "column": 3,
3306 "line": 23 3280 "line": 19
3307 }, 3281 },
3308 "file": "src/i18n/globalMessages.js", 3282 "file": "src/i18n/globalMessages.js",
3309 "id": "global.spellchecker.useDefault", 3283 "id": "global.spellchecker.useDefault",
3310 "start": { 3284 "start": {
3311 "column": 29, 3285 "column": 29,
3312 "line": 20 3286 "line": 16
3313 } 3287 }
3314 }, 3288 },
3315 { 3289 {
3316 "defaultMessage": "!!!Detect language automatically", 3290 "defaultMessage": "!!!Detect language automatically",
3317 "end": { 3291 "end": {
3318 "column": 3, 3292 "column": 3,
3319 "line": 27 3293 "line": 23
3320 }, 3294 },
3321 "file": "src/i18n/globalMessages.js", 3295 "file": "src/i18n/globalMessages.js",
3322 "id": "global.spellchecking.autodetect", 3296 "id": "global.spellchecking.autodetect",
3323 "start": { 3297 "start": {
3324 "column": 34, 3298 "column": 34,
3325 "line": 24 3299 "line": 20
3326 } 3300 }
3327 }, 3301 },
3328 { 3302 {
3329 "defaultMessage": "!!!Automatic", 3303 "defaultMessage": "!!!Automatic",
3330 "end": { 3304 "end": {
3331 "column": 3, 3305 "column": 3,
3332 "line": 31 3306 "line": 27
3333 }, 3307 },
3334 "file": "src/i18n/globalMessages.js", 3308 "file": "src/i18n/globalMessages.js",
3335 "id": "global.spellchecking.autodetect.short", 3309 "id": "global.spellchecking.autodetect.short",
3336 "start": { 3310 "start": {
3337 "column": 39, 3311 "column": 39,
3338 "line": 28 3312 "line": 24
3339 } 3313 }
3340 } 3314 }
3341 ], 3315 ],
diff --git a/src/i18n/locales/en-US.json b/src/i18n/locales/en-US.json
index bbf0997db..af6edd2df 100644
--- a/src/i18n/locales/en-US.json
+++ b/src/i18n/locales/en-US.json
@@ -13,7 +13,6 @@
13 "feature.shareFranz.text": "Tell your friends and colleagues how awesome Franz is and help us to spread the word.", 13 "feature.shareFranz.text": "Tell your friends and colleagues how awesome Franz is and help us to spread the word.",
14 "global.api.unhealthy": "Can't connect to Franz online services", 14 "global.api.unhealthy": "Can't connect to Franz online services",
15 "global.notConnectedToTheInternet": "You are not connected to the internet.", 15 "global.notConnectedToTheInternet": "You are not connected to the internet.",
16 "global.premium.upgradeAccount": "!!!Please upgrade your account to add a new service.",
17 "global.spellchecker.useDefault": "Use System Default ({default})", 16 "global.spellchecker.useDefault": "Use System Default ({default})",
18 "global.spellchecking.autodetect": "Detect language automatically", 17 "global.spellchecking.autodetect": "Detect language automatically",
19 "global.spellchecking.autodetect.short": "Automatic", 18 "global.spellchecking.autodetect.short": "Automatic",
@@ -113,7 +112,6 @@
113 "services.welcome": "Welcome to Franz", 112 "services.welcome": "Welcome to Franz",
114 "settings.account.account.editButton": "Edit account", 113 "settings.account.account.editButton": "Edit account",
115 "settings.account.accountType.basic": "Basic Account", 114 "settings.account.accountType.basic": "Basic Account",
116 "settings.account.accountType.enterprise": "!!!Enterprise Account",
117 "settings.account.accountType.premium": "Premium Supporter Account", 115 "settings.account.accountType.premium": "Premium Supporter Account",
118 "settings.account.buttonSave": "Update profile", 116 "settings.account.buttonSave": "Update profile",
119 "settings.account.deleteAccount": "Delete account", 117 "settings.account.deleteAccount": "Delete account",
@@ -130,7 +128,7 @@
130 "settings.account.invoiceDownload": "Download", 128 "settings.account.invoiceDownload": "Download",
131 "settings.account.manageSubscription.label": "Manage your subscription", 129 "settings.account.manageSubscription.label": "Manage your subscription",
132 "settings.account.successInfo": "Your changes have been saved", 130 "settings.account.successInfo": "Your changes have been saved",
133 "settings.account.tryReloadServices": "!!!Try again", 131 "settings.account.tryReloadServices": "Try again",
134 "settings.account.tryReloadUserInfoRequest": "Try again", 132 "settings.account.tryReloadUserInfoRequest": "Try again",
135 "settings.account.userInfoRequestFailed": "Could not load user information", 133 "settings.account.userInfoRequestFailed": "Could not load user information",
136 "settings.app.buttonClearAllCache": "Clear cache", 134 "settings.app.buttonClearAllCache": "Clear cache",
@@ -221,7 +219,7 @@
221 "settings.services.discoverServices": "Discover services", 219 "settings.services.discoverServices": "Discover services",
222 "settings.services.headline": "Your services", 220 "settings.services.headline": "Your services",
223 "settings.services.noServicesAdded": "You haven't added any services yet.", 221 "settings.services.noServicesAdded": "You haven't added any services yet.",
224 "settings.services.servicesRequestFailed": "!!!Could not load your services", 222 "settings.services.servicesRequestFailed": "Could not load your services",
225 "settings.services.tooltip.isDisabled": "Service is disabled", 223 "settings.services.tooltip.isDisabled": "Service is disabled",
226 "settings.services.tooltip.isMuted": "All sounds are muted", 224 "settings.services.tooltip.isMuted": "All sounds are muted",
227 "settings.services.tooltip.notificationsDisabled": "Notifications are disabled", 225 "settings.services.tooltip.notificationsDisabled": "Notifications are disabled",
@@ -277,7 +275,7 @@
277 "tabs.item.reload": "Reload", 275 "tabs.item.reload": "Reload",
278 "validation.email": "{field} is not valid", 276 "validation.email": "{field} is not valid",
279 "validation.minLength": "{field} should be at least {length} characters long", 277 "validation.minLength": "{field} should be at least {length} characters long",
280 "validation.oneRequired": "!!!At least one is required", 278 "validation.oneRequired": "At least one is required",
281 "validation.required": "{field} is required", 279 "validation.required": "{field} is required",
282 "validation.url": "{field} is not a valid URL", 280 "validation.url": "{field} is not a valid URL",
283 "welcome.loginButton": "Login to your account", 281 "welcome.loginButton": "Login to your account",
diff --git a/src/i18n/messages/src/components/auth/Import.json b/src/i18n/messages/src/components/auth/Import.json
index 73684b6c0..264fc729b 100644
--- a/src/i18n/messages/src/components/auth/Import.json
+++ b/src/i18n/messages/src/components/auth/Import.json
@@ -51,4 +51,4 @@
51 "column": 3 51 "column": 3
52 } 52 }
53 } 53 }
54] 54] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/auth/Invite.json b/src/i18n/messages/src/components/auth/Invite.json
index 12d2b6be0..57c9bddcf 100644
--- a/src/i18n/messages/src/components/auth/Invite.json
+++ b/src/i18n/messages/src/components/auth/Invite.json
@@ -90,4 +90,4 @@
90 "column": 3 90 "column": 3
91 } 91 }
92 } 92 }
93] 93] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/auth/Login.json b/src/i18n/messages/src/components/auth/Login.json
index 1a86cb872..177f6000b 100644
--- a/src/i18n/messages/src/components/auth/Login.json
+++ b/src/i18n/messages/src/components/auth/Login.json
@@ -116,4 +116,4 @@
116 "column": 3 116 "column": 3
117 } 117 }
118 } 118 }
119] 119] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/auth/Password.json b/src/i18n/messages/src/components/auth/Password.json
index 40be13c15..f335b3acb 100644
--- a/src/i18n/messages/src/components/auth/Password.json
+++ b/src/i18n/messages/src/components/auth/Password.json
@@ -90,4 +90,4 @@
90 "column": 3 90 "column": 3
91 } 91 }
92 } 92 }
93] 93] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/auth/Pricing.json b/src/i18n/messages/src/components/auth/Pricing.json
index 58c4a75b9..f711a55b4 100644
--- a/src/i18n/messages/src/components/auth/Pricing.json
+++ b/src/i18n/messages/src/components/auth/Pricing.json
@@ -51,4 +51,4 @@
51 "column": 3 51 "column": 3
52 } 52 }
53 } 53 }
54] 54] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/auth/Signup.json b/src/i18n/messages/src/components/auth/Signup.json
index 8b877db98..a09745048 100644
--- a/src/i18n/messages/src/components/auth/Signup.json
+++ b/src/i18n/messages/src/components/auth/Signup.json
@@ -155,4 +155,4 @@
155 "column": 3 155 "column": 3
156 } 156 }
157 } 157 }
158] 158] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/auth/Welcome.json b/src/i18n/messages/src/components/auth/Welcome.json
index 14d8ca939..b4d2ce689 100644
--- a/src/i18n/messages/src/components/auth/Welcome.json
+++ b/src/i18n/messages/src/components/auth/Welcome.json
@@ -25,4 +25,4 @@
25 "column": 3 25 "column": 3
26 } 26 }
27 } 27 }
28] 28] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/layout/AppLayout.json b/src/i18n/messages/src/components/layout/AppLayout.json
index cec5eeaf1..07603d062 100644
--- a/src/i18n/messages/src/components/layout/AppLayout.json
+++ b/src/i18n/messages/src/components/layout/AppLayout.json
@@ -77,4 +77,4 @@
77 "column": 3 77 "column": 3
78 } 78 }
79 } 79 }
80] 80] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/layout/Sidebar.json b/src/i18n/messages/src/components/layout/Sidebar.json
index d18d6ca21..7aa00a186 100644
--- a/src/i18n/messages/src/components/layout/Sidebar.json
+++ b/src/i18n/messages/src/components/layout/Sidebar.json
@@ -51,4 +51,4 @@
51 "column": 3 51 "column": 3
52 } 52 }
53 } 53 }
54] 54] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/services/content/ErrorHandlers/WebviewErrorHandler.json b/src/i18n/messages/src/components/services/content/ErrorHandlers/WebviewErrorHandler.json
index 428d7f472..c8fe802df 100644
--- a/src/i18n/messages/src/components/services/content/ErrorHandlers/WebviewErrorHandler.json
+++ b/src/i18n/messages/src/components/services/content/ErrorHandlers/WebviewErrorHandler.json
@@ -64,4 +64,4 @@
64 "column": 3 64 "column": 3
65 } 65 }
66 } 66 }
67] 67] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/services/content/ServiceDisabled.json b/src/i18n/messages/src/components/services/content/ServiceDisabled.json
index 9e3cf3df0..8bfad28c7 100644
--- a/src/i18n/messages/src/components/services/content/ServiceDisabled.json
+++ b/src/i18n/messages/src/components/services/content/ServiceDisabled.json
@@ -25,4 +25,4 @@
25 "column": 3 25 "column": 3
26 } 26 }
27 } 27 }
28] 28] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/services/content/Services.json b/src/i18n/messages/src/components/services/content/Services.json
index 642a0949e..884ab0c90 100644
--- a/src/i18n/messages/src/components/services/content/Services.json
+++ b/src/i18n/messages/src/components/services/content/Services.json
@@ -25,4 +25,4 @@
25 "column": 3 25 "column": 3
26 } 26 }
27 } 27 }
28] 28] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/services/content/WebviewCrashHandler.json b/src/i18n/messages/src/components/services/content/WebviewCrashHandler.json
index 06307bb31..c3d6c41a5 100644
--- a/src/i18n/messages/src/components/services/content/WebviewCrashHandler.json
+++ b/src/i18n/messages/src/components/services/content/WebviewCrashHandler.json
@@ -51,4 +51,4 @@
51 "column": 3 51 "column": 3
52 } 52 }
53 } 53 }
54] 54] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/services/tabs/TabItem.json b/src/i18n/messages/src/components/services/tabs/TabItem.json
index 7faf07843..08a07845c 100644
--- a/src/i18n/messages/src/components/services/tabs/TabItem.json
+++ b/src/i18n/messages/src/components/services/tabs/TabItem.json
@@ -116,4 +116,4 @@
116 "column": 3 116 "column": 3
117 } 117 }
118 } 118 }
119] 119] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/settings/account/AccountDashboard.json b/src/i18n/messages/src/components/settings/account/AccountDashboard.json
index fbb0e8de4..603950395 100644
--- a/src/i18n/messages/src/components/settings/account/AccountDashboard.json
+++ b/src/i18n/messages/src/components/settings/account/AccountDashboard.json
@@ -104,28 +104,15 @@
104 } 104 }
105 }, 105 },
106 { 106 {
107 "id": "settings.account.accountType.enterprise",
108 "defaultMessage": "!!!Enterprise Account",
109 "file": "src/components/settings/account/AccountDashboard.js",
110 "start": {
111 "line": 47,
112 "column": 25
113 },
114 "end": {
115 "line": 50,
116 "column": 3
117 }
118 },
119 {
120 "id": "settings.account.account.editButton", 107 "id": "settings.account.account.editButton",
121 "defaultMessage": "!!!Edit Account", 108 "defaultMessage": "!!!Edit Account",
122 "file": "src/components/settings/account/AccountDashboard.js", 109 "file": "src/components/settings/account/AccountDashboard.js",
123 "start": { 110 "start": {
124 "line": 51, 111 "line": 47,
125 "column": 21 112 "column": 21
126 }, 113 },
127 "end": { 114 "end": {
128 "line": 54, 115 "line": 50,
129 "column": 3 116 "column": 3
130 } 117 }
131 }, 118 },
@@ -134,11 +121,11 @@
134 "defaultMessage": "!!!Download", 121 "defaultMessage": "!!!Download",
135 "file": "src/components/settings/account/AccountDashboard.js", 122 "file": "src/components/settings/account/AccountDashboard.js",
136 "start": { 123 "start": {
137 "line": 55, 124 "line": 51,
138 "column": 19 125 "column": 19
139 }, 126 },
140 "end": { 127 "end": {
141 "line": 58, 128 "line": 54,
142 "column": 3 129 "column": 3
143 } 130 }
144 }, 131 },
@@ -147,11 +134,11 @@
147 "defaultMessage": "!!!Could not load user information", 134 "defaultMessage": "!!!Could not load user information",
148 "file": "src/components/settings/account/AccountDashboard.js", 135 "file": "src/components/settings/account/AccountDashboard.js",
149 "start": { 136 "start": {
150 "line": 59, 137 "line": 55,
151 "column": 25 138 "column": 25
152 }, 139 },
153 "end": { 140 "end": {
154 "line": 62, 141 "line": 58,
155 "column": 3 142 "column": 3
156 } 143 }
157 }, 144 },
@@ -160,11 +147,11 @@
160 "defaultMessage": "!!!Try again", 147 "defaultMessage": "!!!Try again",
161 "file": "src/components/settings/account/AccountDashboard.js", 148 "file": "src/components/settings/account/AccountDashboard.js",
162 "start": { 149 "start": {
163 "line": 63, 150 "line": 59,
164 "column": 28 151 "column": 28
165 }, 152 },
166 "end": { 153 "end": {
167 "line": 66, 154 "line": 62,
168 "column": 3 155 "column": 3
169 } 156 }
170 }, 157 },
@@ -173,11 +160,11 @@
173 "defaultMessage": "!!!Delete account", 160 "defaultMessage": "!!!Delete account",
174 "file": "src/components/settings/account/AccountDashboard.js", 161 "file": "src/components/settings/account/AccountDashboard.js",
175 "start": { 162 "start": {
176 "line": 67, 163 "line": 63,
177 "column": 17 164 "column": 17
178 }, 165 },
179 "end": { 166 "end": {
180 "line": 70, 167 "line": 66,
181 "column": 3 168 "column": 3
182 } 169 }
183 }, 170 },
@@ -186,11 +173,11 @@
186 "defaultMessage": "!!!If you don't need your Franz account any longer, you can delete your account and all related data here.", 173 "defaultMessage": "!!!If you don't need your Franz account any longer, you can delete your account and all related data here.",
187 "file": "src/components/settings/account/AccountDashboard.js", 174 "file": "src/components/settings/account/AccountDashboard.js",
188 "start": { 175 "start": {
189 "line": 71, 176 "line": 67,
190 "column": 14 177 "column": 14
191 }, 178 },
192 "end": { 179 "end": {
193 "line": 74, 180 "line": 70,
194 "column": 3 181 "column": 3
195 } 182 }
196 }, 183 },
@@ -199,12 +186,12 @@
199 "defaultMessage": "!!!You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!", 186 "defaultMessage": "!!!You have received an email with a link to confirm your account deletion. Your account and data cannot be restored!",
200 "file": "src/components/settings/account/AccountDashboard.js", 187 "file": "src/components/settings/account/AccountDashboard.js",
201 "start": { 188 "start": {
202 "line": 75, 189 "line": 71,
203 "column": 19 190 "column": 19
204 }, 191 },
205 "end": { 192 "end": {
206 "line": 78, 193 "line": 74,
207 "column": 3 194 "column": 3
208 } 195 }
209 } 196 }
210] 197] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/settings/navigation/SettingsNavigation.json b/src/i18n/messages/src/components/settings/navigation/SettingsNavigation.json
index 6cb6adc11..785ce9f29 100644
--- a/src/i18n/messages/src/components/settings/navigation/SettingsNavigation.json
+++ b/src/i18n/messages/src/components/settings/navigation/SettingsNavigation.json
@@ -77,4 +77,4 @@
77 "column": 3 77 "column": 3
78 } 78 }
79 } 79 }
80] 80] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/settings/recipes/RecipesDashboard.json b/src/i18n/messages/src/components/settings/recipes/RecipesDashboard.json
index 74d9032b3..7d9ed3283 100644
--- a/src/i18n/messages/src/components/settings/recipes/RecipesDashboard.json
+++ b/src/i18n/messages/src/components/settings/recipes/RecipesDashboard.json
@@ -103,4 +103,4 @@
103 "column": 3 103 "column": 3
104 } 104 }
105 } 105 }
106] 106] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/settings/services/EditServiceForm.json b/src/i18n/messages/src/components/settings/services/EditServiceForm.json
index 02290594a..42b741b7a 100644
--- a/src/i18n/messages/src/components/settings/services/EditServiceForm.json
+++ b/src/i18n/messages/src/components/settings/services/EditServiceForm.json
@@ -285,4 +285,4 @@
285 "column": 3 285 "column": 3
286 } 286 }
287 } 287 }
288] 288] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/settings/services/ServiceError.json b/src/i18n/messages/src/components/settings/services/ServiceError.json
index fa60ac931..648fc5b3e 100644
--- a/src/i18n/messages/src/components/settings/services/ServiceError.json
+++ b/src/i18n/messages/src/components/settings/services/ServiceError.json
@@ -51,4 +51,4 @@
51 "column": 3 51 "column": 3
52 } 52 }
53 } 53 }
54] 54] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/settings/services/ServiceItem.json b/src/i18n/messages/src/components/settings/services/ServiceItem.json
index 70969641c..ffea8b9e1 100644
--- a/src/i18n/messages/src/components/settings/services/ServiceItem.json
+++ b/src/i18n/messages/src/components/settings/services/ServiceItem.json
@@ -38,4 +38,4 @@
38 "column": 3 38 "column": 3
39 } 39 }
40 } 40 }
41] 41] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/settings/services/ServicesDashboard.json b/src/i18n/messages/src/components/settings/services/ServicesDashboard.json
index 76fd714af..3803c6512 100644
--- a/src/i18n/messages/src/components/settings/services/ServicesDashboard.json
+++ b/src/i18n/messages/src/components/settings/services/ServicesDashboard.json
@@ -116,4 +116,4 @@
116 "column": 3 116 "column": 3
117 } 117 }
118 } 118 }
119] 119] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/settings/settings/EditSettingsForm.json b/src/i18n/messages/src/components/settings/settings/EditSettingsForm.json
index 15beba9ab..c64f477be 100644
--- a/src/i18n/messages/src/components/settings/settings/EditSettingsForm.json
+++ b/src/i18n/messages/src/components/settings/settings/EditSettingsForm.json
@@ -220,4 +220,4 @@
220 "column": 3 220 "column": 3
221 } 221 }
222 } 222 }
223] 223] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/settings/user/EditUserForm.json b/src/i18n/messages/src/components/settings/user/EditUserForm.json
index 0524f0b2c..3a59f8681 100644
--- a/src/i18n/messages/src/components/settings/user/EditUserForm.json
+++ b/src/i18n/messages/src/components/settings/user/EditUserForm.json
@@ -77,4 +77,4 @@
77 "column": 3 77 "column": 3
78 } 78 }
79 } 79 }
80] 80] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/subscription/SubscriptionForm.json b/src/i18n/messages/src/components/subscription/SubscriptionForm.json
index 38d4eb25e..cc7470358 100644
--- a/src/i18n/messages/src/components/subscription/SubscriptionForm.json
+++ b/src/i18n/messages/src/components/subscription/SubscriptionForm.json
@@ -168,4 +168,4 @@
168 "column": 3 168 "column": 3
169 } 169 }
170 } 170 }
171] 171] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/subscription/SubscriptionPopup.json b/src/i18n/messages/src/components/subscription/SubscriptionPopup.json
index fc2e8f8cd..c06da7531 100644
--- a/src/i18n/messages/src/components/subscription/SubscriptionPopup.json
+++ b/src/i18n/messages/src/components/subscription/SubscriptionPopup.json
@@ -25,4 +25,4 @@
25 "column": 3 25 "column": 3
26 } 26 }
27 } 27 }
28] 28] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/ui/PremiumFeatureContainer/index.json b/src/i18n/messages/src/components/ui/PremiumFeatureContainer/index.json
index 608cfc966..582d546fa 100644
--- a/src/i18n/messages/src/components/ui/PremiumFeatureContainer/index.json
+++ b/src/i18n/messages/src/components/ui/PremiumFeatureContainer/index.json
@@ -12,4 +12,4 @@
12 "column": 3 12 "column": 3
13 } 13 }
14 } 14 }
15] 15] \ No newline at end of file
diff --git a/src/i18n/messages/src/components/util/ErrorBoundary/index.json b/src/i18n/messages/src/components/util/ErrorBoundary/index.json
index fd8a8443a..43c323031 100644
--- a/src/i18n/messages/src/components/util/ErrorBoundary/index.json
+++ b/src/i18n/messages/src/components/util/ErrorBoundary/index.json
@@ -25,4 +25,4 @@
25 "column": 3 25 "column": 3
26 } 26 }
27 } 27 }
28] 28] \ No newline at end of file
diff --git a/src/i18n/messages/src/containers/settings/EditServiceScreen.json b/src/i18n/messages/src/containers/settings/EditServiceScreen.json
index e24b2484d..42ca42125 100644
--- a/src/i18n/messages/src/containers/settings/EditServiceScreen.json
+++ b/src/i18n/messages/src/containers/settings/EditServiceScreen.json
@@ -194,4 +194,4 @@
194 "column": 3 194 "column": 3
195 } 195 }
196 } 196 }
197] 197] \ No newline at end of file
diff --git a/src/i18n/messages/src/containers/settings/EditSettingsScreen.json b/src/i18n/messages/src/containers/settings/EditSettingsScreen.json
index 7f79c347e..d3b413540 100644
--- a/src/i18n/messages/src/containers/settings/EditSettingsScreen.json
+++ b/src/i18n/messages/src/containers/settings/EditSettingsScreen.json
@@ -155,4 +155,4 @@
155 "column": 3 155 "column": 3
156 } 156 }
157 } 157 }
158] 158] \ No newline at end of file
diff --git a/src/i18n/messages/src/containers/settings/EditUserScreen.json b/src/i18n/messages/src/containers/settings/EditUserScreen.json
index 200dd5eab..70ff29945 100644
--- a/src/i18n/messages/src/containers/settings/EditUserScreen.json
+++ b/src/i18n/messages/src/containers/settings/EditUserScreen.json
@@ -116,4 +116,4 @@
116 "column": 3 116 "column": 3
117 } 117 }
118 } 118 }
119] 119] \ No newline at end of file
diff --git a/src/i18n/messages/src/features/delayApp/Component.json b/src/i18n/messages/src/features/delayApp/Component.json
index aa82b040e..bacd9444a 100644
--- a/src/i18n/messages/src/features/delayApp/Component.json
+++ b/src/i18n/messages/src/features/delayApp/Component.json
@@ -38,4 +38,4 @@
38 "column": 3 38 "column": 3
39 } 39 }
40 } 40 }
41] 41] \ No newline at end of file
diff --git a/src/i18n/messages/src/features/shareFranz/Component.json b/src/i18n/messages/src/features/shareFranz/Component.json
index 8b672ee54..0fec9db64 100644
--- a/src/i18n/messages/src/features/shareFranz/Component.json
+++ b/src/i18n/messages/src/features/shareFranz/Component.json
@@ -90,4 +90,4 @@
90 "column": 3 90 "column": 3
91 } 91 }
92 } 92 }
93] 93] \ No newline at end of file
diff --git a/src/i18n/messages/src/helpers/validation-helpers.json b/src/i18n/messages/src/helpers/validation-helpers.json
index cec9acca3..86bfe1500 100644
--- a/src/i18n/messages/src/helpers/validation-helpers.json
+++ b/src/i18n/messages/src/helpers/validation-helpers.json
@@ -64,4 +64,4 @@
64 "column": 3 64 "column": 3
65 } 65 }
66 } 66 }
67] 67] \ No newline at end of file
diff --git a/src/i18n/messages/src/i18n/globalMessages.json b/src/i18n/messages/src/i18n/globalMessages.json
index 3cb4675dc..28001614f 100644
--- a/src/i18n/messages/src/i18n/globalMessages.json
+++ b/src/i18n/messages/src/i18n/globalMessages.json
@@ -1,27 +1,14 @@
1[ 1[
2 { 2 {
3 "id": "global.premium.upgradeAccount",
4 "defaultMessage": "!!!Please upgrade your account to add a new service.",
5 "file": "src/i18n/globalMessages.js",
6 "start": {
7 "line": 4,
8 "column": 18
9 },
10 "end": {
11 "line": 7,
12 "column": 3
13 }
14 },
15 {
16 "id": "global.api.unhealthy", 3 "id": "global.api.unhealthy",
17 "defaultMessage": "!!!Can't connect to Franz Online Services", 4 "defaultMessage": "!!!Can't connect to Franz Online Services",
18 "file": "src/i18n/globalMessages.js", 5 "file": "src/i18n/globalMessages.js",
19 "start": { 6 "start": {
20 "line": 8, 7 "line": 4,
21 "column": 16 8 "column": 16
22 }, 9 },
23 "end": { 10 "end": {
24 "line": 11, 11 "line": 7,
25 "column": 3 12 "column": 3
26 } 13 }
27 }, 14 },
@@ -30,11 +17,11 @@
30 "defaultMessage": "!!!You are not connected to the internet.", 17 "defaultMessage": "!!!You are not connected to the internet.",
31 "file": "src/i18n/globalMessages.js", 18 "file": "src/i18n/globalMessages.js",
32 "start": { 19 "start": {
33 "line": 12, 20 "line": 8,
34 "column": 29 21 "column": 29
35 }, 22 },
36 "end": { 23 "end": {
37 "line": 15, 24 "line": 11,
38 "column": 3 25 "column": 3
39 } 26 }
40 }, 27 },
@@ -43,11 +30,11 @@
43 "defaultMessage": "!!!Spell checking language", 30 "defaultMessage": "!!!Spell checking language",
44 "file": "src/i18n/globalMessages.js", 31 "file": "src/i18n/globalMessages.js",
45 "start": { 32 "start": {
46 "line": 16, 33 "line": 12,
47 "column": 24 34 "column": 24
48 }, 35 },
49 "end": { 36 "end": {
50 "line": 19, 37 "line": 15,
51 "column": 3 38 "column": 3
52 } 39 }
53 }, 40 },
@@ -56,11 +43,11 @@
56 "defaultMessage": "!!!Use System Default ({default})", 43 "defaultMessage": "!!!Use System Default ({default})",
57 "file": "src/i18n/globalMessages.js", 44 "file": "src/i18n/globalMessages.js",
58 "start": { 45 "start": {
59 "line": 20, 46 "line": 16,
60 "column": 29 47 "column": 29
61 }, 48 },
62 "end": { 49 "end": {
63 "line": 23, 50 "line": 19,
64 "column": 3 51 "column": 3
65 } 52 }
66 }, 53 },
@@ -69,11 +56,11 @@
69 "defaultMessage": "!!!Detect language automatically", 56 "defaultMessage": "!!!Detect language automatically",
70 "file": "src/i18n/globalMessages.js", 57 "file": "src/i18n/globalMessages.js",
71 "start": { 58 "start": {
72 "line": 24, 59 "line": 20,
73 "column": 34 60 "column": 34
74 }, 61 },
75 "end": { 62 "end": {
76 "line": 27, 63 "line": 23,
77 "column": 3 64 "column": 3
78 } 65 }
79 }, 66 },
@@ -82,12 +69,12 @@
82 "defaultMessage": "!!!Automatic", 69 "defaultMessage": "!!!Automatic",
83 "file": "src/i18n/globalMessages.js", 70 "file": "src/i18n/globalMessages.js",
84 "start": { 71 "start": {
85 "line": 28, 72 "line": 24,
86 "column": 39 73 "column": 39
87 }, 74 },
88 "end": { 75 "end": {
89 "line": 31, 76 "line": 27,
90 "column": 3 77 "column": 3
91 } 78 }
92 } 79 }
93] 80] \ No newline at end of file
diff --git a/src/i18n/messages/src/lib/Menu.json b/src/i18n/messages/src/lib/Menu.json
index 34b7bdcb8..6958f0219 100644
--- a/src/i18n/messages/src/lib/Menu.json
+++ b/src/i18n/messages/src/lib/Menu.json
@@ -558,4 +558,4 @@
558 "column": 3 558 "column": 3
559 } 559 }
560 } 560 }
561] 561] \ No newline at end of file