user.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. 'email' => array(
  13. 'feedback' => array(
  14. 'invalid' => 'Neplatná e-mailová adresa.',
  15. 'required' => 'E-mailová adresa je povinná.',
  16. ),
  17. 'validation' => array(
  18. 'change_email' => 'E-mailovú adresu môžete zmeniť <a href="%s">na stránke profilu</a>.',
  19. 'email_sent_to' => 'Poslali sme Vám e-mail na adresu <strong>%s</strong>. Prosím, overete Vašu e-mailovú adresu podľa pokynov v e-maile.',
  20. 'feedback' => array(
  21. 'email_failed' => 'E-mail sa nepodarilo odoslať. Server je chybne nastavený.',
  22. 'email_sent' => 'Práve vám bol odoslaný e-mail na vašeu adresu.',
  23. 'error' => 'Nepodarilo sa overiť Vašu e-mailovú adresu.',
  24. 'ok' => 'E-mailová adresa úspešne overená.',
  25. 'unnecessary' => 'Táto e-mailová adresa už bola overená.',
  26. 'wrong_token' => 'Túto e-mailovú adresu sa nepodarilo overiť. Neplatný token.',
  27. ),
  28. 'need_to' => 'Aby ste mohli používať %s, musíte najskôr overiť Vašu e-mailovú adresu',
  29. 'resend_email' => 'Znovu poslať e-mail',
  30. 'title' => 'Overenie e-mailovej adresy',
  31. ),
  32. ),
  33. 'mailer' => array(
  34. 'email_need_validation' => array(
  35. 'body' => 'Práve ste sa zaregistrovali na %s, ale stále ešte musíte overiť Vašu e-mailovú adresu. Kliknite na odkaz:',
  36. 'title' => 'Overte si Vaše konto',
  37. 'welcome' => 'Vitajte %s,',
  38. ),
  39. ),
  40. 'password' => array(
  41. 'invalid' => 'Neplatné heslo.',
  42. ),
  43. 'tos' => array(
  44. 'feedback' => array(
  45. 'invalid' => 'Aby ste sa mohli zaregistrovať, musíte najskôr súhlasiť s podmienkami služby.',
  46. ),
  47. ),
  48. 'username' => array(
  49. 'invalid' => 'Toto používateľské meno je neplatné.',
  50. 'taken' => 'Používateľské meno %s sa už používa.',
  51. ),
  52. );