Fix small i18n typos

This commit is contained in:
Sarina Canelake
2014-07-21 17:51:12 -04:00
parent f20df3a8bb
commit 91196573e6
4 changed files with 8 additions and 11 deletions

View File

@@ -74,10 +74,8 @@ define([
it('I do not see notification message if the model is not changed',
function() {
var expectedMessage = [
'You have unsaved changes. Do you really want to ',
'leave this page?'
].join(''),
var expectedMessage =
'You have unsaved changes. Do you really want to leave this page?',
view = renderPage(),
message;

View File

@@ -36,8 +36,7 @@ function ($, _, gettext, BaseView, GroupConfigurationsList) {
if(dirty) {
return gettext(
'You have unsaved changes. Do you really want to ' +
'leave this page?'
'You have unsaved changes. Do you really want to leave this page?'
);
}
}