mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 16:14:18 -08:00
934afa036f
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
45 lines
2.2 KiB
PHP
45 lines
2.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'account_already_exists' => 'このemailのアカウントが既に存在しています。',
|
|
'account_not_found' => 'ユーザー名またはパスワードが不正です。',
|
|
'account_not_activated' => 'このユーザーアカウントは有効化されていません。',
|
|
'account_suspended' => 'このユーザーアカウントは停止中です。',
|
|
'account_banned' => 'このユーザーアカウントは禁止されています。',
|
|
'throttle' => '複数回ログインに失敗しました。 :minutes 分後に再試行してください。',
|
|
|
|
'two_factor' => [
|
|
'already_enrolled' => 'お使いのデバイスは既に登録されています。',
|
|
'success' => 'ログインに成功しました。',
|
|
'code_required' => '二段階認証コードが必要です。',
|
|
'invalid_code' => '二段階認証コードが無効です。',
|
|
],
|
|
|
|
'signin' => [
|
|
'error' => 'ログインする際に問題が発生しました。もう一度やり直して下さい。',
|
|
'success' => 'ログインに成功しました。',
|
|
],
|
|
|
|
'logout' => [
|
|
'error' => 'ログアウト中に問題が発生しました。もう一度やり直してください。',
|
|
'success' => 'ログアウトに成功しました。',
|
|
],
|
|
|
|
'signup' => [
|
|
'error' => 'アカウントを作成する際に問題が発生しました。もう一度やり直して下さい。',
|
|
'success' => 'アカウントが作成されました。',
|
|
],
|
|
|
|
'forgot-password' => [
|
|
'error' => 'パスワードリセットの際に問題が発生しました。もう一度やり直して下さい。',
|
|
'success' => 'このシステムにそのメールアドレスが存在する場合は、パスワード回復用のメールが送信されました。',
|
|
],
|
|
|
|
'forgot-password-confirm' => [
|
|
'error' => 'パスワードをリセットする際に問題が発生しました。もう一度やり直して下さい。',
|
|
'success' => 'パスワードがリセットされました。',
|
|
],
|
|
|
|
];
|