mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
46 lines
2 KiB
PHP
46 lines
2 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'account_already_exists' => 'このemailのアカウントが既に存在しています。',
|
|
'account_not_found' => 'ユーザー名またはパスワードが不正です。',
|
|
'account_not_activated' => 'このユーザーアカウントは有効化されていません。',
|
|
'account_suspended' => 'このユーザーアカウントは停止中です。',
|
|
'account_banned' => 'このユーザーアカウントは禁止されています。',
|
|
'throttle' => 'Too many failed login attempts. Please try again in :minutes minutes.',
|
|
|
|
'two_factor' => array(
|
|
'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' => array(
|
|
'error' => 'ログインする際に問題が発生しました。もう一度やり直して下さい。',
|
|
'success' => 'ログインに成功しました。',
|
|
),
|
|
|
|
'logout' => array(
|
|
'error' => 'There was a problem while trying to log you out, please try again.',
|
|
'success' => 'You have successfully logged out.',
|
|
),
|
|
|
|
'signup' => array(
|
|
'error' => 'アカウントを作成する際に問題が発生しました。もう一度やり直して下さい。',
|
|
'success' => 'アカウントが作成されました。',
|
|
),
|
|
|
|
'forgot-password' => array(
|
|
'error' => 'パスワードリセットの際に問題が発生しました。もう一度やり直して下さい。',
|
|
'success' => 'If that email address exists in our system, a password recovery email has been sent.',
|
|
),
|
|
|
|
'forgot-password-confirm' => array(
|
|
'error' => 'パスワードをリセットする際に問題が発生しました。もう一度やり直して下さい。',
|
|
'success' => 'パスワードがリセットされました。',
|
|
),
|
|
|
|
|
|
);
|