From e4e599c8916c7fe221b00a45cafae7760b373e92 Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Mon, 20 Feb 2017 15:41:02 -0500 Subject: [PATCH] mark i18n strings for the dashboard host list see: #5453 --- awx/ui/client/src/dashboard/hosts/dashboard-hosts.list.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/ui/client/src/dashboard/hosts/dashboard-hosts.list.js b/awx/ui/client/src/dashboard/hosts/dashboard-hosts.list.js index dd4531c98e..9449600c67 100644 --- a/awx/ui/client/src/dashboard/hosts/dashboard-hosts.list.js +++ b/awx/ui/client/src/dashboard/hosts/dashboard-hosts.list.js @@ -10,8 +10,8 @@ export default [ 'i18n', function(i18n){ name: 'hosts', iterator: 'host', selectTitle: i18n._('Add Existing Hosts'), - editTitle: 'Hosts', - listTitle: 'Hosts', + editTitle: i18n._('Hosts'), + listTitle: i18n._('Hosts'), index: false, hover: true, well: true, @@ -33,7 +33,7 @@ export default [ 'i18n', function(i18n){ }, name: { key: true, - label: 'Name', + label: i18n._('Name'), columnClass: 'col-lg-5 col-md-5 col-sm-5 col-xs-8 ellipsis List-staticColumnAdjacent', ngClick: 'editHost(host.id)' },