-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlang.js
71 lines (71 loc) · 2.05 KB
/
lang.js
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
var data = {
"english": {
"lang": "Language",
"list": "List of patient",
"import-form": "Import by form",
"import-file": "Import by file",
"add": "Add patients",
"ID": "Patient ID",
"fname": "Fisrt Name",
"lname": "Last Name",
"dateofbirth": "Date of birth",
"gender": "Gender",
"phone": "Phone Number",
"email": "Email",
"height": "Height",
"weight": "Weight",
"blood": "Blood Group",
"creat": "Create On",
"mod": "Modified On",
"view": "View Detail",
"edit": "Edit",
"delete": "Delete",
"search": "Search"
},
"vietnamese": {
"lang": "Ngôn ngữ",
"list": "Danh sách bệnh nhân",
"import-form": "Nhập từ form",
"import-file": "Nhập từ file",
"add": "Thêm bệnh nhân",
"ID": "Mã bệnh nhân",
"lname": "Tên",
"fname": "Họ",
"dateofbirth": "Ngày sinh",
"gender": "giới tính",
"phone": "Số điện thoại",
"email": "Email",
"height": "Chiều cao",
"weight": "Cân nặng",
"blood": "Nhóm máu",
"creat": "Ngày lập sổ",
"mod": "Ngày cập nhật",
"view": "Xem chi tiết",
"edit": "Sửa",
"delete": "Xóa",
"search":"Tìm kiếm"
},
"japanese": {
"lang": "言語",
"list": "患者一覧",
"import-form": "フォームから追加",
"import-file": "ファイルから追加",
"add": "患者追加",
"ID": "患者 ID",
"fname": "名字",
"lname": "名前",
"dateofbirth": "生年月日",
"gender": "性別",
"phone": "電話番号",
"email": "Email",
"height": "身長",
"weight": "体重",
"blood": "血液型",
"creat": "作成日",
"mod": "変更日",
"view": "詳細を表示",
"edit": "編集",
"delete": "削除",
"search": "検索"
}
}