Skip to content
Snippets Groups Projects
Unverified Commit 6afc5d0a authored by Christoph Wurst's avatar Christoph Wurst Committed by GitHub
Browse files

Merge pull request #2793 from nextcloud/design/capitalization

Fix capitalization of Re, Fwd, Cc and Bcc
parents b0ca00db d384f049
No related branches found
No related tags found
No related merge requests found
......@@ -138,7 +138,7 @@ export const buildReplySubject = (original) => {
return original
}
return `RE: ${original}`
return `Re: ${original}`
}
// TODO: https://en.wikipedia.org/wiki/List_of_email_subject_abbreviations#Abbreviations_in_other_languages
......@@ -173,5 +173,5 @@ export const buildForwardSubject = (original) => {
return original
}
return `FWD: ${original}`
return `Fwd: ${original}`
}
......@@ -40,12 +40,12 @@
@search-change="onAutocomplete"
/>
<a v-if="!showCC" class="copy-toggle" href="#" @click.prevent="showCC = true">
{{ t('mail', '+ CC/BCC') }}
{{ t('mail', '+ Cc/Bcc') }}
</a>
</div>
<div v-if="showCC" class="composer-fields">
<label for="cc" class="cc-label">
{{ t('mail', 'CC') }}
{{ t('mail', 'Cc') }}
</label>
<Multiselect
id="cc"
......@@ -68,7 +68,7 @@
</div>
<div v-if="showCC" class="composer-fields">
<label for="bcc" class="bcc-label">
{{ t('mail', 'BCC') }}
{{ t('mail', 'Bcc') }}
</label>
<Multiselect
id="bcc"
......
......@@ -230,7 +230,7 @@ describe('ReplyBuilder', () => {
const replySubject = buildReplySubject(orig)
expect(replySubject).to.equal('RE: Hello')
expect(replySubject).to.equal('Re: Hello')
})
it("does not stack subject re:'s", () => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment