From 004ea8166ac9a64dc14b9cc01c765dd92c79131c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Klime=C5=A1?= Date: Fri, 21 Sep 2012 10:04:28 +0200 Subject: [PATCH] cli: add NM_DEVICE_STATE_REASON_SSID_NOT_FOUND reason-to-string mapping --- cli/src/common.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cli/src/common.c b/cli/src/common.c index 96ed2c565..1126dc879 100644 --- a/cli/src/common.c +++ b/cli/src/common.c @@ -554,6 +554,9 @@ nmc_device_reason_to_string (NMDeviceStateReason reason) case NM_DEVICE_STATE_REASON_MODEM_MANAGER_UNAVAILABLE: return _("ModemManager is unavailable"); + case NM_DEVICE_STATE_REASON_SSID_NOT_FOUND: + return _("The Wi-Fi network could not be found"); + default: return _("Unknown"); }