cli: make prompts asking for user input translatable in 'nmcli device'

This commit is contained in:
Jiří Klimeš 2013-05-16 14:03:49 +02:00
parent 55e816b36e
commit 0376f0be16

View file

@ -1169,7 +1169,7 @@ do_device_disconnect (NmCli *nmc, int argc, char **argv)
if (argc == 0) { if (argc == 0) {
if (nmc->ask) { if (nmc->ask) {
ifname = ifname_ask = nmc_get_user_input ("Interface: "); ifname = ifname_ask = nmc_get_user_input (_("Interface: "));
// TODO: list available devices when just Enter is pressed ? // TODO: list available devices when just Enter is pressed ?
} }
if (!ifname_ask) { if (!ifname_ask) {
@ -1646,7 +1646,7 @@ do_device_wifi_connect_network (NmCli *nmc, int argc, char **argv)
argv++; argv++;
} else { } else {
if (nmc->ask) { if (nmc->ask) {
ssid_ask = nmc_get_user_input ("SSID or BSSID: "); ssid_ask = nmc_get_user_input (_("SSID or BSSID: "));
param_user = ssid_ask ? ssid_ask : ""; param_user = ssid_ask ? ssid_ask : "";
bssid1_arr = nm_utils_hwaddr_atoba (param_user, ARPHRD_ETHER); bssid1_arr = nm_utils_hwaddr_atoba (param_user, ARPHRD_ETHER);
} }
@ -1825,7 +1825,7 @@ do_device_wifi_connect_network (NmCli *nmc, int argc, char **argv)
if (ap_flags & NM_802_11_AP_FLAGS_PRIVACY) { if (ap_flags & NM_802_11_AP_FLAGS_PRIVACY) {
/* Ask for missing password when one is expected and '--ask' is used */ /* Ask for missing password when one is expected and '--ask' is used */
if (!password && nmc->ask) if (!password && nmc->ask)
password = passwd_ask = nmc_get_user_input ("Password: "); password = passwd_ask = nmc_get_user_input (_("Password: "));
if (password) { if (password) {
if (!connection) if (!connection)