summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-12-25 23:57:02 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-12-25 23:57:02 +0100
commit1da74b1eddfafd9191548e0fde150690b80f694b (patch)
treed4c552ada8646f1dbe2c6f9ca696e3b4d0cd0dbd
parentd24b1e963e208a03f08b1d17ed9f319bd59a36ad (diff)
Affichage version dans "à propos"
-rw-r--r--app/i18n/en.php1
-rw-r--r--app/i18n/fr.php1
-rw-r--r--app/views/index/about.phtml3
3 files changed, 5 insertions, 0 deletions
diff --git a/app/i18n/en.php b/app/i18n/en.php
index 498fccd14..40c634f7c 100644
--- a/app/i18n/en.php
+++ b/app/i18n/en.php
@@ -239,6 +239,7 @@ return array (
'freshrss_description' => 'FreshRSS is a RSS feeds aggregator to self-host like <a href="http://tontof.net/kriss/feed/">Kriss Feed</a> or <a href="http://projet.idleman.fr/leed/">Leed</a>. It is light and easy to take in hand while being powerful and configurable tool.',
'credits' => 'Credits',
'credits_content' => 'Some design elements come from <a href="http://twitter.github.io/bootstrap/">Bootstrap</a> although FreshRSS doesn’t use this framework. <a href="https://git.gnome.org/browse/gnome-icon-theme-symbolic">Icons</a> come from <a href="https://www.gnome.org/">GNOME project</a>. <em>Open Sans</em> font police used has been created by <a href="https://www.google.com/webfonts/specimen/Open+Sans">Steve Matteson</a>. Favicons are collected with <a href="https://getfavicon.appspot.com/">getFavicon API</a>. FreshRSS is based on <a href="https://github.com/marienfressinaud/MINZ">Minz</a>, a PHP framework.',
+ 'version' => 'Version',
'logs' => 'Logs',
'logs_empty' => 'Log file is empty',
diff --git a/app/i18n/fr.php b/app/i18n/fr.php
index c918daa44..14160bb7e 100644
--- a/app/i18n/fr.php
+++ b/app/i18n/fr.php
@@ -240,6 +240,7 @@ return array (
'freshrss_description' => 'FreshRSS est un agrégateur de flux RSS à auto-héberger à l’image de <a href="http://tontof.net/kriss/feed/">Kriss Feed</a> ou <a href="http://projet.idleman.fr/leed/">Leed</a>. Il se veut léger et facile à prendre en main tout en étant un outil puissant et paramétrable.',
'credits' => 'Crédits',
'credits_content' => 'Des éléments de design sont issus du <a href="http://twitter.github.io/bootstrap/">projet Bootstrap</a> bien que FreshRSS n’utilise pas ce framework. Les <a href="https://git.gnome.org/browse/gnome-icon-theme-symbolic">icônes</a> sont issues du <a href="https://www.gnome.org/">projet GNOME</a>. La police <em>Open Sans</em> utilisée a été créée par <a href="https://www.google.com/webfonts/specimen/Open+Sans">Steve Matteson</a>. Les favicons sont récupérés grâce au site <a href="https://getfavicon.appspot.com/">getFavicon</a>. FreshRSS repose sur <a href="https://github.com/marienfressinaud/MINZ">Minz</a>, un framework PHP.',
+ 'version' => 'Version',
'logs' => 'Logs',
'logs_empty' => 'Les logs sont vides',
diff --git a/app/views/index/about.phtml b/app/views/index/about.phtml
index b5c00a1ed..ae64727d7 100644
--- a/app/views/index/about.phtml
+++ b/app/views/index/about.phtml
@@ -15,6 +15,9 @@
<dt><?php echo Minz_Translate::t ('license'); ?></dt>
<dd><?php echo Minz_Translate::t ('agpl3'); ?></dd>
+
+ <dt><?php echo Minz_Translate::t ('version'); ?></dt>
+ <dd><?php echo FRESHRSS_VERSION; ?></dd>
</dl>
<p><?php echo Minz_Translate::t ('freshrss_description'); ?></p>