diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2020-03-14 14:56:31 +0100 |
---|---|---|
committer | npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com> | 2020-03-24 20:21:16 +0000 |
commit | 01dd9cf619847f308931b0bd09e3bb03f7d36e87 (patch) | |
tree | e75e9c7f85537cdae0ea860ae3633cf1fb9be7bd /apps/accessibility/src/Accessibility.vue | |
parent | f85d7fee1759ff57988f081813e65835a35f70f1 (diff) | |
download | nextcloud-server-01dd9cf619847f308931b0bd09e3bb03f7d36e87.tar.gz nextcloud-server-01dd9cf619847f308931b0bd09e3bb03f7d36e87.zip |
Use a normal string to translate.
Somehow the multi line strings are still a problem for t.
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/accessibility/src/Accessibility.vue')
-rw-r--r-- | apps/accessibility/src/Accessibility.vue | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/apps/accessibility/src/Accessibility.vue b/apps/accessibility/src/Accessibility.vue index f6ee6d07333..aaf5dcd8d4c 100644 --- a/apps/accessibility/src/Accessibility.vue +++ b/apps/accessibility/src/Accessibility.vue @@ -62,11 +62,7 @@ export default { // using the `t` replace method escape html, we have to do it manually :/ return t( 'accessibility', - `Universal access is very important to us. We follow web standards - and check to make everything usable also without mouse, - and assistive software such as screenreaders. - We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, - with the high contrast theme even on AAA level.` + 'Universal access is very important to us. We follow web standards and check to make everything usable also without mouse, and assistive software such as screenreaders. We aim to be compliant with the {guidelines}Web Content Accessibility Guidelines{linkend} 2.1 on AA level, with the high contrast theme even on AAA level.' ) .replace('{guidelines}', this.guidelinesLink) .replace('{linkend}', '</a>') @@ -77,8 +73,7 @@ export default { descriptionDetail() { return t( 'accessibility', - `If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. - And if you want to get involved, come join {designteam}our design team{linkend}!` + 'If you find any issues, don’t hesitate to report them on {issuetracker}our issue tracker{linkend}. And if you want to get involved, come join {designteam}our design team{linkend}!' ) .replace('{issuetracker}', this.issuetrackerLink) .replace('{designteam}', this.designteamLink) |