feedback.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. 'access' => array(
  13. 'denied' => 'You don’t have permission to access this page',
  14. 'not_found' => 'You are looking for a page that doesn’t exist',
  15. ),
  16. 'admin' => array(
  17. 'optimization_complete' => 'Optimization complete',
  18. ),
  19. 'api' => array(
  20. 'password' => array(
  21. 'failed' => 'Your password cannot be modified',
  22. 'updated' => 'Your password has been modified',
  23. ),
  24. ),
  25. 'auth' => array(
  26. 'login' => array(
  27. 'invalid' => 'Login is invalid',
  28. 'success' => 'You are connected',
  29. ),
  30. 'logout' => array(
  31. 'success' => 'You are disconnected',
  32. ),
  33. ),
  34. 'conf' => array(
  35. 'error' => 'An error occurred while saving configuration',
  36. 'query_created' => 'Query “%s” has been created.',
  37. 'shortcuts_updated' => 'Shortcuts have been updated',
  38. 'updated' => 'Configuration has been updated',
  39. ),
  40. 'extensions' => array(
  41. 'already_enabled' => '%s is already enabled',
  42. 'cannot_remove' => '%s cannot be removed',
  43. 'disable' => array(
  44. 'ko' => '%s cannot be disabled. <a href="%s">Check FreshRSS logs</a> for details.',
  45. 'ok' => '%s is now disabled',
  46. ),
  47. 'enable' => array(
  48. 'ko' => '%s cannot be enabled. <a href="%s">Check FreshRSS logs</a> for details.',
  49. 'ok' => '%s is now enabled',
  50. ),
  51. 'no_access' => 'You have no access on %s',
  52. 'not_enabled' => '%s is not enabled',
  53. 'not_found' => '%s does not exist',
  54. 'removed' => '%s removed',
  55. ),
  56. 'import_export' => array(
  57. 'export_no_zip_extension' => 'The ZIP extension is not present on your server. Please try to export files one by one.',
  58. 'feeds_imported' => 'Your feeds have been imported. If you are done importing, you can now click the <i>Update feeds</i> button.',
  59. 'feeds_imported_with_errors' => 'Your feeds have been imported, but some errors occurred. If you are done importing, you can now click the <i>Update feeds</i> button.',
  60. 'file_cannot_be_uploaded' => 'File cannot be uploaded!',
  61. 'no_zip_extension' => 'The ZIP extension is not present on your server.',
  62. 'zip_error' => 'An error occurred during ZIP processing.',
  63. ),
  64. 'profile' => array(
  65. 'error' => 'Your profile cannot be modified',
  66. 'updated' => 'Your profile has been modified',
  67. ),
  68. 'sub' => array(
  69. 'actualize' => 'Updating',
  70. 'articles' => array(
  71. 'marked_read' => 'The selected articles have been marked as read.',
  72. 'marked_unread' => 'The articles have been marked as unread.',
  73. ),
  74. 'category' => array(
  75. 'created' => 'Category %s has been created.',
  76. 'deleted' => 'Category has been deleted.',
  77. 'emptied' => 'Category has been emptied',
  78. 'error' => 'Category cannot be updated',
  79. 'name_exists' => 'Category name already exists.',
  80. 'no_id' => 'You must specify the id of the category.',
  81. 'no_name' => 'Category name cannot be empty.',
  82. 'not_delete_default' => 'You cannot delete the default category!',
  83. 'not_exist' => 'The category does not exist!',
  84. 'over_max' => 'You have reached your limit of categories (%d)',
  85. 'updated' => 'Category has been updated.',
  86. ),
  87. 'feed' => array(
  88. 'actualized' => '<em>%s</em> has been updated',
  89. 'actualizeds' => 'RSS feeds have been updated',
  90. 'added' => 'RSS feed <em>%s</em> has been added',
  91. 'already_subscribed' => 'You have already subscribed to <em>%s</em>',
  92. 'cache_cleared' => '<em>%s</em> cache has been cleared',
  93. 'deleted' => 'Feed has been deleted',
  94. 'error' => 'Feed cannot be updated',
  95. 'internal_problem' => 'The newsfeed could not be added. <a href="%s">Check FreshRSS logs</a> for details. You can try force adding by appending <code>#force_feed</code> to the URL.',
  96. 'invalid_url' => 'URL <em>%s</em> is invalid',
  97. 'n_actualized' => '%d feeds have been updated',
  98. 'n_entries_deleted' => '%d articles have been deleted',
  99. 'no_refresh' => 'There are no feeds to refresh',
  100. 'not_added' => '<em>%s</em> could not be added',
  101. 'not_found' => 'Feed cannot be found',
  102. 'over_max' => 'You have reached your limit of feeds (%d)',
  103. 'reloaded' => '<em>%s</em> has been reloaded',
  104. 'selector_preview' => array(
  105. 'http_error' => 'Failed to load website content.',
  106. 'no_entries' => 'There are no articles in this feed. You need at least one article to create a preview.',
  107. 'no_feed' => 'Internal error (feed cannot be found).',
  108. 'no_result' => 'The selector didn’t match anything. As a fallback the original feed text will be displayed instead.',
  109. 'selector_empty' => 'The selector is empty. You need to define one to create a preview.',
  110. ),
  111. 'updated' => 'Feed has been updated',
  112. ),
  113. 'purge_completed' => 'Purge completed (%d articles deleted)',
  114. ),
  115. 'tag' => array(
  116. 'created' => 'Label “%s” has been created.',
  117. 'error' => 'Label could not be updated!',
  118. 'name_exists' => 'Label name already exists.',
  119. 'renamed' => 'Label “%s” has been renamed to “%s”.',
  120. 'updated' => 'Label has been updated.',
  121. ),
  122. 'update' => array(
  123. 'can_apply' => 'An update of FreshRSS is available: <strong>Version %s</strong>.',
  124. 'error' => 'The update process has encountered an error: %s',
  125. 'file_is_nok' => 'An update of FreshRSS is available (<strong>Version %s</strong>), but check permissions on <em>%s</em> directory. HTTP server must have have write permission',
  126. 'finished' => 'Update complete!',
  127. 'none' => 'No update available',
  128. 'server_not_found' => 'Update server cannot be found. [%s]',
  129. ),
  130. 'user' => array(
  131. 'created' => array(
  132. '_' => 'User %s has been created',
  133. 'error' => 'User %s cannot be created',
  134. ),
  135. 'deleted' => array(
  136. '_' => 'User %s has been deleted',
  137. 'error' => 'User %s cannot be deleted',
  138. ),
  139. 'updated' => array(
  140. '_' => 'User %s has been updated',
  141. 'error' => 'User %s has not been updated',
  142. ),
  143. ),
  144. );