= _t('gen.short.ok') ?> = _t('install.check.data.ok') ?>
+= _t('gen.short.ok') ?> = _t('install.check.data.ok', DATA_PATH) ?>
= _t('gen.short.damn') ?> = _t('install.check.data.nok', DATA_PATH) ?>
-= _t('gen.short.ok') ?> = _t('install.check.cache.ok') ?>
+= _t('gen.short.ok') ?> = _t('install.check.cache.ok', CACHE_PATH) ?>
= _t('gen.short.damn') ?> = _t('install.check.cache.nok', CACHE_PATH) ?>
+ += _t('gen.short.ok') ?> = _t('install.check.tmp.ok', TMP_PATH) ?>
+ += _t('gen.short.damn') ?> = _t('install.check.tmp.nok', TMP_PATH) ?>
+ + -= _t('gen.short.ok') ?> = _t('install.check.users.ok') ?>
+= _t('gen.short.ok') ?> = _t('install.check.users.ok', USERS_PATH) ?>
= _t('gen.short.damn') ?> = _t('install.check.users.nok', USERS_PATH) ?>
-= _t('gen.short.ok') ?> = _t('install.check.favicons.ok') ?>
+= _t('gen.short.ok') ?> = _t('install.check.favicons.ok', DATA_PATH . '/favicons') ?>
= _t('gen.short.damn') ?> = _t('install.check.favicons.nok', DATA_PATH . '/favicons') ?>
diff --git a/cli/i18n/ignore/en-us.php b/cli/i18n/ignore/en-us.php index 066fe79ce..518ca705b 100644 --- a/cli/i18n/ignore/en-us.php +++ b/cli/i18n/ignore/en-us.php @@ -194,6 +194,7 @@ return array( 'conf.query.get_all', 'conf.query.get_category', 'conf.query.get_feed', + 'conf.query.get_tag', 'conf.query.no_filter', 'conf.query.none', 'conf.query.number', @@ -368,6 +369,9 @@ return array( 'feedback.sub.feed.selector_preview.selector_empty', 'feedback.sub.feed.updated', 'feedback.sub.purge_completed', + 'feedback.tag.created', + 'feedback.tag.name_exists', + 'feedback.tag.renamed', 'feedback.update.can_apply', 'feedback.update.error', 'feedback.update.file_is_nok', @@ -393,11 +397,13 @@ return array( 'gen.action.export', 'gen.action.filter', 'gen.action.import', + 'gen.action.load_default_shortcuts', 'gen.action.manage', 'gen.action.mark_read', 'gen.action.promote', 'gen.action.purge', 'gen.action.remove', + 'gen.action.rename', 'gen.action.see_website', 'gen.action.submit', 'gen.action.truncate', @@ -655,6 +661,8 @@ return array( 'install.check.pdo.ok', 'install.check.php.nok', 'install.check.php.ok', + 'install.check.tmp.nok', + 'install.check.tmp.ok', 'install.check.users.nok', 'install.check.users.ok', 'install.check.xml.nok', @@ -753,11 +761,18 @@ return array( 'sub.menu.import_export', 'sub.menu.subscription_management', 'sub.menu.subscription_tools', + 'sub.menu.tag_management', + 'sub.tag.name', + 'sub.tag.new_name', + 'sub.tag.old_name', 'sub.title._', 'sub.title.add', 'sub.title.add_category', 'sub.title.add_feed', + 'sub.title.add_tag', + 'sub.title.delete_tag', 'sub.title.feed_management', + 'sub.title.rename_tag', 'sub.title.subscription_tools', 'user.email.feedback.invalid', 'user.email.feedback.required', diff --git a/lib/lib_install.php b/lib/lib_install.php index 14a614c2e..e67b3611c 100644 --- a/lib/lib_install.php +++ b/lib/lib_install.php @@ -43,6 +43,7 @@ function checkRequirements($dbType = '') { $mbstring = extension_loaded('mbstring'); $data = DATA_PATH && is_writable(DATA_PATH); $cache = CACHE_PATH && is_writable(CACHE_PATH); + $tmp = TMP_PATH && is_writable(TMP_PATH); $users = USERS_PATH && is_writable(USERS_PATH); $favicons = is_writable(join_path(DATA_PATH, 'favicons')); $http_referer = is_referer_from_same_domain(); @@ -63,12 +64,13 @@ function checkRequirements($dbType = '') { 'mbstring' => $mbstring ? 'ok' : 'ko', 'data' => $data ? 'ok' : 'ko', 'cache' => $cache ? 'ok' : 'ko', + 'tmp' => $tmp ? 'ok' : 'ko', 'users' => $users ? 'ok' : 'ko', 'favicons' => $favicons ? 'ok' : 'ko', 'http_referer' => $http_referer ? 'ok' : 'ko', 'message' => $message ?: 'ok', 'all' => $php && $curl && $pdo && $pcre && $ctype && $dom && $xml && - $data && $cache && $users && $favicons && $http_referer && $message == '' ? 'ok' : 'ko' + $data && $cache && $tmp && $users && $favicons && $http_referer && $message == '' ? 'ok' : 'ko' ); }