diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2016-04-27 14:24:49 +0200 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2016-04-27 20:23:25 +0200 |
commit | 20020abff4f4da2adb5596061b7e433eb40ba082 (patch) | |
tree | 507a08fde9f9082b8638c751ca0d6eea9e884c1b /lib/private/legacy/l10n/string.php | |
parent | d061b7072ea6d45ea83aebbb1685596a839847cb (diff) | |
download | nextcloud-server-20020abff4f4da2adb5596061b7e433eb40ba082.tar.gz nextcloud-server-20020abff4f4da2adb5596061b7e433eb40ba082.zip |
Move OC_L10N_String to legacy folder
Diffstat (limited to 'lib/private/legacy/l10n/string.php')
-rw-r--r-- | lib/private/legacy/l10n/string.php | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/lib/private/legacy/l10n/string.php b/lib/private/legacy/l10n/string.php new file mode 100644 index 00000000000..9c93b8c5a64 --- /dev/null +++ b/lib/private/legacy/l10n/string.php @@ -0,0 +1,78 @@ +<?php +/** + * @author Bart Visscher <bartv@thisnet.nl> + * @author Bernhard Posselt <dev@bernhard-posselt.com> + * @author Jakob Sack <mail@jakobsack.de> + * @author Joas Schilling <nickvergessen@owncloud.com> + * @author Jörn Friedrich Dreyer <jfd@butonic.de> + * @author Morris Jobke <hey@morrisjobke.de> + * @author Thomas Müller <thomas.mueller@tmit.eu> + * + * @copyright Copyright (c) 2016, 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/> + * + */ + +class OC_L10N_String implements JsonSerializable { + /** @var \OC_L10N|\OC\L10N\L10N */ + protected $l10n; + + /** @var string */ + protected $text; + + /** @var array */ + protected $parameters; + + /** @var integer */ + protected $count; + + /** + * @param \OC_L10N|\OC\L10N\L10N $l10n + * @param string|string[] $text + * @param array $parameters + * @param int $count + */ + public function __construct($l10n, $text, $parameters, $count = 1) { + $this->l10n = $l10n; + $this->text = $text; + $this->parameters = $parameters; + $this->count = $count; + } + + public function __toString() { + $translations = $this->l10n->getTranslations(); + + $text = $this->text; + if(array_key_exists($this->text, $translations)) { + if(is_array($translations[$this->text])) { + $fn = $this->l10n->getPluralFormFunction(); + $id = $fn($this->count); + $text = $translations[$this->text][$id]; + } + else{ + $text = $translations[$this->text]; + } + } + + // Replace %n first (won't interfere with vsprintf) + $text = str_replace('%n', $this->count, $text); + return vsprintf($text, $this->parameters); + } + + + public function jsonSerialize() { + return $this->__toString(); + } +} |