mirror of https://github.com/apache/archiva.git
[MRM-1723] Provide tooltips for action icons
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1427582 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
28dd45591a
commit
822bf24e6b
|
@ -256,6 +256,10 @@ password.reset=Reset Password
|
|||
password.reset.success=Password reset.
|
||||
rememberme=Remember Me
|
||||
user.login.welcome=Welcome {0}
|
||||
users.grid.unlock=Unlock
|
||||
users.grid.lock=Lock
|
||||
users.grid.unforceChangePassword=Not force password change
|
||||
users.grid.forceChangePassword=Force password change
|
||||
|
||||
#roles management
|
||||
roles.management.header=Roles Management
|
||||
|
|
|
@ -218,11 +218,15 @@
|
|||
|
||||
{{if row.locked()==true}}
|
||||
<td>
|
||||
<a href="#" data-bind="click: function(){ unlock(row) }"><img src="images/system-lock-screen-22-22.png"/></a>
|
||||
<a href="#" data-bind="click: function(){ unlock(row) }">
|
||||
<img src="images/system-lock-screen-22-22.png" title="${$.i18n.prop('users.grid.unlock')}"/>
|
||||
</a>
|
||||
</td>
|
||||
{{else}}
|
||||
<td>
|
||||
<a href="#" data-bind="click: function(){ lock(row) }"><img src="images/weather-clear-22-22.png"/></a>
|
||||
<a href="#" data-bind="click: function(){ lock(row) }">
|
||||
<img src="images/weather-clear-22-22.png" title="${$.i18n.prop('users.grid.lock')}"/>
|
||||
</a>
|
||||
</td>
|
||||
{{/if}}
|
||||
|
||||
|
@ -232,13 +236,13 @@
|
|||
{{if row.passwordChangeRequired()==true}}
|
||||
<td>
|
||||
<a href="#" data-bind="click: function(){ passwordChangeRequire(row,false) }">
|
||||
<img src="images/dialog-error-22-22.png"/>
|
||||
<img src="images/dialog-error-22-22.png" title="${$.i18n.prop('users.grid.unforceChangePassword')}"/>
|
||||
</a>
|
||||
</td>
|
||||
{{else}}
|
||||
<td>
|
||||
<a href="#" data-bind="click: function(){ passwordChangeRequire(row,true) }">
|
||||
<img src="images/weather-clear-22-22.png"/>
|
||||
<img src="images/weather-clear-22-22.png" title="${$.i18n.prop('users.grid.forceChangePassword')}"/>
|
||||
</a>
|
||||
</td>
|
||||
{{/if}}
|
||||
|
|
Loading…
Reference in New Issue