Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion www/core/components/login/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"authenticating": "Authenticating",
"cancel": "Cancel",
"credentials": "Credentials",
"credentialsdescription": "Please provide your username and password to login on ",
"credentialsdescription": "Please provide your username and password to login on",
"confirmdeletesite": "Are you sure you want to delete the site {{sitename}}?",
"connect": "Connect!",
"connecttomoodle": "Connect to Moodle",
Expand Down
2 changes: 1 addition & 1 deletion www/core/components/login/templates/credentials.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<ion-view view-title="{{ 'mm.login.credentials' | translate }}">
<ion-content mm-state-class>
<div class="list">
<div class="item item-text-wrap">{{ 'mm.login.credentialsdescription' | translate }}<strong>{{siteurl}}</strong></div>
<div class="item item-text-wrap">{{ 'mm.login.credentialsdescription' | translate }} <strong>{{siteurl}}</strong></div>
<form>
<label class="item item-input item-stacked-label">
<span class="input-label">{{ 'mm.login.username' | translate }}</span>
Expand Down
2 changes: 1 addition & 1 deletion www/core/components/user/services/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ angular.module('mm.core.user')
// Role name couldn't be translated, leave it like it was.
roleName = roleName.replace('mm.user.', '');
}
roles += (roles != '' ? separator: '') + roleName;
roles += (roles != '' ? separator + " ": '') + roleName;
}
deferred.resolve(roles);
});
Expand Down
2 changes: 1 addition & 1 deletion www/core/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"dftimedate": "h[:]mm A",
"download": "Download",
"downloading": "Downloading",
"elementseparator": ", ",
"elementseparator": ",",
"error": "Error",
"errorchangecompletion": "An error occurred while changing the completion status. Please try again.",
"errordownloading": "Error downloading file.",
Expand Down