|
|
|
|
@ -82,7 +82,7 @@ class L10N implements IL10N { |
|
|
|
|
* returned. |
|
|
|
|
*/ |
|
|
|
|
public function t($text, $parameters = array()) { |
|
|
|
|
return (string) new \OC_L10N_String($this, $text, $parameters); |
|
|
|
|
return (string) new L10NString($this, $text, $parameters); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
@ -103,12 +103,12 @@ class L10N implements IL10N { |
|
|
|
|
public function n($text_singular, $text_plural, $count, $parameters = array()) { |
|
|
|
|
$identifier = "_${text_singular}_::_${text_plural}_"; |
|
|
|
|
if (isset($this->translations[$identifier])) { |
|
|
|
|
return (string) new \OC_L10N_String($this, $identifier, $parameters, $count); |
|
|
|
|
return (string) new L10NString($this, $identifier, $parameters, $count); |
|
|
|
|
} else { |
|
|
|
|
if ($count === 1) { |
|
|
|
|
return (string) new \OC_L10N_String($this, $text_singular, $parameters, $count); |
|
|
|
|
return (string) new L10NString($this, $text_singular, $parameters, $count); |
|
|
|
|
} else { |
|
|
|
|
return (string) new \OC_L10N_String($this, $text_plural, $parameters, $count); |
|
|
|
|
return (string) new L10NString($this, $text_plural, $parameters, $count); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|