aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/components/auth/Locked.js7
-rw-r--r--src/components/settings/settings/EditSettingsForm.js44
-rw-r--r--src/i18n/locales/en-US.json4
3 files changed, 18 insertions, 37 deletions
diff --git a/src/components/auth/Locked.js b/src/components/auth/Locked.js
index 2ed429199..ac1bc4e8c 100644
--- a/src/components/auth/Locked.js
+++ b/src/components/auth/Locked.js
@@ -7,7 +7,6 @@ import { defineMessages, injectIntl } from 'react-intl';
7import Form from '../../lib/Form'; 7import Form from '../../lib/Form';
8import Input from '../ui/Input'; 8import Input from '../ui/Input';
9import Button from '../ui/Button'; 9import Button from '../ui/Button';
10import Infobox from '../ui/Infobox';
11import { isMac } from '../../environment'; 10import { isMac } from '../../environment';
12 11
13import { globalError as globalErrorPropType } from '../../prop-types'; 12import { globalError as globalErrorPropType } from '../../prop-types';
@@ -17,11 +16,6 @@ const messages = defineMessages({
17 id: 'locked.headline', 16 id: 'locked.headline',
18 defaultMessage: 'Locked', 17 defaultMessage: 'Locked',
19 }, 18 },
20 info: {
21 id: 'locked.info',
22 defaultMessage:
23 'Ferdi is currently locked. Please unlock Ferdi with your password to see your messages.',
24 },
25 touchId: { 19 touchId: {
26 id: 'locked.touchId', 20 id: 'locked.touchId',
27 defaultMessage: 'Unlock with Touch ID', 21 defaultMessage: 'Unlock with Touch ID',
@@ -107,7 +101,6 @@ class Locked extends Component {
107 <form className="franz-form auth__form" onSubmit={e => this.submit(e)}> 101 <form className="franz-form auth__form" onSubmit={e => this.submit(e)}>
108 <img src="./assets/images/logo.svg" className="auth__logo" alt="" /> 102 <img src="./assets/images/logo.svg" className="auth__logo" alt="" />
109 <h1>{intl.formatMessage(messages.headline)}</h1> 103 <h1>{intl.formatMessage(messages.headline)}</h1>
110 <Infobox type="warning">{intl.formatMessage(messages.info)}</Infobox>
111 104
112 {touchIdEnabled && ( 105 {touchIdEnabled && (
113 <> 106 <>
diff --git a/src/components/settings/settings/EditSettingsForm.js b/src/components/settings/settings/EditSettingsForm.js
index d9df9c41c..1757ac297 100644
--- a/src/components/settings/settings/EditSettingsForm.js
+++ b/src/components/settings/settings/EditSettingsForm.js
@@ -5,7 +5,7 @@ import { observer } from 'mobx-react';
5import prettyBytes from 'pretty-bytes'; 5import prettyBytes from 'pretty-bytes';
6import { defineMessages, injectIntl } from 'react-intl'; 6import { defineMessages, injectIntl } from 'react-intl';
7 7
8import { mdiGithub, mdiInformation, mdiOpenInNew } from '@mdi/js'; 8import { mdiGithub, mdiOpenInNew } from '@mdi/js';
9import Form from '../../../lib/Form'; 9import Form from '../../../lib/Form';
10import Button from '../../ui/Button'; 10import Button from '../../ui/Button';
11import Toggle from '../../ui/Toggle'; 11import Toggle from '../../ui/Toggle';
@@ -175,11 +175,6 @@ const messages = defineMessages({
175 id: 'settings.app.restartRequired', 175 id: 'settings.app.restartRequired',
176 defaultMessage: 'Changes require restart', 176 defaultMessage: 'Changes require restart',
177 }, 177 },
178 languageDisclaimer: {
179 id: 'settings.app.languageDisclaimer',
180 defaultMessage:
181 'Official translations are English & German. All other languages are community based translations.',
182 },
183 numberOfColumns: { 178 numberOfColumns: {
184 id: 'settings.app.form.splitColumns', 179 id: 'settings.app.form.splitColumns',
185 defaultMessage: 'Number of columns', 180 defaultMessage: 'Number of columns',
@@ -815,27 +810,22 @@ class EditSettingsForm extends Component {
815 )} 810 )}
816 <p className="settings__message"> 811 <p className="settings__message">
817 <Icon icon={mdiGithub} /> 812 <Icon icon={mdiGithub} />
818 <span> 813 Ferdi is based on{' '}
819 Ferdi is based on{' '} 814 <a
820 <a 815 href={`${GITHUB_FRANZ_URL}/franz`}
821 href={`${GITHUB_FRANZ_URL}/franz`} 816 target="_blank"
822 target="_blank" 817 rel="noreferrer"
823 rel="noreferrer" 818 >
824 > 819 Franz
825 Franz 820 </a>
826 </a> 821 , a project published under the{' '}
827 , a project published under the{' '} 822 <a
828 <a 823 href={`${GITHUB_FRANZ_URL}/franz/blob/master/LICENSE`}
829 href={`${GITHUB_FRANZ_URL}/franz/blob/master/LICENSE`} 824 target="_blank"
830 target="_blank" 825 rel="noreferrer"
831 rel="noreferrer" 826 >
832 > 827 Apache-2.0 License
833 Apache-2.0 License 828 </a>
834 </a>
835 </span>
836 <br />
837 <Icon icon={mdiInformation} />
838 {intl.formatMessage(messages.languageDisclaimer)}
839 </p> 829 </p>
840 </div> 830 </div>
841 )} 831 )}
diff --git a/src/i18n/locales/en-US.json b/src/i18n/locales/en-US.json
index ffaab387b..213525284 100644
--- a/src/i18n/locales/en-US.json
+++ b/src/i18n/locales/en-US.json
@@ -61,7 +61,6 @@
61 "invite.submit.label": "Send invites", 61 "invite.submit.label": "Send invites",
62 "invite.successInfo": "Invitations sent successfully", 62 "invite.successInfo": "Invitations sent successfully",
63 "locked.headline": "Locked", 63 "locked.headline": "Locked",
64 "locked.info": "Ferdi is currently locked. Please unlock Ferdi with your password to see your messages.",
65 "locked.invalidCredentials": "Password invalid", 64 "locked.invalidCredentials": "Password invalid",
66 "locked.password.label": "Password", 65 "locked.password.label": "Password",
67 "locked.submit.label": "Unlock", 66 "locked.submit.label": "Unlock",
@@ -257,7 +256,6 @@
257 "settings.app.headlineUpdates": "Updates", 256 "settings.app.headlineUpdates": "Updates",
258 "settings.app.hibernateInfo": "By default, Ferdi will keep all your services open and loaded in the background so they are ready when you want to use them. Service Hibernation will unload your services after a specified amount. This is useful to save RAM or keeping services from slowing down your computer.", 257 "settings.app.hibernateInfo": "By default, Ferdi will keep all your services open and loaded in the background so they are ready when you want to use them. Service Hibernation will unload your services after a specified amount. This is useful to save RAM or keeping services from slowing down your computer.",
259 "settings.app.inactivityLockInfo": "Minutes of inactivity, after which Ferdi should automatically lock. Use 0 to disable", 258 "settings.app.inactivityLockInfo": "Minutes of inactivity, after which Ferdi should automatically lock. Use 0 to disable",
260 "settings.app.languageDisclaimer": "Official translations are English & German. All other languages are community based translations.",
261 "settings.app.lockInfo": "Password Lock allows you to keep your messages protected.\nUsing Password Lock, you will be prompted to enter your password everytime you start Ferdi or lock Ferdi yourself using the lock symbol in the bottom left corner or the shortcut {lockShortcut}.", 259 "settings.app.lockInfo": "Password Lock allows you to keep your messages protected.\nUsing Password Lock, you will be prompted to enter your password everytime you start Ferdi or lock Ferdi yourself using the lock symbol in the bottom left corner or the shortcut {lockShortcut}.",
262 "settings.app.lockedPassword": "Password", 260 "settings.app.lockedPassword": "Password",
263 "settings.app.lockedPasswordInfo": "Please make sure to set a password you'll remember.\nIf you loose this password, you will have to reinstall Ferdi.", 261 "settings.app.lockedPasswordInfo": "Please make sure to set a password you'll remember.\nIf you loose this password, you will have to reinstall Ferdi.",
@@ -455,4 +453,4 @@
455 "workspaceDrawer.workspaceFeatureInfo": "<p>Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.</p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.</p>", 453 "workspaceDrawer.workspaceFeatureInfo": "<p>Ferdi Workspaces let you focus on what’s important right now. Set up different sets of services and easily switch between them at any time.</p><p>You decide which services you need when and where, so we can help you stay on top of your game - or easily switch off from work whenever you want.</p>",
456 "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings", 454 "workspaceDrawer.workspacesSettingsTooltip": "Edit workspaces settings",
457 "workspaces.switchingIndicator.switchingTo": "Switching to" 455 "workspaces.switchingIndicator.switchingTo": "Switching to"
458} 456} \ No newline at end of file