Allow the translation of the application name

This commit is contained in:
Frédéric Guillot 2014-10-19 19:22:22 -04:00
parent 53b94d8f7b
commit 85d4e9231d
8 changed files with 16 additions and 2 deletions

View File

@ -228,4 +228,6 @@ return array(
// 'Force RTL mode (Right-to-left language)' => '',
// 'Activated' => '',
// 'Remove this feed' => '',
// 'Miniflux' => '',
// 'mini<span>flux</span>' => '',
);

View File

@ -228,4 +228,6 @@ return array(
// 'Force RTL mode (Right-to-left language)' => '',
// 'Activated' => '',
// 'Remove this feed' => '',
// 'Miniflux' => '',
// 'mini<span>flux</span>' => '',
);

View File

@ -228,4 +228,6 @@ return array(
// 'Force RTL mode (Right-to-left language)' => '',
// 'Activated' => '',
// 'Remove this feed' => '',
// 'Miniflux' => '',
// 'mini<span>flux</span>' => '',
);

View File

@ -228,4 +228,6 @@ return array(
'Force RTL mode (Right-to-left language)' => 'Forcer le mode RTL (Lecture de droite à gauche)',
'Activated' => 'Activé',
'Remove this feed' => 'Supprimer cet abonnement',
'Miniflux' => 'Miniflux',
'mini<span>flux</span>' => 'mini<span>flux</span>',
);

View File

@ -228,4 +228,6 @@ return array(
// 'Force RTL mode (Right-to-left language)' => '',
// 'Activated' => '',
// 'Remove this feed' => '',
// 'Miniflux' => '',
// 'mini<span>flux</span>' => '',
);

View File

@ -228,4 +228,6 @@ return array(
// 'Force RTL mode (Right-to-left language)' => '',
// 'Activated' => '',
// 'Remove this feed' => '',
// 'Miniflux' => '',
// 'mini<span>flux</span>' => '',
);

View File

@ -228,4 +228,6 @@ return array(
// 'Force RTL mode (Right-to-left language)' => '',
// 'Activated' => '',
// 'Remove this feed' => '',
// 'Miniflux' => '',
// 'mini<span>flux</span>' => '',
);

View File

@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<title><?= isset($title) ? Helper\escape($title) : 'Miniflux' ?></title>
<title><?= isset($title) ? Helper\escape($title) : t('Miniflux') ?></title>
<meta name="viewport" content="width=device-width">
<meta name="mobile-web-app-capable" content="yes">
@ -20,7 +20,7 @@
<body>
<header>
<nav>
<a class="logo" href="?">mini<span>flux</span></a>
<a class="logo" href="?"><?= tne('mini<span>flux</span>') ?></a>
<ul>
<li <?= isset($menu) && $menu === 'unread' ? 'class="active"' : '' ?>>
<a href="?action=unread"><?= t('unread') ?> <span id="nav-counter"><?= isset($nb_unread_items) ? '('.$nb_unread_items.')' : '' ?></span></a>