diff options
author | Abyss777 <abyss@fox5.ru> | 2017-03-10 14:55:04 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-03-10 14:55:04 +0500 |
commit | 67b212ef70724d17d53fa4d68176548a257e710f (patch) | |
tree | 339b14dc4edf0d1ec9f0e94dc450f02beea531d3 /web | |
parent | 2e76f6cb4487a1efd3fbe168e6168f9ed5c2df47 (diff) | |
download | trackermap-web-67b212ef70724d17d53fa4d68176548a257e710f.tar.gz trackermap-web-67b212ef70724d17d53fa4d68176548a257e710f.tar.bz2 trackermap-web-67b212ef70724d17d53fa4d68176548a257e710f.zip |
Rename "Test Mail" to "Test Notification"
Diffstat (limited to 'web')
-rw-r--r-- | web/app/view/SettingsMenuController.js | 2 | ||||
-rw-r--r-- | web/app/view/UserDialog.js | 6 | ||||
-rw-r--r-- | web/app/view/UserDialogController.js | 2 | ||||
-rw-r--r-- | web/l10n/en.json | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/web/app/view/SettingsMenuController.js b/web/app/view/SettingsMenuController.js index 16813fa6..41867f61 100644 --- a/web/app/view/SettingsMenuController.js +++ b/web/app/view/SettingsMenuController.js @@ -63,7 +63,7 @@ Ext.define('Traccar.view.SettingsMenuController', { onUserClick: function () { var dialog = Ext.create('Traccar.view.UserDialog'); dialog.down('form').loadRecord(Traccar.app.getUser()); - dialog.lookupReference('testMailButton').setHidden(false); + dialog.lookupReference('testNotificationButton').setHidden(false); dialog.show(); }, diff --git a/web/app/view/UserDialog.js b/web/app/view/UserDialog.js index 84103ee2..a024c856 100644 --- a/web/app/view/UserDialog.js +++ b/web/app/view/UserDialog.js @@ -192,10 +192,10 @@ Ext.define('Traccar.view.UserDialog', { }, { glyph: 'xf003@FontAwesome', minWidth: 0, - handler: 'testMail', + handler: 'testNotification', hidden: true, - reference: 'testMailButton', - tooltip: Strings.sharedTestMail, + reference: 'testNotificationButton', + tooltip: Strings.sharedTestNotification, tooltipType: 'title' }, { xtype: 'tbfill' diff --git a/web/app/view/UserDialogController.js b/web/app/view/UserDialogController.js index bfb934da..d187dec0 100644 --- a/web/app/view/UserDialogController.js +++ b/web/app/view/UserDialogController.js @@ -46,7 +46,7 @@ Ext.define('Traccar.view.UserDialogController', { this.lookupReference('tokenField').setValue(newToken); }, - testMail: function () { + testNotification: function () { Ext.Ajax.request({ url: 'api/users/notifications/test', method: 'POST', diff --git a/web/l10n/en.json b/web/l10n/en.json index 222f388e..b78533a9 100644 --- a/web/l10n/en.json +++ b/web/l10n/en.json @@ -41,7 +41,7 @@ "sharedAlias": "Alias", "sharedDeviceDistance": "Device Distance", "sharedDevice": "Device", - "sharedTestMail": "Send Test Email", + "sharedTestNotification": "Send Test Notification", "sharedCalendar": "Calendar", "sharedCalendars": "Calendars", "sharedFile": "File", |