Merge branch 'fix-internationalization-namespace' into 'master'

Remove namespaced internationalization import

See merge request gitlab-org/gitlab-ce!16838
This commit is contained in:
Filipa Lacerda 2018-02-01 08:47:25 +00:00
commit ab0d41e2da
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/* eslint-disable class-methods-use-this */
import _ from 'underscore';
import Cookies from 'js-cookie';
import { s__ } from './locale';
import { __ } from './locale';
import { isInIssuePage, updateTooltipTitle } from './lib/utils/common_utils';
import flash from './flash';
import axios from './lib/utils/axios_utils';
@ -451,7 +451,7 @@ class AwardsHandler {
callback();
}
})
.catch(() => flash(s__('Something went wrong on our end.')));
.catch(() => flash(__('Something went wrong on our end.')));
}
}