feedback.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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' => 'Non hai i permessi per accedere a questa pagina',
  14. 'not_found' => 'Pagina non disponibile',
  15. ),
  16. 'admin' => array(
  17. 'optimization_complete' => 'Ottimizzazione completata',
  18. ),
  19. 'api' => array(
  20. 'password' => array(
  21. 'failed' => 'Your password cannot be modified', // TODO
  22. 'updated' => 'Your password has been modified', // TODO
  23. ),
  24. ),
  25. 'auth' => array(
  26. 'login' => array(
  27. 'invalid' => 'Autenticazione non valida',
  28. 'success' => 'Autenticazione effettuata',
  29. ),
  30. 'logout' => array(
  31. 'success' => 'Disconnessione effettuata',
  32. ),
  33. ),
  34. 'conf' => array(
  35. 'error' => 'Si è verificato un errore durante il salvataggio della configurazione',
  36. 'query_created' => 'Ricerca "%s" creata.',
  37. 'shortcuts_updated' => 'Collegamenti tastiera aggiornati',
  38. 'updated' => 'Configurazione aggiornata',
  39. ),
  40. 'extensions' => array(
  41. 'already_enabled' => '%s è già abilitata',
  42. 'cannot_remove' => '%s cannot be removed', // TODO
  43. 'disable' => array(
  44. 'ko' => '%s non può essere disabilitata. <a href="%s">Verifica i logs</a> per dettagli.',
  45. 'ok' => '%s è disabilitata',
  46. ),
  47. 'enable' => array(
  48. 'ko' => '%s non può essere abilitata. <a href="%s">Verifica i logs</a> per dettagli.',
  49. 'ok' => '%s è ora abilitata',
  50. ),
  51. 'no_access' => 'Accesso negato a %s',
  52. 'not_enabled' => '%s non abilitato',
  53. 'not_found' => '%s non disponibile',
  54. 'removed' => '%s removed', // TODO
  55. ),
  56. 'import_export' => array(
  57. 'export_no_zip_extension' => 'Estensione ZIP non presente sul server. Per favore esporta i files singolarmente.',
  58. 'feeds_imported' => 'I tuoi feed sono stati importati e saranno aggiornati',
  59. 'feeds_imported_with_errors' => 'I tuoi feeds sono stati importati ma si sono verificati alcuni errori',
  60. 'file_cannot_be_uploaded' => 'Il file non può essere caricato!',
  61. 'no_zip_extension' => 'Estensione ZIP non presente sul server.',
  62. 'zip_error' => 'Si è verificato un errore importando il file ZIP',
  63. ),
  64. 'profile' => array(
  65. 'error' => 'Il tuo profilo non può essere modificato',
  66. 'updated' => 'Il tuo profilo è stato modificato',
  67. ),
  68. 'sub' => array(
  69. 'actualize' => 'Aggiorna',
  70. 'articles' => array(
  71. 'marked_read' => 'The selected articles have been marked as read.', // TODO
  72. 'marked_unread' => 'The articles have been marked as unread.', // TODO
  73. ),
  74. 'category' => array(
  75. 'created' => 'Categoria %s creata.',
  76. 'deleted' => 'Categoria cancellata',
  77. 'emptied' => 'Categoria svuotata',
  78. 'error' => 'Categoria non aggiornata',
  79. 'name_exists' => 'Categoria già esistente.',
  80. 'no_id' => 'Categoria senza ID.',
  81. 'no_name' => 'Il nome della categoria non può essere lasciato vuoto.',
  82. 'not_delete_default' => 'Non puoi cancellare la categoria predefinita!',
  83. 'not_exist' => 'La categoria non esite!',
  84. 'over_max' => 'Hai raggiunto il numero limite di categorie (%d)',
  85. 'updated' => 'Categoria aggiornata.',
  86. ),
  87. 'feed' => array(
  88. 'actualized' => '<em>%s</em> aggiornato',
  89. 'actualizeds' => 'RSS feeds aggiornati',
  90. 'added' => 'RSS feed <em>%s</em> aggiunti',
  91. 'already_subscribed' => 'Hai già sottoscritto <em>%s</em>',
  92. 'cache_cleared' => '<em>%s</em> cache has been cleared', // TODO
  93. 'deleted' => 'Feed cancellato',
  94. 'error' => 'Feed non aggiornato',
  95. 'internal_problem' => 'RSS feed non aggiunto. <a href="%s">Verifica i logs</a> per dettagli.',
  96. 'invalid_url' => 'URL <em>%s</em> non valido',
  97. 'n_actualized' => '%d feeds aggiornati',
  98. 'n_entries_deleted' => '%d articoli cancellati',
  99. 'no_refresh' => 'Nessun aggiornamento disponibile…',
  100. 'not_added' => '<em>%s</em> non può essere aggiunto',
  101. 'not_found' => 'Feed cannot be found', // TODO
  102. 'over_max' => 'Hai raggiunto il numero limite di feed (%d)',
  103. 'reloaded' => '<em>%s</em> has been reloaded', // TODO
  104. 'selector_preview' => array(
  105. 'http_error' => 'Failed to load website content.', // TODO
  106. 'no_entries' => 'There are no articles in this feed. You need at least one article to create a preview.', // TODO
  107. 'no_feed' => 'Internal error (feed cannot be found).', // TODO
  108. 'no_result' => 'The selector didn’t match anything. As a fallback the original feed text will be displayed instead.', // TODO
  109. 'selector_empty' => 'The selector is empty. You need to define one to create a preview.', // TODO
  110. ),
  111. 'updated' => 'Feed aggiornato',
  112. ),
  113. 'purge_completed' => 'Svecchiamento completato (%d articoli cancellati)',
  114. ),
  115. 'tag' => array(
  116. 'created' => 'Tag "%s" has been created.', // TODO
  117. 'name_exists' => 'Tag name already exists.', // TODO
  118. 'renamed' => 'Tag "%s" has been renamed to "%s".', // TODO
  119. ),
  120. 'update' => array(
  121. 'can_apply' => 'FreshRSS verrà aggiornato alla <strong>versione %s</strong>.',
  122. 'error' => 'Il processo di aggiornamento ha riscontrato il seguente errore: %s',
  123. 'file_is_nok' => 'Nuova <strong>versione %s</strong>, ma verifica i permessi della cartella <em>%s</em>. Il server HTTP deve avere i permessi per la scrittura ',
  124. 'finished' => 'Aggiornamento completato con successo!',
  125. 'none' => 'Nessun aggiornamento disponibile',
  126. 'server_not_found' => 'Server per aggiornamento non disponibile. [%s]',
  127. ),
  128. 'user' => array(
  129. 'created' => array(
  130. '_' => 'Utente %s creato',
  131. 'error' => 'Errore nella creazione utente %s ',
  132. ),
  133. 'deleted' => array(
  134. '_' => 'Utente %s cancellato',
  135. 'error' => 'Utente %s non cancellato',
  136. ),
  137. 'updated' => array(
  138. '_' => 'User %s has been updated', // TODO
  139. 'error' => 'User %s has not been updated', // TODO
  140. ),
  141. ),
  142. );