|
From: <enl...@li...> - 2005-04-11 23:34:51
|
Enlightenment CVS committal
Author : raster
Project : e17
Module : apps/e
Dir : e17/apps/e/src/bin
Modified Files:
e_intl.c
Log Message:
a little more support
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_intl.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- e_intl.c 11 Apr 2005 23:32:24 -0000 1.2
+++ e_intl.c 11 Apr 2005 23:34:44 -0000 1.3
@@ -62,6 +62,7 @@
{
if (!lang) return "None";
/* FIXME: add as many as we can to this */
+ IFL("") "None";
IFL("C") "None";
IFL("bg") "Bulgarian";
IFL("bs") "Bosnian";
@@ -123,7 +124,7 @@
if (ISL("ja") || ISL("ja_JP") || ISL("JP") || ISL("en_CA"))
return "ja";
/* FIXME: add all sorts of fuzzy matching here */
- return lang;
+ return "C";
}
const Evas_List *
|