<?php
+/**
+ * Authentication Language Lines
+ * The following language lines are used during authentication for various
+ * messages that we need to display to the user.
+ */
return [
- /*
- |--------------------------------------------------------------------------
- | Authentication Language Lines
- |--------------------------------------------------------------------------
- |
- | The following language lines are used during authentication for various
- | messages that we need to display to the user. You are free to modify
- | these language lines according to your application's requirements.
- |
- */
+
'failed' => '이 자격 증명은 등록되어 있지 않습니다.',
'throttle' => '로그인 시도 횟수 제한을 초과했습니다. :seconds초 후에 다시 시도하십시오.',
- /**
- * Login & Register
- */
+ // Login & Register
'sign_up' => '신규등록',
'log_in' => '로그인',
'log_in_with' => ':socialDriver에 로그인',
'remember_me' => '자동로그인',
'ldap_email_hint' => '이 계정에서 사용하는 이메일을 입력해 주세요.',
'create_account' => '계정 만들기',
+ 'already_have_account' => 'Already have an account?',
+ 'dont_have_account' => 'Don\'t have an account?',
'social_login' => 'SNS로그인',
'social_registration' => 'SNS등록',
'social_registration_text' => '다른 서비스를 사용하여 등록하고 로그인.',
'register_success' => '등록을 완료하고 로그인 할 수 있습니다!',
- /**
- * Password Reset
- */
+ // Password Reset
'reset_password' => '암호 재설정',
'reset_password_send_instructions' => '다음에 메일 주소를 입력하면 비밀번호 재설정 링크가 포함 된 이메일이 전송됩니다.',
'reset_password_send_button' => '재설정 링크 보내기',
'reset_password_sent_success' => ':email로 재설정 링크를 보냈습니다.',
'reset_password_success' => '비밀번호가 재설정되었습니다.',
-
'email_reset_subject' => ':appName 암호를 재설정',
'email_reset_text' => '귀하의 계정에 대한 비밀번호 재설정 요청을 받았기 때문에 본 이메일이 발송되었습니다.',
'email_reset_not_requested' => '암호 재설정을 요청하지 않은 경우 더 이상의 조치는 필요하지 않습니다.',
- /**
- * Email Confirmation
- */
+ // Email Confirmation
'email_confirm_subject' => ':appName의 이메일 주소 확인',
'email_confirm_greeting' => ':appName에 가입 해 주셔서 감사합니다!',
'email_confirm_text' => '다음 버튼을 눌러 이메일 주소를 확인하십시오',
'email_not_confirmed_click_link' => '등록시 받은 이메일을 확인하고 확인 링크를 클릭하십시오.',
'email_not_confirmed_resend' => '메일이 없으면 아래 양식을 통해 다시 제출하십시오.',
'email_not_confirmed_resend_button' => '확인 메일을 다시 전송',
-];
+
+ // User Invite
+ 'user_invite_email_subject' => 'You have been invited to join :appName!',
+ 'user_invite_email_greeting' => 'An account has been created for you on :appName.',
+ 'user_invite_email_text' => 'Click the button below to set an account password and gain access:',
+ 'user_invite_email_action' => 'Set Account Password',
+ 'user_invite_page_welcome' => 'Welcome to :appName!',
+ 'user_invite_page_text' => 'To finalise your account and gain access you need to set a password which will be used to log-in to :appName on future visits.',
+ 'user_invite_page_confirm_button' => 'Confirm Password',
+ 'user_invite_success' => 'Password set, you now have access to :appName!'
+];
\ No newline at end of file