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
path: root/src
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2020-01-23 15:53:33 +0300
committerGitHub <noreply@github.com>2020-01-23 15:53:33 +0300
commit9ab6248cf34d80942e03083c8d1f4d55e8e9d38c (patch)
tree108f7f1059d03333d0e576089c37563fd47dbfa2 /src
parentc8d90e539cb0ac41d23eee31e5d869201d5b71f7 (diff)
parent5c8b6ed5e22911b657484b47000fa2c97e667ddf (diff)
Merge pull request #2533 from nextcloud/change_cc_bcc
Change Copy/Blind Copy into CC/BCC
Diffstat (limited to 'src')
-rw-r--r--src/components/Composer.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/Composer.vue b/src/components/Composer.vue
index a1abaae58..eb01617bd 100644
--- a/src/components/Composer.vue
+++ b/src/components/Composer.vue
@@ -37,12 +37,12 @@
@search-change="onAutocomplete"
/>
<a v-if="!showCC" class="copy-toggle" href="#" @click.prevent="showCC = true">
- {{ t('mail', '+ Copy') }}
+ {{ t('mail', '+ CC/BCC') }}
</a>
</div>
<div v-if="showCC" class="composer-fields">
<label for="cc" class="cc-label">
- {{ t('mail', 'Copy') }}
+ {{ t('mail', 'CC') }}
</label>
<Multiselect
id="cc"
@@ -63,7 +63,7 @@
</div>
<div v-if="showCC" class="composer-fields">
<label for="bcc" class="bcc-label">
- {{ t('mail', 'Blind copy') }}
+ {{ t('mail', 'BCC') }}
</label>
<Multiselect
id="bcc"