From 2f8c8ae6dcbf103c3d4ddb4e0c9dd8761bb6ab56 Mon Sep 17 00:00:00 2001 From: Chidambar Zinnoury Date: Sun, 2 Oct 2011 14:46:31 +0000 Subject: [PATCH] e: correct typo in languages settings. SVN revision: 63751 --- src/modules/conf_intl/e_int_config_intl.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/modules/conf_intl/e_int_config_intl.c b/src/modules/conf_intl/e_int_config_intl.c index ad41eb032..428fbf5d1 100644 --- a/src/modules/conf_intl/e_int_config_intl.c +++ b/src/modules/conf_intl/e_int_config_intl.c @@ -864,13 +864,13 @@ _lc_check(void) buf[0] = 0; - if (getenv("LC_CTYPE")) strcat(buf, "LC_CTYPE
"); - if (getenv("LC_NUMERIC")) strcat(buf, "LC_NUMERIC
"); - if (getenv("LC_TIME")) strcat(buf, "LC_TIME
"); - if (getenv("LC_COLLATE")) strcat(buf, "LC_COLLATE
"); - if (getenv("LC_MONETARY")) strcat(buf, "LC_MONETARY
"); - if (getenv("LC_MESSAGES")) strcat(buf, "LC_MESSAGES
"); - if (getenv("LC_ALL")) strcat(buf, "LC_ALL
"); + if (getenv("LC_CTYPE")) strcat(buf, "
LC_CTYPE"); + if (getenv("LC_NUMERIC")) strcat(buf, "
LC_NUMERIC"); + if (getenv("LC_TIME")) strcat(buf, "
LC_TIME"); + if (getenv("LC_COLLATE")) strcat(buf, "
LC_COLLATE"); + if (getenv("LC_MONETARY")) strcat(buf, "
LC_MONETARY"); + if (getenv("LC_MESSAGES")) strcat(buf, "
LC_MESSAGES"); + if (getenv("LC_ALL")) strcat(buf, "
LC_ALL"); if (buf[0] != 0) e_util_dialog_show(_("Possible Locale problems"), @@ -878,7 +878,7 @@ _lc_check(void) "variables set that may interfere with
" "correct display of your chosen language.
" "If you don't want these affected, use the
" - "Enviornment variable settings to unset them.
" + "Environment variable settings to unset them.
" "The variables that may affect you are
" "as follows:
" "%s"), buf);