Change label for frontend update check and minor changes

This commit is contained in:
Frederic Guillot 2015-01-28 20:17:02 -05:00
parent 59500bfeb7
commit fa9dc3ab8f
10 changed files with 21 additions and 15 deletions

View File

@ -186,6 +186,10 @@ textarea:focus {
box-shadow: 0 0 8px rgba(82, 168, 236, 0.6);
}
input[type="number"] {
width: 40px;
}
textarea {
border: 1px solid #ccc;
padding: 3px;

View File

@ -355,12 +355,14 @@ Miniflux.Item = (function() {
Miniflux.App.Log('New Unread! Updating pagetitle.');
unreadItems = true;
document.title = "↻ " + document.title;
} else {
}
else {
Miniflux.App.Log('No update.');
}
Miniflux.App.Log('unreadItems: ' + unreadItems);
};
request.open("POST", "?action=latest-feeds-items", true);
request.send();
}

View File

@ -231,5 +231,5 @@ return array(
// 'Download favicons' => '',
// 'general' => '',
// 'An error occurred during the last check. Refresh the feed manually and check the %sconsole%s for errors afterwards!' => '',
// 'Frontend updatecheck interval in minutes' => '',
// 'Refresh interval in minutes for unread counter' => '',
);

View File

@ -231,5 +231,5 @@ return array(
'Download favicons' => 'Favicons herunterladen',
'general' => 'allgemein',
'An error occurred during the last check. Refresh the feed manually and check the %sconsole%s for errors afterwards!' => 'Fehler bei der letzten Aktualisierung. Aktualisiere den Feed manuell und prüfe die %sKonsole%s anschließend auf Fehler!',
// 'Frontend updatecheck interval in minutes' => '',
// 'Refresh interval in minutes for unread counter' => '',
);

View File

@ -231,5 +231,5 @@ return array(
// 'Download favicons' => '',
// 'general' => '',
// 'An error occurred during the last check. Refresh the feed manually and check the %sconsole%s for errors afterwards!' => '',
// 'Frontend updatecheck interval in minutes' => '',
// 'Refresh interval in minutes for unread counter' => '',
);

View File

@ -231,5 +231,5 @@ return array(
'Download favicons' => 'Télécharger les icônes des sites web',
'general' => 'général',
'An error occurred during the last check. Refresh the feed manually and check the %sconsole%s for errors afterwards!' => 'Une erreur est survenue pendant la dernière vérification. Actualisez, le flux manuellement and vérifiez les erreurs dans la %sconsole%s !',
'Frontend updatecheck interval in minutes' => 'Frontend updatecheck interval in minutes',
'Refresh interval in minutes for unread counter' => 'Fréquence d\'actualisation en minute du compteur de non lus',
);

View File

@ -231,5 +231,5 @@ return array(
// 'Download favicons' => '',
// 'general' => '',
// 'An error occurred during the last check. Refresh the feed manually and check the %sconsole%s for errors afterwards!' => '',
// 'Frontend updatecheck interval in minutes' => '',
// 'Refresh interval in minutes for unread counter' => '',
);

View File

@ -231,5 +231,5 @@ return array(
'Download favicons' => 'Download favicon',
// 'general' => '',
// 'An error occurred during the last check. Refresh the feed manually and check the %sconsole%s for errors afterwards!' => '',
// 'Frontend updatecheck interval in minutes' => '',
// 'Refresh interval in minutes for unread counter' => '',
);

View File

@ -231,5 +231,5 @@ return array(
// 'Download favicons' => '',
// 'general' => '',
// 'An error occurred during the last check. Refresh the feed manually and check the %sconsole%s for errors afterwards!' => '',
// 'Frontend updatecheck interval in minutes' => '',
// 'Refresh interval in minutes for unread counter' => '',
);

View File

@ -35,9 +35,6 @@
<?= Helper\form_label(t('Theme'), 'theme') ?>
<?= Helper\form_select('theme', $theme_options, $values, $errors) ?><br/>
<?= Helper\form_label(t('Frontend updatecheck interval in minutes'), 'frontend_updatecheck_interval') ?>
<?= Helper\form_number('frontend_updatecheck_interval', $values, $errors, array('min="0"')) ?><br/>
<?php if (ENABLE_AUTO_UPDATE): ?>
<?= Helper\form_label(t('Auto-Update URL'), 'auto_update_url') ?>
<?= Helper\form_text('auto_update_url', $values, $errors, array('required')) ?><br/>
@ -65,6 +62,9 @@
<?= Helper\form_label(t('When there is nothing to read, redirect me to this page'), 'redirect_nothing_to_read') ?>
<?= Helper\form_select('redirect_nothing_to_read', $redirect_nothing_to_read_options, $values, $errors) ?><br/>
<?= Helper\form_label(t('Refresh interval in minutes for unread counter'), 'frontend_updatecheck_interval') ?>
<?= Helper\form_number('frontend_updatecheck_interval', $values, $errors, array('min="0"')) ?><br/>
<?= Helper\form_checkbox('nocontent', t('Do not fetch the content of articles'), 1, isset($values['nocontent']) && $values['nocontent'] == 1) ?><br />
<?= Helper\form_checkbox('favicons', t('Download favicons'), 1, isset($values['favicons']) && $values['favicons'] == 1) ?><br />