summaryrefslogtreecommitdiff
path: root/development/translation/shared/opie.cpp
Side-by-side diff
Diffstat (limited to 'development/translation/shared/opie.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--development/translation/shared/opie.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/development/translation/shared/opie.cpp b/development/translation/shared/opie.cpp
index c5c72d1..c8cea42 100644
--- a/development/translation/shared/opie.cpp
+++ b/development/translation/shared/opie.cpp
@@ -13,14 +13,16 @@ OPIE::~OPIE() {
}
OPIE* OPIE::self() {
if (!m_self ) m_self = new OPIE;
return m_self;
}
QStringList OPIE::languageList( const QString& _opieDir )const {
+#if 0
+ return QStringList::split(':',QString(::getenv("OPIE_CREATE_LANGS")));
+#else
QString opieDi = opieDir( _opieDir );
-
QStringList langs;
QDir dir( opieDi + "/i18n/");
if (!dir.exists() ) return langs;
langs = dir.entryList( QDir::Dirs );
langs.remove("CVS"); // hey this no language
@@ -28,12 +30,13 @@ QStringList OPIE::languageList( const QString& _opieDir )const {
langs.remove(".");
langs.remove("..");
return langs;
+#endif
}
QString OPIE::opieDir( const QString& _opieDir ) const{
if (!_opieDir.isEmpty() ) return _opieDir;
char* dir = ::getenv("OPIEDIR");
if (!dir ) return QString::null;
return QString::fromLatin1(dir);