2011-06-19 16:27:52 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Andreas Ergenzinger <andreas.ergenzinger@gmx.de>
|
|
|
|
* @author Andreas Fischer <bantu@owncloud.com>
|
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
|
|
|
* @author Felix Moeller <mail@felixmoeller.de>
|
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
|
|
|
* @author Jan-Christoph Borchardt <hey@jancborchardt.net>
|
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Lennart Rosam <lennart.rosam@medien-systempartner.de>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Robin McCorkell <rmccorkell@karoshi.org.uk>
|
|
|
|
* @author Scrutinizer Auto-Fixer <auto-fixer@scrutinizer-ci.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Thomas Tanghus <thomas@tanghus.net>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2011-06-19 16:27:52 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2011-06-19 16:27:52 +04:00
|
|
|
*
|
2015-02-26 13:37:37 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class is for i18n and l10n
|
2011-06-19 16:27:52 +04:00
|
|
|
*/
|
2013-09-25 20:34:01 +04:00
|
|
|
class OC_L10N implements \OCP\IL10N {
|
2011-06-19 16:27:52 +04:00
|
|
|
/**
|
|
|
|
* cache
|
|
|
|
*/
|
|
|
|
protected static $cache = array();
|
2014-11-27 02:01:55 +03:00
|
|
|
protected static $availableLanguages = array();
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2011-06-19 16:27:52 +04:00
|
|
|
/**
|
|
|
|
* The best language
|
|
|
|
*/
|
|
|
|
protected static $language = '';
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-06-18 23:16:51 +04:00
|
|
|
/**
|
|
|
|
* App of this object
|
|
|
|
*/
|
|
|
|
protected $app;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Language of this object
|
|
|
|
*/
|
|
|
|
protected $lang;
|
|
|
|
|
2011-06-19 16:27:52 +04:00
|
|
|
/**
|
|
|
|
* Translations
|
|
|
|
*/
|
|
|
|
private $translations = array();
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2013-08-01 21:54:51 +04:00
|
|
|
/**
|
2013-08-01 23:18:18 +04:00
|
|
|
* Plural forms (string)
|
2013-08-01 21:54:51 +04:00
|
|
|
*/
|
2014-10-24 15:53:01 +04:00
|
|
|
private $pluralFormString = 'nplurals=2; plural=(n != 1);';
|
2013-08-01 23:18:18 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Plural forms (function)
|
|
|
|
*/
|
2014-10-24 15:53:01 +04:00
|
|
|
private $pluralFormFunction = null;
|
2013-08-01 21:54:51 +04:00
|
|
|
|
2012-04-14 18:44:15 +04:00
|
|
|
/**
|
|
|
|
* get an L10N instance
|
2014-02-28 16:37:41 +04:00
|
|
|
* @param string $app
|
|
|
|
* @param string|null $lang
|
2015-08-28 13:04:52 +03:00
|
|
|
* @return \OCP\IL10N
|
|
|
|
* @deprecated Use \OC::$server->getL10NFactory()->get() instead
|
2012-04-14 18:44:15 +04:00
|
|
|
*/
|
2012-11-02 22:53:02 +04:00
|
|
|
public static function get($app, $lang=null) {
|
2015-08-28 13:04:52 +03:00
|
|
|
return \OC::$server->getL10NFactory()->get($app, $lang);
|
2012-04-14 18:44:15 +04:00
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2011-06-19 16:27:52 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* The constructor
|
2014-02-28 16:37:41 +04:00
|
|
|
* @param string $app app requesting l10n
|
|
|
|
* @param string $lang default: null Language
|
2011-06-19 16:27:52 +04:00
|
|
|
*
|
|
|
|
* If language is not set, the constructor tries to find the right
|
|
|
|
* language.
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function __construct($app, $lang = null) {
|
2012-06-18 23:16:51 +04:00
|
|
|
$this->app = $app;
|
|
|
|
$this->lang = $lang;
|
2012-06-07 19:25:25 +04:00
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2015-02-24 19:42:26 +03:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2015-09-30 18:29:54 +03:00
|
|
|
public static function setLanguageFromRequest() {
|
2015-02-24 19:42:26 +03:00
|
|
|
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
|
2015-09-30 18:29:54 +03:00
|
|
|
$available = self::findAvailableLanguages();
|
2015-02-24 19:42:26 +03:00
|
|
|
|
|
|
|
// E.g. make sure that 'de' is before 'de_DE'.
|
|
|
|
sort($available);
|
|
|
|
|
|
|
|
$preferences = preg_split('/,\s*/', strtolower($_SERVER['HTTP_ACCEPT_LANGUAGE']));
|
|
|
|
foreach ($preferences as $preference) {
|
|
|
|
list($preferred_language) = explode(';', $preference);
|
|
|
|
$preferred_language = str_replace('-', '_', $preferred_language);
|
|
|
|
foreach ($available as $available_language) {
|
|
|
|
if ($preferred_language === strtolower($available_language)) {
|
2015-09-30 18:29:54 +03:00
|
|
|
self::$language = $available_language;
|
2015-02-24 19:42:26 +03:00
|
|
|
return $available_language;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
foreach ($available as $available_language) {
|
|
|
|
if (substr($preferred_language, 0, 2) === $available_language) {
|
2015-09-30 18:29:54 +03:00
|
|
|
self::$language = $available_language;
|
2015-02-24 19:42:26 +03:00
|
|
|
return $available_language;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-03 16:36:24 +03:00
|
|
|
self::$language = 'en';
|
2015-02-24 19:42:26 +03:00
|
|
|
// Last try: English
|
|
|
|
return 'en';
|
|
|
|
}
|
|
|
|
|
2014-02-19 12:31:54 +04:00
|
|
|
/**
|
2014-11-25 01:09:49 +03:00
|
|
|
* @param $transFile
|
|
|
|
* @param bool $mergeTranslations
|
2014-10-24 15:53:01 +04:00
|
|
|
* @return bool
|
2014-02-19 12:31:54 +04:00
|
|
|
*/
|
2014-10-24 15:53:01 +04:00
|
|
|
public function load($transFile, $mergeTranslations = false) {
|
2013-08-03 01:08:41 +04:00
|
|
|
$this->app = true;
|
2014-10-24 15:53:01 +04:00
|
|
|
|
|
|
|
$json = json_decode(file_get_contents($transFile), true);
|
|
|
|
if (!is_array($json)) {
|
2015-10-30 11:10:16 +03:00
|
|
|
$jsonError = json_last_error();
|
|
|
|
\OC::$server->getLogger()->warning("Failed to load $transFile - json error code: $jsonError", ['app' => 'l10n']);
|
2014-10-24 15:53:01 +04:00
|
|
|
return false;
|
2013-08-03 01:08:41 +04:00
|
|
|
}
|
2014-10-24 15:53:01 +04:00
|
|
|
|
|
|
|
$this->pluralFormString = $json['pluralForm'];
|
|
|
|
$translations = $json['translations'];
|
|
|
|
|
|
|
|
if ($mergeTranslations) {
|
|
|
|
$this->translations = array_merge($this->translations, $translations);
|
|
|
|
} else {
|
|
|
|
$this->translations = $translations;
|
2013-08-03 01:08:41 +04:00
|
|
|
}
|
2014-10-24 15:53:01 +04:00
|
|
|
|
|
|
|
return true;
|
2013-08-03 01:08:41 +04:00
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
protected function init() {
|
2012-06-18 23:16:51 +04:00
|
|
|
if ($this->app === true) {
|
|
|
|
return;
|
|
|
|
}
|
2013-02-09 18:03:47 +04:00
|
|
|
$app = OC_App::cleanAppId($this->app);
|
2014-02-19 18:38:00 +04:00
|
|
|
$lang = str_replace(array('\0', '/', '\\', '..'), '', $this->lang);
|
2012-06-18 23:16:51 +04:00
|
|
|
$this->app = true;
|
2011-06-19 16:27:52 +04:00
|
|
|
// Find the right language
|
2012-09-02 16:14:15 +04:00
|
|
|
if(is_null($lang) || $lang == '') {
|
2011-09-12 14:30:57 +04:00
|
|
|
$lang = self::findLanguage($app);
|
2011-06-19 16:27:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Use cache if possible
|
2012-09-07 17:22:01 +04:00
|
|
|
if(array_key_exists($app.'::'.$lang, self::$cache)) {
|
2011-06-19 16:27:52 +04:00
|
|
|
$this->translations = self::$cache[$app.'::'.$lang]['t'];
|
2014-10-13 19:44:57 +04:00
|
|
|
} else{
|
2014-10-24 15:53:01 +04:00
|
|
|
$i18nDir = self::findI18nDir($app);
|
|
|
|
$transFile = strip_tags($i18nDir).strip_tags($lang).'.json';
|
2014-10-13 19:44:57 +04:00
|
|
|
// Texts are in $i18ndir
|
2011-06-19 16:27:52 +04:00
|
|
|
// (Just no need to define date/time format etc. twice)
|
2014-10-24 15:53:01 +04:00
|
|
|
if((OC_Helper::isSubDirectory($transFile, OC::$SERVERROOT.'/core/l10n/')
|
|
|
|
|| OC_Helper::isSubDirectory($transFile, OC::$SERVERROOT.'/lib/l10n/')
|
|
|
|
|| OC_Helper::isSubDirectory($transFile, OC::$SERVERROOT.'/settings')
|
|
|
|
|| OC_Helper::isSubDirectory($transFile, OC_App::getAppPath($app).'/l10n/')
|
2012-12-15 02:50:21 +04:00
|
|
|
)
|
2014-10-24 15:53:01 +04:00
|
|
|
&& file_exists($transFile)) {
|
|
|
|
// load the translations file
|
|
|
|
if($this->load($transFile)) {
|
2013-04-17 12:29:32 +04:00
|
|
|
//merge with translations from theme
|
2014-11-25 01:09:49 +03:00
|
|
|
$theme = \OC::$server->getConfig()->getSystemValue('theme');
|
|
|
|
if (!empty($theme)) {
|
2013-04-17 12:34:29 +04:00
|
|
|
$transFile = OC::$SERVERROOT.'/themes/'.$theme.substr($transFile, strlen(OC::$SERVERROOT));
|
|
|
|
if (file_exists($transFile)) {
|
2014-10-24 15:53:01 +04:00
|
|
|
$this->load($transFile, true);
|
2013-04-17 12:34:29 +04:00
|
|
|
}
|
|
|
|
}
|
2011-06-19 16:27:52 +04:00
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
}
|
2011-06-19 16:27:52 +04:00
|
|
|
|
|
|
|
self::$cache[$app.'::'.$lang]['t'] = $this->translations;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-01 23:18:18 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Creates a function that The constructor
|
2013-08-01 23:18:18 +04:00
|
|
|
*
|
|
|
|
* If language is not set, the constructor tries to find the right
|
|
|
|
* language.
|
|
|
|
*
|
|
|
|
* Parts of the code is copied from Habari:
|
|
|
|
* https://github.com/habari/system/blob/master/classes/locale.php
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $string
|
2013-08-02 23:46:25 +04:00
|
|
|
* @return string
|
2013-08-01 23:18:18 +04:00
|
|
|
*/
|
|
|
|
protected function createPluralFormFunction($string){
|
|
|
|
if(preg_match( '/^\s*nplurals\s*=\s*(\d+)\s*;\s*plural=(.*)$/u', $string, $matches)) {
|
|
|
|
// sanitize
|
|
|
|
$nplurals = preg_replace( '/[^0-9]/', '', $matches[1] );
|
|
|
|
$plural = preg_replace( '#[^n0-9:\(\)\?\|\&=!<>+*/\%-]#', '', $matches[2] );
|
|
|
|
|
|
|
|
$body = str_replace(
|
|
|
|
array( 'plural', 'n', '$n$plurals', ),
|
|
|
|
array( '$plural', '$n', '$nplurals', ),
|
|
|
|
'nplurals='. $nplurals . '; plural=' . $plural
|
|
|
|
);
|
|
|
|
|
2013-08-02 23:46:25 +04:00
|
|
|
// add parents
|
2013-08-01 23:18:18 +04:00
|
|
|
// important since PHP's ternary evaluates from left to right
|
|
|
|
$body .= ';';
|
|
|
|
$res = '';
|
|
|
|
$p = 0;
|
|
|
|
for($i = 0; $i < strlen($body); $i++) {
|
|
|
|
$ch = $body[$i];
|
|
|
|
switch ( $ch ) {
|
|
|
|
case '?':
|
|
|
|
$res .= ' ? (';
|
|
|
|
$p++;
|
|
|
|
break;
|
|
|
|
case ':':
|
|
|
|
$res .= ') : (';
|
|
|
|
break;
|
|
|
|
case ';':
|
|
|
|
$res .= str_repeat( ')', $p ) . ';';
|
|
|
|
$p = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$res .= $ch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$body = $res . 'return ($plural>=$nplurals?$nplurals-1:$plural);';
|
|
|
|
return create_function('$n', $body);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// default: one plural form for all cases but n==1 (english)
|
|
|
|
return create_function(
|
|
|
|
'$n',
|
|
|
|
'$nplurals=2;$plural=($n==1?0:1);return ($plural>=$nplurals?$nplurals-1:$plural);'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-14 23:30:28 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Translating
|
2014-02-28 16:37:41 +04:00
|
|
|
* @param string $text The text we need a translation for
|
2013-01-14 23:30:28 +04:00
|
|
|
* @param array $parameters default:array() Parameters for sprintf
|
|
|
|
* @return \OC_L10N_String Translation or the same text
|
|
|
|
*
|
|
|
|
* Returns the translation. If no translation is found, $text will be
|
|
|
|
* returned.
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function t($text, $parameters = array()) {
|
2012-06-18 23:16:51 +04:00
|
|
|
return new OC_L10N_String($this, $text, $parameters);
|
2011-06-19 16:27:52 +04:00
|
|
|
}
|
|
|
|
|
2013-07-07 22:06:14 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Translating
|
2014-02-28 16:37:41 +04:00
|
|
|
* @param string $text_singular the string to translate for exactly one object
|
|
|
|
* @param string $text_plural the string to translate for n objects
|
|
|
|
* @param integer $count Number of objects
|
2013-07-07 22:06:14 +04:00
|
|
|
* @param array $parameters default:array() Parameters for sprintf
|
|
|
|
* @return \OC_L10N_String Translation or the same text
|
|
|
|
*
|
|
|
|
* Returns the translation. If no translation is found, $text will be
|
|
|
|
* returned. %n will be replaced with the number of objects.
|
2013-07-17 00:16:53 +04:00
|
|
|
*
|
2013-08-01 21:54:51 +04:00
|
|
|
* The correct plural is determined by the plural_forms-function
|
|
|
|
* provided by the po file.
|
2013-07-17 00:16:53 +04:00
|
|
|
*
|
2013-07-07 22:06:14 +04:00
|
|
|
*/
|
2013-07-17 00:16:53 +04:00
|
|
|
public function n($text_singular, $text_plural, $count, $parameters = array()) {
|
2013-08-03 01:08:41 +04:00
|
|
|
$this->init();
|
2013-12-07 14:38:01 +04:00
|
|
|
$identifier = "_${text_singular}_::_${text_plural}_";
|
2013-08-03 01:08:41 +04:00
|
|
|
if( array_key_exists($identifier, $this->translations)) {
|
2015-02-20 13:51:36 +03:00
|
|
|
return new OC_L10N_String( $this, $identifier, $parameters, $count );
|
2014-04-21 17:44:54 +04:00
|
|
|
}else{
|
2013-07-17 00:16:53 +04:00
|
|
|
if($count === 1) {
|
|
|
|
return new OC_L10N_String($this, $text_singular, $parameters, $count);
|
2014-04-21 17:44:54 +04:00
|
|
|
}else{
|
2013-07-17 00:16:53 +04:00
|
|
|
return new OC_L10N_String($this, $text_plural, $parameters, $count);
|
|
|
|
}
|
2013-07-07 22:06:14 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-20 01:33:34 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* getTranslations
|
2014-05-11 21:05:28 +04:00
|
|
|
* @return array Fetch all translations
|
2011-06-20 01:33:34 +04:00
|
|
|
*
|
|
|
|
* Returns an associative array with all translations
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function getTranslations() {
|
2012-06-18 23:16:51 +04:00
|
|
|
$this->init();
|
2011-06-20 01:33:34 +04:00
|
|
|
return $this->translations;
|
|
|
|
}
|
|
|
|
|
2013-08-01 23:18:18 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* getPluralFormFunction
|
2014-05-11 21:05:28 +04:00
|
|
|
* @return string the plural form function
|
2013-08-01 23:18:18 +04:00
|
|
|
*
|
|
|
|
* returned function accepts the argument $n
|
|
|
|
*/
|
2013-08-01 23:36:33 +04:00
|
|
|
public function getPluralFormFunction() {
|
2013-08-01 23:18:18 +04:00
|
|
|
$this->init();
|
2014-10-24 15:53:01 +04:00
|
|
|
if(is_null($this->pluralFormFunction)) {
|
|
|
|
$this->pluralFormFunction = $this->createPluralFormFunction($this->pluralFormString);
|
2013-08-01 23:18:18 +04:00
|
|
|
}
|
2014-10-24 15:53:01 +04:00
|
|
|
return $this->pluralFormFunction;
|
2013-08-01 21:54:51 +04:00
|
|
|
}
|
|
|
|
|
2011-06-19 16:27:52 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Localization
|
2014-02-28 16:37:41 +04:00
|
|
|
* @param string $type Type of localization
|
2014-05-04 15:01:57 +04:00
|
|
|
* @param array|int|string $data parameters for this localization
|
2014-11-25 01:09:49 +03:00
|
|
|
* @param array $options
|
|
|
|
* @return string|false
|
2011-06-19 16:27:52 +04:00
|
|
|
*
|
|
|
|
* Returns the localized data.
|
2012-08-29 10:38:33 +04:00
|
|
|
*
|
2011-06-19 16:27:52 +04:00
|
|
|
* Implemented types:
|
|
|
|
* - date
|
|
|
|
* - Creates a date
|
2011-06-19 21:38:51 +04:00
|
|
|
* - params: timestamp (int/string)
|
2011-06-19 16:27:52 +04:00
|
|
|
* - datetime
|
|
|
|
* - Creates date and time
|
2011-06-19 21:38:51 +04:00
|
|
|
* - params: timestamp (int/string)
|
2011-06-19 16:27:52 +04:00
|
|
|
* - time
|
|
|
|
* - Creates a time
|
2011-06-19 21:38:51 +04:00
|
|
|
* - params: timestamp (int/string)
|
2011-06-19 16:27:52 +04:00
|
|
|
*/
|
2014-10-13 19:44:57 +04:00
|
|
|
public function l($type, $data, $options = array()) {
|
|
|
|
if ($type === 'firstday') {
|
|
|
|
return $this->getFirstWeekDay();
|
|
|
|
}
|
|
|
|
if ($type === 'jsdate') {
|
|
|
|
return $this->getDateFormat();
|
|
|
|
}
|
|
|
|
|
2012-06-18 23:16:51 +04:00
|
|
|
$this->init();
|
2014-10-13 19:44:57 +04:00
|
|
|
$value = new DateTime();
|
|
|
|
if($data instanceof DateTime) {
|
|
|
|
$value = $data;
|
|
|
|
} elseif(is_string($data) && !is_numeric($data)) {
|
|
|
|
$data = strtotime($data);
|
|
|
|
$value->setTimestamp($data);
|
|
|
|
} else {
|
|
|
|
$value->setTimestamp($data);
|
|
|
|
}
|
2014-11-24 14:08:19 +03:00
|
|
|
|
|
|
|
// Use the language of the instance, before falling back to the current user's language
|
|
|
|
$locale = $this->lang;
|
|
|
|
if ($locale === null) {
|
|
|
|
$locale = self::findLanguage();
|
|
|
|
}
|
2015-05-09 00:45:07 +03:00
|
|
|
$locale = $this->transformToCLDRLocale($locale);
|
2014-11-24 14:08:19 +03:00
|
|
|
|
2014-10-13 19:44:57 +04:00
|
|
|
$options = array_merge(array('width' => 'long'), $options);
|
|
|
|
$width = $options['width'];
|
2012-09-07 17:22:01 +04:00
|
|
|
switch($type) {
|
2011-06-19 16:27:52 +04:00
|
|
|
case 'date':
|
2014-10-13 19:44:57 +04:00
|
|
|
return Punic\Calendar::formatDate($value, $width, $locale);
|
2011-06-19 16:27:52 +04:00
|
|
|
case 'datetime':
|
2014-10-13 19:44:57 +04:00
|
|
|
return Punic\Calendar::formatDatetime($value, $width, $locale);
|
2011-06-19 16:27:52 +04:00
|
|
|
case 'time':
|
2014-10-13 19:44:57 +04:00
|
|
|
return Punic\Calendar::formatTime($value, $width, $locale);
|
2011-06-19 16:27:52 +04:00
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-14 03:06:14 +04:00
|
|
|
/**
|
2015-03-02 20:02:51 +03:00
|
|
|
* The code (en, de, ...) of the language that is used for this OC_L10N object
|
2014-05-14 03:06:14 +04:00
|
|
|
*
|
2014-07-03 15:48:15 +04:00
|
|
|
* @return string language
|
2014-05-14 03:06:14 +04:00
|
|
|
*/
|
2015-03-02 20:02:51 +03:00
|
|
|
public function getLanguageCode() {
|
|
|
|
return $this->lang ? $this->lang : self::findLanguage();
|
2014-05-14 03:06:14 +04:00
|
|
|
}
|
2014-05-19 19:50:53 +04:00
|
|
|
|
2011-06-19 16:27:52 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* find the best language
|
2015-09-30 18:53:15 +03:00
|
|
|
* @param string $app
|
2014-05-11 21:05:28 +04:00
|
|
|
* @return string language
|
2011-06-19 16:27:52 +04:00
|
|
|
*
|
|
|
|
* If nothing works it returns 'en'
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function findLanguage($app = null) {
|
2015-09-30 18:53:15 +03:00
|
|
|
if(self::$language != '') {
|
2011-06-19 16:27:52 +04:00
|
|
|
return self::$language;
|
|
|
|
}
|
|
|
|
|
2015-08-25 16:47:31 +03:00
|
|
|
$config = \OC::$server->getConfig();
|
|
|
|
$userId = \OC_User::getUser();
|
|
|
|
|
|
|
|
if($userId && $config->getUserValue($userId, 'core', 'lang')) {
|
|
|
|
$lang = $config->getUserValue($userId, 'core', 'lang');
|
2011-06-19 16:27:52 +04:00
|
|
|
self::$language = $lang;
|
2015-09-30 18:53:15 +03:00
|
|
|
if(self::languageExists($app, $lang)) {
|
2011-06-19 16:27:52 +04:00
|
|
|
return $lang;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-25 16:47:31 +03:00
|
|
|
$default_language = $config->getSystemValue('default_language', false);
|
2013-08-02 11:41:31 +04:00
|
|
|
|
2013-10-23 14:25:48 +04:00
|
|
|
if($default_language !== false) {
|
|
|
|
return $default_language;
|
|
|
|
}
|
2013-08-02 11:41:31 +04:00
|
|
|
|
2015-09-30 18:29:54 +03:00
|
|
|
$lang = self::setLanguageFromRequest();
|
2015-08-25 16:47:31 +03:00
|
|
|
if($userId && !$config->getUserValue($userId, 'core', 'lang')) {
|
|
|
|
$config->setUserValue($userId, 'core', 'lang', $lang);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $lang;
|
2011-06-19 16:27:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* find the l10n directory
|
2014-02-28 16:37:41 +04:00
|
|
|
* @param string $app App that needs to be translated
|
2014-10-13 19:44:57 +04:00
|
|
|
* @return string directory
|
2011-06-19 16:27:52 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
protected static function findI18nDir($app) {
|
2011-06-19 16:27:52 +04:00
|
|
|
// find the i18n dir
|
2014-11-25 01:09:49 +03:00
|
|
|
$i18nDir = OC::$SERVERROOT.'/core/l10n/';
|
2012-09-07 17:22:01 +04:00
|
|
|
if($app != '') {
|
2011-06-19 16:27:52 +04:00
|
|
|
// Check if the app is in the app folder
|
2012-09-07 17:22:01 +04:00
|
|
|
if(file_exists(OC_App::getAppPath($app).'/l10n/')) {
|
2014-11-25 01:09:49 +03:00
|
|
|
$i18nDir = OC_App::getAppPath($app).'/l10n/';
|
2011-06-19 16:27:52 +04:00
|
|
|
}
|
|
|
|
else{
|
2014-11-25 01:09:49 +03:00
|
|
|
$i18nDir = OC::$SERVERROOT.'/'.$app.'/l10n/';
|
2011-06-19 16:27:52 +04:00
|
|
|
}
|
|
|
|
}
|
2014-11-25 01:09:49 +03:00
|
|
|
return $i18nDir;
|
2011-06-19 16:27:52 +04:00
|
|
|
}
|
2011-06-20 16:33:02 +04:00
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* find all available languages for an app
|
2014-02-28 16:37:41 +04:00
|
|
|
* @param string $app App that needs to be translated
|
2014-05-11 21:05:28 +04:00
|
|
|
* @return array an array of available languages
|
2011-06-20 16:33:02 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function findAvailableLanguages($app=null) {
|
2015-09-30 17:49:16 +03:00
|
|
|
// also works with null as key
|
|
|
|
if(isset(self::$availableLanguages[$app]) && !empty(self::$availableLanguages[$app])) {
|
|
|
|
return self::$availableLanguages[$app];
|
2014-11-27 02:01:55 +03:00
|
|
|
}
|
2011-06-20 16:33:02 +04:00
|
|
|
$available=array('en');//english is always available
|
2011-09-12 14:30:57 +04:00
|
|
|
$dir = self::findI18nDir($app);
|
2012-09-07 17:22:01 +04:00
|
|
|
if(is_dir($dir)) {
|
2012-04-14 18:28:36 +04:00
|
|
|
$files=scandir($dir);
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($files as $file) {
|
2014-10-24 15:53:01 +04:00
|
|
|
if(substr($file, -5, 5) === '.json' && substr($file, 0, 4) !== 'l10n') {
|
|
|
|
$i = substr($file, 0, -5);
|
2012-04-14 18:28:36 +04:00
|
|
|
$available[] = $i;
|
2011-06-20 16:33:02 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-11-27 02:01:55 +03:00
|
|
|
|
2015-09-30 17:49:16 +03:00
|
|
|
self::$availableLanguages[$app] = $available;
|
2011-06-20 16:33:02 +04:00
|
|
|
return $available;
|
|
|
|
}
|
2012-06-16 22:52:01 +04:00
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
2014-03-01 00:03:43 +04:00
|
|
|
* @param string $app
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param string $lang
|
2014-05-11 21:05:28 +04:00
|
|
|
* @return bool
|
2014-02-06 19:30:58 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function languageExists($app, $lang) {
|
2014-11-25 01:09:49 +03:00
|
|
|
if ($lang === 'en') {//english is always available
|
2012-06-16 22:52:01 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
$dir = self::findI18nDir($app);
|
2012-09-07 17:22:01 +04:00
|
|
|
if(is_dir($dir)) {
|
2014-10-28 15:19:51 +03:00
|
|
|
return file_exists($dir.'/'.$lang.'.json');
|
2012-06-16 22:52:01 +04:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2014-10-13 19:44:57 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
* @throws \Punic\Exception\ValueNotInList
|
|
|
|
*/
|
|
|
|
public function getDateFormat() {
|
2015-03-02 20:02:51 +03:00
|
|
|
$locale = $this->getLanguageCode();
|
2015-05-09 00:45:07 +03:00
|
|
|
$locale = $this->transformToCLDRLocale($locale);
|
2014-10-13 19:44:57 +04:00
|
|
|
return Punic\Calendar::getDateFormat('short', $locale);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getFirstWeekDay() {
|
2015-03-02 20:02:51 +03:00
|
|
|
$locale = $this->getLanguageCode();
|
2015-05-09 00:45:07 +03:00
|
|
|
$locale = $this->transformToCLDRLocale($locale);
|
2014-10-13 19:44:57 +04:00
|
|
|
return Punic\Calendar::getFirstWeekday($locale);
|
|
|
|
}
|
2015-05-09 00:45:07 +03:00
|
|
|
|
|
|
|
private function transformToCLDRLocale($locale) {
|
|
|
|
if ($locale === 'sr@latin') {
|
|
|
|
return 'sr_latn';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $locale;
|
|
|
|
}
|
2011-09-12 14:29:43 +04:00
|
|
|
}
|