1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-09-28 11:14:20 +02:00

Fix Wi-Fi translation strings

This commit is contained in:
Aleksandr Gumroian 2022-02-22 16:26:01 +01:00
parent 7c46abcd5d
commit 13869336db
No known key found for this signature in database
GPG Key ID: 9E77849C64F0A733
2 changed files with 17 additions and 22 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2019-2021 CZ.NIC z.s.p.o. (http://www.nic.cz/) * Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/)
* *
* This is free software, licensed under the GNU General Public License v3. * This is free software, licensed under the GNU General Public License v3.
* See /LICENSE for more information. * See /LICENSE for more information.
@ -54,9 +54,9 @@ export function ResetWiFiSettings({ ws, endpoint }) {
<div className={formFieldsSize}> <div className={formFieldsSize}>
<h2>{_("Reset Wi-Fi Settings")}</h2> <h2>{_("Reset Wi-Fi Settings")}</h2>
<p> <p>
{_(`If a number of wireless cards doesn't match, you may try \ {_(
to reset the Wi-Fi settings. Note that this will remove the current Wi-Fi \ "If a number of wireless cards doesn't match, you may try to reset the Wi-Fi settings. Note that this will remove the current Wi-Fi configuration and restore the default values."
configuration and restore the default values.`)} )}
</p> </p>
<div className="text-right"> <div className="text-right">
<Button <Button

View File

@ -29,28 +29,23 @@ export const ENCRYPTIONMODES = {
}; };
export const HELP_TEXTS = { export const HELP_TEXTS = {
ssid: _( ssid: _(
`SSID which contains non-standard characters could cause problems on some devices.` "SSID which contains non-standard characters could cause problems on some devices."
),
password: _(
"WPA2 pre-shared key, that is required to connect to the network."
), ),
password: _(`
WPA2 pre-shared key, that is required to connect to the network.
`),
hidden: _( hidden: _(
"If set, network is not visible when scanning for available networks." "If set, network is not visible when scanning for available networks."
), ),
hwmode: _(` hwmode: _(
The 2.4 GHz band is more widely supported by clients, but tends to have more interference. The 5 GHz band is a "The 2.4 GHz band is more widely supported by clients, but tends to have more interference. The 5 GHz band is a newer standard and may not be supported by all your devices. It usually has less interference, but the signal does not carry so well indoors."
newer standard and may not be supported by all your devices. It usually has less interference, but the signal ),
does not carry so well indoors.`), htmode: _(
htmode: _(` "Change this to adjust 802.11n/ac mode of operation. 802.11n with 40 MHz wide channels can yield higher throughput but can cause more interference in the network. If you don't know what to choose, use the default option with 20 MHz wide channel."
Change this to adjust 802.11n/ac mode of operation. 802.11n with 40 MHz wide channels can yield higher ),
throughput but can cause more interference in the network. If you don't know what to choose, use the default guest_wifi_enabled: _(
option with 20 MHz wide channel. "Enables Wi-Fi for guests, which is separated from LAN network. Devices connected to this network are allowed to access the internet, but aren't allowed to access other devices and the configuration interface of the router. Parameters of the guest network can be set in the Guest network tab."
`), ),
guest_wifi_enabled: _(`
Enables Wi-Fi for guests, which is separated from LAN network. Devices connected to this network are allowed to
access the internet, but aren't allowed to access other devices and the configuration interface of the router.
Parameters of the guest network can be set in the Guest network tab.
`),
wpa3: _( wpa3: _(
"The WPA3 standard is the new most secure encryption method that is suggested to be used with any device that supports it. The older devices without WPA3 support require older WPA2. If you experience issues with connecting older devices, try to enable WPA2." "The WPA3 standard is the new most secure encryption method that is suggested to be used with any device that supports it. The older devices without WPA3 support require older WPA2. If you experience issues with connecting older devices, try to enable WPA2."
), ),