Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2020-05-06 11:17:23 +0300
committerGitHub <noreply@github.com>2020-05-06 11:17:23 +0300
commit5a9f69defed05689f18f48df8fb2fce3aeb0be8d (patch)
treedd0ceabea77492120e7e5ba6b2ce37c3c853a267
parent8494d48e87d15684c014ff7ea2f3ada2a415ad36 (diff)
parent67cab48ef43bde56b452efe979dd95e0d70cf486 (diff)
Merge pull request #3028 from nextcloud/fix/fix_translation_settins_missing
Fix the missing translation from settings
-rw-r--r--src/components/AppSettingsMenu.vue11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/components/AppSettingsMenu.vue b/src/components/AppSettingsMenu.vue
index 418495d16..5a3c8dfdf 100644
--- a/src/components/AppSettingsMenu.vue
+++ b/src/components/AppSettingsMenu.vue
@@ -6,12 +6,7 @@
<p v-if="loadingOptOutSettings" class="app-settings">
<span class="icon-loading-small"></span>
- {{
- t(
- 'mail',
- 'Allow the app to collect data about your interactions. Based on this data, the app will adapt to your preferences. The data will only be stored locally.'
- )
- }}
+ {{ text }}
</p>
<p v-else class="app-settings">
<input
@@ -71,6 +66,10 @@ export default {
data() {
return {
loadingAvatarSettings: false,
+ text: t(
+ 'mail',
+ 'Allow the app to collect data about your interactions. Based on this data, the app will adapt to your preferences. The data will only be stored locally.'
+ ),
loadingOptOutSettings: false,
}
},