diff options
author | shentao999 <shentao@chinamobile.com> | 2019-04-02 09:56:55 +0800 |
---|---|---|
committer | shentao999 <shentao@chinamobile.com> | 2019-04-02 09:56:56 +0800 |
commit | 45d2f704aca7076d510749985d1f7a5f111f73d5 (patch) | |
tree | 25b9057840d850855b91167398a3a25454a6c665 /ecomp-portal-FE-common/client/app/views/users | |
parent | e5bdf8b209c5cc58c435c920c596f3c67f47de20 (diff) |
Modify html label to support multi-language
Change-Id: I2f189dd935307488d8e63db624931ddbb1a18e95
Issue-ID: PORTAL-377
Signed-off-by: shentao999 <shentao@chinamobile.com>
Diffstat (limited to 'ecomp-portal-FE-common/client/app/views/users')
-rw-r--r-- | ecomp-portal-FE-common/client/app/views/users/users.tpl.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ecomp-portal-FE-common/client/app/views/users/users.tpl.html b/ecomp-portal-FE-common/client/app/views/users/users.tpl.html index ef08e50b..40175810 100644 --- a/ecomp-portal-FE-common/client/app/views/users/users.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/users/users.tpl.html @@ -39,7 +39,7 @@ <div class="w-ecomp-main-container" > <div class="users-page-main" id="page-content"> <div id="users-page-title" class="w-ecomp-main-view-title"> - <h1 class="heading-page" >Users</h1> + <h1 class="heading-page" >{{'Users'|T}}</h1> </div> <div class="users-table"> <div class="table-control"> @@ -58,7 +58,7 @@ </div> <div ng-hide="users.isLoadingTable"> <div class="error-text" id="div-select-app" ng-show="noAppSelected"> - <p class="error-help">Use the 'Select application' dropdown to see users.</p> + <p class="error-help">{{'Use dropdown'|T}}.</p> </div> <div class="error-text" id="div-error-no-users" @@ -83,10 +83,10 @@ <table> <thead b2b-table-row type="header"> <tr > - <th b2b-table-header key="firstName" sortable="true" id="col1" default-sort="a">First Name</th> - <th b2b-table-header key="lastName" sortable="true" id="col2">Last Name</th> - <th b2b-table-header key="orgUserId" sortable="true" id="col3">User ID</th> - <th b2b-table-header key="" sortable="falses" id="col4">Roles</th> + <th b2b-table-header key="firstName" sortable="true" id="col1" default-sort="a">{{'First Name'|T}}</th> + <th b2b-table-header key="lastName" sortable="true" id="col2">{{'Last Name'|T}}</th> + <th b2b-table-header key="orgUserId" sortable="true" id="col3">{{'User Id'|T}}</th> + <th b2b-table-header key="" sortable="falses" id="col4">{{'Roles'|T}}</th> </tr> </thead> <tbody b2b-table-row type="body" row-repeat="rowData in users.accountUsers" class="table-users-div"> @@ -103,7 +103,7 @@ </div> </div> <div class="error-text" id="div-error-403" ng-show="adminAppsIsNull==true"> - <h1>Attention:</h1> + <h1>{{'Attention'|T}}:</h1> <p> </p> <p class="error-help">It appears that you have not been added as an admin yet to an application.</p> <p> </p> |