1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php $TRANSLATIONS = array(
"Information about vCard is incorrect. Please reload the page." => "המידע אודות vCard אינו נכון. נא לטעון מחדש את הדף.",
"This is not your addressbook." => "זהו אינו ספר הכתובות שלך",
"Contact could not be found." => "לא ניתן לאתר איש קשר",
"Address" => "כתובת",
"Telephone" => "טלפון",
"Email" => "דואר אלקטרוני",
"Organization" => "ארגון",
"Work" => "עבודה",
"Home" => "בית",
"Mobile" => "נייד",
"Text" => "טקסט",
"Voice" => "קולי",
"Fax" => "פקס",
"Video" => "וידאו",
"Pager" => "זימונית",
"Add Contact" => "הוספת איש קשר",
"Edit" => "עריכה",
"Delete" => "מחיקה",
"Birthday" => "יום הולדת",
"Phone" => "טלפון",
"PO Box" => "תא דואר",
"Extended" => "מורחב",
"Street" => "רחוב",
"City" => "עיר",
"Region" => "אזור",
"Zipcode" => "מיקוד",
"Country" => "מדינה"
);
|