ソースを参照

Fix issue #244: catégorie "tous" devient "flux principal"

Marien Fressinaud 12 年 前
コミット
38cf6946ed
3 ファイル変更5 行追加4 行削除
  1. 2 2
      app/i18n/en.php
  2. 1 1
      app/i18n/fr.php
  3. 2 1
      app/layout/aside_flux.phtml

+ 2 - 2
app/i18n/en.php

@@ -19,7 +19,7 @@ return array (
 	'import_export_opml'		=> 'Import / export (OPML)',
 
 	'subscription_management'	=> 'Subscriptions management',
-	'all_feeds'			=> 'All (%d)',
+	'all_feeds'			=> 'Main stream (%d)',
 	'favorite_feeds'		=> 'Favourites (%d)',
 	'not_read'			=> '%d unread',
 	'not_reads'			=> '%d unread',
@@ -133,7 +133,7 @@ return array (
 	'keep_history'			=> 'Keep history?',
 	'categorize'			=> 'Store in a category',
 	'advanced'			=> 'Advanced',
-	'show_in_all_flux'		=> 'Show in principal stream',
+	'show_in_all_flux'		=> 'Show in main stream',
 	'yes'				=> 'Yes',
 	'no'				=> 'No',
 	'css_path_on_website'		=> 'Articles CSS path on original website',

+ 1 - 1
app/i18n/fr.php

@@ -19,7 +19,7 @@ return array (
 	'import_export_opml'		=> 'Importer / exporter (OPML)',
 
 	'subscription_management'	=> 'Gestion des abonnements',
-	'all_feeds'			=> 'Tous (%d)',
+	'all_feeds'			=> 'Flux principal (%d)',
 	'favorite_feeds'		=> 'Favoris (%d)',
 	'not_read'			=> '%d non lu',
 	'not_reads'			=> '%d non lus',

+ 2 - 1
app/layout/aside_flux.phtml

@@ -14,7 +14,8 @@
 		<li>
 			<div class="category all">
 				<a data-unread="<?php echo $this->nb_not_read; ?>" class="btn<?php echo $this->get_c == 'all' ? ' active' : ''; ?>" href="<?php echo _url ('index', 'index'); ?>">
-					<i class="icon i_all"></i><?php echo Translate::t ('all_feeds', $this->nb_total); ?>
+					<i class="icon i_all"></i>
+					<?php echo Translate::t ('all_feeds', $this->nb_total); ?>
 				</a>
 			</div>
 		</li>