admin.php 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <?php
  2. return array(
  3. 'auth' => array(
  4. 'allow_anonymous' => 'Consenti la lettura agli utenti anonimi degli articoli dell utente predefinito (%s)',
  5. 'allow_anonymous_refresh' => 'Consenti agli utenti anonimi di aggiornare gli articoli',
  6. 'api_enabled' => 'Consenti le <abbr>API</abbr> di accesso <small>(richiesto per le app mobili)</small>',
  7. 'form' => 'Web form (tradizionale, richiede JavaScript)',
  8. 'http' => 'HTTP (per gli utenti avanzati con HTTPS)',
  9. 'none' => 'Nessuno (pericoloso)',
  10. 'title' => 'Autenticazione',
  11. 'title_reset' => 'Reset autenticazione',
  12. 'token' => 'Token di autenticazione',
  13. 'token_help' => 'Consenti accesso agli RSS dell utente predefinito senza autenticazione:',
  14. 'type' => 'Metodo di autenticazione',
  15. 'unsafe_autologin' => 'Consenti accesso automatico non sicuro usando il formato: ',
  16. ),
  17. 'check_install' => array(
  18. 'cache' => array(
  19. 'nok' => 'Verifica i permessi sulla cartella <em>./data/cache</em>. Il server HTTP deve avere i permessi per scriverci dentro',
  20. 'ok' => 'I permessi sulla cartella della cache sono corretti.',
  21. ),
  22. 'categories' => array(
  23. 'nok' => 'La tabella delle categorie ha una configurazione errata.',
  24. 'ok' => 'Tabella delle categorie OK.',
  25. ),
  26. 'connection' => array(
  27. 'nok' => 'La connessione al database non può essere stabilita.',
  28. 'ok' => 'Connessione al database OK',
  29. ),
  30. 'ctype' => array(
  31. 'nok' => 'Manca una libreria richiesta per il controllo dei caratteri (php-ctype).',
  32. 'ok' => 'Libreria richiesta per il controllo dei caratteri presente (ctype).',
  33. ),
  34. 'curl' => array(
  35. 'nok' => 'Manca il supporto per cURL (pacchetto php-curl).',
  36. 'ok' => 'Estensione cURL presente.',
  37. ),
  38. 'data' => array(
  39. 'nok' => 'Verifica i permessi sulla cartella <em>./data</em>. Il server HTTP deve avere i permessi per scriverci dentro',
  40. 'ok' => 'I permessi sulla cartella data sono corretti.',
  41. ),
  42. 'database' => 'Installazione database',
  43. 'dom' => array(
  44. 'nok' => 'Manca una libreria richiesta per leggere DOM (pacchetto php-xml).',
  45. 'ok' => 'Libreria richiesta per leggere DOM presente.',
  46. ),
  47. 'entries' => array(
  48. 'nok' => 'La tabella Entry ha una configurazione errata.',
  49. 'ok' => 'Tabella Entry OK.',
  50. ),
  51. 'favicons' => array(
  52. 'nok' => 'Verifica i permessi sulla cartella <em>./data/favicons</em>. Il server HTTP deve avere i permessi per scriverci dentro',
  53. 'ok' => 'I permessi sulla cartella favicons sono corretti.',
  54. ),
  55. 'feeds' => array(
  56. 'nok' => 'La tabella Feed ha una configurazione errata.',
  57. 'ok' => 'Tabella Feed OK.',
  58. ),
  59. 'fileinfo' => array(
  60. 'nok' => 'Manca il supporto per PHP fileinfo (pacchetto fileinfo).',
  61. 'ok' => 'Estensione fileinfo presente.',
  62. ),
  63. 'files' => 'Installazione files',
  64. 'json' => array(
  65. 'nok' => 'Manca il supoorto a JSON (pacchetto php-json).',
  66. 'ok' => 'Estensione JSON presente.',
  67. ),
  68. 'mbstring' => array(
  69. 'nok' => 'Cannot find the recommended library mbstring for Unicode.', // TODO - Translation
  70. 'ok' => 'You have the recommended library mbstring for Unicode.', // TODO - Translation
  71. ),
  72. 'minz' => array(
  73. 'nok' => 'Manca il framework Minz.',
  74. 'ok' => 'Framework Minz presente.',
  75. ),
  76. 'pcre' => array(
  77. 'nok' => 'Manca una libreria richiesta per le regular expressions (php-pcre).',
  78. 'ok' => 'Libreria richiesta per le regular expressions presente (PCRE).',
  79. ),
  80. 'pdo' => array(
  81. 'nok' => 'Manca PDO o uno degli altri driver supportati (pdo_mysql, pdo_sqlite, pdo_pgsql).',
  82. 'ok' => 'PDO e altri driver supportati (pdo_mysql, pdo_sqlite, pdo_pgsql).',
  83. ),
  84. 'php' => array(
  85. '_' => 'Installazione PHP',
  86. 'nok' => 'Versione PHP %s FreshRSS richiede almeno la versione %s.',
  87. 'ok' => 'Versione PHP %s, compatibile con FreshRSS.',
  88. ),
  89. 'tables' => array(
  90. 'nok' => 'Rilevate tabelle mancanti nel database.',
  91. 'ok' => 'Tutte le tabelle sono presenti nel database.',
  92. ),
  93. 'title' => 'Verifica installazione',
  94. 'tokens' => array(
  95. 'nok' => 'Verifica i permessi sulla cartella <em>./data/tokens</em>. Il server HTTP deve avere i permessi per scriverci dentro',
  96. 'ok' => 'I permessi sulla cartella tokens sono corretti.',
  97. ),
  98. 'users' => array(
  99. 'nok' => 'Verifica i permessi sulla cartella <em>./data/users</em>. Il server HTTP deve avere i permessi per scriverci dentro',
  100. 'ok' => 'I permessi sulla cartella users sono corretti.',
  101. ),
  102. 'zip' => array(
  103. 'nok' => 'Manca estensione ZIP (pacchetto php-zip).',
  104. 'ok' => 'Estensione ZIP presente.',
  105. ),
  106. ),
  107. 'extensions' => array(
  108. 'author' => 'Author', // TODO - Translation
  109. 'community' => 'Available community extensions', // TODO - Translation
  110. 'description' => 'Description', // TODO - Translation
  111. 'disabled' => 'Disabilitata',
  112. 'empty_list' => 'Non ci sono estensioni installate',
  113. 'enabled' => 'Abilitata',
  114. 'latest' => 'Installed', // TODO - Translation
  115. 'name' => 'Name', // TODO - Translation
  116. 'no_configure_view' => 'Questa estensioni non può essere configurata.',
  117. 'system' => array(
  118. '_' => 'Estensioni di sistema',
  119. 'no_rights' => 'Estensione di sistema (non hai i permessi su questo tipo)',
  120. ),
  121. 'title' => 'Estensioni',
  122. 'update' => 'Update available', // TODO - Translation
  123. 'user' => 'Estensioni utente',
  124. 'version' => 'Version', // TODO - Translation
  125. ),
  126. 'stats' => array(
  127. '_' => 'Statistiche',
  128. 'all_feeds' => 'Tutti i feeds',
  129. 'category' => 'Categoria',
  130. 'entry_count' => 'Articoli',
  131. 'entry_per_category' => 'Articoli per categoria',
  132. 'entry_per_day' => 'Articoli per giorno (ultimi 30 giorni)',
  133. 'entry_per_day_of_week' => 'Per giorno della settimana (media: %.2f articoli)',
  134. 'entry_per_hour' => 'Per ora (media: %.2f articoli)',
  135. 'entry_per_month' => 'Per mese (media: %.2f articoli)',
  136. 'entry_repartition' => 'Ripartizione contenuti',
  137. 'feed' => 'Feed', // TODO - Translation
  138. 'feed_per_category' => 'Feeds per categoria',
  139. 'idle' => 'Feeds non aggiornati',
  140. 'main' => 'Statistiche principali',
  141. 'main_stream' => 'Flusso principale',
  142. 'menu' => array(
  143. 'idle' => 'Feeds non aggiornati',
  144. 'main' => 'Statistiche principali',
  145. 'repartition' => 'Ripartizione articoli',
  146. ),
  147. 'no_idle' => 'Non ci sono feed non aggiornati',
  148. 'number_entries' => '%d articoli',
  149. 'percent_of_total' => '%% del totale',
  150. 'repartition' => 'Ripartizione articoli',
  151. 'status_favorites' => 'Preferiti',
  152. 'status_read' => 'Letti',
  153. 'status_total' => 'Totale',
  154. 'status_unread' => 'Non letti',
  155. 'title' => 'Statistiche',
  156. 'top_feed' => 'I migliori 10 feeds',
  157. ),
  158. 'system' => array(
  159. '_' => 'Configurazione di sistema',
  160. 'auto-update-url' => 'Auto-update server URL', // TODO - Translation
  161. 'cookie-duration' => array(
  162. 'help' => 'in seconds', // TODO - Translation
  163. 'number' => 'Duration to keep logged in', // TODO - Translation
  164. ),
  165. 'force_email_validation' => 'Force email addresses validation', // TODO - Translation
  166. 'instance-name' => 'Nome istanza',
  167. 'max-categories' => 'Limite categorie per utente',
  168. 'max-feeds' => 'Limite feeds per utente',
  169. 'registration' => array(
  170. 'help' => '0 significa che non esiste limite sui profili',
  171. 'number' => 'Numero massimo di profili',
  172. ),
  173. ),
  174. 'update' => array(
  175. '_' => 'Aggiornamento sistema',
  176. 'apply' => 'Applica',
  177. 'check' => 'Controlla la presenza di nuovi aggiornamenti',
  178. 'current_version' => 'FreshRSS versione %s.',
  179. 'last' => 'Ultima verifica: %s',
  180. 'none' => 'Nessun aggiornamento da applicare',
  181. 'title' => 'Aggiorna sistema',
  182. ),
  183. 'user' => array(
  184. 'admin' => 'Administrator', // TODO - Translation
  185. 'article_count' => 'Articles', // TODO - Translation
  186. 'articles_and_size' => '%s articoli (%s)',
  187. 'back_to_manage' => '← Return to user list', // TODO - Translation
  188. 'create' => 'Crea nuovo utente',
  189. 'database_size' => 'Database size', // TODO - Translation
  190. 'delete_users' => 'Delete user', // TODO - Translation
  191. 'email' => 'Email address', // TODO - Translation
  192. 'enabled' => 'Enabled', // TODO - Translation
  193. 'feed_count' => 'Feeds', // TODO - Translation
  194. 'is_admin' => 'Is admin', // TODO - Translation
  195. 'language' => 'Lingua',
  196. 'last_user_activity' => 'Last user activity', // TODO - Translation
  197. 'list' => 'User list', // TODO - Translation
  198. 'number' => ' %d profilo utente creato',
  199. 'numbers' => 'Sono presenti %d profili utente',
  200. 'password_form' => 'Password<br /><small>(per il login classico)</small>',
  201. 'password_format' => 'Almeno 7 caratteri',
  202. 'selected' => 'Selected user', // TODO - Translation
  203. 'title' => 'Gestione utenti',
  204. 'update_users' => 'Update user', // TODO - Translation
  205. 'user_list' => 'Lista utenti',
  206. 'username' => 'Nome utente',
  207. 'users' => 'Utenti',
  208. ),
  209. );