Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/chrisoconnell/zf2
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Jul 16, 2012
6 parents df6a706 + a82fc82 + 7c2a059 + 4fefb53 + 599ee3a + 42f6f86 commit 7ea3aed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Translator/Translator.php
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ public function translatePlural(
);
}

return ($number != 1 ? $singular : $plural);
return ($number == 1 ? $singular : $plural);
}

$index = $this->messages[$textDomain][$locale]
Expand Down

0 comments on commit 7ea3aed

Please sign in to comment.