setTranslator($translator); $this->setTextDomain($textDomain); $this->setLocale($locale); } /** * @param ZendTranslator $translator * @return Translator */ public function setTranslator(ZendTranslator $translator) { $this->translator = $translator; return $this; } /** * @return ZendTranslator */ public function getTranslator() { return $this->translator; } /** * @param string|null $locale * @return Translator */ public function setLocale($locale) { $this->locale = $locale; return $this; } /** * @return string|null */ public function getLocale() { return $this->locale; } /** * @param string $textDomain * @return Translator */ public function setTextDomain($textDomain) { $this->textDomain = $textDomain; return $this; } /** * @return string */ public function getTextDomain() { return $this->textDomain; } /** * Process * * @param Config $config * @return Config * @throws Exception\InvalidArgumentException */ public function process(Config $config) { if ($config->isReadOnly()) { throw new Exception\InvalidArgumentException('Cannot process config because it is read-only'); } /** * Walk through config and replace values */ foreach ($config as $key => $val) { if ($val instanceof Config) { $this->process($val); } else { $config->{$key} = $this->translator->translate($val, $this->textDomain, $this->locale); } } return $config; } /** * Process a single value * * @param $value * @return mixed */ public function processValue($value) { return $this->translator->translate($value, $this->textDomain, $this->locale); } }