Skip to content
Snippets Groups Projects
Unverified Commit 5de3ff4c authored by Allan Nordhøy's avatar Allan Nordhøy Committed by GitHub
Browse files

Consistent "could not". Escaped apostrophe

parent 96a7d231
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ define(function() {
t('mail', 'Could not load {tag}{name}{endtag}', {
name: folderName
}),
t('mail', 'We couldnt load {tag}{name}{endtag}', {
t('mail', 'Couldn\x27t load {tag}{name}{endtag}', {
name: folderName
}),
t('mail', 'There was a problem loading {tag}{name}{endtag}', {
......@@ -64,9 +64,9 @@ define(function() {
*/
function getRandomMessageErrorMessage() {
var texts = [
t('mail', 'We couldnt load your message'),
t('mail', 'Unable to load the desired message'),
t('mail', 'There was a problem loading the message')
t('mail', 'Couldn\x27t load your message'),
t('mail', 'Could not load the desired message'),
t('mail', 'Could not load the message')
];
var text = texts[Math.floor(Math.random() * texts.length)]
return text + ' ' + getRandomSmiley();
......
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