diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-07-10 19:16:38 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-07-10 19:16:38 +1200 |
commit | b36a8688af39b0d43126d46275f83fa9c940ed62 (patch) | |
tree | 2b5ac4606c9850d010067db129388c0cbc521e03 /web/app/view/user/User.js | |
parent | c5bfe9746e7c0382ca5ab767486f425e96fd0ace (diff) | |
download | trackermap-server-b36a8688af39b0d43126d46275f83fa9c940ed62.tar.gz trackermap-server-b36a8688af39b0d43126d46275f83fa9c940ed62.tar.bz2 trackermap-server-b36a8688af39b0d43126d46275f83fa9c940ed62.zip |
Re-organize strings for localization
Diffstat (limited to 'web/app/view/user/User.js')
-rw-r--r-- | web/app/view/user/User.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/web/app/view/user/User.js b/web/app/view/user/User.js index fa9c9201a..76779ef79 100644 --- a/web/app/view/user/User.js +++ b/web/app/view/user/User.js @@ -28,16 +28,16 @@ Ext.define('Traccar.view.user.User', { selType: 'rowmodel', tbar: [{ - text: strings.device_add, + text: strings.shared_add, handler: 'onAddClick', reference: 'deviceAddButton' }, { - text: strings.device_edit, + text: strings.shared_edit, disabled: true, handler: 'onEditClick', reference: 'userEditButton' }, { - text: strings.device_remove, + text: strings.shared_remove, disabled: true, handler: 'onRemoveClick', reference: 'userRemoveButton' @@ -48,9 +48,9 @@ Ext.define('Traccar.view.user.User', { }, columns: [ - { text: strings.login_name, dataIndex: 'name', flex: 1 }, - { text: strings.login_email, dataIndex: 'email', flex: 1 }, - { text: strings.login_admin, dataIndex: 'admin', flex: 1 } + { text: strings.user_name, dataIndex: 'name', flex: 1 }, + { text: strings.user_email, dataIndex: 'email', flex: 1 }, + { text: strings.user_admin, dataIndex: 'admin', flex: 1 } ] }); |