aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-09-07 16:18:56 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-09-07 16:18:56 +0200
commit90db27bdb7d12ad6c7d89efe78f0605d92bd2896 (patch)
treed3df87fd8f0dd64ea394e8bcecafe28df2ef1190
parentRemove service limit and enable workspaces (diff)
downloadferdium-app-90db27bdb7d12ad6c7d89efe78f0605d92bd2896.tar.gz
ferdium-app-90db27bdb7d12ad6c7d89efe78f0605d92bd2896.tar.zst
ferdium-app-90db27bdb7d12ad6c7d89efe78f0605d92bd2896.zip
Enable proxy and spell checker
-rw-r--r--src/config.js2
-rw-r--r--src/features/serviceProxy/index.js12
-rw-r--r--src/features/spellchecker/index.js16
-rw-r--r--src/i18n/locales/defaultMessages.json448
4 files changed, 239 insertions, 239 deletions
diff --git a/src/config.js b/src/config.js
index d6a0317bf..dcbc53bf5 100644
--- a/src/config.js
+++ b/src/config.js
@@ -58,7 +58,7 @@ export const DEFAULT_FEATURES_CONFIG = {
58 wait: ms('10s'), 58 wait: ms('10s'),
59 }, 59 },
60 isServiceProxyEnabled: false, 60 isServiceProxyEnabled: false,
61 isServiceProxyIncludedInCurrentPlan: false, 61 isServiceProxyIncludedInCurrentPlan: true,
62 isAnnouncementsEnabled: true, 62 isAnnouncementsEnabled: true,
63 isWorkspaceIncludedInCurrentPlan: true, 63 isWorkspaceIncludedInCurrentPlan: true,
64 isWorkspaceEnabled: false, 64 isWorkspaceEnabled: false,
diff --git a/src/features/serviceProxy/index.js b/src/features/serviceProxy/index.js
index 55c600de4..a71076fd6 100644
--- a/src/features/serviceProxy/index.js
+++ b/src/features/serviceProxy/index.js
@@ -1,25 +1,25 @@
1import { autorun, observable } from 'mobx'; 1import { autorun, observable } from 'mobx';
2import { remote } from 'electron'; 2import { remote } from 'electron';
3 3
4import { DEFAULT_FEATURES_CONFIG } from '../../config'; 4// import { DEFAULT_FEATURES_CONFIG } from '../../config';
5 5
6const { session } = remote; 6const { session } = remote;
7 7
8const debug = require('debug')('Franz:feature:serviceProxy'); 8const debug = require('debug')('Franz:feature:serviceProxy');
9 9
10export const config = observable({ 10export const config = observable({
11 isEnabled: DEFAULT_FEATURES_CONFIG.isServiceProxyEnabled, 11 isEnabled: true,
12 isPremium: DEFAULT_FEATURES_CONFIG.isServiceProxyIncludedInCurrentPlan, 12 isPremium: true,
13}); 13});
14 14
15export default function init(stores) { 15export default function init(stores) {
16 debug('Initializing `serviceProxy` feature'); 16 debug('Initializing `serviceProxy` feature');
17 17
18 autorun(() => { 18 autorun(() => {
19 const { isServiceProxyEnabled, isServiceProxyIncludedInCurrentPlan } = stores.features.features; 19 // const { isServiceProxyEnabled, isServiceProxyIncludedInCurrentPlan } = stores.features.features;
20 20
21 config.isEnabled = isServiceProxyEnabled !== undefined ? isServiceProxyEnabled : DEFAULT_FEATURES_CONFIG.isServiceProxyEnabled; 21 config.isEnabled = true;
22 config.isIncludedInCurrentPlan = isServiceProxyIncludedInCurrentPlan !== undefined ? isServiceProxyIncludedInCurrentPlan : DEFAULT_FEATURES_CONFIG.isServiceProxyIncludedInCurrentPlan; 22 config.isIncludedInCurrentPlan = true;
23 23
24 const services = stores.services.enabled; 24 const services = stores.services.enabled;
25 const isPremiumUser = stores.user.data.isPremium; 25 const isPremiumUser = stores.user.data.isPremium;
diff --git a/src/features/spellchecker/index.js b/src/features/spellchecker/index.js
index a07f9f63a..1f425065f 100644
--- a/src/features/spellchecker/index.js
+++ b/src/features/spellchecker/index.js
@@ -12,16 +12,16 @@ export default function init(stores) {
12 debug('Initializing `spellchecker` feature'); 12 debug('Initializing `spellchecker` feature');
13 13
14 autorun(() => { 14 autorun(() => {
15 const { isSpellcheckerIncludedInCurrentPlan } = stores.features.features; 15 // const { isSpellcheckerIncludedInCurrentPlan } = stores.features.features;
16 16
17 config.isIncludedInCurrentPlan = isSpellcheckerIncludedInCurrentPlan !== undefined ? isSpellcheckerIncludedInCurrentPlan : DEFAULT_FEATURES_CONFIG.isSpellcheckerIncludedInCurrentPlan; 17 // config.isIncludedInCurrentPlan = isSpellcheckerIncludedInCurrentPlan !== undefined ? isSpellcheckerIncludedInCurrentPlan : DEFAULT_FEATURES_CONFIG.isSpellcheckerIncludedInCurrentPlan;
18 18
19 if (!stores.user.data.isPremium && config.isIncludedInCurrentPlan && stores.settings.app.enableSpellchecking) { 19 // if (!stores.user.data.isPremium && config.isIncludedInCurrentPlan && stores.settings.app.enableSpellchecking) {
20 debug('Override settings.spellcheckerEnabled flag to false'); 20 // debug('Override settings.spellcheckerEnabled flag to false');
21 21
22 Object.assign(stores.settings.app, { 22 // Object.assign(stores.settings.app, {
23 enableSpellchecking: false, 23 // enableSpellchecking: false,
24 }); 24 // });
25 } 25 // }
26 }); 26 });
27} 27}
diff --git a/src/i18n/locales/defaultMessages.json b/src/i18n/locales/defaultMessages.json
index 51306eceb..ecf89b7c3 100644
--- a/src/i18n/locales/defaultMessages.json
+++ b/src/i18n/locales/defaultMessages.json
@@ -747,52 +747,52 @@
747 "defaultMessage": "!!!Your services have been updated.", 747 "defaultMessage": "!!!Your services have been updated.",
748 "end": { 748 "end": {
749 "column": 3, 749 "column": 3,
750 "line": 31 750 "line": 30
751 }, 751 },
752 "file": "src/components/layout/AppLayout.js", 752 "file": "src/components/layout/AppLayout.js",
753 "id": "infobar.servicesUpdated", 753 "id": "infobar.servicesUpdated",
754 "start": { 754 "start": {
755 "column": 19, 755 "column": 19,
756 "line": 28 756 "line": 27
757 } 757 }
758 }, 758 },
759 { 759 {
760 "defaultMessage": "!!!Reload services", 760 "defaultMessage": "!!!Reload services",
761 "end": { 761 "end": {
762 "column": 3, 762 "column": 3,
763 "line": 35 763 "line": 34
764 }, 764 },
765 "file": "src/components/layout/AppLayout.js", 765 "file": "src/components/layout/AppLayout.js",
766 "id": "infobar.buttonReloadServices", 766 "id": "infobar.buttonReloadServices",
767 "start": { 767 "start": {
768 "column": 24, 768 "column": 24,
769 "line": 32 769 "line": 31
770 } 770 }
771 }, 771 },
772 { 772 {
773 "defaultMessage": "!!!Could not load services and user information", 773 "defaultMessage": "!!!Could not load services and user information",
774 "end": { 774 "end": {
775 "column": 3, 775 "column": 3,
776 "line": 36 776 "line": 38
777 }, 777 },
778 "file": "src/components/layout/AppLayout.js", 778 "file": "src/components/layout/AppLayout.js",
779 "id": "infobar.requiredRequestsFailed", 779 "id": "infobar.requiredRequestsFailed",
780 "start": { 780 "start": {
781 "column": 26, 781 "column": 26,
782 "line": 33 782 "line": 35
783 } 783 }
784 }, 784 },
785 { 785 {
786 "defaultMessage": "!!!There were errors while trying to perform an authenticated request. Please try logging out and back in if this error persists.", 786 "defaultMessage": "!!!There were errors while trying to perform an authenticated request. Please try logging out and back in if this error persists.",
787 "end": { 787 "end": {
788 "column": 3, 788 "column": 3,
789 "line": 40 789 "line": 42
790 }, 790 },
791 "file": "src/components/layout/AppLayout.js", 791 "file": "src/components/layout/AppLayout.js",
792 "id": "infobar.authRequestFailed", 792 "id": "infobar.authRequestFailed",
793 "start": { 793 "start": {
794 "column": 21, 794 "column": 21,
795 "line": 37 795 "line": 39
796 } 796 }
797 } 797 }
798 ], 798 ],
@@ -1084,26 +1084,26 @@
1084 "defaultMessage": "!!!Please login to use Ferdi.", 1084 "defaultMessage": "!!!Please login to use Ferdi.",
1085 "end": { 1085 "end": {
1086 "column": 3, 1086 "column": 3,
1087 "line": 22 1087 "line": 25
1088 }, 1088 },
1089 "file": "src/components/services/content/Services.js", 1089 "file": "src/components/services/content/Services.js",
1090 "id": "services.login", 1090 "id": "services.login",
1091 "start": { 1091 "start": {
1092 "column": 9, 1092 "column": 9,
1093 "line": 19 1093 "line": 22
1094 } 1094 }
1095 }, 1095 },
1096 { 1096 {
1097 "defaultMessage": "!!!Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.", 1097 "defaultMessage": "!!!Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner.",
1098 "end": { 1098 "end": {
1099 "column": 3, 1099 "column": 3,
1100 "line": 26 1100 "line": 29
1101 }, 1101 },
1102 "file": "src/components/services/content/Services.js", 1102 "file": "src/components/services/content/Services.js",
1103 "id": "services.serverInfo", 1103 "id": "services.serverInfo",
1104 "start": { 1104 "start": {
1105 "column": 14, 1105 "column": 14,
1106 "line": 23 1106 "line": 26
1107 } 1107 }
1108 } 1108 }
1109 ], 1109 ],
@@ -2976,91 +2976,91 @@
2976 "defaultMessage": "!!!Get a Franz Supporter License", 2976 "defaultMessage": "!!!Get a Franz Supporter License",
2977 "end": { 2977 "end": {
2978 "column": 3, 2978 "column": 3,
2979 "line": 16 2979 "line": 15
2980 }, 2980 },
2981 "file": "src/components/ui/ActivateTrialButton/index.js", 2981 "file": "src/components/ui/ActivateTrialButton/index.js",
2982 "id": "feature.delayApp.upgrade.action", 2982 "id": "feature.delayApp.upgrade.action",
2983 "start": { 2983 "start": {
2984 "column": 10, 2984 "column": 10,
2985 "line": 13 2985 "line": 12
2986 } 2986 }
2987 }, 2987 },
2988 { 2988 {
2989 "defaultMessage": "!!!Yes, I want the free 14 day trial of Franz Professional", 2989 "defaultMessage": "!!!Yes, I want the free 14 day trial of Franz Professional",
2990 "end": { 2990 "end": {
2991 "column": 3, 2991 "column": 3,
2992 "line": 20 2992 "line": 19
2993 }, 2993 },
2994 "file": "src/components/ui/ActivateTrialButton/index.js", 2994 "file": "src/components/ui/ActivateTrialButton/index.js",
2995 "id": "feature.delayApp.trial.action", 2995 "id": "feature.delayApp.trial.action",
2996 "start": { 2996 "start": {
2997 "column": 15, 2997 "column": 15,
2998 "line": 17 2998 "line": 16
2999 } 2999 }
3000 }, 3000 },
3001 { 3001 {
3002 "defaultMessage": "!!!Upgrade account", 3002 "defaultMessage": "!!!Upgrade account",
3003 "end": { 3003 "end": {
3004 "column": 3, 3004 "column": 3,
3005 "line": 24 3005 "line": 23
3006 }, 3006 },
3007 "file": "src/components/ui/ActivateTrialButton/index.js", 3007 "file": "src/components/ui/ActivateTrialButton/index.js",
3008 "id": "feature.delayApp.upgrade.actionShort", 3008 "id": "feature.delayApp.upgrade.actionShort",
3009 "start": { 3009 "start": {
3010 "column": 15, 3010 "column": 15,
3011 "line": 21 3011 "line": 20
3012 } 3012 }
3013 }, 3013 },
3014 { 3014 {
3015 "defaultMessage": "!!!Activate the free Franz Professional trial", 3015 "defaultMessage": "!!!Activate the free Franz Professional trial",
3016 "end": { 3016 "end": {
3017 "column": 3, 3017 "column": 3,
3018 "line": 28 3018 "line": 27
3019 }, 3019 },
3020 "file": "src/components/ui/ActivateTrialButton/index.js", 3020 "file": "src/components/ui/ActivateTrialButton/index.js",
3021 "id": "feature.delayApp.trial.actionShort", 3021 "id": "feature.delayApp.trial.actionShort",
3022 "start": { 3022 "start": {
3023 "column": 20, 3023 "column": 20,
3024 "line": 25 3024 "line": 24
3025 } 3025 }
3026 }, 3026 },
3027 { 3027 {
3028 "defaultMessage": "!!!No strings attached", 3028 "defaultMessage": "!!!No strings attached",
3029 "end": { 3029 "end": {
3030 "column": 3, 3030 "column": 3,
3031 "line": 32 3031 "line": 31
3032 }, 3032 },
3033 "file": "src/components/ui/ActivateTrialButton/index.js", 3033 "file": "src/components/ui/ActivateTrialButton/index.js",
3034 "id": "pricing.trial.terms.headline", 3034 "id": "pricing.trial.terms.headline",
3035 "start": { 3035 "start": {
3036 "column": 29, 3036 "column": 29,
3037 "line": 29 3037 "line": 28
3038 } 3038 }
3039 }, 3039 },
3040 { 3040 {
3041 "defaultMessage": "!!!No credit card required", 3041 "defaultMessage": "!!!No credit card required",
3042 "end": { 3042 "end": {
3043 "column": 3, 3043 "column": 3,
3044 "line": 36 3044 "line": 35
3045 }, 3045 },
3046 "file": "src/components/ui/ActivateTrialButton/index.js", 3046 "file": "src/components/ui/ActivateTrialButton/index.js",
3047 "id": "pricing.trial.terms.noCreditCard", 3047 "id": "pricing.trial.terms.noCreditCard",
3048 "start": { 3048 "start": {
3049 "column": 16, 3049 "column": 16,
3050 "line": 33 3050 "line": 32
3051 } 3051 }
3052 }, 3052 },
3053 { 3053 {
3054 "defaultMessage": "!!!Your free trial ends automatically after 14 days", 3054 "defaultMessage": "!!!Your free trial ends automatically after 14 days",
3055 "end": { 3055 "end": {
3056 "column": 3, 3056 "column": 3,
3057 "line": 40 3057 "line": 39
3058 }, 3058 },
3059 "file": "src/components/ui/ActivateTrialButton/index.js", 3059 "file": "src/components/ui/ActivateTrialButton/index.js",
3060 "id": "pricing.trial.terms.automaticTrialEnd", 3060 "id": "pricing.trial.terms.automaticTrialEnd",
3061 "start": { 3061 "start": {
3062 "column": 21, 3062 "column": 21,
3063 "line": 37 3063 "line": 36
3064 } 3064 }
3065 } 3065 }
3066 ], 3066 ],
@@ -3207,13 +3207,13 @@
3207 "defaultMessage": "!!!Upgrade account", 3207 "defaultMessage": "!!!Upgrade account",
3208 "end": { 3208 "end": {
3209 "column": 3, 3209 "column": 3,
3210 "line": 17 3210 "line": 18
3211 }, 3211 },
3212 "file": "src/components/ui/PremiumFeatureContainer/index.js", 3212 "file": "src/components/ui/PremiumFeatureContainer/index.js",
3213 "id": "premiumFeature.button.upgradeAccount", 3213 "id": "premiumFeature.button.upgradeAccount",
3214 "start": { 3214 "start": {
3215 "column": 10, 3215 "column": 10,
3216 "line": 14 3216 "line": 15
3217 } 3217 }
3218 } 3218 }
3219 ], 3219 ],
@@ -3225,13 +3225,13 @@
3225 "defaultMessage": "!!!Upgrade to Franz Professional", 3225 "defaultMessage": "!!!Upgrade to Franz Professional",
3226 "end": { 3226 "end": {
3227 "column": 3, 3227 "column": 3,
3228 "line": 16 3228 "line": 15
3229 }, 3229 },
3230 "file": "src/components/ui/UpgradeButton/index.js", 3230 "file": "src/components/ui/UpgradeButton/index.js",
3231 "id": "global.upgradeButton.upgradeToPro", 3231 "id": "global.upgradeButton.upgradeToPro",
3232 "start": { 3232 "start": {
3233 "column": 16, 3233 "column": 16,
3234 "line": 13 3234 "line": 12
3235 } 3235 }
3236 } 3236 }
3237 ], 3237 ],
@@ -3492,182 +3492,182 @@
3492 "defaultMessage": "!!!Launch Ferdi on start", 3492 "defaultMessage": "!!!Launch Ferdi on start",
3493 "end": { 3493 "end": {
3494 "column": 3, 3494 "column": 3,
3495 "line": 27 3495 "line": 29
3496 }, 3496 },
3497 "file": "src/containers/settings/EditSettingsScreen.js", 3497 "file": "src/containers/settings/EditSettingsScreen.js",
3498 "id": "settings.app.form.autoLaunchOnStart", 3498 "id": "settings.app.form.autoLaunchOnStart",
3499 "start": { 3499 "start": {
3500 "column": 21, 3500 "column": 21,
3501 "line": 24 3501 "line": 26
3502 } 3502 }
3503 }, 3503 },
3504 { 3504 {
3505 "defaultMessage": "!!!Open in background", 3505 "defaultMessage": "!!!Open in background",
3506 "end": { 3506 "end": {
3507 "column": 3, 3507 "column": 3,
3508 "line": 31 3508 "line": 33
3509 }, 3509 },
3510 "file": "src/containers/settings/EditSettingsScreen.js", 3510 "file": "src/containers/settings/EditSettingsScreen.js",
3511 "id": "settings.app.form.autoLaunchInBackground", 3511 "id": "settings.app.form.autoLaunchInBackground",
3512 "start": { 3512 "start": {
3513 "column": 26, 3513 "column": 26,
3514 "line": 28 3514 "line": 30
3515 } 3515 }
3516 }, 3516 },
3517 { 3517 {
3518 "defaultMessage": "!!!Keep Ferdi in background when closing the window", 3518 "defaultMessage": "!!!Keep Ferdi in background when closing the window",
3519 "end": { 3519 "end": {
3520 "column": 3, 3520 "column": 3,
3521 "line": 35 3521 "line": 37
3522 }, 3522 },
3523 "file": "src/containers/settings/EditSettingsScreen.js", 3523 "file": "src/containers/settings/EditSettingsScreen.js",
3524 "id": "settings.app.form.runInBackground", 3524 "id": "settings.app.form.runInBackground",
3525 "start": { 3525 "start": {
3526 "column": 19, 3526 "column": 19,
3527 "line": 32 3527 "line": 34
3528 } 3528 }
3529 }, 3529 },
3530 { 3530 {
3531 "defaultMessage": "!!!Show Ferdi in system tray", 3531 "defaultMessage": "!!!Show Ferdi in system tray",
3532 "end": { 3532 "end": {
3533 "column": 3, 3533 "column": 3,
3534 "line": 39 3534 "line": 41
3535 }, 3535 },
3536 "file": "src/containers/settings/EditSettingsScreen.js", 3536 "file": "src/containers/settings/EditSettingsScreen.js",
3537 "id": "settings.app.form.enableSystemTray", 3537 "id": "settings.app.form.enableSystemTray",
3538 "start": { 3538 "start": {
3539 "column": 20, 3539 "column": 20,
3540 "line": 36 3540 "line": 38
3541 } 3541 }
3542 }, 3542 },
3543 { 3543 {
3544 "defaultMessage": "!!!Minimize Ferdi to system tray", 3544 "defaultMessage": "!!!Minimize Ferdi to system tray",
3545 "end": { 3545 "end": {
3546 "column": 3, 3546 "column": 3,
3547 "line": 43 3547 "line": 45
3548 }, 3548 },
3549 "file": "src/containers/settings/EditSettingsScreen.js", 3549 "file": "src/containers/settings/EditSettingsScreen.js",
3550 "id": "settings.app.form.minimizeToSystemTray", 3550 "id": "settings.app.form.minimizeToSystemTray",
3551 "start": { 3551 "start": {
3552 "column": 24, 3552 "column": 24,
3553 "line": 40 3553 "line": 42
3554 } 3554 }
3555 }, 3555 },
3556 { 3556 {
3557 "defaultMessage": "!!!Server", 3557 "defaultMessage": "!!!Server",
3558 "end": { 3558 "end": {
3559 "column": 3, 3559 "column": 3,
3560 "line": 47 3560 "line": 49
3561 }, 3561 },
3562 "file": "src/containers/settings/EditSettingsScreen.js", 3562 "file": "src/containers/settings/EditSettingsScreen.js",
3563 "id": "settings.app.form.server", 3563 "id": "settings.app.form.server",
3564 "start": { 3564 "start": {
3565 "column": 10, 3565 "column": 10,
3566 "line": 44 3566 "line": 46
3567 } 3567 }
3568 }, 3568 },
3569 { 3569 {
3570 "defaultMessage": "!!!Language", 3570 "defaultMessage": "!!!Language",
3571 "end": { 3571 "end": {
3572 "column": 3, 3572 "column": 3,
3573 "line": 47 3573 "line": 53
3574 }, 3574 },
3575 "file": "src/containers/settings/EditSettingsScreen.js", 3575 "file": "src/containers/settings/EditSettingsScreen.js",
3576 "id": "settings.app.form.language", 3576 "id": "settings.app.form.language",
3577 "start": { 3577 "start": {
3578 "column": 12, 3578 "column": 12,
3579 "line": 44 3579 "line": 50
3580 } 3580 }
3581 }, 3581 },
3582 { 3582 {
3583 "defaultMessage": "!!!Dark Mode", 3583 "defaultMessage": "!!!Dark Mode",
3584 "end": { 3584 "end": {
3585 "column": 3, 3585 "column": 3,
3586 "line": 51 3586 "line": 57
3587 }, 3587 },
3588 "file": "src/containers/settings/EditSettingsScreen.js", 3588 "file": "src/containers/settings/EditSettingsScreen.js",
3589 "id": "settings.app.form.darkMode", 3589 "id": "settings.app.form.darkMode",
3590 "start": { 3590 "start": {
3591 "column": 12, 3591 "column": 12,
3592 "line": 48 3592 "line": 54
3593 } 3593 }
3594 }, 3594 },
3595 { 3595 {
3596 "defaultMessage": "!!!Display disabled services tabs", 3596 "defaultMessage": "!!!Display disabled services tabs",
3597 "end": { 3597 "end": {
3598 "column": 3, 3598 "column": 3,
3599 "line": 55 3599 "line": 61
3600 }, 3600 },
3601 "file": "src/containers/settings/EditSettingsScreen.js", 3601 "file": "src/containers/settings/EditSettingsScreen.js",
3602 "id": "settings.app.form.showDisabledServices", 3602 "id": "settings.app.form.showDisabledServices",
3603 "start": { 3603 "start": {
3604 "column": 24, 3604 "column": 24,
3605 "line": 52 3605 "line": 58
3606 } 3606 }
3607 }, 3607 },
3608 { 3608 {
3609 "defaultMessage": "!!!Show unread message badge when notifications are disabled", 3609 "defaultMessage": "!!!Show unread message badge when notifications are disabled",
3610 "end": { 3610 "end": {
3611 "column": 3, 3611 "column": 3,
3612 "line": 59 3612 "line": 65
3613 }, 3613 },
3614 "file": "src/containers/settings/EditSettingsScreen.js", 3614 "file": "src/containers/settings/EditSettingsScreen.js",
3615 "id": "settings.app.form.showMessagesBadgesWhenMuted", 3615 "id": "settings.app.form.showMessagesBadgesWhenMuted",
3616 "start": { 3616 "start": {
3617 "column": 29, 3617 "column": 29,
3618 "line": 56 3618 "line": 62
3619 } 3619 }
3620 }, 3620 },
3621 { 3621 {
3622 "defaultMessage": "!!!Enable spell checking", 3622 "defaultMessage": "!!!Enable spell checking",
3623 "end": { 3623 "end": {
3624 "column": 3, 3624 "column": 3,
3625 "line": 63 3625 "line": 69
3626 }, 3626 },
3627 "file": "src/containers/settings/EditSettingsScreen.js", 3627 "file": "src/containers/settings/EditSettingsScreen.js",
3628 "id": "settings.app.form.enableSpellchecking", 3628 "id": "settings.app.form.enableSpellchecking",
3629 "start": { 3629 "start": {
3630 "column": 23, 3630 "column": 23,
3631 "line": 60 3631 "line": 66
3632 } 3632 }
3633 }, 3633 },
3634 { 3634 {
3635 "defaultMessage": "!!!Enable GPU Acceleration", 3635 "defaultMessage": "!!!Enable GPU Acceleration",
3636 "end": { 3636 "end": {
3637 "column": 3, 3637 "column": 3,
3638 "line": 67 3638 "line": 73
3639 }, 3639 },
3640 "file": "src/containers/settings/EditSettingsScreen.js", 3640 "file": "src/containers/settings/EditSettingsScreen.js",
3641 "id": "settings.app.form.enableGPUAcceleration", 3641 "id": "settings.app.form.enableGPUAcceleration",
3642 "start": { 3642 "start": {
3643 "column": 25, 3643 "column": 25,
3644 "line": 64 3644 "line": 70
3645 } 3645 }
3646 }, 3646 },
3647 { 3647 {
3648 "defaultMessage": "!!!Include beta versions", 3648 "defaultMessage": "!!!Include beta versions",
3649 "end": { 3649 "end": {
3650 "column": 3, 3650 "column": 3,
3651 "line": 71 3651 "line": 77
3652 }, 3652 },
3653 "file": "src/containers/settings/EditSettingsScreen.js", 3653 "file": "src/containers/settings/EditSettingsScreen.js",
3654 "id": "settings.app.form.beta", 3654 "id": "settings.app.form.beta",
3655 "start": { 3655 "start": {
3656 "column": 8, 3656 "column": 8,
3657 "line": 68 3657 "line": 74
3658 } 3658 }
3659 }, 3659 },
3660 { 3660 {
3661 "defaultMessage": "!!!Enable Franz Todos", 3661 "defaultMessage": "!!!Enable Franz Todos",
3662 "end": { 3662 "end": {
3663 "column": 3, 3663 "column": 3,
3664 "line": 75 3664 "line": 81
3665 }, 3665 },
3666 "file": "src/containers/settings/EditSettingsScreen.js", 3666 "file": "src/containers/settings/EditSettingsScreen.js",
3667 "id": "settings.app.form.enableTodos", 3667 "id": "settings.app.form.enableTodos",
3668 "start": { 3668 "start": {
3669 "column": 15, 3669 "column": 15,
3670 "line": 72 3670 "line": 78
3671 } 3671 }
3672 } 3672 }
3673 ], 3673 ],
@@ -3819,65 +3819,65 @@
3819 "defaultMessage": "!!!Please purchase license to skip waiting", 3819 "defaultMessage": "!!!Please purchase license to skip waiting",
3820 "end": { 3820 "end": {
3821 "column": 3, 3821 "column": 3,
3822 "line": 20 3822 "line": 17
3823 }, 3823 },
3824 "file": "src/features/delayApp/Component.js", 3824 "file": "src/features/delayApp/Component.js",
3825 "id": "feature.delayApp.headline", 3825 "id": "feature.delayApp.headline",
3826 "start": { 3826 "start": {
3827 "column": 12, 3827 "column": 12,
3828 "line": 17 3828 "line": 14
3829 } 3829 }
3830 }, 3830 },
3831 { 3831 {
3832 "defaultMessage": "!!!Get the free Franz Professional 14 day trial and skip the line", 3832 "defaultMessage": "!!!Get the free Franz Professional 14 day trial and skip the line",
3833 "end": { 3833 "end": {
3834 "column": 3, 3834 "column": 3,
3835 "line": 24 3835 "line": 21
3836 }, 3836 },
3837 "file": "src/features/delayApp/Component.js", 3837 "file": "src/features/delayApp/Component.js",
3838 "id": "feature.delayApp.trial.headline", 3838 "id": "feature.delayApp.trial.headline",
3839 "start": { 3839 "start": {
3840 "column": 17, 3840 "column": 17,
3841 "line": 21 3841 "line": 18
3842 } 3842 }
3843 }, 3843 },
3844 { 3844 {
3845 "defaultMessage": "!!!Get a Franz Supporter License", 3845 "defaultMessage": "!!!Get a Franz Supporter License",
3846 "end": { 3846 "end": {
3847 "column": 3, 3847 "column": 3,
3848 "line": 28 3848 "line": 25
3849 }, 3849 },
3850 "file": "src/features/delayApp/Component.js", 3850 "file": "src/features/delayApp/Component.js",
3851 "id": "feature.delayApp.upgrade.action", 3851 "id": "feature.delayApp.upgrade.action",
3852 "start": { 3852 "start": {
3853 "column": 10, 3853 "column": 10,
3854 "line": 25 3854 "line": 22
3855 } 3855 }
3856 }, 3856 },
3857 { 3857 {
3858 "defaultMessage": "!!!Yes, I want the free 14 day trial of Franz Professional", 3858 "defaultMessage": "!!!Yes, I want the free 14 day trial of Franz Professional",
3859 "end": { 3859 "end": {
3860 "column": 3, 3860 "column": 3,
3861 "line": 32 3861 "line": 29
3862 }, 3862 },
3863 "file": "src/features/delayApp/Component.js", 3863 "file": "src/features/delayApp/Component.js",
3864 "id": "feature.delayApp.trial.action", 3864 "id": "feature.delayApp.trial.action",
3865 "start": { 3865 "start": {
3866 "column": 15, 3866 "column": 15,
3867 "line": 29 3867 "line": 26
3868 } 3868 }
3869 }, 3869 },
3870 { 3870 {
3871 "defaultMessage": "!!!Ferdi will continue in {seconds} seconds.", 3871 "defaultMessage": "!!!Ferdi will continue in {seconds} seconds.",
3872 "end": { 3872 "end": {
3873 "column": 3, 3873 "column": 3,
3874 "line": 36 3874 "line": 33
3875 }, 3875 },
3876 "file": "src/features/delayApp/Component.js", 3876 "file": "src/features/delayApp/Component.js",
3877 "id": "feature.delayApp.text", 3877 "id": "feature.delayApp.text",
3878 "start": { 3878 "start": {
3879 "column": 8, 3879 "column": 8,
3880 "line": 33 3880 "line": 30
3881 } 3881 }
3882 } 3882 }
3883 ], 3883 ],
@@ -3907,26 +3907,26 @@
3907 "defaultMessage": "!!!You have added {amount} of {limit} services. Please upgrade your account to add more services.", 3907 "defaultMessage": "!!!You have added {amount} of {limit} services. Please upgrade your account to add more services.",
3908 "end": { 3908 "end": {
3909 "column": 3, 3909 "column": 3,
3910 "line": 14 3910 "line": 12
3911 }, 3911 },
3912 "file": "src/features/serviceLimit/components/LimitReachedInfobox.js", 3912 "file": "src/features/serviceLimit/components/LimitReachedInfobox.js",
3913 "id": "feature.serviceLimit.limitReached", 3913 "id": "feature.serviceLimit.limitReached",
3914 "start": { 3914 "start": {
3915 "column": 16, 3915 "column": 16,
3916 "line": 11 3916 "line": 9
3917 } 3917 }
3918 }, 3918 },
3919 { 3919 {
3920 "defaultMessage": "!!!Upgrade account", 3920 "defaultMessage": "!!!Upgrade account",
3921 "end": { 3921 "end": {
3922 "column": 3, 3922 "column": 3,
3923 "line": 18 3923 "line": 16
3924 }, 3924 },
3925 "file": "src/features/serviceLimit/components/LimitReachedInfobox.js", 3925 "file": "src/features/serviceLimit/components/LimitReachedInfobox.js",
3926 "id": "premiumFeature.button.upgradeAccount", 3926 "id": "premiumFeature.button.upgradeAccount",
3927 "start": { 3927 "start": {
3928 "column": 10, 3928 "column": 10,
3929 "line": 15 3929 "line": 13
3930 } 3930 }
3931 } 3931 }
3932 ], 3932 ],
@@ -3938,91 +3938,91 @@
3938 "defaultMessage": "!!!Ferdi is better together!", 3938 "defaultMessage": "!!!Ferdi is better together!",
3939 "end": { 3939 "end": {
3940 "column": 3, 3940 "column": 3,
3941 "line": 21 3941 "line": 20
3942 }, 3942 },
3943 "file": "src/features/shareFranz/Component.js", 3943 "file": "src/features/shareFranz/Component.js",
3944 "id": "feature.shareFranz.headline", 3944 "id": "feature.shareFranz.headline",
3945 "start": { 3945 "start": {
3946 "column": 12, 3946 "column": 12,
3947 "line": 18 3947 "line": 17
3948 } 3948 }
3949 }, 3949 },
3950 { 3950 {
3951 "defaultMessage": "!!!Tell your friends and colleagues how awesome Ferdi is and help us to spread the word.", 3951 "defaultMessage": "!!!Tell your friends and colleagues how awesome Ferdi is and help us to spread the word.",
3952 "end": { 3952 "end": {
3953 "column": 3, 3953 "column": 3,
3954 "line": 25 3954 "line": 24
3955 }, 3955 },
3956 "file": "src/features/shareFranz/Component.js", 3956 "file": "src/features/shareFranz/Component.js",
3957 "id": "feature.shareFranz.text", 3957 "id": "feature.shareFranz.text",
3958 "start": { 3958 "start": {
3959 "column": 8, 3959 "column": 8,
3960 "line": 22 3960 "line": 21
3961 } 3961 }
3962 }, 3962 },
3963 { 3963 {
3964 "defaultMessage": "!!!Share as email", 3964 "defaultMessage": "!!!Share as email",
3965 "end": { 3965 "end": {
3966 "column": 3, 3966 "column": 3,
3967 "line": 29 3967 "line": 28
3968 }, 3968 },
3969 "file": "src/features/shareFranz/Component.js", 3969 "file": "src/features/shareFranz/Component.js",
3970 "id": "feature.shareFranz.action.email", 3970 "id": "feature.shareFranz.action.email",
3971 "start": { 3971 "start": {
3972 "column": 16, 3972 "column": 16,
3973 "line": 26 3973 "line": 25
3974 } 3974 }
3975 }, 3975 },
3976 { 3976 {
3977 "defaultMessage": "!!!Share on Facebook", 3977 "defaultMessage": "!!!Share on Facebook",
3978 "end": { 3978 "end": {
3979 "column": 3, 3979 "column": 3,
3980 "line": 33 3980 "line": 32
3981 }, 3981 },
3982 "file": "src/features/shareFranz/Component.js", 3982 "file": "src/features/shareFranz/Component.js",
3983 "id": "feature.shareFranz.action.facebook", 3983 "id": "feature.shareFranz.action.facebook",
3984 "start": { 3984 "start": {
3985 "column": 19, 3985 "column": 19,
3986 "line": 30 3986 "line": 29
3987 } 3987 }
3988 }, 3988 },
3989 { 3989 {
3990 "defaultMessage": "!!!Share on Twitter", 3990 "defaultMessage": "!!!Share on Twitter",
3991 "end": { 3991 "end": {
3992 "column": 3, 3992 "column": 3,
3993 "line": 37 3993 "line": 36
3994 }, 3994 },
3995 "file": "src/features/shareFranz/Component.js", 3995 "file": "src/features/shareFranz/Component.js",
3996 "id": "feature.shareFranz.action.twitter", 3996 "id": "feature.shareFranz.action.twitter",
3997 "start": { 3997 "start": {
3998 "column": 18, 3998 "column": 18,
3999 "line": 34 3999 "line": 33
4000 } 4000 }
4001 }, 4001 },
4002 { 4002 {
4003 "defaultMessage": "!!! I've added {count} services to Franz! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.meetfranz.com", 4003 "defaultMessage": "!!! I've added {count} services to Franz! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.meetfranz.com",
4004 "end": { 4004 "end": {
4005 "column": 3, 4005 "column": 3,
4006 "line": 41 4006 "line": 40
4007 }, 4007 },
4008 "file": "src/features/shareFranz/Component.js", 4008 "file": "src/features/shareFranz/Component.js",
4009 "id": "feature.shareFranz.shareText.email", 4009 "id": "feature.shareFranz.shareText.email",
4010 "start": { 4010 "start": {
4011 "column": 18, 4011 "column": 18,
4012 "line": 38 4012 "line": 37
4013 } 4013 }
4014 }, 4014 },
4015 { 4015 {
4016 "defaultMessage": "!!! I've added {count} services to Franz! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.meetfranz.com /cc @FranzMessenger", 4016 "defaultMessage": "!!! I've added {count} services to Franz! Get the free app for WhatsApp, Messenger, Slack, Skype and co at www.meetfranz.com /cc @FranzMessenger",
4017 "end": { 4017 "end": {
4018 "column": 3, 4018 "column": 3,
4019 "line": 45 4019 "line": 44
4020 }, 4020 },
4021 "file": "src/features/shareFranz/Component.js", 4021 "file": "src/features/shareFranz/Component.js",
4022 "id": "feature.shareFranz.shareText.twitter", 4022 "id": "feature.shareFranz.shareText.twitter",
4023 "start": { 4023 "start": {
4024 "column": 20, 4024 "column": 20,
4025 "line": 42 4025 "line": 41
4026 } 4026 }
4027 } 4027 }
4028 ], 4028 ],
@@ -4205,104 +4205,104 @@
4205 "defaultMessage": "!!!Workspaces", 4205 "defaultMessage": "!!!Workspaces",
4206 "end": { 4206 "end": {
4207 "column": 3, 4207 "column": 3,
4208 "line": 20 4208 "line": 19
4209 }, 4209 },
4210 "file": "src/features/workspaces/components/WorkspaceDrawer.js", 4210 "file": "src/features/workspaces/components/WorkspaceDrawer.js",
4211 "id": "workspaceDrawer.headline", 4211 "id": "workspaceDrawer.headline",
4212 "start": { 4212 "start": {
4213 "column": 12, 4213 "column": 12,
4214 "line": 17 4214 "line": 16
4215 } 4215 }
4216 }, 4216 },
4217 { 4217 {
4218 "defaultMessage": "!!!All services", 4218 "defaultMessage": "!!!All services",
4219 "end": { 4219 "end": {
4220 "column": 3, 4220 "column": 3,
4221 "line": 24 4221 "line": 23
4222 }, 4222 },
4223 "file": "src/features/workspaces/components/WorkspaceDrawer.js", 4223 "file": "src/features/workspaces/components/WorkspaceDrawer.js",
4224 "id": "workspaceDrawer.allServices", 4224 "id": "workspaceDrawer.allServices",
4225 "start": { 4225 "start": {
4226 "column": 15, 4226 "column": 15,
4227 "line": 21 4227 "line": 20
4228 } 4228 }
4229 }, 4229 },
4230 { 4230 {
4231 "defaultMessage": "!!!Workspaces settings", 4231 "defaultMessage": "!!!Workspaces settings",
4232 "end": { 4232 "end": {
4233 "column": 3, 4233 "column": 3,
4234 "line": 28 4234 "line": 27
4235 }, 4235 },
4236 "file": "src/features/workspaces/components/WorkspaceDrawer.js", 4236 "file": "src/features/workspaces/components/WorkspaceDrawer.js",
4237 "id": "workspaceDrawer.workspacesSettingsTooltip", 4237 "id": "workspaceDrawer.workspacesSettingsTooltip",
4238 "start": { 4238 "start": {
4239 "column": 29, 4239 "column": 29,
4240 "line": 25 4240 "line": 24
4241 } 4241 }
4242 }, 4242 },
4243 { 4243 {
4244 "defaultMessage": "!!!Info about workspace feature", 4244 "defaultMessage": "!!!Info about workspace feature",
4245 "end": { 4245 "end": {
4246 "column": 3, 4246 "column": 3,
4247 "line": 32 4247 "line": 31
4248 }, 4248 },
4249 "file": "src/features/workspaces/components/WorkspaceDrawer.js", 4249 "file": "src/features/workspaces/components/WorkspaceDrawer.js",
4250 "id": "workspaceDrawer.workspaceFeatureInfo", 4250 "id": "workspaceDrawer.workspaceFeatureInfo",
4251 "start": { 4251 "start": {
4252 "column": 24, 4252 "column": 24,
4253 "line": 29 4253 "line": 28
4254 } 4254 }
4255 }, 4255 },
4256 { 4256 {
4257 "defaultMessage": "!!!Create your first workspace", 4257 "defaultMessage": "!!!Create your first workspace",
4258 "end": { 4258 "end": {
4259 "column": 3, 4259 "column": 3,
4260 "line": 36 4260 "line": 35
4261 }, 4261 },
4262 "file": "src/features/workspaces/components/WorkspaceDrawer.js", 4262 "file": "src/features/workspaces/components/WorkspaceDrawer.js",
4263 "id": "workspaceDrawer.premiumCtaButtonLabel", 4263 "id": "workspaceDrawer.premiumCtaButtonLabel",
4264 "start": { 4264 "start": {
4265 "column": 25, 4265 "column": 25,
4266 "line": 33 4266 "line": 32
4267 } 4267 }
4268 }, 4268 },
4269 { 4269 {
4270 "defaultMessage": "!!!Reactivate premium account", 4270 "defaultMessage": "!!!Reactivate premium account",
4271 "end": { 4271 "end": {
4272 "column": 3, 4272 "column": 3,
4273 "line": 40 4273 "line": 39
4274 }, 4274 },
4275 "file": "src/features/workspaces/components/WorkspaceDrawer.js", 4275 "file": "src/features/workspaces/components/WorkspaceDrawer.js",
4276 "id": "workspaceDrawer.reactivatePremiumAccountLabel", 4276 "id": "workspaceDrawer.reactivatePremiumAccountLabel",
4277 "start": { 4277 "start": {
4278 "column": 28, 4278 "column": 28,
4279 "line": 37 4279 "line": 36
4280 } 4280 }
4281 }, 4281 },
4282 { 4282 {
4283 "defaultMessage": "!!!add new workspace", 4283 "defaultMessage": "!!!add new workspace",
4284 "end": { 4284 "end": {
4285 "column": 3, 4285 "column": 3,
4286 "line": 44 4286 "line": 43
4287 }, 4287 },
4288 "file": "src/features/workspaces/components/WorkspaceDrawer.js", 4288 "file": "src/features/workspaces/components/WorkspaceDrawer.js",
4289 "id": "workspaceDrawer.addNewWorkspaceLabel", 4289 "id": "workspaceDrawer.addNewWorkspaceLabel",
4290 "start": { 4290 "start": {
4291 "column": 24, 4291 "column": 24,
4292 "line": 41 4292 "line": 40
4293 } 4293 }
4294 }, 4294 },
4295 { 4295 {
4296 "defaultMessage": "!!!Premium feature", 4296 "defaultMessage": "!!!Premium feature",
4297 "end": { 4297 "end": {
4298 "column": 3, 4298 "column": 3,
4299 "line": 48 4299 "line": 47
4300 }, 4300 },
4301 "file": "src/features/workspaces/components/WorkspaceDrawer.js", 4301 "file": "src/features/workspaces/components/WorkspaceDrawer.js",
4302 "id": "workspaceDrawer.proFeatureBadge", 4302 "id": "workspaceDrawer.proFeatureBadge",
4303 "start": { 4303 "start": {
4304 "column": 23, 4304 "column": 23,
4305 "line": 45 4305 "line": 44
4306 } 4306 }
4307 } 4307 }
4308 ], 4308 ],
@@ -4778,793 +4778,793 @@
4778 "defaultMessage": "!!!Edit", 4778 "defaultMessage": "!!!Edit",
4779 "end": { 4779 "end": {
4780 "column": 3, 4780 "column": 3,
4781 "line": 21 4781 "line": 20
4782 }, 4782 },
4783 "file": "src/lib/Menu.js", 4783 "file": "src/lib/Menu.js",
4784 "id": "menu.edit", 4784 "id": "menu.edit",
4785 "start": { 4785 "start": {
4786 "column": 8, 4786 "column": 8,
4787 "line": 18 4787 "line": 17
4788 } 4788 }
4789 }, 4789 },
4790 { 4790 {
4791 "defaultMessage": "!!!Undo", 4791 "defaultMessage": "!!!Undo",
4792 "end": { 4792 "end": {
4793 "column": 3, 4793 "column": 3,
4794 "line": 25 4794 "line": 24
4795 }, 4795 },
4796 "file": "src/lib/Menu.js", 4796 "file": "src/lib/Menu.js",
4797 "id": "menu.edit.undo", 4797 "id": "menu.edit.undo",
4798 "start": { 4798 "start": {
4799 "column": 8, 4799 "column": 8,
4800 "line": 22 4800 "line": 21
4801 } 4801 }
4802 }, 4802 },
4803 { 4803 {
4804 "defaultMessage": "!!!Redo", 4804 "defaultMessage": "!!!Redo",
4805 "end": { 4805 "end": {
4806 "column": 3, 4806 "column": 3,
4807 "line": 29 4807 "line": 28
4808 }, 4808 },
4809 "file": "src/lib/Menu.js", 4809 "file": "src/lib/Menu.js",
4810 "id": "menu.edit.redo", 4810 "id": "menu.edit.redo",
4811 "start": { 4811 "start": {
4812 "column": 8, 4812 "column": 8,
4813 "line": 26 4813 "line": 25
4814 } 4814 }
4815 }, 4815 },
4816 { 4816 {
4817 "defaultMessage": "!!!Cut", 4817 "defaultMessage": "!!!Cut",
4818 "end": { 4818 "end": {
4819 "column": 3, 4819 "column": 3,
4820 "line": 33 4820 "line": 32
4821 }, 4821 },
4822 "file": "src/lib/Menu.js", 4822 "file": "src/lib/Menu.js",
4823 "id": "menu.edit.cut", 4823 "id": "menu.edit.cut",
4824 "start": { 4824 "start": {
4825 "column": 7, 4825 "column": 7,
4826 "line": 30 4826 "line": 29
4827 } 4827 }
4828 }, 4828 },
4829 { 4829 {
4830 "defaultMessage": "!!!Copy", 4830 "defaultMessage": "!!!Copy",
4831 "end": { 4831 "end": {
4832 "column": 3, 4832 "column": 3,
4833 "line": 37 4833 "line": 36
4834 }, 4834 },
4835 "file": "src/lib/Menu.js", 4835 "file": "src/lib/Menu.js",
4836 "id": "menu.edit.copy", 4836 "id": "menu.edit.copy",
4837 "start": { 4837 "start": {
4838 "column": 8, 4838 "column": 8,
4839 "line": 34 4839 "line": 33
4840 } 4840 }
4841 }, 4841 },
4842 { 4842 {
4843 "defaultMessage": "!!!Paste", 4843 "defaultMessage": "!!!Paste",
4844 "end": { 4844 "end": {
4845 "column": 3, 4845 "column": 3,
4846 "line": 41 4846 "line": 40
4847 }, 4847 },
4848 "file": "src/lib/Menu.js", 4848 "file": "src/lib/Menu.js",
4849 "id": "menu.edit.paste", 4849 "id": "menu.edit.paste",
4850 "start": { 4850 "start": {
4851 "column": 9, 4851 "column": 9,
4852 "line": 38 4852 "line": 37
4853 } 4853 }
4854 }, 4854 },
4855 { 4855 {
4856 "defaultMessage": "!!!Paste And Match Style", 4856 "defaultMessage": "!!!Paste And Match Style",
4857 "end": { 4857 "end": {
4858 "column": 3, 4858 "column": 3,
4859 "line": 45 4859 "line": 44
4860 }, 4860 },
4861 "file": "src/lib/Menu.js", 4861 "file": "src/lib/Menu.js",
4862 "id": "menu.edit.pasteAndMatchStyle", 4862 "id": "menu.edit.pasteAndMatchStyle",
4863 "start": { 4863 "start": {
4864 "column": 22, 4864 "column": 22,
4865 "line": 42 4865 "line": 41
4866 } 4866 }
4867 }, 4867 },
4868 { 4868 {
4869 "defaultMessage": "!!!Delete", 4869 "defaultMessage": "!!!Delete",
4870 "end": { 4870 "end": {
4871 "column": 3, 4871 "column": 3,
4872 "line": 49 4872 "line": 48
4873 }, 4873 },
4874 "file": "src/lib/Menu.js", 4874 "file": "src/lib/Menu.js",
4875 "id": "menu.edit.delete", 4875 "id": "menu.edit.delete",
4876 "start": { 4876 "start": {
4877 "column": 10, 4877 "column": 10,
4878 "line": 46 4878 "line": 45
4879 } 4879 }
4880 }, 4880 },
4881 { 4881 {
4882 "defaultMessage": "!!!Select All", 4882 "defaultMessage": "!!!Select All",
4883 "end": { 4883 "end": {
4884 "column": 3, 4884 "column": 3,
4885 "line": 53 4885 "line": 52
4886 }, 4886 },
4887 "file": "src/lib/Menu.js", 4887 "file": "src/lib/Menu.js",
4888 "id": "menu.edit.selectAll", 4888 "id": "menu.edit.selectAll",
4889 "start": { 4889 "start": {
4890 "column": 13, 4890 "column": 13,
4891 "line": 50 4891 "line": 49
4892 } 4892 }
4893 }, 4893 },
4894 { 4894 {
4895 "defaultMessage": "!!!Speech", 4895 "defaultMessage": "!!!Speech",
4896 "end": { 4896 "end": {
4897 "column": 3, 4897 "column": 3,
4898 "line": 57 4898 "line": 56
4899 }, 4899 },
4900 "file": "src/lib/Menu.js", 4900 "file": "src/lib/Menu.js",
4901 "id": "menu.edit.speech", 4901 "id": "menu.edit.speech",
4902 "start": { 4902 "start": {
4903 "column": 10, 4903 "column": 10,
4904 "line": 54 4904 "line": 53
4905 } 4905 }
4906 }, 4906 },
4907 { 4907 {
4908 "defaultMessage": "!!!Start Speaking", 4908 "defaultMessage": "!!!Start Speaking",
4909 "end": { 4909 "end": {
4910 "column": 3, 4910 "column": 3,
4911 "line": 61 4911 "line": 60
4912 }, 4912 },
4913 "file": "src/lib/Menu.js", 4913 "file": "src/lib/Menu.js",
4914 "id": "menu.edit.startSpeaking", 4914 "id": "menu.edit.startSpeaking",
4915 "start": { 4915 "start": {
4916 "column": 17, 4916 "column": 17,
4917 "line": 58 4917 "line": 57
4918 } 4918 }
4919 }, 4919 },
4920 { 4920 {
4921 "defaultMessage": "!!!Stop Speaking", 4921 "defaultMessage": "!!!Stop Speaking",
4922 "end": { 4922 "end": {
4923 "column": 3, 4923 "column": 3,
4924 "line": 65 4924 "line": 64
4925 }, 4925 },
4926 "file": "src/lib/Menu.js", 4926 "file": "src/lib/Menu.js",
4927 "id": "menu.edit.stopSpeaking", 4927 "id": "menu.edit.stopSpeaking",
4928 "start": { 4928 "start": {
4929 "column": 16, 4929 "column": 16,
4930 "line": 62 4930 "line": 61
4931 } 4931 }
4932 }, 4932 },
4933 { 4933 {
4934 "defaultMessage": "!!!Start Dictation", 4934 "defaultMessage": "!!!Start Dictation",
4935 "end": { 4935 "end": {
4936 "column": 3, 4936 "column": 3,
4937 "line": 69 4937 "line": 68
4938 }, 4938 },
4939 "file": "src/lib/Menu.js", 4939 "file": "src/lib/Menu.js",
4940 "id": "menu.edit.startDictation", 4940 "id": "menu.edit.startDictation",
4941 "start": { 4941 "start": {
4942 "column": 18, 4942 "column": 18,
4943 "line": 66 4943 "line": 65
4944 } 4944 }
4945 }, 4945 },
4946 { 4946 {
4947 "defaultMessage": "!!!Emoji & Symbols", 4947 "defaultMessage": "!!!Emoji & Symbols",
4948 "end": { 4948 "end": {
4949 "column": 3, 4949 "column": 3,
4950 "line": 73 4950 "line": 72
4951 }, 4951 },
4952 "file": "src/lib/Menu.js", 4952 "file": "src/lib/Menu.js",
4953 "id": "menu.edit.emojiSymbols", 4953 "id": "menu.edit.emojiSymbols",
4954 "start": { 4954 "start": {
4955 "column": 16, 4955 "column": 16,
4956 "line": 70 4956 "line": 69
4957 } 4957 }
4958 }, 4958 },
4959 { 4959 {
4960 "defaultMessage": "!!!Actual Size", 4960 "defaultMessage": "!!!Actual Size",
4961 "end": { 4961 "end": {
4962 "column": 3, 4962 "column": 3,
4963 "line": 77 4963 "line": 76
4964 }, 4964 },
4965 "file": "src/lib/Menu.js", 4965 "file": "src/lib/Menu.js",
4966 "id": "menu.view.resetZoom", 4966 "id": "menu.view.resetZoom",
4967 "start": { 4967 "start": {
4968 "column": 13, 4968 "column": 13,
4969 "line": 74 4969 "line": 73
4970 } 4970 }
4971 }, 4971 },
4972 { 4972 {
4973 "defaultMessage": "!!!Zoom In", 4973 "defaultMessage": "!!!Zoom In",
4974 "end": { 4974 "end": {
4975 "column": 3, 4975 "column": 3,
4976 "line": 81 4976 "line": 80
4977 }, 4977 },
4978 "file": "src/lib/Menu.js", 4978 "file": "src/lib/Menu.js",
4979 "id": "menu.view.zoomIn", 4979 "id": "menu.view.zoomIn",
4980 "start": { 4980 "start": {
4981 "column": 10, 4981 "column": 10,
4982 "line": 78 4982 "line": 77
4983 } 4983 }
4984 }, 4984 },
4985 { 4985 {
4986 "defaultMessage": "!!!Zoom Out", 4986 "defaultMessage": "!!!Zoom Out",
4987 "end": { 4987 "end": {
4988 "column": 3, 4988 "column": 3,
4989 "line": 85 4989 "line": 84
4990 }, 4990 },
4991 "file": "src/lib/Menu.js", 4991 "file": "src/lib/Menu.js",
4992 "id": "menu.view.zoomOut", 4992 "id": "menu.view.zoomOut",
4993 "start": { 4993 "start": {
4994 "column": 11, 4994 "column": 11,
4995 "line": 82 4995 "line": 81
4996 } 4996 }
4997 }, 4997 },
4998 { 4998 {
4999 "defaultMessage": "!!!Enter Full Screen", 4999 "defaultMessage": "!!!Enter Full Screen",
5000 "end": { 5000 "end": {
5001 "column": 3, 5001 "column": 3,
5002 "line": 89 5002 "line": 88
5003 }, 5003 },
5004 "file": "src/lib/Menu.js", 5004 "file": "src/lib/Menu.js",
5005 "id": "menu.view.enterFullScreen", 5005 "id": "menu.view.enterFullScreen",
5006 "start": { 5006 "start": {
5007 "column": 19, 5007 "column": 19,
5008 "line": 86 5008 "line": 85
5009 } 5009 }
5010 }, 5010 },
5011 { 5011 {
5012 "defaultMessage": "!!!Exit Full Screen", 5012 "defaultMessage": "!!!Exit Full Screen",
5013 "end": { 5013 "end": {
5014 "column": 3, 5014 "column": 3,
5015 "line": 93 5015 "line": 92
5016 }, 5016 },
5017 "file": "src/lib/Menu.js", 5017 "file": "src/lib/Menu.js",
5018 "id": "menu.view.exitFullScreen", 5018 "id": "menu.view.exitFullScreen",
5019 "start": { 5019 "start": {
5020 "column": 18, 5020 "column": 18,
5021 "line": 90 5021 "line": 89
5022 } 5022 }
5023 }, 5023 },
5024 { 5024 {
5025 "defaultMessage": "!!!Toggle Full Screen", 5025 "defaultMessage": "!!!Toggle Full Screen",
5026 "end": { 5026 "end": {
5027 "column": 3, 5027 "column": 3,
5028 "line": 97 5028 "line": 96
5029 }, 5029 },
5030 "file": "src/lib/Menu.js", 5030 "file": "src/lib/Menu.js",
5031 "id": "menu.view.toggleFullScreen", 5031 "id": "menu.view.toggleFullScreen",
5032 "start": { 5032 "start": {
5033 "column": 20, 5033 "column": 20,
5034 "line": 94 5034 "line": 93
5035 } 5035 }
5036 }, 5036 },
5037 { 5037 {
5038 "defaultMessage": "!!!Toggle Developer Tools", 5038 "defaultMessage": "!!!Toggle Developer Tools",
5039 "end": { 5039 "end": {
5040 "column": 3, 5040 "column": 3,
5041 "line": 101 5041 "line": 100
5042 }, 5042 },
5043 "file": "src/lib/Menu.js", 5043 "file": "src/lib/Menu.js",
5044 "id": "menu.view.toggleDevTools", 5044 "id": "menu.view.toggleDevTools",
5045 "start": { 5045 "start": {
5046 "column": 18, 5046 "column": 18,
5047 "line": 98 5047 "line": 97
5048 } 5048 }
5049 }, 5049 },
5050 { 5050 {
5051 "defaultMessage": "!!!Toggle Todos Developer Tools", 5051 "defaultMessage": "!!!Toggle Todos Developer Tools",
5052 "end": { 5052 "end": {
5053 "column": 3, 5053 "column": 3,
5054 "line": 105 5054 "line": 104
5055 }, 5055 },
5056 "file": "src/lib/Menu.js", 5056 "file": "src/lib/Menu.js",
5057 "id": "menu.view.toggleTodosDevTools", 5057 "id": "menu.view.toggleTodosDevTools",
5058 "start": { 5058 "start": {
5059 "column": 23, 5059 "column": 23,
5060 "line": 102 5060 "line": 101
5061 } 5061 }
5062 }, 5062 },
5063 { 5063 {
5064 "defaultMessage": "!!!Toggle Service Developer Tools", 5064 "defaultMessage": "!!!Toggle Service Developer Tools",
5065 "end": { 5065 "end": {
5066 "column": 3, 5066 "column": 3,
5067 "line": 109 5067 "line": 108
5068 }, 5068 },
5069 "file": "src/lib/Menu.js", 5069 "file": "src/lib/Menu.js",
5070 "id": "menu.view.toggleServiceDevTools", 5070 "id": "menu.view.toggleServiceDevTools",
5071 "start": { 5071 "start": {
5072 "column": 25, 5072 "column": 25,
5073 "line": 106 5073 "line": 105
5074 } 5074 }
5075 }, 5075 },
5076 { 5076 {
5077 "defaultMessage": "!!!Reload Service", 5077 "defaultMessage": "!!!Reload Service",
5078 "end": { 5078 "end": {
5079 "column": 3, 5079 "column": 3,
5080 "line": 113 5080 "line": 112
5081 }, 5081 },
5082 "file": "src/lib/Menu.js", 5082 "file": "src/lib/Menu.js",
5083 "id": "menu.view.reloadService", 5083 "id": "menu.view.reloadService",
5084 "start": { 5084 "start": {
5085 "column": 17, 5085 "column": 17,
5086 "line": 110 5086 "line": 109
5087 } 5087 }
5088 }, 5088 },
5089 { 5089 {
5090 "defaultMessage": "!!!Reload Franz", 5090 "defaultMessage": "!!!Reload Franz",
5091 "end": { 5091 "end": {
5092 "column": 3, 5092 "column": 3,
5093 "line": 117 5093 "line": 116
5094 }, 5094 },
5095 "file": "src/lib/Menu.js", 5095 "file": "src/lib/Menu.js",
5096 "id": "menu.view.reloadFranz", 5096 "id": "menu.view.reloadFranz",
5097 "start": { 5097 "start": {
5098 "column": 15, 5098 "column": 15,
5099 "line": 114 5099 "line": 113
5100 } 5100 }
5101 }, 5101 },
5102 { 5102 {
5103 "defaultMessage": "!!!Minimize", 5103 "defaultMessage": "!!!Minimize",
5104 "end": { 5104 "end": {
5105 "column": 3, 5105 "column": 3,
5106 "line": 121 5106 "line": 120
5107 }, 5107 },
5108 "file": "src/lib/Menu.js", 5108 "file": "src/lib/Menu.js",
5109 "id": "menu.window.minimize", 5109 "id": "menu.window.minimize",
5110 "start": { 5110 "start": {
5111 "column": 12, 5111 "column": 12,
5112 "line": 118 5112 "line": 117
5113 } 5113 }
5114 }, 5114 },
5115 { 5115 {
5116 "defaultMessage": "!!!Close", 5116 "defaultMessage": "!!!Close",
5117 "end": { 5117 "end": {
5118 "column": 3, 5118 "column": 3,
5119 "line": 125 5119 "line": 124
5120 }, 5120 },
5121 "file": "src/lib/Menu.js", 5121 "file": "src/lib/Menu.js",
5122 "id": "menu.window.close", 5122 "id": "menu.window.close",
5123 "start": { 5123 "start": {
5124 "column": 9, 5124 "column": 9,
5125 "line": 122 5125 "line": 121
5126 } 5126 }
5127 }, 5127 },
5128 { 5128 {
5129 "defaultMessage": "!!!Learn More", 5129 "defaultMessage": "!!!Learn More",
5130 "end": { 5130 "end": {
5131 "column": 3, 5131 "column": 3,
5132 "line": 129 5132 "line": 128
5133 }, 5133 },
5134 "file": "src/lib/Menu.js", 5134 "file": "src/lib/Menu.js",
5135 "id": "menu.help.learnMore", 5135 "id": "menu.help.learnMore",
5136 "start": { 5136 "start": {
5137 "column": 13, 5137 "column": 13,
5138 "line": 126 5138 "line": 125
5139 } 5139 }
5140 }, 5140 },
5141 { 5141 {
5142 "defaultMessage": "!!!Changelog", 5142 "defaultMessage": "!!!Changelog",
5143 "end": { 5143 "end": {
5144 "column": 3, 5144 "column": 3,
5145 "line": 133 5145 "line": 132
5146 }, 5146 },
5147 "file": "src/lib/Menu.js", 5147 "file": "src/lib/Menu.js",
5148 "id": "menu.help.changelog", 5148 "id": "menu.help.changelog",
5149 "start": { 5149 "start": {
5150 "column": 13, 5150 "column": 13,
5151 "line": 130 5151 "line": 129
5152 } 5152 }
5153 }, 5153 },
5154 { 5154 {
5155 "defaultMessage": "!!!Support", 5155 "defaultMessage": "!!!Support",
5156 "end": { 5156 "end": {
5157 "column": 3, 5157 "column": 3,
5158 "line": 137 5158 "line": 136
5159 }, 5159 },
5160 "file": "src/lib/Menu.js", 5160 "file": "src/lib/Menu.js",
5161 "id": "menu.help.support", 5161 "id": "menu.help.support",
5162 "start": { 5162 "start": {
5163 "column": 11, 5163 "column": 11,
5164 "line": 134 5164 "line": 133
5165 } 5165 }
5166 }, 5166 },
5167 { 5167 {
5168 "defaultMessage": "!!!Copy Debug Information", 5168 "defaultMessage": "!!!Copy Debug Information",
5169 "end": { 5169 "end": {
5170 "column": 3, 5170 "column": 3,
5171 "line": 141 5171 "line": 140
5172 }, 5172 },
5173 "file": "src/lib/Menu.js", 5173 "file": "src/lib/Menu.js",
5174 "id": "menu.help.debugInfo", 5174 "id": "menu.help.debugInfo",
5175 "start": { 5175 "start": {
5176 "column": 13, 5176 "column": 13,
5177 "line": 138 5177 "line": 137
5178 } 5178 }
5179 }, 5179 },
5180 { 5180 {
5181 "defaultMessage": "!!!Ferdi Debug Information", 5181 "defaultMessage": "!!!Ferdi Debug Information",
5182 "end": { 5182 "end": {
5183 "column": 3, 5183 "column": 3,
5184 "line": 145 5184 "line": 144
5185 }, 5185 },
5186 "file": "src/lib/Menu.js", 5186 "file": "src/lib/Menu.js",
5187 "id": "menu.help.debugInfoCopiedHeadline", 5187 "id": "menu.help.debugInfoCopiedHeadline",
5188 "start": { 5188 "start": {
5189 "column": 27, 5189 "column": 27,
5190 "line": 142 5190 "line": 141
5191 } 5191 }
5192 }, 5192 },
5193 { 5193 {
5194 "defaultMessage": "!!!Your Debug Information has been copied to your clipboard.", 5194 "defaultMessage": "!!!Your Debug Information has been copied to your clipboard.",
5195 "end": { 5195 "end": {
5196 "column": 3, 5196 "column": 3,
5197 "line": 149 5197 "line": 148
5198 }, 5198 },
5199 "file": "src/lib/Menu.js", 5199 "file": "src/lib/Menu.js",
5200 "id": "menu.help.debugInfoCopiedBody", 5200 "id": "menu.help.debugInfoCopiedBody",
5201 "start": { 5201 "start": {
5202 "column": 23, 5202 "column": 23,
5203 "line": 146 5203 "line": 145
5204 } 5204 }
5205 }, 5205 },
5206 { 5206 {
5207 "defaultMessage": "!!!Terms of Service", 5207 "defaultMessage": "!!!Terms of Service",
5208 "end": { 5208 "end": {
5209 "column": 3, 5209 "column": 3,
5210 "line": 153 5210 "line": 152
5211 }, 5211 },
5212 "file": "src/lib/Menu.js", 5212 "file": "src/lib/Menu.js",
5213 "id": "menu.help.tos", 5213 "id": "menu.help.tos",
5214 "start": { 5214 "start": {
5215 "column": 7, 5215 "column": 7,
5216 "line": 150 5216 "line": 149
5217 } 5217 }
5218 }, 5218 },
5219 { 5219 {
5220 "defaultMessage": "!!!Privacy Statement", 5220 "defaultMessage": "!!!Privacy Statement",
5221 "end": { 5221 "end": {
5222 "column": 3, 5222 "column": 3,
5223 "line": 157 5223 "line": 156
5224 }, 5224 },
5225 "file": "src/lib/Menu.js", 5225 "file": "src/lib/Menu.js",
5226 "id": "menu.help.privacy", 5226 "id": "menu.help.privacy",
5227 "start": { 5227 "start": {
5228 "column": 11, 5228 "column": 11,
5229 "line": 154 5229 "line": 153
5230 } 5230 }
5231 }, 5231 },
5232 { 5232 {
5233 "defaultMessage": "!!!File", 5233 "defaultMessage": "!!!File",
5234 "end": { 5234 "end": {
5235 "column": 3, 5235 "column": 3,
5236 "line": 161 5236 "line": 160
5237 }, 5237 },
5238 "file": "src/lib/Menu.js", 5238 "file": "src/lib/Menu.js",
5239 "id": "menu.file", 5239 "id": "menu.file",
5240 "start": { 5240 "start": {
5241 "column": 8, 5241 "column": 8,
5242 "line": 158 5242 "line": 157
5243 } 5243 }
5244 }, 5244 },
5245 { 5245 {
5246 "defaultMessage": "!!!View", 5246 "defaultMessage": "!!!View",
5247 "end": { 5247 "end": {
5248 "column": 3, 5248 "column": 3,
5249 "line": 165 5249 "line": 164
5250 }, 5250 },
5251 "file": "src/lib/Menu.js", 5251 "file": "src/lib/Menu.js",
5252 "id": "menu.view", 5252 "id": "menu.view",
5253 "start": { 5253 "start": {
5254 "column": 8, 5254 "column": 8,
5255 "line": 162 5255 "line": 161
5256 } 5256 }
5257 }, 5257 },
5258 { 5258 {
5259 "defaultMessage": "!!!Services", 5259 "defaultMessage": "!!!Services",
5260 "end": { 5260 "end": {
5261 "column": 3, 5261 "column": 3,
5262 "line": 169 5262 "line": 168
5263 }, 5263 },
5264 "file": "src/lib/Menu.js", 5264 "file": "src/lib/Menu.js",
5265 "id": "menu.services", 5265 "id": "menu.services",
5266 "start": { 5266 "start": {
5267 "column": 12, 5267 "column": 12,
5268 "line": 166 5268 "line": 165
5269 } 5269 }
5270 }, 5270 },
5271 { 5271 {
5272 "defaultMessage": "!!!Window", 5272 "defaultMessage": "!!!Window",
5273 "end": { 5273 "end": {
5274 "column": 3, 5274 "column": 3,
5275 "line": 173 5275 "line": 172
5276 }, 5276 },
5277 "file": "src/lib/Menu.js", 5277 "file": "src/lib/Menu.js",
5278 "id": "menu.window", 5278 "id": "menu.window",
5279 "start": { 5279 "start": {
5280 "column": 10, 5280 "column": 10,
5281 "line": 170 5281 "line": 169
5282 } 5282 }
5283 }, 5283 },
5284 { 5284 {
5285 "defaultMessage": "!!!Help", 5285 "defaultMessage": "!!!Help",
5286 "end": { 5286 "end": {
5287 "column": 3, 5287 "column": 3,
5288 "line": 177 5288 "line": 176
5289 }, 5289 },
5290 "file": "src/lib/Menu.js", 5290 "file": "src/lib/Menu.js",
5291 "id": "menu.help", 5291 "id": "menu.help",
5292 "start": { 5292 "start": {
5293 "column": 8, 5293 "column": 8,
5294 "line": 174 5294 "line": 173
5295 } 5295 }
5296 }, 5296 },
5297 { 5297 {
5298 "defaultMessage": "!!!About Franz", 5298 "defaultMessage": "!!!About Franz",
5299 "end": { 5299 "end": {
5300 "column": 3, 5300 "column": 3,
5301 "line": 181 5301 "line": 180
5302 }, 5302 },
5303 "file": "src/lib/Menu.js", 5303 "file": "src/lib/Menu.js",
5304 "id": "menu.app.about", 5304 "id": "menu.app.about",
5305 "start": { 5305 "start": {
5306 "column": 9, 5306 "column": 9,
5307 "line": 178 5307 "line": 177
5308 } 5308 }
5309 }, 5309 },
5310 { 5310 {
5311 "defaultMessage": "!!!What's new?", 5311 "defaultMessage": "!!!What's new?",
5312 "end": { 5312 "end": {
5313 "column": 3, 5313 "column": 3,
5314 "line": 185 5314 "line": 184
5315 }, 5315 },
5316 "file": "src/lib/Menu.js", 5316 "file": "src/lib/Menu.js",
5317 "id": "menu.app.announcement", 5317 "id": "menu.app.announcement",
5318 "start": { 5318 "start": {
5319 "column": 16, 5319 "column": 16,
5320 "line": 182 5320 "line": 181
5321 } 5321 }
5322 }, 5322 },
5323 { 5323 {
5324 "defaultMessage": "!!!Settings", 5324 "defaultMessage": "!!!Settings",
5325 "end": { 5325 "end": {
5326 "column": 3, 5326 "column": 3,
5327 "line": 189 5327 "line": 188
5328 }, 5328 },
5329 "file": "src/lib/Menu.js", 5329 "file": "src/lib/Menu.js",
5330 "id": "menu.app.settings", 5330 "id": "menu.app.settings",
5331 "start": { 5331 "start": {
5332 "column": 12, 5332 "column": 12,
5333 "line": 186 5333 "line": 185
5334 } 5334 }
5335 }, 5335 },
5336 { 5336 {
5337 "defaultMessage": "!!!Check for updates", 5337 "defaultMessage": "!!!Check for updates",
5338 "end": { 5338 "end": {
5339 "column": 3, 5339 "column": 3,
5340 "line": 193 5340 "line": 192
5341 }, 5341 },
5342 "file": "src/lib/Menu.js", 5342 "file": "src/lib/Menu.js",
5343 "id": "menu.app.checkForUpdates", 5343 "id": "menu.app.checkForUpdates",
5344 "start": { 5344 "start": {
5345 "column": 19, 5345 "column": 19,
5346 "line": 190 5346 "line": 189
5347 } 5347 }
5348 }, 5348 },
5349 { 5349 {
5350 "defaultMessage": "!!!Hide", 5350 "defaultMessage": "!!!Hide",
5351 "end": { 5351 "end": {
5352 "column": 3, 5352 "column": 3,
5353 "line": 197 5353 "line": 196
5354 }, 5354 },
5355 "file": "src/lib/Menu.js", 5355 "file": "src/lib/Menu.js",
5356 "id": "menu.app.hide", 5356 "id": "menu.app.hide",
5357 "start": { 5357 "start": {
5358 "column": 8, 5358 "column": 8,
5359 "line": 194 5359 "line": 193
5360 } 5360 }
5361 }, 5361 },
5362 { 5362 {
5363 "defaultMessage": "!!!Hide Others", 5363 "defaultMessage": "!!!Hide Others",
5364 "end": { 5364 "end": {
5365 "column": 3, 5365 "column": 3,
5366 "line": 201 5366 "line": 200
5367 }, 5367 },
5368 "file": "src/lib/Menu.js", 5368 "file": "src/lib/Menu.js",
5369 "id": "menu.app.hideOthers", 5369 "id": "menu.app.hideOthers",
5370 "start": { 5370 "start": {
5371 "column": 14, 5371 "column": 14,
5372 "line": 198 5372 "line": 197
5373 } 5373 }
5374 }, 5374 },
5375 { 5375 {
5376 "defaultMessage": "!!!Unhide", 5376 "defaultMessage": "!!!Unhide",
5377 "end": { 5377 "end": {
5378 "column": 3, 5378 "column": 3,
5379 "line": 205 5379 "line": 204
5380 }, 5380 },
5381 "file": "src/lib/Menu.js", 5381 "file": "src/lib/Menu.js",
5382 "id": "menu.app.unhide", 5382 "id": "menu.app.unhide",
5383 "start": { 5383 "start": {
5384 "column": 10, 5384 "column": 10,
5385 "line": 202 5385 "line": 201
5386 } 5386 }
5387 }, 5387 },
5388 { 5388 {
5389 "defaultMessage": "!!!Quit", 5389 "defaultMessage": "!!!Quit",
5390 "end": { 5390 "end": {
5391 "column": 3, 5391 "column": 3,
5392 "line": 209 5392 "line": 208
5393 }, 5393 },
5394 "file": "src/lib/Menu.js", 5394 "file": "src/lib/Menu.js",
5395 "id": "menu.app.quit", 5395 "id": "menu.app.quit",
5396 "start": { 5396 "start": {
5397 "column": 8, 5397 "column": 8,
5398 "line": 206 5398 "line": 205
5399 } 5399 }
5400 }, 5400 },
5401 { 5401 {
5402 "defaultMessage": "!!!Add New Service...", 5402 "defaultMessage": "!!!Add New Service...",
5403 "end": { 5403 "end": {
5404 "column": 3, 5404 "column": 3,
5405 "line": 213 5405 "line": 212
5406 }, 5406 },
5407 "file": "src/lib/Menu.js", 5407 "file": "src/lib/Menu.js",
5408 "id": "menu.services.addNewService", 5408 "id": "menu.services.addNewService",
5409 "start": { 5409 "start": {
5410 "column": 17, 5410 "column": 17,
5411 "line": 210 5411 "line": 209
5412 } 5412 }
5413 }, 5413 },
5414 { 5414 {
5415 "defaultMessage": "!!!Add New Workspace...", 5415 "defaultMessage": "!!!Add New Workspace...",
5416 "end": { 5416 "end": {
5417 "column": 3, 5417 "column": 3,
5418 "line": 217 5418 "line": 216
5419 }, 5419 },
5420 "file": "src/lib/Menu.js", 5420 "file": "src/lib/Menu.js",
5421 "id": "menu.workspaces.addNewWorkspace", 5421 "id": "menu.workspaces.addNewWorkspace",
5422 "start": { 5422 "start": {
5423 "column": 19, 5423 "column": 19,
5424 "line": 214 5424 "line": 213
5425 } 5425 }
5426 }, 5426 },
5427 { 5427 {
5428 "defaultMessage": "!!!Open workspace drawer", 5428 "defaultMessage": "!!!Open workspace drawer",
5429 "end": { 5429 "end": {
5430 "column": 3, 5430 "column": 3,
5431 "line": 221 5431 "line": 220
5432 }, 5432 },
5433 "file": "src/lib/Menu.js", 5433 "file": "src/lib/Menu.js",
5434 "id": "menu.workspaces.openWorkspaceDrawer", 5434 "id": "menu.workspaces.openWorkspaceDrawer",
5435 "start": { 5435 "start": {
5436 "column": 23, 5436 "column": 23,
5437 "line": 218 5437 "line": 217
5438 } 5438 }
5439 }, 5439 },
5440 { 5440 {
5441 "defaultMessage": "!!!Close workspace drawer", 5441 "defaultMessage": "!!!Close workspace drawer",
5442 "end": { 5442 "end": {
5443 "column": 3, 5443 "column": 3,
5444 "line": 225 5444 "line": 224
5445 }, 5445 },
5446 "file": "src/lib/Menu.js", 5446 "file": "src/lib/Menu.js",
5447 "id": "menu.workspaces.closeWorkspaceDrawer", 5447 "id": "menu.workspaces.closeWorkspaceDrawer",
5448 "start": { 5448 "start": {
5449 "column": 24, 5449 "column": 24,
5450 "line": 222 5450 "line": 221
5451 } 5451 }
5452 }, 5452 },
5453 { 5453 {
5454 "defaultMessage": "!!!Activate next service...", 5454 "defaultMessage": "!!!Activate next service...",
5455 "end": { 5455 "end": {
5456 "column": 3, 5456 "column": 3,
5457 "line": 229 5457 "line": 228
5458 }, 5458 },
5459 "file": "src/lib/Menu.js", 5459 "file": "src/lib/Menu.js",
5460 "id": "menu.services.setNextServiceActive", 5460 "id": "menu.services.setNextServiceActive",
5461 "start": { 5461 "start": {
5462 "column": 23, 5462 "column": 23,
5463 "line": 226 5463 "line": 225
5464 } 5464 }
5465 }, 5465 },
5466 { 5466 {
5467 "defaultMessage": "!!!Activate previous service...", 5467 "defaultMessage": "!!!Activate previous service...",
5468 "end": { 5468 "end": {
5469 "column": 3, 5469 "column": 3,
5470 "line": 233 5470 "line": 232
5471 }, 5471 },
5472 "file": "src/lib/Menu.js", 5472 "file": "src/lib/Menu.js",
5473 "id": "menu.services.activatePreviousService", 5473 "id": "menu.services.activatePreviousService",
5474 "start": { 5474 "start": {
5475 "column": 27, 5475 "column": 27,
5476 "line": 230 5476 "line": 229
5477 } 5477 }
5478 }, 5478 },
5479 { 5479 {
5480 "defaultMessage": "!!!Disable notifications & audio", 5480 "defaultMessage": "!!!Disable notifications & audio",
5481 "end": { 5481 "end": {
5482 "column": 3, 5482 "column": 3,
5483 "line": 237 5483 "line": 236
5484 }, 5484 },
5485 "file": "src/lib/Menu.js", 5485 "file": "src/lib/Menu.js",
5486 "id": "sidebar.muteApp", 5486 "id": "sidebar.muteApp",
5487 "start": { 5487 "start": {
5488 "column": 11, 5488 "column": 11,
5489 "line": 234 5489 "line": 233
5490 } 5490 }
5491 }, 5491 },
5492 { 5492 {
5493 "defaultMessage": "!!!Enable notifications & audio", 5493 "defaultMessage": "!!!Enable notifications & audio",
5494 "end": { 5494 "end": {
5495 "column": 3, 5495 "column": 3,
5496 "line": 241 5496 "line": 240
5497 }, 5497 },
5498 "file": "src/lib/Menu.js", 5498 "file": "src/lib/Menu.js",
5499 "id": "sidebar.unmuteApp", 5499 "id": "sidebar.unmuteApp",
5500 "start": { 5500 "start": {
5501 "column": 13, 5501 "column": 13,
5502 "line": 238 5502 "line": 237
5503 } 5503 }
5504 }, 5504 },
5505 { 5505 {
5506 "defaultMessage": "!!!Workspaces", 5506 "defaultMessage": "!!!Workspaces",
5507 "end": { 5507 "end": {
5508 "column": 3, 5508 "column": 3,
5509 "line": 245 5509 "line": 244
5510 }, 5510 },
5511 "file": "src/lib/Menu.js", 5511 "file": "src/lib/Menu.js",
5512 "id": "menu.workspaces", 5512 "id": "menu.workspaces",
5513 "start": { 5513 "start": {
5514 "column": 14, 5514 "column": 14,
5515 "line": 242 5515 "line": 241
5516 } 5516 }
5517 }, 5517 },
5518 { 5518 {
5519 "defaultMessage": "!!!Default", 5519 "defaultMessage": "!!!Default",
5520 "end": { 5520 "end": {
5521 "column": 3, 5521 "column": 3,
5522 "line": 249 5522 "line": 248
5523 }, 5523 },
5524 "file": "src/lib/Menu.js", 5524 "file": "src/lib/Menu.js",
5525 "id": "menu.workspaces.defaultWorkspace", 5525 "id": "menu.workspaces.defaultWorkspace",
5526 "start": { 5526 "start": {
5527 "column": 20, 5527 "column": 20,
5528 "line": 246 5528 "line": 245
5529 } 5529 }
5530 }, 5530 },
5531 { 5531 {
5532 "defaultMessage": "!!!Todos", 5532 "defaultMessage": "!!!Todos",
5533 "end": { 5533 "end": {
5534 "column": 3, 5534 "column": 3,
5535 "line": 253 5535 "line": 252
5536 }, 5536 },
5537 "file": "src/lib/Menu.js", 5537 "file": "src/lib/Menu.js",
5538 "id": "menu.todos", 5538 "id": "menu.todos",
5539 "start": { 5539 "start": {
5540 "column": 9, 5540 "column": 9,
5541 "line": 250 5541 "line": 249
5542 } 5542 }
5543 }, 5543 },
5544 { 5544 {
5545 "defaultMessage": "!!!Open Todos drawer", 5545 "defaultMessage": "!!!Open Todos drawer",
5546 "end": { 5546 "end": {
5547 "column": 3, 5547 "column": 3,
5548 "line": 257 5548 "line": 256
5549 }, 5549 },
5550 "file": "src/lib/Menu.js", 5550 "file": "src/lib/Menu.js",
5551 "id": "menu.Todoss.openTodosDrawer", 5551 "id": "menu.Todoss.openTodosDrawer",
5552 "start": { 5552 "start": {
5553 "column": 19, 5553 "column": 19,
5554 "line": 254 5554 "line": 253
5555 } 5555 }
5556 }, 5556 },
5557 { 5557 {
5558 "defaultMessage": "!!!Close Todos drawer", 5558 "defaultMessage": "!!!Close Todos drawer",
5559 "end": { 5559 "end": {
5560 "column": 3, 5560 "column": 3,
5561 "line": 261 5561 "line": 260
5562 }, 5562 },
5563 "file": "src/lib/Menu.js", 5563 "file": "src/lib/Menu.js",
5564 "id": "menu.Todoss.closeTodosDrawer", 5564 "id": "menu.Todoss.closeTodosDrawer",
5565 "start": { 5565 "start": {
5566 "column": 20, 5566 "column": 20,
5567 "line": 258 5567 "line": 257
5568 } 5568 }
5569 } 5569 }
5570 ], 5570 ],