Skip to content
Snippets Groups Projects
Commit 01dd9cf6 authored by Daniel Kesselberg's avatar Daniel Kesselberg Committed by npmbuildbot[bot]
Browse files

Use a normal string to translate.


Somehow the multi line strings are still a problem for t.

Signed-off-by: default avatarDaniel Kesselberg <mail@danielkesselberg.de>
Signed-off-by: default avatarnpmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
parent f85d7fee
No related branches found
No related tags found
No related merge requests found
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
......@@ -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)
......
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