mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -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.1 KiB
PHP
45 lines
2.1 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' => 'رمز عبور خود را با موفقیت بازنشانی شد.',
|
|
],
|
|
|
|
];
|