diff options
author | Anton Tananaev <anton@traccar.org> | 2023-01-15 18:22:57 -0800 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2023-01-15 18:22:57 -0800 |
commit | 4daadef69571772b6872a1356289bcab6b46930e (patch) | |
tree | a6b8a7c75245eefb34505505f46a5fc1e6aabf4f /modern/src | |
parent | ee7c240d648e0efc760188c3357658f9db220ede (diff) | |
download | trackermap-web-4daadef69571772b6872a1356289bcab6b46930e.tar.gz trackermap-web-4daadef69571772b6872a1356289bcab6b46930e.tar.bz2 trackermap-web-4daadef69571772b6872a1356289bcab6b46930e.zip |
Device id helper text
Diffstat (limited to 'modern/src')
-rw-r--r-- | modern/src/resources/l10n/en.json | 1 | ||||
-rw-r--r-- | modern/src/settings/DevicePage.js | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/modern/src/resources/l10n/en.json b/modern/src/resources/l10n/en.json index c58e607f..f68f0083 100644 --- a/modern/src/resources/l10n/en.json +++ b/modern/src/resources/l10n/en.json @@ -201,6 +201,7 @@ "deviceStatusOffline": "Offline", "deviceStatusUnknown": "Unknown", "deviceRegisterFirst": "Register your first device", + "deviceIdentifierHelp": "IMEI, serial number or other id. It has to match the identifier device reports to the server.", "groupDialog": "Group", "groupParent": "Group", "groupNoGroup": "No Group", diff --git a/modern/src/settings/DevicePage.js b/modern/src/settings/DevicePage.js index c84da42c..b080d8ce 100644 --- a/modern/src/settings/DevicePage.js +++ b/modern/src/settings/DevicePage.js @@ -91,6 +91,7 @@ const DevicePage = () => { value={item.uniqueId || ''} onChange={(event) => setItem({ ...item, uniqueId: event.target.value })} label={t('deviceIdentifier')} + helperText={t('deviceIdentifierHelp')} /> </AccordionDetails> </Accordion> |