Update of /cvsroot/sharedaemon/ui-wx/src
In directory sc8-pr-cvs1:/tmp/cvs-serv15291/src
Modified Files:
wxInterface.cpp
Log Message:
French translation by Nicolas Lussier.
Index: wxInterface.cpp
===================================================================
RCS file: /cvsroot/sharedaemon/ui-wx/src/wxInterface.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- wxInterface.cpp 20 Dec 2003 03:37:26 -0000 1.11
+++ wxInterface.cpp 23 Dec 2003 23:38:25 -0000 1.12
@@ -167,6 +167,7 @@
supportedlangs.Add(wxT("Default"));
supportedlangs.Add(wxT("German"));
supportedlangs.Add(wxT("Estonian"));
+ supportedlangs.Add(wxT("French"));
supportedlangs.Add(wxT("Spanish"));
m_config->SetPath(wxT("/General/Lang"));
@@ -268,6 +269,8 @@
return wxLANGUAGE_ESTONIAN;
} else if (lang == wxT("Spanish")) {
return wxLANGUAGE_SPANISH;
+ } else if (lang == wxT("French")) {
+ return wxLANGUAGE_FRENCH;
} else {
return wxLANGUAGE_DEFAULT;
}
|