feedback.php 5.6 KB

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