Fix copy and paste errors in l10n.php

This commit is contained in:
Jakob Sack 2013-08-01 21:36:33 +02:00
parent 9673a563b5
commit eee2c369d9
2 changed files with 2 additions and 2 deletions

View File

@ -320,7 +320,7 @@ class OC_L10N{
*
* returned function accepts the argument $n
*/
public function getPluralFormString() {
public function getPluralFormFunction() {
$this->init();
if(is_null($this->plural_form_function)) {
$this->plural_form_function = createPluralFormFunction($this->plural_form_string);

View File

@ -23,7 +23,7 @@ class OC_L10N_String{
$text = $this->text;
if(array_key_exists($this->text, $translations)) {
if(is_array($translations[$this->text])) {
$id = $l10n->getPluralFormFunction()( $count );
$id = $l10n->getPluralFormFunction()($count);
$text = $translations[$this->text][$id];
}
else{