adding ratings category to possible ignores and merge lang update (nl)

had to change rating.title to ratings.title due to $keyPlural in base.php#L997
This commit is contained in:
Michael 2014-03-05 11:15:20 +01:00
parent 5bc134ad80
commit 1ad15d410c
15 changed files with 25 additions and 23 deletions

View file

@ -32,7 +32,7 @@ class Rating extends Base {
public static function getCount() {
$nRatings = parent::getDb ()->query('select count(*) from ratings')->fetchColumn();
$entry = new Entry (localize("rating.title"), self::ALL_RATING_ID,
$entry = new Entry (localize("ratings.title"), self::ALL_RATING_ID,
str_format (localize("ratings", $nRatings), $nRatings), "text",
array ( new LinkNavigation ("?page=".parent::PAGE_ALL_RATINGS)));
return $entry;