1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

Duplicate ns.tooltips CREDENTIALS string to ComponentStrings to avoid using OutputStrings

This commit is contained in:
kialam 2018-05-31 16:42:17 -04:00
parent e66b00eb64
commit 8373d89c92
2 changed files with 5 additions and 1 deletions

View File

@ -57,6 +57,10 @@ function ComponentsStrings (BaseString) {
VIEW_LESS: t.s('VIEW LESS')
};
ns.tooltips = {
CREDENTIAL: t.s('View the Credential'),
};
ns.layout = {
CURRENT_USER_LABEL: t.s('Logged in as'),
VIEW_DOCS: t.s('View Documentation'),

View File

@ -9,6 +9,6 @@ function TagService (strings, $filter) {
};
}
TagService.$inject = ['OutputStrings', '$filter'];
TagService.$inject = ['ComponentsStrings', '$filter'];
export default TagService;