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>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
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>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2012-06-18 23:16:51 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2017-07-24 21:17:20 +03:00
|
|
|
namespace OC\L10N;
|
|
|
|
|
|
|
|
class L10NString implements \JsonSerializable {
|
2021-03-30 21:09:42 +03:00
|
|
|
/** @var 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
|
|
|
/**
|
2021-03-30 21:09:42 +03:00
|
|
|
* @param 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
|
|
|
*/
|
2021-03-30 21:09:42 +03:00
|
|
|
public function __construct(L10N $l10n, $text, array $parameters, int $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
|
|
|
}
|
|
|
|
|
2021-03-30 21:09:42 +03:00
|
|
|
public function __toString(): string {
|
2012-06-18 23:16:51 +04:00
|
|
|
$translations = $this->l10n->getTranslations();
|
2021-03-30 21:09:42 +03:00
|
|
|
$identityTranslator = $this->l10n->getIdentityTranslator();
|
|
|
|
|
|
|
|
$parameters = $this->parameters;
|
|
|
|
// Add $count as %count% as per \Symfony\Contracts\Translation\TranslatorInterface
|
|
|
|
$parameters['%count%'] = $this->count;
|
2013-07-07 22:06:14 +04:00
|
|
|
|
2021-03-30 21:09:42 +03:00
|
|
|
// Use the indexed version as per \Symfony\Contracts\Translation\TranslatorInterface
|
|
|
|
$identity = implode('|', $translations[$this->text]);
|
|
|
|
$identity = str_replace('%n', '%count%', $identity);
|
2013-08-03 01:08:41 +04:00
|
|
|
|
2021-03-30 21:09:42 +03:00
|
|
|
return $identityTranslator->trans($identity, $parameters);
|
2012-06-18 23:16:51 +04:00
|
|
|
}
|
2015-04-29 22:22:42 +03:00
|
|
|
|
|
|
|
|
2017-07-24 21:17:20 +03:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2015-04-29 22:22:42 +03:00
|
|
|
public function jsonSerialize() {
|
|
|
|
return $this->__toString();
|
|
|
|
}
|
2012-06-18 23:16:51 +04:00
|
|
|
}
|