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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-08-02 11:46:23 +0300
committerJoas Schilling <coding@schilljs.com>2022-08-31 09:15:39 +0300
commit53de079e50e06b0ba7ae76770d4fc1a1918c1eba (patch)
tree9e2f58d06a89f2457566d884982fd20a1fef75cb /src
parent1b3578c9940e281181394eed3888b310d65290ee (diff)
Fix labels
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/NewMessageForm/NewMessageForm.vue15
1 files changed, 5 insertions, 10 deletions
diff --git a/src/components/NewMessageForm/NewMessageForm.vue b/src/components/NewMessageForm/NewMessageForm.vue
index 08da5d9e9..ffd18b7c0 100644
--- a/src/components/NewMessageForm/NewMessageForm.vue
+++ b/src/components/NewMessageForm/NewMessageForm.vue
@@ -61,15 +61,7 @@
<template #icon>
<Folder :size="20" />
</template>
- {{ t('spreed', 'Share from Nextcloud FIXME') }}
- </NcActionButton>
- <NcActionButton v-if="canShareFiles"
- :close-after-click="true"
- @click.prevent="showTextFileDialog = true">
- <template #icon>
- <Folder :size="20" />
- </template>
- {{ t('spreed', 'Share from Nextcloud') }}
+ {{ shareFromNextcloudLabel }}
</NcActionButton>
<NcActionButton v-if="canShareFiles"
:close-after-click="true"
@@ -182,7 +174,7 @@
<div class="new-text-file__buttons">
<NcButton type="tertiary"
@click="dismissTextFileCreation">
- {{ t('spreed', 'close') }}
+ {{ t('spreed', 'Close') }}
</NcButton>
<NcButton type="primary"
@click="handleCreateTextFile">
@@ -365,7 +357,10 @@ export default {
} else {
return t('spreed', 'The participants will not be notified about this message')
}
+ },
+ shareFromNextcloudLabel() {
+ return t('spreed', 'Share from {nextcloud}', { nextcloud: window.oc_defaults.productName })
},
},