]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix translations within subfolder /lib
authorThomas Mueller <thomas.mueller@tmit.eu>
Thu, 30 Aug 2012 22:43:50 +0000 (00:43 +0200)
committerThomas Mueller <thomas.mueller@tmit.eu>
Thu, 30 Aug 2012 22:43:50 +0000 (00:43 +0200)
lib/l10n.php

index cfa0e26486bac5859bb6df6fccfa65b142292b96..4560cb7dbb0b78cedbb72b50f8a6cca241c4418e 100644 (file)
@@ -113,7 +113,10 @@ class OC_L10N{
                        $i18ndir = self::findI18nDir($app);
                        // Localization is in /l10n, Texts are in $i18ndir
                        // (Just no need to define date/time format etc. twice)
-                       if((OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC_App::getAppPath($app).'/l10n/') || OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/core/l10n/') || OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/settings')) && file_exists($i18ndir.$lang.'.php')) {
+                       if((OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC_App::getAppPath($app).'/l10n/') || 
+                               OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/core/l10n/') || 
+                               OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/lib/l10n/') || 
+                               OC_Helper::issubdirectory($i18ndir.$lang.'.php', OC::$SERVERROOT.'/settings')) && file_exists($i18ndir.$lang.'.php')) {
                                // Include the file, save the data from $CONFIG
                                include(strip_tags($i18ndir).strip_tags($lang).'.php');
                                if(isset($TRANSLATIONS) && is_array($TRANSLATIONS)){