register.inc.php 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. /**
  3. * Login
  4. *
  5. * Copyright 2010 by Jason Coward <jason@modxcms.com> and Shaun McCormick
  6. * <shaun@modxcms.com>
  7. *
  8. * Login is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the Free
  10. * Software Foundation; either version 2 of the License, or (at your option) any
  11. * later version.
  12. *
  13. * Login is distributed in the hope that it will be useful, but WITHOUT ANY
  14. * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  15. * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along with
  18. * Login; if not, write to the Free Software Foundation, Inc., 59 Temple
  19. * Place, Suite 330, Boston, MA 02111-1307 USA
  20. *
  21. * @package login
  22. */
  23. /**
  24. * Register English lexicon for Login
  25. *
  26. * @package login
  27. * @subpackage lexicon
  28. */
  29. $_lang['register.activation_email_subject'] = 'Grazie per la registrazione. Prego attivare!';
  30. $_lang['register.email'] = 'Email';
  31. $_lang['register.email_invalid'] = 'Prego inserire un indirizzo email valido.';
  32. $_lang['register.email_invalid_domain'] = 'Il suo indirizzo email non presenta un dominio valido.';
  33. $_lang['register.email_no_recipient'] = 'Nessun destinatario specificato per l\'indirizzo.';
  34. $_lang['register.email_not_sent'] = 'Si è verificato un errore durante il tentativo di inviare l\'e-mail.';
  35. $_lang['register.email_taken'] = 'L\'e-mail "[[+ email]]" è già in uso. Assicurarsi che non si è ancora registrati, e in caso contrario, si prega di specificare un altro indirizzo e-mail.';
  36. $_lang['register.field_not_empty'] = 'Questo campo deve essere vuoto.';
  37. $_lang['register.field_required'] = 'Questo campo è obligatorio.';
  38. $_lang['register.fullname'] = 'Nome completo';
  39. $_lang['register.math_incorrect'] = 'Risposta errata!';
  40. $_lang['register.math_field_nf'] = '[[+field]] campo di input non specificato nella forma.';
  41. $_lang['register.max_length'] = 'Questo campo non puo essere più lungo di [[+length]] caratteri.';
  42. $_lang['register.max_value'] = 'Questo campo non può essere più largo di [[+value]].';
  43. $_lang['register.min_length'] = 'Questo campo deve essere lungo almeno [[+length]] caratteri.';
  44. $_lang['register.min_value'] = 'Questo campo non può essere più piccolo di [[+value]].';
  45. $_lang['register.not_date'] = 'Questo campo deve avere una data valida.';
  46. $_lang['register.not_number'] = 'Questo campo deve avere un numero valido.';
  47. $_lang['register.not_regexp'] = 'Questo campo ha un valore non corretto.';
  48. $_lang['register.password'] = 'Password';
  49. $_lang['register.password_confirm'] = 'Conferma Password';
  50. $_lang['register.password_dont_match'] = 'La password non corrisponde.';
  51. $_lang['register.password_not_confirmed'] = 'Prego confermare la password';
  52. $_lang['register.range_invalid'] = 'Assegnazione del campo non valida.';
  53. $_lang['register.range'] = 'Il suo valore deve essere entro [[+min]] e[[+max]].';
  54. $_lang['register.recaptcha_err_load'] = 'Impossibile caricare il reCaptcha classe di servizio.';
  55. $_lang['register.register'] = 'Registrare';
  56. $_lang['register.spam_blocked'] = 'La tua domanda è stata bloccata da un filtro anti-spam:';
  57. $_lang['register.spam_marked'] = ' – riconosciuto come spam.';
  58. $_lang['register.use_stronger_password'] = 'Your password is not strong enough. Perhaps you should strengthen it, by replacing letters with numbers or adding more words to the password (try multiple word passwords). Suggestions: [[+suggestions]]';
  59. $_lang['register.user_err_save'] = 'Si è verificato un errore durante il tentativo di salvare l\'utente.';
  60. $_lang['register.username'] = 'Nome utente';
  61. $_lang['register.username_taken'] = 'Nome utente già in uso. Prego sceglierne un altro';
  62. $_lang['register.validation_error_message'] = 'A form validation error occurred. Please check the values you have entered.';