mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2025-12-23 21:47:44 -05:00
Add a distinction between recommended and required extensions. Add check for recommended php-intl extension as follow-up of https://github.com/FreshRSS/FreshRSS/pull/8329#issuecomment-3677686581 Improve related checks such as ZIP. Reduce duplicated translations and tests.
153 lines
7.0 KiB
PHP
153 lines
7.0 KiB
PHP
<?php
|
|
|
|
/******************************************************************************
|
|
* Each entry of that file can be associated with a comment to indicate its *
|
|
* state. When there is no comment, it means the entry is fully translated. *
|
|
* The recognized comments are (comment matching is case-insensitive): *
|
|
* + TODO: the entry has never been translated. *
|
|
* + DIRTY: the entry has been translated but needs to be updated. *
|
|
* + IGNORE: the entry does not need to be translated. *
|
|
* When a comment is not recognized, it is discarded. *
|
|
******************************************************************************/
|
|
|
|
return array(
|
|
'action' => array(
|
|
'finish' => 'השלמת ההתקנה',
|
|
'fix_errors_before' => 'יש לתקן את השגיאות לפני המעבר לשלב הבא.',
|
|
'keep_install' => 'Keep previous configuration', // TODO
|
|
'next_step' => 'לשלב הבא',
|
|
'reinstall' => 'Reinstall FreshRSS', // TODO
|
|
),
|
|
'bdd' => array(
|
|
'_' => 'בסיס נתונים',
|
|
'conf' => array(
|
|
'_' => 'הגדרות בסיס נתונים',
|
|
'ko' => 'נא לוודא את הגדרות בסיס הנתונים.',
|
|
'ok' => 'הגדרות בסיס הנתונים נשמרו.',
|
|
),
|
|
'host' => 'מארח',
|
|
'password' => 'HTTP סיסמה',
|
|
'prefix' => 'קידומת הטבלה',
|
|
'type' => 'סוג בסיס הנתונים',
|
|
'username' => 'HTTP שם משתמש',
|
|
),
|
|
'check' => array(
|
|
'_' => 'בדיקות',
|
|
'already_installed' => 'We have detected that FreshRSS is already installed!', // TODO
|
|
'cache' => array(
|
|
'nok' => 'Check permissions on the <em>%1$s</em> directory for <em>%2$s</em> user. The HTTP server must have write permissions.',
|
|
'ok' => 'ההרשאות בתיקיית המטמון תקינות',
|
|
),
|
|
'ctype' => array(
|
|
'nok' => 'הספרייה הנדרשת ל character type checking (php-ctype) אינה מותקנת',
|
|
'ok' => 'הספרייה הנדרשת ל character type checking (ctype) מותקנת',
|
|
),
|
|
'curl' => array(
|
|
'nok' => 'בURL לא מותקן (php-curl package)',
|
|
'ok' => 'יש לכם את גירסת %s של cURL',
|
|
),
|
|
'data' => array(
|
|
'nok' => 'Check permissions on the <em>%1$s</em> directory for <em>%2$s</em> user. The HTTP server must have write permissions.',
|
|
'ok' => 'ההרשאות בתיקיית הדאטא תקינות',
|
|
),
|
|
'dom' => array(
|
|
'nok' => 'הספרייה הנדרשת לסיור ב DOM אינה מותקנת (php-xml package)',
|
|
'ok' => 'הספרייה הנדרשת לסיור ב DOM מותקנת',
|
|
),
|
|
'favicons' => array(
|
|
'nok' => 'Check permissions on the <em>%1$s</em> directory for <em>%2$s</em> user. The HTTP server must have write permissions.',
|
|
'ok' => 'ההרשאות בתיקיית הfavicons תקינות',
|
|
),
|
|
'fileinfo' => array(
|
|
'nok' => 'Cannot find the recommended PHP fileinfo library (fileinfo package).', // TODO
|
|
'ok' => 'You have the recommended PHP fileinfo library (fileinfo package).', // TODO
|
|
),
|
|
'files' => 'File installation', // TODO
|
|
'intl' => array(
|
|
'nok' => 'Cannot find the recommended library php-intl for internationalisation.', // TODO
|
|
'ok' => 'You have the recommended library php-intl for internationalisation.', // TODO
|
|
),
|
|
'json' => array(
|
|
'nok' => 'Cannot find the required library to parse JSON.', // TODO
|
|
'ok' => 'You have the required library to parse JSON.', // TODO
|
|
),
|
|
'mbstring' => array(
|
|
'nok' => 'Cannot find the recommended library mbstring for Unicode.', // TODO
|
|
'ok' => 'You have the recommended library mbstring for Unicode.', // TODO
|
|
),
|
|
'pcre' => array(
|
|
'nok' => 'הספרייה הנדרשת לביטויים רגולריים אינה מותקנת (php-pcre)',
|
|
'ok' => 'הספרייה הנדרשת לביטויים רגולריים מותקנת (PCRE)',
|
|
),
|
|
'pdo-mysql' => array(
|
|
'nok' => 'Cannot find the required PDO driver for MySQL/MariaDB.', // TODO
|
|
),
|
|
'pdo-pgsql' => array(
|
|
'nok' => 'Cannot find the required PDO driver for PostgreSQL.', // TODO
|
|
),
|
|
'pdo-sqlite' => array(
|
|
'nok' => 'Cannot find the PDO driver for SQLite.', // TODO
|
|
'ok' => 'You have the PDO driver for SQLite', // TODO
|
|
),
|
|
'pdo' => array(
|
|
'nok' => 'PDO אינו מותקן או שאחד ממנהלי ההתקנים שלו חסר (pdo_mysql, pdo_sqlite)',
|
|
'ok' => 'PDO מותקן ולפחות אחד ממנהלי ההתקן הנתמכים מותקן (pdo_mysql, pdo_sqlite)',
|
|
),
|
|
'php' => array(
|
|
'_' => 'PHP installation', // TODO
|
|
'nok' => 'גירסת PHP שלכם היא %s אך FreshRSS דורש לפחות את גירסה %s',
|
|
'ok' => 'גירסת PHP שלכם היא %s, שתואמת ל FreshRSS',
|
|
),
|
|
'reload' => 'בדוק שוב',
|
|
'tmp' => array(
|
|
'nok' => 'Check permissions on the <em>%1$s</em> directory for <em>%2$s</em> user. The HTTP server must have write permissions.', // TODO
|
|
'ok' => 'Permissions on the temp directory are good.', // TODO
|
|
),
|
|
'tokens' => array(
|
|
'nok' => 'Check permissions on <em>./data/tokens</em> directory. HTTP server must have write permission', // TODO
|
|
'ok' => 'Permissions on the tokens directory are good.', // TODO
|
|
),
|
|
'unknown_process_username' => 'unknown', // TODO
|
|
'users' => array(
|
|
'nok' => 'Check permissions on the <em>%1$s</em> directory for <em>%2$s</em> user. The HTTP server must have write permissions.', // TODO
|
|
'ok' => 'Permissions on the users directory are good.', // TODO
|
|
),
|
|
'xml' => array(
|
|
'nok' => 'Cannot find the required library to parse XML.', // TODO
|
|
'ok' => 'You have the required library to parse XML.', // TODO
|
|
),
|
|
'zip' => array(
|
|
'nok' => 'Cannot find the recommended extension for ZIP (php-zip package).', // TODO
|
|
'ok' => 'You have the recommended extension for ZIP (php-zip package).', // TODO
|
|
),
|
|
),
|
|
'conf' => array(
|
|
'_' => 'הגדרות כלליות',
|
|
'ok' => 'ההגדרות הכלליות נשמרו.',
|
|
),
|
|
'congratulations' => 'מזל טוב!',
|
|
'default_user' => array(
|
|
'_' => 'שם המשתמש של משתמש ברירת המחדל',
|
|
'max_char' => 'לכל היותר 16 תווים אלפאנומריים',
|
|
),
|
|
'fix_errors_before' => 'יש לתקן את השגיאות לפני המעבר לשלב הבא.',
|
|
'javascript_is_better' => 'FreshRSS מעדיף שתאפשרו JavaScript',
|
|
'js' => array(
|
|
'confirm_reinstall' => 'You will lose your previous configuration by reinstalling FreshRSS. Are you sure you want to continue?', // TODO
|
|
),
|
|
'language' => array(
|
|
'_' => 'שפה',
|
|
'choose' => 'בחירת שפה ל FreshRSS',
|
|
'defined' => 'השפה הוגדרה.',
|
|
),
|
|
'missing_applied_migrations' => 'Something went wrong; you should create an empty file <em>%s</em> manually.', // TODO
|
|
'ok' => 'The installation process was successful.', // TODO
|
|
'session' => array(
|
|
'nok' => 'The web server seems to be incorrectly configured for cookies required for PHP sessions!', // TODO
|
|
),
|
|
'step' => 'step %d', // TODO
|
|
'steps' => 'שלבים',
|
|
'this_is_the_end' => 'סיום',
|
|
'title' => 'התקנה · FreshRSS',
|
|
);
|