mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
37 lines
1.4 KiB
PHP
37 lines
1.4 KiB
PHP
<?php
|
||
|
||
return array(
|
||
|
||
'account_already_exists' => 'Bu email adresi ile tanımlanmış bir hesap var.',
|
||
'account_not_found' => 'Kullanıcı adı veya şifresi yanlış.',
|
||
'account_not_activated' => 'Hesabınız aktif edilmemiş.',
|
||
'account_suspended' => 'Hesabınız durdurulmuş.',
|
||
'account_banned' => 'Hesabınız engellenmiş.',
|
||
|
||
'signin' => array(
|
||
'error' => 'Bir problem ile karşılaştık, lütfen tekrar deneyin.',
|
||
'success' => 'Başarıyla giriş yaptınız.',
|
||
),
|
||
|
||
'signup' => array(
|
||
'error' => 'There was a problem while trying to create your account, please try again.',
|
||
'success' => 'Hesap başarılı bir şekilde oluşturuldu.',
|
||
),
|
||
|
||
'forgot-password' => array(
|
||
'error' => 'There was a problem while trying to get a reset password code, please try again.',
|
||
'success' => 'Password recovery email successfully sent.',
|
||
),
|
||
|
||
'forgot-password-confirm' => array(
|
||
'error' => 'There was a problem while trying to reset your password, please try again.',
|
||
'success' => 'Your password has been successfully reset.',
|
||
),
|
||
|
||
'activate' => array(
|
||
'error' => 'There was a problem while trying to activate your account, please try again.',
|
||
'success' => 'Your account has been successfully activated.',
|
||
),
|
||
|
||
);
|