Italian translation (#2654)
* Added Italian Translation of the following files: Changes to be committed: new file: app/views/user_mailer/confirmation_instructions.it.html.erb new file: app/views/user_mailer/confirmation_instructions.it.text.erb new file: app/views/user_mailer/password_change.it.html.erb new file: app/views/user_mailer/password_change.it.text.erb new file: app/views/user_mailer/reset_password_instructions.it.html.erb new file: app/views/user_mailer/reset_password_instructions.it.text.erb * Added italian translation Changes to be committed: new file: config/locales/activerecord.it.yml
This commit is contained in:
parent
11b706acdf
commit
2bd46f442d
7 changed files with 58 additions and 0 deletions
12
app/views/user_mailer/confirmation_instructions.it.html.erb
Normal file
12
app/views/user_mailer/confirmation_instructions.it.html.erb
Normal file
|
@ -0,0 +1,12 @@
|
|||
<p>Benvenuto <%= @resource.email %> !</p>
|
||||
|
||||
<p>Hai appena creato un account su <%= @instance %>.</p>
|
||||
|
||||
<p>Per confermare la tua iscrizione, fai clic sul seguente link: <br>
|
||||
<%= link_to 'Confirm my account', confirmation_url(@resource, confirmation_token: @token) %>
|
||||
|
||||
<p>Per piacere leggi anche i nostri <%= link_to 'terms and conditions', terms_url %>.</p>
|
||||
|
||||
<p>Sinceramente,<p>
|
||||
|
||||
<p>The <%= @instance %> team</p>
|
12
app/views/user_mailer/confirmation_instructions.it.text.erb
Normal file
12
app/views/user_mailer/confirmation_instructions.it.text.erb
Normal file
|
@ -0,0 +1,12 @@
|
|||
Benvenuto <%= @resource.email %> !
|
||||
|
||||
Hai appena creato un account su <%= @instance %>.
|
||||
|
||||
er confermare la tua iscrizione, fai clic sul seguente link :
|
||||
<%= confirmation_url(@resource, confirmation_token: @token) %>
|
||||
|
||||
Per piacere leggi anche i nostri termini e condizioni <%= terms_url %>
|
||||
|
||||
Sinceramente,
|
||||
|
||||
Il team <%= @instance %>
|
3
app/views/user_mailer/password_change.it.html.erb
Normal file
3
app/views/user_mailer/password_change.it.html.erb
Normal file
|
@ -0,0 +1,3 @@
|
|||
<p>Ciao <%= @resource.email %>!</p>
|
||||
|
||||
<p>Ti stiamo contattando per avvisarti che la tua password su Mastodon è stata cambiata.</p>
|
3
app/views/user_mailer/password_change.it.text.erb
Normal file
3
app/views/user_mailer/password_change.it.text.erb
Normal file
|
@ -0,0 +1,3 @@
|
|||
Ciao <%= @resource.email %>!
|
||||
|
||||
Ti stiamo contattando per avvisarti che la tua password su Mastodon è stata cambiata.
|
|
@ -0,0 +1,8 @@
|
|||
<p>Ciao <%= @resource.email %>!</p>
|
||||
|
||||
<p>Qualcuno ha richiesto un link per cambiare la tua password su Mastodon. Lo puoi fare tramite il link qui sotto.</p>
|
||||
|
||||
<p><%= link_to 'Change my password', edit_password_url(@resource, reset_password_token: @token) %></p>
|
||||
|
||||
<p>Se non l'hai richiesto tu, ignora questa email.</p>
|
||||
<p>La tua password non verrà cambiata finché non accedi al link qui sopra e ne crei una nuova.</p>
|
|
@ -0,0 +1,8 @@
|
|||
Ciao <%= @resource.email %>!
|
||||
|
||||
Qualcuno ha richiesto un link per cambiare la tua password su Mastodon. Lo puoi fare tramite il link qui sotto.
|
||||
|
||||
<%= edit_password_url(@resource, reset_password_token: @token) %>
|
||||
|
||||
Se non l'hai richiesto tu, ignora questa email.
|
||||
La tua password non verrà cambiata finché non accedi al link qui sopra e ne crei una nuova.
|
12
config/locales/activerecord.it.yml
Normal file
12
config/locales/activerecord.it.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
it:
|
||||
activerecord:
|
||||
errors:
|
||||
models:
|
||||
account:
|
||||
attributes:
|
||||
username:
|
||||
invalid: solo lettere, numeri e trattino basso
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
taken: dello stato esiste già
|
Loading…
Reference in a new issue