diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-01-15 12:57:50 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-01-26 14:02:31 +0100 |
commit | 4ea0d3c05d374040377fdf7302e3fe23b98d7342 (patch) | |
tree | b11a105cd7d1fdcdce6569ed5bf8ee95bca5b216 /lib/private/l10n.php | |
parent | 6652a0fb6cee6b5494dfca56c561c3ba6ae03185 (diff) | |
download | nextcloud-server-4ea0d3c05d374040377fdf7302e3fe23b98d7342.tar.gz nextcloud-server-4ea0d3c05d374040377fdf7302e3fe23b98d7342.zip |
Deprecate getFirstWeekDay() and getDateFormat() in favor of l()
Diffstat (limited to 'lib/private/l10n.php')
-rw-r--r-- | lib/private/l10n.php | 34 |
1 files changed, 10 insertions, 24 deletions
diff --git a/lib/private/l10n.php b/lib/private/l10n.php index 5a704916f40..2ad93c8c90b 100644 --- a/lib/private/l10n.php +++ b/lib/private/l10n.php @@ -226,6 +226,8 @@ class OC_L10N implements \OCP\IL10N { * - time * - Creates a time * - params: timestamp (int/string) + * - firstday: Returns the first day of the week (0 sunday - 6 saturday) + * - jsdate: Returns the short JS date format */ public function l($type, $data, $options = array()) { if ($type === 'firstday') { @@ -273,44 +275,28 @@ class OC_L10N implements \OCP\IL10N { } /** - * find the l10n directory - * @param string $app App that needs to be translated - * @return string directory - */ - protected function findI18nDir($app) { - // find the i18n dir - $i18nDir = OC::$SERVERROOT.'/core/l10n/'; - if($app != '') { - // Check if the app is in the app folder - if(file_exists(OC_App::getAppPath($app).'/l10n/')) { - $i18nDir = OC_App::getAppPath($app).'/l10n/'; - } - else{ - $i18nDir = OC::$SERVERROOT.'/'.$app.'/l10n/'; - } - } - return $i18nDir; - } - - /** * @return string * @throws \Punic\Exception\ValueNotInList + * @deprecated 9.0.0 Use $this->l('jsdate', null) instead */ public function getDateFormat() { - $locale = $this->getLanguageCode(); - $locale = $this->transformToCLDRLocale($locale); + $locale = $this->transformToCLDRLocale($this->getLanguageCode()); return Punic\Calendar::getDateFormat('short', $locale); } /** * @return int + * @deprecated 9.0.0 Use $this->l('firstday', null) instead */ public function getFirstWeekDay() { - $locale = $this->getLanguageCode(); - $locale = $this->transformToCLDRLocale($locale); + $locale = $this->transformToCLDRLocale($this->getLanguageCode()); return Punic\Calendar::getFirstWeekday($locale); } + /** + * @param string $locale + * @return string + */ private function transformToCLDRLocale($locale) { if ($locale === 'sr@latin') { return 'sr_latn'; |