Fix error when displaying favorite count

This bug appears because we where trying to display a string as a number.
The function to translate was cutting the parameter to the first non numeric character (the space)

See #487
This commit is contained in:
Alexis Degrugillier
2014-04-14 18:59:50 -04:00
parent 6a04683171
commit 77d2d2fb74
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ return array (
'subscription_management' => 'Subscriptions management',
'main_stream' => 'Main stream',
'all_feeds' => 'All feeds',
'favorite_feeds' => 'Favourites (%d)',
'favorite_feeds' => 'Favourites (%s)',
'not_read' => '%d unread',
'not_reads' => '%d unread',

View File

@@ -27,7 +27,7 @@ return array (
'subscription_management' => 'Gestion des abonnements',
'main_stream' => 'Flux principal',
'all_feeds' => 'Tous les flux',
'favorite_feeds' => 'Favoris (%d)',
'favorite_feeds' => 'Favoris (%s)',
'not_read' => '%d non lu',
'not_reads' => '%d non lus',