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

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJulien Veyssier <eneiluj@posteo.net>2021-12-03 17:37:37 +0300
committernextcloud-command <nextcloud-command@users.noreply.github.com>2021-12-06 12:34:32 +0300
commit59abca80d6da8e21d8c98b212ecab3d102f65f00 (patch)
treeee2e61c6f6430455126f82a55fad751f421adbfa /src
parent3b3007643e990351c9dad0e43d86ffda35264dfd (diff)
make sure translations are parsed correctly
Signed-off-by: Julien Veyssier <eneiluj@posteo.net> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/MenuBubble.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/MenuBubble.vue b/src/components/MenuBubble.vue
index ccd0bba2d..e187cc1e2 100644
--- a/src/components/MenuBubble.vue
+++ b/src/components/MenuBubble.vue
@@ -48,7 +48,7 @@
@click="showLinkMenu(getMarkAttrs('link'))">
<span class="icon-link" />
<span class="menububble__buttontext">
- {{ t('text', isActive.link() ? 'Update Link' : 'Add Link') }}
+ {{ isActive.link() ? t('text', 'Update Link') : t('text', 'Add Link') }}
</span>
</button>
<button v-if="!isUsingDirectEditing"