diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2021-05-21 15:45:54 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2021-06-02 17:49:32 +0200 |
commit | 9c6b01abeba6928bd43dc71ac2f2372f2ea0c49f (patch) | |
tree | 58f98d4c7b25dade23c4b77cfec8bdc3288eab14 /apps/settings/src/mixins | |
parent | d0cf20cc51c6f7d119d21d3ea3ed81b9b52f2c9d (diff) | |
download | nextcloud-server-9c6b01abeba6928bd43dc71ac2f2372f2ea0c49f.tar.gz nextcloud-server-9c6b01abeba6928bd43dc71ac2f2372f2ea0c49f.zip |
l10n: Spelling unification
Spelling unification in Transifex.
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'apps/settings/src/mixins')
-rw-r--r-- | apps/settings/src/mixins/AppManagement.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings/src/mixins/AppManagement.js b/apps/settings/src/mixins/AppManagement.js index 04ff38efad2..67c53b6ff08 100644 --- a/apps/settings/src/mixins/AppManagement.js +++ b/apps/settings/src/mixins/AppManagement.js @@ -45,14 +45,14 @@ export default { }, enableButtonTooltip() { if (this.app.needsDownload) { - return t('settings', 'The app will be downloaded from the app store') + return t('settings', 'The app will be downloaded from the App Store') } return false }, forceEnableButtonTooltip() { const base = t('settings', 'This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected.') if (this.app.needsDownload) { - return base + ' ' + t('settings', 'The app will be downloaded from the app store') + return base + ' ' + t('settings', 'The app will be downloaded from the App Store') } return base }, |