user.php 2.6 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' => '이 이메일 주소는 유효하지 않습니다.',
  15. 'required' => '이메일 주소가 필요합니다.',
  16. ),
  17. 'validation' => array(
  18. 'change_email' => '<a href="%s">프로필 페이지</a>에서 이메일 주소를 변경 할 수 있습니다.',
  19. 'email_sent_to' => '<strong>%s</strong>에 이메일을 보냈습니다. 이메일 주소를 인증하려면 전송 된 지침을 따라 주세요.',
  20. 'feedback' => array(
  21. 'email_failed' => '서버 설정 오류로 이메일을 전송하지 못했습니다.',
  22. 'email_sent' => '귀하의 메일로 이메일이 전송되었습니다.',
  23. 'error' => '이메일 주소 인증 실패.',
  24. 'ok' => '이메일 주소가 인증되었습니다.',
  25. 'unnecessary' => '이 이메일 주소는 이미 인증 되었습니다.',
  26. 'wrong_token' => '이 이메일 주소는 잘못된 토큰으로 인해 인증에 실패했습니다.',
  27. ),
  28. 'need_to' => '%s 을(를) 사용하기 위해 이메일 주소를 인증 해야합니다',
  29. 'resend_email' => '이메일 재발송',
  30. 'title' => '이메일 주소 인증',
  31. ),
  32. ),
  33. 'mailer' => array(
  34. 'email_need_validation' => array(
  35. 'body' => '%s 에 가입되었습니다, 하지만 메일 주소 확인이 필요합니다. 다음 링크를 클릭하여 가입을 완료하세요:',
  36. 'title' => '계정을 인증 해야합니다',
  37. 'welcome' => '%s 에 오신 것을 환영합니다,',
  38. ),
  39. ),
  40. 'password' => array(
  41. 'invalid' => '이 비밀번호는 유효하지 않습니다.',
  42. ),
  43. 'tos' => array(
  44. 'feedback' => array(
  45. 'invalid' => '가입하려면 서비스 약관에 동의해야합니다.',
  46. ),
  47. ),
  48. 'username' => array(
  49. 'invalid' => '이 사용자 이름은 유효하지 않습니다.',
  50. 'taken' => '%s 은(는) 이미 시용되고 있는 사용자 이름입니다',
  51. ),
  52. );