-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #462 from eaides/master
Adding confide.php for hebrew language.
- Loading branch information
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'username' => 'שם משתמש', | ||
'password' => 'סיסמא', | ||
'password_confirmation' => 'אשר סיסמא', | ||
'e_mail' => 'דוא"ל', | ||
'username_e_mail' => 'שם משתמש או דוא"ל', | ||
|
||
'signup' => array( | ||
'title' => 'הרשמה', | ||
'desc' => 'הרשמה לחשבון חדש', | ||
'confirmation_required' => 'אישור נדרש', | ||
'submit' => 'צור חשבון חדש', | ||
), | ||
|
||
'login' => array( | ||
'title' => 'כניסה', | ||
'desc' => 'הזן את הפרטים שלך', | ||
'forgot_password' => '(שכחתי את הסיסמה)', | ||
'remember' => 'זכור אותי', | ||
'submit' => 'כניסה', | ||
), | ||
|
||
'forgot' => array( | ||
'title' => 'שכחתי את הסיסמה', | ||
'submit' => 'הבא', | ||
), | ||
|
||
'alerts' => array( | ||
'account_created' => 'חשבונך נוצר בהצלחה', | ||
'instructions_sent' => 'אנא בדוק את הדוא"ל שלך לקבלת ההוראות על איך לאשר את החשבון', | ||
'too_many_attempts' => 'ניסיונות רבים מדי. נסה שוב בעוד מספר דקות', | ||
'wrong_credentials' => 'שם משתמש, דואר אלקטרוני או סיסמא לא נכון', | ||
'not_confirmed' => 'חשבונך לא יכול להיות מאושר. בדוק את תיבת הדוא"ל שלך לקישור האישור', | ||
'confirmation' => 'חשבונך יאושר! עכשיו אתה יכול להתחבר', | ||
'wrong_confirmation' => 'קוד אישור שגוי', | ||
'password_forgot' => 'מידע לגבי יפוס סיסמא נשלח לדואר האלקטרוני שלך', | ||
'wrong_password_forgot' => 'משתמש לא נמצא', | ||
'password_reset' => 'הסיסמה שלך השתנתה בהצלחה', | ||
'wrong_password_reset' => 'סיסמא לא חוקית. נסה שוב', | ||
'wrong_token' => 'אסימון איפוס הסיסמה אינו חוקי', | ||
'duplicated_credentials' => 'אישורי הניתנים כבר בשימוש. נסה עם אישורי שונים', | ||
), | ||
|
||
'email' => array( | ||
'account_confirmation' => array( | ||
'subject' => 'אישור חשבון', | ||
'greetings' => 'שלום :name', | ||
'body' => 'אנא לגשת לקישור הבא כדי לאשר את החשבון שלך', | ||
'farewell' => 'בברכה', | ||
), | ||
|
||
'password_reset' => array( | ||
'subject' => 'איפוס סיסמא', | ||
'greetings' => 'שלום :name', | ||
'body' => 'אנא לגשת לקישור הבא כדי לשנות את הסיסמה שלך', | ||
'farewell' => 'בברכה', | ||
), | ||
), | ||
|
||
); |