admin.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. <?php
  2. /******************************************************************************/
  3. /* Each entry of that file can be associated with a comment to indicate its */
  4. /* state. When there is no comment, it means the entry is fully translated. */
  5. /* The recognized comments are (comment matching is case-insensitive): */
  6. /* + TODO: the entry has never been translated. */
  7. /* + DIRTY: the entry has been translated but needs to be updated. */
  8. /* + IGNORE: the entry does not need to be translated. */
  9. /* When a comment is not recognized, it is discarded. */
  10. /******************************************************************************/
  11. return array(
  12. 'auth' => array(
  13. 'allow_anonymous' => 'הרשאה לאנונימיים לקרוא את מאמרי משתמש ברירת המחדל (%s)',
  14. 'allow_anonymous_refresh' => 'הרשאה לאנונימיים לרענן את רשימת המאמרים',
  15. 'api_enabled' => 'הרשאת גישה ל <abbr>API</abbr> <small>(נדרש ליישומים סלולריים and sharing user queries)</small>', // DIRTY
  16. 'form' => 'טופס אינטרנטי (מסורתי, דורש JavaScript)',
  17. 'http' => 'HTTP (advanced: managed by Web server, OIDC, SSO…)', // TODO
  18. 'none' => 'ללא (מסוכן)',
  19. 'title' => 'Authentication', // TODO
  20. 'token' => 'Master authentication token', // TODO
  21. 'token_help' => 'Allows access to all RSS outputs of the user as well as refreshing feeds without authentication:', // TODO
  22. 'type' => 'שיטת אימות',
  23. 'unsafe_autologin' => 'הרשאה להתחברות אוטומטית בפורמט: ',
  24. ),
  25. 'check_install' => array(
  26. 'cache' => array(
  27. 'nok' => 'יש לבדוק את ההרשאות בתיקייה <em>%s</em>. שרת הHTTP חייב להיות בעל הרשאות כתיבה.',
  28. 'ok' => 'ההרשאות בתיקיית המטמון תקינות',
  29. ),
  30. 'categories' => array(
  31. 'nok' => 'Category table is bad configured.',
  32. 'ok' => 'Category table is okay.', // TODO
  33. ),
  34. 'connection' => array(
  35. 'nok' => 'Connection to the database cannot being established.',
  36. 'ok' => 'Connection to the database is okay.', // TODO
  37. ),
  38. 'ctype' => array(
  39. 'nok' => 'הספרייה הנדרשת ל character type checking (php-ctype) אינה מותקנת',
  40. 'ok' => 'הספרייה הנדרשת ל character type checking (ctype) מותקנת',
  41. ),
  42. 'curl' => array(
  43. 'nok' => 'בURL לא מותקן (php-curl package)',
  44. 'ok' => 'You have cURL extension.',
  45. ),
  46. 'data' => array(
  47. 'nok' => 'יש לבדוק את ההרשאות בתיקייה <em>%s</em>. שרת הHTTP חייב להיות בעל הרשאות כתיבה.',
  48. 'ok' => 'ההרשאות בתיקיית הדאטא תקינות',
  49. ),
  50. 'database' => 'Database installation', // TODO
  51. 'dom' => array(
  52. 'nok' => 'הספרייה הנדרשת לסיור ב DOM אינה מותקנת (php-xml package)',
  53. 'ok' => 'הספרייה הנדרשת לסיור ב DOM מותקנת',
  54. ),
  55. 'entries' => array(
  56. 'nok' => 'Entry table is improperly configured.', // TODO
  57. 'ok' => 'Entry table is okay.', // TODO
  58. ),
  59. 'favicons' => array(
  60. 'nok' => 'Check permissions on <em>./data/favicons</em> directory. HTTP server must have write permission.', // TODO
  61. 'ok' => 'ההרשאות בתיקיית הfavicons תקינות',
  62. ),
  63. 'feeds' => array(
  64. 'nok' => 'Feed table is bad configured.',
  65. 'ok' => 'Feed table is okay.', // TODO
  66. ),
  67. 'fileinfo' => array(
  68. 'nok' => 'Cannot find the PHP fileinfo library (fileinfo package).', // TODO
  69. 'ok' => 'You have the fileinfo library.', // TODO
  70. ),
  71. 'files' => 'File installation', // TODO
  72. 'json' => array(
  73. 'nok' => 'You lack JSON (php-json package).',
  74. 'ok' => 'You have the JSON extension.', // TODO
  75. ),
  76. 'mbstring' => array(
  77. 'nok' => 'Cannot find the recommended mbstring library for Unicode.', // TODO
  78. 'ok' => 'You have the recommended mbstring library for Unicode.', // TODO
  79. ),
  80. 'pcre' => array(
  81. 'nok' => 'הספרייה הנדרשת לביטויים רגולריים אינה מותקנת (php-pcre)',
  82. 'ok' => 'הספרייה הנדרשת לביטויים רגולריים מותקנת (PCRE)',
  83. ),
  84. 'pdo' => array(
  85. 'nok' => 'PDO אינו מותקן או שאחד ממנהלי ההתקנים שלו חסר (pdo_mysql, pdo_sqlite)',
  86. 'ok' => 'PDO מותקן ולפחות אחד ממנהלי ההתקן הנתמכים מותקן (pdo_mysql, pdo_sqlite)',
  87. ),
  88. 'php' => array(
  89. '_' => 'PHP installation', // TODO
  90. 'nok' => 'גירסת PHP שלכם היא %s אך FreshRSS דורש לפחות את גירסה %s',
  91. 'ok' => 'גירסת PHP שלכם היא %s, שתואמת ל FreshRSS',
  92. ),
  93. 'tables' => array(
  94. 'nok' => 'There is one or more lacking tables in the database.',
  95. 'ok' => 'Tables are existing in the database.',
  96. ),
  97. 'title' => 'Installation check', // TODO
  98. 'tokens' => array(
  99. 'nok' => 'Check permissions on <em>./data/tokens</em> directory. HTTP server must have write permission', // TODO
  100. 'ok' => 'Permissions on the tokens directory are good.', // TODO
  101. ),
  102. 'users' => array(
  103. 'nok' => 'Check permissions on <em>./data/users</em> directory. HTTP server must have write permission', // TODO
  104. 'ok' => 'Permissions on the users directory are good.', // TODO
  105. ),
  106. 'zip' => array(
  107. 'nok' => 'You lack ZIP extension (php-zip package).',
  108. 'ok' => 'You have the ZIP extension.', // TODO
  109. ),
  110. ),
  111. 'extensions' => array(
  112. 'author' => 'Author', // TODO
  113. 'community' => 'Available community extensions', // TODO
  114. 'description' => 'Description', // TODO
  115. 'disabled' => 'Disabled', // TODO
  116. 'empty_list' => 'There is no installed extension',
  117. 'empty_list_help' => 'Check the logs to determine the reason behind the empty extension list.', // TODO
  118. 'enabled' => 'Enabled', // TODO
  119. 'latest' => 'Installed', // TODO
  120. 'name' => 'Name', // TODO
  121. 'no_configure_view' => 'This extension cannot be configured.', // TODO
  122. 'system' => array(
  123. '_' => 'System extensions', // TODO
  124. 'no_rights' => 'System extension (you do not have the required permissions)', // TODO
  125. ),
  126. 'title' => 'Extensions', // TODO
  127. 'update' => 'Update available', // TODO
  128. 'user' => 'User extensions', // TODO
  129. 'version' => 'Version', // TODO
  130. ),
  131. 'stats' => array(
  132. '_' => 'סטטיסטיקות',
  133. 'all_feeds' => 'כל ההזנות',
  134. 'category' => 'קטגוריה',
  135. 'entry_count' => 'סכום המאמרים',
  136. 'entry_per_category' => 'מאמרים על פי קטגוריה',
  137. 'entry_per_day' => 'מספר מאמרים ליום (30 ימים אחרונים)',
  138. 'entry_per_day_of_week' => 'Per day of week (average: %.2f messages)', // TODO
  139. 'entry_per_hour' => 'Per hour (average: %.2f messages)', // TODO
  140. 'entry_per_month' => 'Per month (average: %.2f messages)', // TODO
  141. 'entry_repartition' => 'חלוקת המאמרים',
  142. 'feed' => 'הזנה',
  143. 'feed_per_category' => 'הזנות על פי קטגוריה',
  144. 'idle' => 'הזנות שלא עודכנו',
  145. 'main' => 'סטטיסטיקות ראשיות',
  146. 'main_stream' => 'הזנה ראשית',
  147. 'no_idle' => 'אין הזנות מובטלות!',
  148. 'number_entries' => '%d מאמרים',
  149. 'overview' => 'Overview', // TODO
  150. 'percent_of_total' => '% מסך הכל',
  151. 'repartition' => 'חלוקת המאמרים: %s', // DIRTY
  152. 'status_favorites' => 'מועדפים',
  153. 'status_read' => 'נקרא',
  154. 'status_total' => 'סך הכל',
  155. 'status_unread' => 'לא נקרא',
  156. 'title' => 'סטטיסטיקות',
  157. 'top_feed' => 'עשרת ההזנות המובילות',
  158. ),
  159. 'system' => array(
  160. '_' => 'System configuration', // TODO
  161. 'auto-update-url' => 'Auto-update server URL', // TODO
  162. 'base-url' => array(
  163. '_' => 'Base URL', // TODO
  164. 'recommendation' => 'Automatic recommendation: <kbd>%s</kbd>', // TODO
  165. ),
  166. 'cookie-duration' => array(
  167. 'help' => 'in seconds', // TODO
  168. 'number' => 'Duration to keep logged in', // TODO
  169. ),
  170. 'force_email_validation' => 'Force email address validation', // TODO
  171. 'instance-name' => 'Instance name', // TODO
  172. 'max-categories' => 'Max number of categories per user', // TODO
  173. 'max-feeds' => 'Max number of feeds per user', // TODO
  174. 'registration' => array(
  175. 'number' => 'Max number of accounts', // TODO
  176. 'select' => array(
  177. 'label' => 'Registration form', // TODO
  178. 'option' => array(
  179. 'noform' => 'Disabled: No registration form', // TODO
  180. 'nolimit' => 'Enabled: No limit of accounts', // TODO
  181. 'setaccountsnumber' => 'Set max. number of accounts', // TODO
  182. ),
  183. ),
  184. 'status' => array(
  185. 'disabled' => 'Form disabled', // TODO
  186. 'enabled' => 'Form enabled', // TODO
  187. ),
  188. 'title' => 'User registration form', // TODO
  189. ),
  190. 'sensitive-parameter' => 'Sensitive parameter. Edit manually in <kbd>./data/config.php</kbd>', // TODO
  191. 'tos' => array(
  192. 'disabled' => 'is not given', // TODO
  193. 'enabled' => '<a href="./?a=tos">is enabled</a>', // TODO
  194. 'help' => 'How to <a href="https://freshrss.github.io/FreshRSS/en/admins/12_User_management.html#enable-terms-of-service-tos" target="_blank">enable the Terms of Service</a>', // TODO
  195. ),
  196. 'websub' => array(
  197. 'help' => 'About <a href="https://freshrss.github.io/FreshRSS/en/users/WebSub.html" target="_blank">WebSub</a>', // TODO
  198. ),
  199. ),
  200. 'update' => array(
  201. '_' => 'מערכת העדכון',
  202. 'apply' => 'החלת העדכון',
  203. 'changelog' => 'Changelog', // TODO
  204. 'check' => 'בדיקת עדכונים חדשים',
  205. 'copiedFromURL' => 'update.php copied from %s to ./data', // TODO
  206. 'current_version' => 'Current installed version', // TODO
  207. 'last' => 'תאריך בדיקה אחרון',
  208. 'loading' => 'Updating…', // TODO
  209. 'none' => 'אין עדכון להחלה',
  210. 'releaseChannel' => array(
  211. '_' => 'Release channel', // TODO
  212. 'edge' => 'Rolling release (“edge”)', // TODO
  213. 'latest' => 'Stable release (“latest”)', // TODO
  214. ),
  215. 'title' => 'מערכת העדכון',
  216. 'viaGit' => 'Update via git and GitHub.com started', // TODO
  217. ),
  218. 'user' => array(
  219. 'admin' => 'Administrator', // TODO
  220. 'article_count' => 'Articles', // TODO
  221. 'back_to_manage' => '← Return to user list', // TODO
  222. 'create' => 'יצירת משתמש חדש',
  223. 'database_size' => 'Database size', // TODO
  224. 'email' => 'Email address', // TODO
  225. 'enabled' => 'Enabled', // TODO
  226. 'feed_count' => 'Feeds', // TODO
  227. 'is_admin' => 'Is admin', // TODO
  228. 'language' => 'שפה',
  229. 'last_user_activity' => 'Last user activity', // TODO
  230. 'list' => 'User list', // TODO
  231. 'number' => 'There is %d account created', // TODO
  232. 'numbers' => 'There are %d accounts created', // TODO
  233. 'password_form' => 'סיסמה<br /><small>(לשימוש בטפוס ההרשמה)</small>',
  234. 'password_format' => 'At least 7 characters', // TODO
  235. 'title' => 'Manage users', // TODO
  236. 'username' => 'שם משתמש',
  237. ),
  238. );