fix typo and do not translate an empty string

https://bugzilla.gnome.org/show_bug.cgi?id=748906
(cherry picked from commit f851a741a6)
This commit is contained in:
Yuri Chornoivan 2015-05-04 19:10:29 +03:00 committed by Thomas Haller
parent c91ca73c9b
commit 7eeb6ec593

View file

@ -167,7 +167,7 @@ build_address (KeyfileReaderInfo *info, int family, const char *address_str, gui
addr = nm_ip_address_new (family, address_str, plen, &error);
if (!addr) {
handle_warn (info, property_name, NM_KEYFILE_WARN_SEVERITY_WARN,
_("ignoring invalid %s addresss: %s"),
_("ignoring invalid %s address: %s"),
family == AF_INET ? "IPv4" : "IPv6", error->message);
g_error_free (error);
}