2012-06-18 23:16:51 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @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/>
|
|
|
|
*
|
2012-06-18 23:16:51 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2015-04-29 22:22:42 +03:00
|
|
|
class OC_L10N_String implements JsonSerializable {
|
2016-10-28 23:08:32 +03:00
|
|
|
/** @var \OC\L10N\L10N */
|
2012-06-18 23:16:51 +04:00
|
|
|
protected $l10n;
|
2013-08-03 01:08:41 +04:00
|
|
|
|
2016-01-15 15:30:13 +03:00
|
|
|
/** @var string */
|
2013-08-03 01:08:41 +04:00
|
|
|
protected $text;
|
|
|
|
|
2016-01-15 15:30:13 +03:00
|
|
|
/** @var array */
|
2013-08-03 01:08:41 +04:00
|
|
|
protected $parameters;
|
|
|
|
|
2016-01-15 15:30:13 +03:00
|
|
|
/** @var integer */
|
2013-08-03 01:08:41 +04:00
|
|
|
protected $count;
|
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
2016-10-28 23:08:32 +03:00
|
|
|
* @param \OC\L10N\L10N $l10n
|
2016-01-15 15:30:13 +03:00
|
|
|
* @param string|string[] $text
|
|
|
|
* @param array $parameters
|
|
|
|
* @param int $count
|
2014-02-06 19:30:58 +04:00
|
|
|
*/
|
2016-10-28 23:08:32 +03:00
|
|
|
public function __construct(\OC\L10N\L10N $l10n, $text, $parameters, $count = 1) {
|
2012-06-18 23:16:51 +04:00
|
|
|
$this->l10n = $l10n;
|
|
|
|
$this->text = $text;
|
|
|
|
$this->parameters = $parameters;
|
2013-07-07 22:06:14 +04:00
|
|
|
$this->count = $count;
|
2012-06-18 23:16:51 +04:00
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function __toString() {
|
2012-06-18 23:16:51 +04:00
|
|
|
$translations = $this->l10n->getTranslations();
|
2013-07-07 22:06:14 +04:00
|
|
|
|
|
|
|
$text = $this->text;
|
2012-09-07 17:22:01 +04:00
|
|
|
if(array_key_exists($this->text, $translations)) {
|
2013-07-17 00:16:53 +04:00
|
|
|
if(is_array($translations[$this->text])) {
|
2013-08-03 01:08:41 +04:00
|
|
|
$fn = $this->l10n->getPluralFormFunction();
|
|
|
|
$id = $fn($this->count);
|
2015-02-20 13:51:36 +03:00
|
|
|
$text = $translations[$this->text][$id];
|
2013-07-17 00:16:53 +04:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
$text = $translations[$this->text];
|
|
|
|
}
|
2012-06-18 23:16:51 +04:00
|
|
|
}
|
2013-08-03 01:08:41 +04:00
|
|
|
|
2013-07-07 22:06:14 +04:00
|
|
|
// Replace %n first (won't interfere with vsprintf)
|
|
|
|
$text = str_replace('%n', $this->count, $text);
|
|
|
|
return vsprintf($text, $this->parameters);
|
2012-06-18 23:16:51 +04:00
|
|
|
}
|
2015-04-29 22:22:42 +03:00
|
|
|
|
|
|
|
|
|
|
|
public function jsonSerialize() {
|
|
|
|
return $this->__toString();
|
|
|
|
}
|
2012-06-18 23:16:51 +04:00
|
|
|
}
|