Change version info string "without locale" to "with default locale" so

it doesn't sound as though something is missing.

Change-Id: Ifa584357c4613fd898824db011329971c9561c41
Reviewed-on: https://code.wireshark.org/review/6027
Reviewed-by: Stephen Fisher <sfisher@sdf.org>
This commit is contained in:
Stephen Fisher 2014-12-23 15:24:57 -07:00
parent 7d87adf5cd
commit afbdf1043f
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ get_runtime_version_info(GString *str, void (*additional_info)(GString *))
if ((lang = getenv ("LANG")) != NULL)
g_string_append_printf(str, ", with locale %s", lang);
else
g_string_append(str, ", without locale");
g_string_append(str, ", with default locale");
#endif
/* Additional application-dependent information */