Browse Source

Forget to change the i18n string

See https://github.com/marienfressinaud/FreshRSS/issues/465
Marien Fressinaud 11 years ago
parent
commit
b43733d847
2 changed files with 2 additions and 2 deletions
  1. 1 1
      app/i18n/fr.php
  2. 1 1
      app/views/index/formLogin.phtml

+ 1 - 1
app/i18n/fr.php

@@ -3,7 +3,7 @@
 return array (
 	// LAYOUT
 	'login'				=> 'Connexion',
-	'session_active'		=> 'Rester connecté',
+	'keep_logged_in'		=> 'Rester connecté',
 	'login_with_persona'		=> 'Connexion avec Persona',
 	'logout'			=> 'Déconnexion',
 	'search'			=> 'Rechercher des mots ou des #tags',

+ 1 - 1
app/views/index/formLogin.phtml

@@ -17,7 +17,7 @@
 		<div>
 			<label class="checkbox" for="keep_logged_in">
 				<input type="checkbox" name="keep_logged_in" id="keep_logged_in" value="1" />
-				<?php echo _t('session_active'); ?>
+				<?php echo _t('keep_logged_in'); ?>
 			</label>
 			<br />
 		</div>