snipe-it/resources/lang/ko/auth/message.php
Laravel Shift 934afa036f Adopt Laravel coding style
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions.

You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started.

[1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer
[2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
2021-06-10 20:15:52 +00:00

45 lines
1.8 KiB
PHP

<?php
return [
'account_already_exists' => '이 메일 주소를 사용하는 계정이 존재합니다.',
'account_not_found' => '사용자 명이나 비밀번호가 틀렸습니다.',
'account_not_activated' => '이 사용자는 비활성 계정입니다.',
'account_suspended' => '이 사용자는 보류 계정입니다.',
'account_banned' => '이 사용자는 금지 계정입니다.',
'throttle' => 'Too many failed login attempts. Please try again in :minutes minutes.',
'two_factor' => [
'already_enrolled' => 'Your device is already enrolled.',
'success' => 'You have successfully logged in.',
'code_required' => 'Two-factor code is required.',
'invalid_code' => 'Two-factor code is invalid.',
],
'signin' => [
'error' => '로그인 시에 문제가 발생했습니다. 다시 시도해 주세요.',
'success' => '로그인에 성공했습니다.',
],
'logout' => [
'error' => 'There was a problem while trying to log you out, please try again.',
'success' => 'You have successfully logged out.',
],
'signup' => [
'error' => '계정 생성 중에 문제가 발생했습니다. 다시 시도해 주세요.',
'success' => '계정이 생성되었습니다.',
],
'forgot-password' => [
'error' => '비밀번호 초기화 코드를 얻는 중에 문제가 발생했습니다. 다시 시도해 주세요.',
'success' => 'If that email address exists in our system, a password recovery email has been sent.',
],
'forgot-password-confirm' => [
'error' => '비밀번호 초기화 시 오류가 발생했습니다. 다시 시도해 주세요.',
'success' => '비밀번호가 초기화 되었습니다.',
],
];