Skip to content

Commit 9c4cbad

Browse files
committed
MOBILE-1450: Remove trailing spaces from english language strings
1 parent 453059d commit 9c4cbad

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

www/core/components/login/lang/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"authenticating": "Authenticating",
33
"cancel": "Cancel",
44
"credentials": "Credentials",
5-
"credentialsdescription": "Please provide your username and password to login on ",
5+
"credentialsdescription": "Please provide your username and password to login on",
66
"confirmdeletesite": "Are you sure you want to delete the site {{sitename}}?",
77
"connect": "Connect!",
88
"connecttomoodle": "Connect to Moodle",

www/core/components/login/templates/credentials.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<ion-view view-title="{{ 'mm.login.credentials' | translate }}">
22
<ion-content mm-state-class>
33
<div class="list">
4-
<div class="item item-text-wrap">{{ 'mm.login.credentialsdescription' | translate }}<strong>{{siteurl}}</strong></div>
4+
<div class="item item-text-wrap">{{ 'mm.login.credentialsdescription' | translate }} <strong>{{siteurl}}</strong></div>
55
<form>
66
<label class="item item-input item-stacked-label">
77
<span class="input-label">{{ 'mm.login.username' | translate }}</span>

www/core/components/user/services/user.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ angular.module('mm.core.user')
100100
// Role name couldn't be translated, leave it like it was.
101101
roleName = roleName.replace('mm.user.', '');
102102
}
103-
roles += (roles != '' ? separator: '') + roleName;
103+
roles += (roles != '' ? separator + " ": '') + roleName;
104104
}
105105
deferred.resolve(roles);
106106
});

www/core/lang/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"dftimedate": "h[:]mm A",
3030
"download": "Download",
3131
"downloading": "Downloading",
32-
"elementseparator": ", ",
32+
"elementseparator": ",",
3333
"error": "Error",
3434
"errorchangecompletion": "An error occurred while changing the completion status. Please try again.",
3535
"errordownloading": "Error downloading file.",

0 commit comments

Comments
 (0)