Diffstat (limited to 'development/translation/shared/opie.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | development/translation/shared/opie.cpp | 5 |
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 @@ -1,40 +1,43 @@ #include <stdlib.h> #include <qdir.h> #include "opie.h" OPIE* OPIE::m_self = 0; OPIE::OPIE() { } 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 langs.remove("unmaintained"); // remove this one too 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); } |