Plume/po/plume/it.po

1112 lines
28 KiB
Plaintext
Raw Normal View History

2018-10-27 08:35:24 +02:00
msgid ""
msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
2022-01-12 02:29:50 +01:00
"PO-Revision-Date: 2022-01-12 01:28\n"
2020-12-18 21:59:58 +01:00
"Last-Translator: \n"
2019-04-19 14:59:03 +02:00
"Language-Team: Italian\n"
"Language: it_IT\n"
2018-10-27 08:35:24 +02:00
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
2019-04-19 14:59:03 +02:00
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Crowdin-Project: plume\n"
2020-12-18 21:59:58 +01:00
"X-Crowdin-Project-ID: 352097\n"
2019-04-19 14:59:03 +02:00
"X-Crowdin-Language: it\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
2020-12-18 21:59:58 +01:00
"X-Crowdin-File-ID: 8\n"
2018-10-27 08:35:24 +02:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:107
2024-12-22 10:33:58 +01:00
#~ msgid "{0} commented on your article."
#~ msgstr "{0} ha commentato il tuo articolo."
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:108
2024-12-22 10:33:58 +01:00
#~ msgid "{0} is subscribed to you."
#~ msgstr "{0} si è iscritto a te."
2018-10-27 08:35:24 +02:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:109
2024-12-22 10:33:58 +01:00
#~ msgid "{0} liked your article."
#~ msgstr "{0} ha apprezzato il tuo articolo."
2018-10-27 08:35:24 +02:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:110
2024-12-22 10:33:58 +01:00
#~ msgid "{0} mentioned you."
#~ msgstr "{0} ti ha menzionato."
2018-10-27 08:35:24 +02:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:111
2024-12-22 10:33:58 +01:00
#~ msgid "{0} boosted your article."
#~ msgstr "{0} ha boostato il tuo articolo."
2018-10-27 08:35:24 +02:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:118
2024-12-22 10:33:58 +01:00
#~ msgid "Your feed"
#~ msgstr "Il tuo flusso"
2020-12-18 21:59:58 +01:00
2024-01-06 17:48:05 +01:00
# src/template_utils.rs:118
#, fuzzy
2024-12-22 10:33:58 +01:00
#~ msgid "My feed"
#~ msgstr "Il tuo flusso"
2024-01-06 17:48:05 +01:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:119
2024-12-22 10:33:58 +01:00
#~ msgid "Local feed"
#~ msgstr "Flusso locale"
2020-12-18 21:59:58 +01:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:120
2024-12-22 10:33:58 +01:00
#~ msgid "Federated feed"
#~ msgstr "Flusso federato"
2020-12-18 21:59:58 +01:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:156
2024-12-22 10:33:58 +01:00
#~ msgid "{0}'s avatar"
#~ msgstr "Avatar di {0}"
2018-10-27 08:35:24 +02:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:200
2024-12-22 10:33:58 +01:00
#~ msgid "Previous page"
#~ msgstr "Pagina precedente"
2024-12-18 15:59:13 +01:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:211
2024-12-22 10:33:58 +01:00
#~ msgid "Next page"
#~ msgstr "Pagina successiva"
2020-12-18 21:59:58 +01:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:365
2024-12-22 10:33:58 +01:00
#~ msgid "Optional"
#~ msgstr "Opzionale"
2024-12-18 15:59:13 +01:00
2022-01-12 02:29:50 +01:00
# src/routes/blogs.rs:68
2024-12-22 10:33:58 +01:00
#~ msgid "To create a new blog, you need to be logged in"
#~ msgstr "Per creare un nuovo blog, devi avere effettuato l'accesso"
2018-10-27 08:35:24 +02:00
2022-01-12 02:29:50 +01:00
# src/routes/blogs.rs:110
2024-12-22 10:33:58 +01:00
#~ msgid "A blog with the same name already exists."
#~ msgstr "Un blog con lo stesso nome esiste già."
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 19:31:47 +02:00
2022-01-12 02:29:50 +01:00
# src/routes/blogs.rs:148
2024-12-22 10:33:58 +01:00
#~ msgid "Your blog was successfully created!"
#~ msgstr "Il tuo blog è stato creato con successo!"
2022-01-12 02:29:50 +01:00
# src/routes/blogs.rs:166
2024-12-22 10:33:58 +01:00
#~ msgid "Your blog was deleted."
#~ msgstr "Il tuo blog è stato eliminato."
2022-01-12 02:29:50 +01:00
# src/routes/blogs.rs:174
2024-12-22 10:33:58 +01:00
#~ msgid "You are not allowed to delete this blog."
#~ msgstr "Non ti è consentito di eliminare questo blog."
2024-12-18 15:59:13 +01:00
# src/routes/blogs.rs:224
2024-12-22 10:33:58 +01:00
#~ msgid "You are not allowed to edit this blog."
#~ msgstr "Non ti è consentito modificare questo blog."
2024-12-21 23:11:13 +01:00
# src/routes/blogs.rs:280
2024-12-22 10:33:58 +01:00
#~ msgid "You can't use this media as a blog icon."
#~ msgstr "Non puoi utilizzare questo media come icona del blog."
2024-12-21 23:11:13 +01:00
# src/routes/blogs.rs:298
2024-12-22 10:33:58 +01:00
#~ msgid "You can't use this media as a blog banner."
#~ msgstr "Non puoi utilizzare questo media come copertina del blog."
2024-12-21 23:11:13 +01:00
# src/routes/blogs.rs:332
2024-12-22 10:33:58 +01:00
#~ msgid "Your blog information have been updated."
#~ msgstr "Le informazioni del tuo blog sono state aggiornate."
2024-12-21 23:11:13 +01:00
# src/routes/comments.rs:100
2024-12-22 10:33:58 +01:00
#~ msgid "Your comment has been posted."
#~ msgstr "Il tuo commento è stato pubblicato."
2024-12-21 23:11:13 +01:00
# src/routes/comments.rs:177
2024-12-22 10:33:58 +01:00
#~ msgid "Your comment has been deleted."
#~ msgstr "Il tuo commento è stato eliminato."
2024-12-21 23:11:13 +01:00
# src/routes/email_signups.rs:82
2024-12-22 10:33:58 +01:00
#~ msgid "Registrations are closed on this instance."
#~ msgstr "Le registrazioni sono chiuse su questa istanza."
2024-12-21 23:11:13 +01:00
# src/routes/email_signups.rs:219
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "Your account has been created. Now you just need to log in, before you "
#~ "can use it."
#~ msgstr ""
#~ "Il tuo account è stato creato. Ora devi solo effettuare l'accesso prima "
#~ "di poterlo utilizzare."
2024-12-21 23:11:13 +01:00
# src/routes/instance.rs:117
2024-12-22 10:33:58 +01:00
#~ msgid "Instance settings have been saved."
#~ msgstr "Le impostazioni dell'istanza sono state salvate."
2024-12-18 15:59:13 +01:00
2021-05-05 20:32:20 +02:00
# src/routes/instance.rs:150
2024-12-22 10:33:58 +01:00
#~ msgid "{} has been unblocked."
#~ msgstr "{} è stato sbloccato."
2020-12-18 21:59:58 +01:00
2021-05-05 20:32:20 +02:00
# src/routes/instance.rs:152
2024-12-22 10:33:58 +01:00
#~ msgid "{} has been blocked."
#~ msgstr "{} è stato bloccato."
2020-12-18 21:59:58 +01:00
# src/routes/instance.rs:203
2024-12-22 10:33:58 +01:00
#~ msgid "Blocks deleted"
#~ msgstr "Blocco eliminato"
2020-12-18 21:59:58 +01:00
2021-05-05 20:32:20 +02:00
# src/routes/instance.rs:224
2024-12-22 10:33:58 +01:00
#~ msgid "Email Blocked"
#~ msgstr "Email Bloccata"
2020-12-18 21:59:58 +01:00
2021-05-05 20:32:20 +02:00
# src/routes/instance.rs:317
2024-12-22 10:33:58 +01:00
#~ msgid "You can't change your own rights."
#~ msgstr "Non puoi modificare i tuoi diritti."
2021-05-05 20:32:20 +02:00
# src/routes/instance.rs:328
2024-12-22 10:33:58 +01:00
#~ msgid "You are not allowed to take this action."
#~ msgstr "Non puoi compiere quest'azione."
2021-05-05 20:32:20 +02:00
# src/routes/instance.rs:363
2024-12-22 10:33:58 +01:00
#~ msgid "Done."
#~ msgstr "Fatto."
2021-05-05 20:32:20 +02:00
# src/routes/likes.rs:58
2024-12-22 10:33:58 +01:00
#~ msgid "To like a post, you need to be logged in"
#~ msgstr "Per mettere mi piace ad un post, devi avere effettuato l'accesso"
2018-10-27 08:35:24 +02:00
2022-01-12 02:24:14 +01:00
# src/routes/medias.rs:153
2024-12-22 10:33:58 +01:00
#~ msgid "Your media have been deleted."
#~ msgstr "I tuoi media sono stati eliminati."
2022-01-12 02:24:14 +01:00
# src/routes/medias.rs:158
2024-12-22 10:33:58 +01:00
#~ msgid "You are not allowed to delete this media."
#~ msgstr "Non ti è consentito rimuovere questo media."
2022-01-12 02:24:14 +01:00
# src/routes/medias.rs:175
2024-12-22 10:33:58 +01:00
#~ msgid "Your avatar has been updated."
#~ msgstr "La tua immagine di profilo è stata aggiornata."
2022-01-12 02:24:14 +01:00
# src/routes/medias.rs:180
2024-12-22 10:33:58 +01:00
#~ msgid "You are not allowed to use this media."
#~ msgstr "Non ti è consentito utilizzare questo media."
2021-05-05 20:32:20 +02:00
# src/routes/notifications.rs:29
2024-12-22 10:33:58 +01:00
#~ msgid "To see your notifications, you need to be logged in"
#~ msgstr "Per vedere le tue notifiche, devi avere effettuato l'accesso"
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:56
2024-12-22 10:33:58 +01:00
#~ msgid "This post isn't published yet."
#~ msgstr "Questo post non è ancora stato pubblicato."
2018-10-27 08:35:24 +02:00
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:126
2024-12-22 10:33:58 +01:00
#~ msgid "To write a new post, you need to be logged in"
#~ msgstr "Per scrivere un nuovo post, devi avere effettuato l'accesso"
2018-10-27 08:35:24 +02:00
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:147
2024-12-22 10:33:58 +01:00
#~ msgid "You are not an author of this blog."
#~ msgstr "Non sei un autore di questo blog."
2018-10-27 08:35:24 +02:00
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:154
2024-12-22 10:33:58 +01:00
#~ msgid "New post"
#~ msgstr "Nuovo post"
2018-10-27 08:35:24 +02:00
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:199
2024-12-22 10:33:58 +01:00
#~ msgid "Edit {0}"
#~ msgstr "Modifica {0}"
2018-10-27 08:35:24 +02:00
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:268
2024-12-22 10:33:58 +01:00
#~ msgid "You are not allowed to publish on this blog."
#~ msgstr "Non ti è consentito pubblicare su questo blog."
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:368
2024-12-22 10:33:58 +01:00
#~ msgid "Your article has been updated."
#~ msgstr "Il tuo articolo è stato aggiornato."
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:557
2024-12-22 10:33:58 +01:00
#~ msgid "Your article has been saved."
#~ msgstr "Il tuo articolo è stato salvato."
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:564
2024-12-22 10:33:58 +01:00
#~ msgid "New article"
#~ msgstr "Nuovo articolo"
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:602
2024-12-22 10:33:58 +01:00
#~ msgid "You are not allowed to delete this article."
#~ msgstr "Non è consentito eliminare questo articolo."
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:626
2024-12-22 10:33:58 +01:00
#~ msgid "Your article has been deleted."
#~ msgstr "Il tuo articolo è stato eliminato."
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:631
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "It looks like the article you tried to delete doesn't exist. Maybe it is "
#~ "already gone?"
#~ msgstr ""
#~ "Sembra che l'articolo che cerchi di eliminare non esista. Forse è già "
#~ "stato cancellato?"
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:673
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "Couldn't obtain enough information about your account. Please make sure "
#~ "your username is correct."
#~ msgstr ""
#~ "Non è stato possibile ottenere abbastanza informazioni sul tuo account. "
#~ "Per favore assicurati che il tuo nome utente sia corretto."
2021-05-05 20:32:20 +02:00
# src/routes/reshares.rs:58
2024-12-22 10:33:58 +01:00
#~ msgid "To reshare a post, you need to be logged in"
#~ msgstr "Per ricondividere un post, devi avere effettuato l'accesso"
2018-10-27 08:35:24 +02:00
2021-05-05 20:32:20 +02:00
# src/routes/session.rs:95
2024-12-22 10:33:58 +01:00
#~ msgid "You are now connected."
#~ msgstr "Ora sei connesso."
2021-05-05 20:32:20 +02:00
# src/routes/session.rs:116
2024-12-22 10:33:58 +01:00
#~ msgid "You are now logged off."
#~ msgstr "Ti sei disconnesso."
2021-05-05 20:32:20 +02:00
# src/routes/session.rs:162
2024-12-22 10:33:58 +01:00
#~ msgid "Password reset"
#~ msgstr "Reimposta password"
2021-05-05 20:32:20 +02:00
# src/routes/session.rs:163
2024-12-22 10:33:58 +01:00
#~ msgid "Here is the link to reset your password: {0}"
#~ msgstr "Qui c'è il collegamento per reimpostare la tua password: {0}"
2021-05-05 20:32:20 +02:00
# src/routes/session.rs:235
2024-12-22 10:33:58 +01:00
#~ msgid "Your password was successfully reset."
#~ msgstr "La tua password è stata reimpostata con successo."
2022-01-12 02:29:50 +01:00
# src/routes/user.rs:87
2024-12-22 10:33:58 +01:00
#~ msgid "To access your dashboard, you need to be logged in"
#~ msgstr "Per accedere al tuo pannello, devi avere effettuato l'accesso"
2022-01-12 02:29:50 +01:00
# src/routes/user.rs:109
2024-12-22 10:33:58 +01:00
#~ msgid "You are no longer following {}."
#~ msgstr "Non stai più seguendo {}."
2022-01-12 02:29:50 +01:00
# src/routes/user.rs:126
2024-12-22 10:33:58 +01:00
#~ msgid "You are now following {}."
#~ msgstr "Ora stai seguendo {}."
2022-01-12 02:29:50 +01:00
# src/routes/user.rs:203
2024-12-22 10:33:58 +01:00
#~ msgid "To subscribe to someone, you need to be logged in"
#~ msgstr "Per iscriverti a qualcuno, devi avere effettuato l'accesso"
2018-10-27 08:35:24 +02:00
2022-01-12 02:29:50 +01:00
# src/routes/user.rs:323
2024-12-22 10:33:58 +01:00
#~ msgid "To edit your profile, you need to be logged in"
#~ msgstr "Per modificare il tuo profilo, devi avere effettuato l'accesso"
2022-01-12 02:29:50 +01:00
# src/routes/user.rs:369
2024-12-22 10:33:58 +01:00
#~ msgid "Your profile has been updated."
#~ msgstr "Il tuo profilo è stato aggiornato."
2022-01-12 02:29:50 +01:00
# src/routes/user.rs:397
2024-12-22 10:33:58 +01:00
#~ msgid "Your account has been deleted."
#~ msgstr "Il tuo account è stato eliminato."
2022-01-12 02:29:50 +01:00
# src/routes/user.rs:403
2024-12-22 10:33:58 +01:00
#~ msgid "You can't delete someone else's account."
#~ msgstr "Non puoi eliminare l'account di qualcun altro."
2024-12-22 10:33:58 +01:00
#~ msgid "Plume"
#~ msgstr "Plume"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Menu"
#~ msgstr "Menu"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Search"
#~ msgstr "Cerca"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Dashboard"
#~ msgstr "Pannello"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Notifications"
#~ msgstr "Notifiche"
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "Log Out"
#~ msgstr "Disconnettiti"
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "My account"
#~ msgstr "Il mio account"
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "Log In"
#~ msgstr "Accedi"
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "Register"
#~ msgstr "Registrati"
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "About this instance"
#~ msgstr "A proposito di questa istanza"
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "Privacy policy"
#~ msgstr "Politica sulla Riservatezza"
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "Administration"
#~ msgstr "Amministrazione"
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "Moderation"
#~ msgstr "Moderazione"
2024-12-22 10:33:58 +01:00
#~ msgid "Documentation"
#~ msgstr "Documentazione"
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "Source code"
#~ msgstr "Codice sorgente"
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "Matrix room"
#~ msgstr "Stanza Matrix"
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "None"
#~ msgstr "Nessuna"
2024-12-22 10:33:58 +01:00
#~ msgid "No description"
#~ msgstr "Nessuna descrizione"
2024-12-22 10:33:58 +01:00
#~ msgid "What is Plume?"
#~ msgstr "Cos'è Plume?"
2021-01-11 21:27:52 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Plume is a decentralized blogging engine."
#~ msgstr "Plume è un motore di blog decentralizzato."
2021-01-11 21:27:52 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Authors can manage multiple blogs, each as its own website."
#~ msgstr ""
#~ "Gli autori possono gestire blog multipli, ognuno come fosse un sito web "
#~ "differente."
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "Articles are also visible on other Plume instances, and you can interact "
#~ "with them directly from other platforms like Mastodon."
#~ msgstr ""
#~ "Gli articoli sono anche visibili su altre istanze Plume, e puoi "
#~ "interagire con loro direttamente da altre piattaforme come Mastodon."
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "Create your account"
#~ msgstr "Crea il tuo account"
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "About {0}"
#~ msgstr "A proposito di {0}"
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "Home to <em>{0}</em> people"
#~ msgstr "Casa di <em>{0}</em> persone"
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "Who wrote <em>{0}</em> articles"
#~ msgstr "Che hanno scritto <em>{0}</em> articoli"
2024-12-22 10:33:58 +01:00
#~ msgid "Read the detailed rules"
#~ msgstr "Leggi le regole dettagliate"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Respond"
#~ msgstr "Rispondi"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Are you sure?"
#~ msgstr "Sei sicuro?"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Delete this comment"
#~ msgstr "Elimina questo commento"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Edit"
#~ msgstr "Modifica"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "By {0}"
#~ msgstr "Da {0}"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Draft"
#~ msgstr "Bozza"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "One like"
#~ msgid_plural "{0} likes"
#~ msgstr[0] "Un mi piace"
#~ msgstr[1] "{0} mi piace"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "One boost"
#~ msgid_plural "{0} boosts"
#~ msgstr[0] "Un boost"
#~ msgstr[1] "{0} boost"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "New Blog"
#~ msgstr "Nuovo Blog"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Create a blog"
#~ msgstr "Crea un blog"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Title"
#~ msgstr "Titolo"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Create blog"
#~ msgstr "Crea blog"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Edit \"{}\""
#~ msgstr "Modifica \"{}\""
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Description"
#~ msgstr "Descrizione"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Markdown syntax is supported"
#~ msgstr "La sintassi Markdown è supportata"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "You can upload images to your gallery, to use them as blog icons, or "
#~ "banners."
#~ msgstr ""
#~ "Puoi caricare immagini nella tua galleria, ed utilizzarle come icone del "
#~ "blog, o copertine."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Upload images"
#~ msgstr "Carica immagini"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Blog icon"
#~ msgstr "Icona del blog"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Blog banner"
#~ msgstr "Copertina del blog"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Custom theme"
#~ msgstr "Tema personalizzato"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Default theme"
#~ msgstr "Tema predefinito"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Error while loading theme selector."
#~ msgstr "Errore durante il caricamento del selettore del tema."
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Update blog"
#~ msgstr "Aggiorna blog"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Danger zone"
#~ msgstr "Zona pericolosa"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Be very careful, any action taken here can't be reversed."
#~ msgstr ""
#~ "Fai molta attenzione, qualsiasi scelta fatta qui non può essere annullata."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Are you sure that you want to permanently delete this blog?"
#~ msgstr "Sei sicuro di voler eliminare permanentemente questo blog?"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Permanently delete this blog"
#~ msgstr "Elimina permanentemente questo blog"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "{}'s icon"
#~ msgstr "Icona di {}"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "There's one author on this blog: "
#~ msgid_plural "There are {0} authors on this blog: "
#~ msgstr[0] "C'è un autore su questo blog: "
#~ msgstr[1] "Ci sono {0} autori su questo blog: "
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Latest articles"
#~ msgstr "Ultimi articoli"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "No posts to see here yet."
#~ msgstr "Nessun post da mostrare qui."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Articles tagged \"{0}\""
#~ msgstr "Articoli etichettati \"{0}\""
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "There are currently no articles with such a tag"
#~ msgstr "Attualmente non ci sono articoli con quest'etichetta"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Nothing to see here yet."
#~ msgstr "Ancora niente da vedere qui."
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Media upload"
#~ msgstr "Caricamento di un media"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "Useful for visually impaired people, as well as licensing information"
#~ msgstr ""
#~ "Utile per persone ipovedenti, ed anche per informazioni sulla licenza"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Content warning"
#~ msgstr "Avviso di contenuto sensibile"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Leave it empty, if none is needed"
#~ msgstr "Lascia vuoto, se non è necessario"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "File"
#~ msgstr "File"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Send"
#~ msgstr "Invia"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Your media"
#~ msgstr "I tuoi media"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Upload"
#~ msgstr "Carica"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "You don't have any media yet."
#~ msgstr "Non hai ancora nessun media."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Content warning: {0}"
#~ msgstr "Avviso di contenuto sensibile: {0}"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Delete"
#~ msgstr "Elimina"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Details"
#~ msgstr "Dettagli"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Media details"
#~ msgstr "Dettagli media"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Go back to the gallery"
#~ msgstr "Torna alla galleria"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Markdown syntax"
#~ msgstr "Sintassi Markdown"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Copy it into your articles, to insert this media:"
#~ msgstr "Copialo nei tuoi articoli, per inserire questo media:"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Use as an avatar"
#~ msgstr "Usa come immagine di profilo"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "I'm from this instance"
#~ msgstr "Io appartengo a questa istanza"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Username, or email"
#~ msgstr "Nome utente, o email"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Password"
#~ msgstr "Password"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Log in"
#~ msgstr "Accedi"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "I'm from another instance"
#~ msgstr "Io sono di un'altra istanza"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Username"
#~ msgstr "Nome utente"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Continue to your instance"
#~ msgstr "Continua verso la tua istanza"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Advanced search"
#~ msgstr "Ricerca avanzata"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Article title matching these words"
#~ msgstr "Titoli di articolo che corrispondono a queste parole"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Subtitle matching these words"
#~ msgstr "Sottotitoli che corrispondono a queste parole"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Subtitle"
#~ msgstr "Sottotitolo"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Content macthing these words"
#~ msgstr "Corrispondenza del contenuto di queste parole"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Body content"
#~ msgstr "Contenuto del testo"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "From this date"
#~ msgstr "Da questa data"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "To this date"
#~ msgstr "A questa data"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Containing these tags"
#~ msgstr "Contenente queste etichette"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Tags"
#~ msgstr "Etichette"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Posted on one of these instances"
#~ msgstr "Pubblicato su una di queste istanze"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Instance domain"
#~ msgstr "Dominio dell'istanza"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Posted by one of these authors"
#~ msgstr "Pubblicato da uno di questi autori"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Author(s)"
#~ msgstr "Autore(i)"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Posted on one of these blogs"
#~ msgstr "Pubblicato da uno di questi blog"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Blog title"
#~ msgstr "Titolo del blog"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Written in this language"
#~ msgstr "Scritto in questa lingua"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Language"
#~ msgstr "Lingua"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Published under this license"
#~ msgstr "Pubblicato sotto questa licenza"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Article license"
#~ msgstr "Licenza dell'articolo"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Search result(s) for \"{0}\""
#~ msgstr "Risultato(i) della ricerca per \"{0}\""
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Search result(s)"
#~ msgstr "Risultato(i) della ricerca"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "No results for your query"
#~ msgstr "Nessun risultato per la tua ricerca"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "No more results for your query"
#~ msgstr "Nessun altro risultato per la tua ricerca"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Invalid CSRF token"
#~ msgstr "Token CSRF non valido"
2024-12-21 23:11:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "Something is wrong with your CSRF token. Make sure cookies are enabled in "
#~ "you browser, and try reloading this page. If you continue to see this "
#~ "error message, please report it."
#~ msgstr ""
#~ "Qualcosa è andato storto con il tuo token CSRF. Assicurati di aver "
#~ "abilitato i cookies nel tuo browser, e prova a ricaricare questa pagina. "
#~ "Se l'errore si dovesse ripresentare, per favore segnalacelo."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "You are not authorized."
#~ msgstr "Non sei autorizzato."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Page not found"
#~ msgstr "Pagina non trovata"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "We couldn't find this page."
#~ msgstr "Non riusciamo a trovare questa pagina."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "The link that led you here may be broken."
#~ msgstr "Il collegamento che ti ha portato qui potrebbe non essere valido."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "The content you sent can't be processed."
#~ msgstr "Il contenuto che hai inviato non può essere processato."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Maybe it was too long."
#~ msgstr "Probabilmente era troppo lungo."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Internal server error"
#~ msgstr "Errore interno del server"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Something broke on our side."
#~ msgstr "Qualcosa non va da questo lato."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Sorry about that. If you think this is a bug, please report it."
#~ msgstr "Scusa per questo. Se pensi sia un bug, per favore segnalacelo."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Check your inbox!"
#~ msgstr "Controlla la tua casella di posta in arrivo!"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "We sent a mail to the address you gave us, with a link to reset your "
#~ "password."
#~ msgstr ""
#~ "Ti abbiamo inviato una mail all'indirizzo che ci hai fornito, con il "
#~ "collegamento per reimpostare la tua password."
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "This token has expired"
#~ msgstr "Questo token è scaduto"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "Please start the process again by clicking <a href=\"/password-"
#~ "reset\">here</a>."
#~ msgstr ""
#~ "Sei pregato di riavviare il processo cliccando <a href=\"/password-"
#~ "reset\">qui</a>."
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Reset your password"
#~ msgstr "Reimposta la tua password"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "New password"
#~ msgstr "Nuova password"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Confirmation"
#~ msgstr "Conferma"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Update password"
#~ msgstr "Aggiorna password"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Email"
#~ msgstr "Email"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Send password reset link"
#~ msgstr "Invia collegamento per reimpostare la password"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Interact with {}"
#~ msgstr "Interagisci con {}"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Log in to interact"
#~ msgstr "Accedi per interagire"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Enter your full username to interact"
#~ msgstr "Inserisci il tuo nome utente completo per interagire"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Publish"
#~ msgstr "Pubblica"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Classic editor (any changes will be lost)"
#~ msgstr "Editor classico (eventuali modifiche andranno perse)"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Content"
#~ msgstr "Contenuto"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "You can upload media to your gallery, and then copy their Markdown code "
#~ "into your articles to insert them."
#~ msgstr ""
#~ "Puoi caricare media nella tua galleria, e poi copiare il loro codice "
#~ "Markdown nei tuoi articoli per inserirli."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Upload media"
#~ msgstr "Carica media"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Tags, separated by commas"
#~ msgstr "Etichette, separate da virgole"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "License"
#~ msgstr "Licenza"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Illustration"
#~ msgstr "Illustrazione"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "This is a draft, don't publish it yet."
#~ msgstr "Questa è una bozza, non pubblicarla ancora."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Update"
#~ msgstr "Aggiorna"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Update, or publish"
#~ msgstr "Aggiorna, o pubblica"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Publish your post"
#~ msgstr "Pubblica il tuo post"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Written by {0}"
#~ msgstr "Scritto da {0}"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "All rights reserved."
#~ msgstr "Tutti i diritti riservati."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "This article is under the {0} license."
#~ msgstr "Questo articolo è rilasciato con licenza {0}."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "I don't like this anymore"
#~ msgstr "Non mi piace più questo"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Add yours"
#~ msgstr "Aggiungi il tuo"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "I don't want to boost this anymore"
#~ msgstr "Non voglio più boostare questo"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Boost"
#~ msgstr "Boost"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this "
#~ "article"
#~ msgstr ""
#~ "{0}Accedi{1}, o {2}usa il tuo account del Fediverso{3} per interagire con "
#~ "questo articolo"
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "Unsubscribe"
#~ msgstr "Annulla iscrizione"
2018-10-27 08:35:24 +02:00
2024-12-22 10:33:58 +01:00
#~ msgid "Subscribe"
#~ msgstr "Iscriviti"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Comments"
#~ msgstr "Commenti"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Your comment"
#~ msgstr "Il tuo commento"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Submit comment"
#~ msgstr "Invia commento"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "No comments yet. Be the first to react!"
#~ msgstr "Ancora nessun commento. Sii il primo ad aggiungere la tua reazione!"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "This article is still a draft. Only you and other authors can see it."
#~ msgstr ""
#~ "Questo articolo è ancora una bozza. Solo voi e gli altri autori la potete "
#~ "vedere."
2024-12-22 10:33:58 +01:00
#~ msgid "Only you and other authors can edit this article."
#~ msgstr "Solo tu e gli altri autori potete modificare questo articolo."
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "If you are browsing this site as a visitor, no data about you is "
#~ "collected."
#~ msgstr ""
#~ "Se stai navigando in questo sito come visitatore, non vengono raccolti "
#~ "dati su di te."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "As a registered user, you have to provide your username (which does not "
#~ "have to be your real name), your functional email address and a password, "
#~ "in order to be able to log in, write articles and comment. The content "
#~ "you submit is stored until you delete it."
#~ msgstr ""
#~ "Come utente registrato, devi fornire il tuo nome utente (che può anche "
#~ "non essere il tuo vero nome), un tuo indirizzo email funzionante e una "
#~ "password, per poter accedere, scrivere articoli e commenti. Il contenuto "
#~ "che invii è memorizzato fino a quando non lo elimini."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "When you log in, we store two cookies, one to keep your session open, the "
#~ "second to prevent other people to act on your behalf. We don't store any "
#~ "other cookies."
#~ msgstr ""
#~ "Quando accedi, conserviamo due cookie, uno per mantenere aperta la "
#~ "sessione, il secondo per impedire ad altre persone di agire al tuo posto. "
#~ "Non conserviamo nessun altro cookie."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Administration of {0}"
#~ msgstr "Amministrazione di {0}"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Unblock"
#~ msgstr "Sblocca"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Block"
#~ msgstr "Blocca"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Welcome to {}"
#~ msgstr "Benvenuto su {}"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Runs Plume {0}"
#~ msgstr "Utilizza Plume {0}"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "And are connected to <em>{0}</em> other instances"
#~ msgstr "E sono connessi ad altre <em>{0}</em> istanze"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Administred by"
#~ msgstr "Amministrata da"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Blocklisted Emails"
#~ msgstr "Email Blocklist"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Email address"
#~ msgstr "Indirizzo email"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "The email address you wish to block. In order to block domains, you can "
#~ "use globbing syntax, for example '*@example.com' blocks all addresses "
#~ "from example.com"
#~ msgstr ""
#~ "L'indirizzo email che vuoi bloccare. Per bloccare i domini, puoi usare la "
#~ "sintassi di globbing, per esempio '*@example.com' blocca tutti gli "
#~ "indirizzi da example.com"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Note"
#~ msgstr "Nota"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Notify the user?"
#~ msgstr "Notifica l'utente?"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "Optional, shows a message to the user when they attempt to create an "
#~ "account with that address"
#~ msgstr ""
#~ "Opzionale, mostra un messaggio all'utente quando tenta di creare un conto "
#~ "con quell'indirizzo"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Blocklisting notification"
#~ msgstr "Notifica di blocklist"
2022-01-12 02:29:50 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "The message to be shown when the user attempts to create an account with "
#~ "this email address"
#~ msgstr ""
#~ "Il messaggio da mostrare quando l'utente tenta di creare un profilo con "
#~ "questo indirizzo email"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Add blocklisted address"
#~ msgstr "Aggiungi indirizzo messo in blocklist"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "There are no blocked emails on your instance"
#~ msgstr "Non ci sono email bloccate sulla tua istanza"
#~ msgid "Delete selected emails"
#~ msgstr "Elimina email selezionata"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Email address:"
#~ msgstr "Indirizzo email:"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Blocklisted for:"
#~ msgstr "Messo in blocklist per:"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Will notify them on account creation with this message:"
#~ msgstr "Li notificherà alla creazione del profilo con questo messaggio:"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "The user will be silently prevented from making an account"
#~ msgstr "L'utente sarà prevenuto silenziosamente dal creare un profilo"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Configuration"
#~ msgstr "Configurazione"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Instances"
#~ msgstr "Istanze"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Users"
#~ msgstr "Utenti"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Email blocklist"
#~ msgstr "Blocklist dell'email"
2024-12-18 15:59:13 +01:00
#, fuzzy
2024-12-22 10:33:58 +01:00
#~ msgid "Search users"
#~ msgstr "Cerca"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Grant admin rights"
#~ msgstr "Garantisci diritti dell'admin"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Revoke admin rights"
#~ msgstr "Revoca diritti dell'admin"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Grant moderator rights"
#~ msgstr "Garantisci diritti del moderatore"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Revoke moderator rights"
#~ msgstr "Revoca diritti del moderatore"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Ban"
#~ msgstr "Bandisci"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Run on selected users"
#~ msgstr "Esegui sugli utenti selezionati"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Admin"
#~ msgstr "Amministratore"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Moderator"
#~ msgstr "Moderatore"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Name"
#~ msgstr "Nome"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Allow anyone to register here"
#~ msgstr "Permetti a chiunque di registrarsi qui"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Short description"
#~ msgstr "Descrizione breve"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Long description"
#~ msgstr "Descrizione lunga"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Default article license"
#~ msgstr "Licenza predefinita degli articoli"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Save these settings"
#~ msgstr "Salva queste impostazioni"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "{0}'s subscribers"
#~ msgstr "Iscritti di {0}"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Articles"
#~ msgstr "Articoli"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Subscribers"
#~ msgstr "Iscritti"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Subscriptions"
#~ msgstr "Sottoscrizioni"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Create an account"
#~ msgstr "Crea un account"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Password confirmation"
#~ msgstr "Conferma password"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "Apologies, but registrations are closed on this particular instance. You "
#~ "can, however, find a different one."
#~ msgstr ""
#~ "Spiacenti, ma le registrazioni sono chiuse per questa istanza. Puoi "
#~ "comunque trovarne un'altra."
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "{0}'s subscriptions"
#~ msgstr "Iscrizioni di {0}"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Follow {}"
#~ msgstr "Segui {}"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Log in to follow"
#~ msgstr "Accedi per seguire"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Enter your full username handle to follow"
#~ msgstr "Inserisci il tuo nome utente completo (handle) per seguire"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Edit your account"
#~ msgstr "Modifica il tuo account"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Your Profile"
#~ msgstr "Il Tuo Profilo"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "To change your avatar, upload it to your gallery and then select from "
#~ "there."
#~ msgstr ""
#~ "Per modificare la tua immagine di profilo, caricala nella tua galleria e "
#~ "poi selezionala da là."
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Upload an avatar"
#~ msgstr "Carica un'immagine di profilo"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Display name"
#~ msgstr "Nome visualizzato"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Summary"
#~ msgstr "Riepilogo"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Theme"
#~ msgstr "Tema"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Never load blogs custom themes"
#~ msgstr "Non caricare mai i temi personalizzati dei blog"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Update account"
#~ msgstr "Aggiorna account"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Be very careful, any action taken here can't be cancelled."
#~ msgstr ""
#~ "Fai molta attenzione, qualsiasi scelta fatta qui non può essere annullata."
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Delete your account"
#~ msgstr "Elimina il tuo account"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Sorry, but as an admin, you can't leave your own instance."
#~ msgstr ""
#~ "Spiacente, ma come amministratore, non puoi lasciare la tua istanza."
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Atom feed"
#~ msgstr "Flusso Atom"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Recently boosted"
#~ msgstr "Boostato recentemente"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Your Dashboard"
#~ msgstr "Il tuo Pannello"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Your Blogs"
#~ msgstr "I Tuoi Blog"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "You don't have any blog yet. Create your own, or ask to join one."
#~ msgstr ""
#~ "Non hai ancora nessun blog. Creane uno tuo, o chiedi di unirti ad uno "
#~ "esistente."
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Start a new blog"
#~ msgstr "Inizia un nuovo blog"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Your Drafts"
#~ msgstr "Le tue Bozze"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Go to your gallery"
#~ msgstr "Vai alla tua galleria"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "It is you"
#~ msgstr "Sei tu"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Edit your profile"
#~ msgstr "Modifica il tuo profilo"
2024-12-21 23:11:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Open on {0}"
#~ msgstr "Apri su {0}"
2024-12-18 15:59:13 +01:00
#~ msgid "Home"
#~ msgstr "Home"
2024-01-06 17:48:05 +01:00
#~ msgid "View all"
#~ msgstr "Vedi tutto"