@inntechcorp/it-design 2.2.79 → 2.2.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/enums/enum.d.ts +2 -1
- package/dist/form/validation/Validator.d.ts +1 -0
- package/dist/index.cjs.js +150 -150
- package/dist/index.d.ts +5 -2
- package/dist/index.esm.js +138 -138
- package/dist/locales/calendar.json +22 -22
- package/dist/locales/en/itd.json +2 -1
- package/dist/locales/itd.json +227 -227
- package/dist/locales/tr/itd.json +2 -1
- package/dist/types/FormProps.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"weekdaysLong":[
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
3
|
+
"Sunday",
|
|
4
|
+
"Monday",
|
|
5
|
+
"Tuesday",
|
|
6
|
+
"Wednesday",
|
|
7
|
+
"Thursday",
|
|
8
|
+
"Friday",
|
|
9
|
+
"Saturday"
|
|
10
10
|
],
|
|
11
11
|
"weekdaysShort":[
|
|
12
|
-
"
|
|
12
|
+
"Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"
|
|
13
13
|
],
|
|
14
14
|
"months":[
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
15
|
+
"January",
|
|
16
|
+
"February",
|
|
17
|
+
"March",
|
|
18
|
+
"April",
|
|
19
|
+
"May",
|
|
20
|
+
"June",
|
|
21
|
+
"July",
|
|
22
|
+
"August",
|
|
23
|
+
"September",
|
|
24
|
+
"October",
|
|
25
|
+
"November",
|
|
26
|
+
"December"
|
|
27
27
|
],
|
|
28
|
-
"firstDay":
|
|
29
|
-
"format": "DD/
|
|
28
|
+
"firstDay": 0,
|
|
29
|
+
"format": "MM/DD/YYYY"
|
|
30
30
|
}
|
package/dist/locales/en/itd.json
CHANGED
|
@@ -48,7 +48,8 @@
|
|
|
48
48
|
"siteUsernameRule": "Only English lowercase letters, digits and symbols (-_.). No space is allowed, no uppercase letters are allowed",
|
|
49
49
|
"adminUsernameRule": "Only English letters and digits. No symbols (-_. vs) and no space is allowed",
|
|
50
50
|
"invalidURL": "Invalid URL",
|
|
51
|
-
"fieldMustBeDifferent": "This field must be different from: {{- fields}}"
|
|
51
|
+
"fieldMustBeDifferent": "This field must be different from: {{- fields}}",
|
|
52
|
+
"forbiddenWords": "You cannot use this word in this field."
|
|
52
53
|
},
|
|
53
54
|
"uploader": {
|
|
54
55
|
"header": "Drag and drop an file",
|
package/dist/locales/itd.json
CHANGED
|
@@ -1,313 +1,313 @@
|
|
|
1
1
|
{
|
|
2
|
-
"success": "
|
|
3
|
-
"error": "
|
|
2
|
+
"success": "Success",
|
|
3
|
+
"error": "Error",
|
|
4
4
|
"table": {
|
|
5
|
-
"noData": "
|
|
5
|
+
"noData": "No Data"
|
|
6
6
|
},
|
|
7
7
|
"placeholders": {
|
|
8
|
-
"username": "
|
|
9
|
-
"email": "E-
|
|
10
|
-
"password": "
|
|
11
|
-
"confirmPassword": "
|
|
12
|
-
"typeYourNoteHere": "
|
|
13
|
-
"selectGender": "
|
|
14
|
-
"selectCurrency": "
|
|
15
|
-
"selectLanguage": "
|
|
16
|
-
"selectCountry": "
|
|
17
|
-
"birthday": "
|
|
18
|
-
"multipleSelection": "
|
|
8
|
+
"username": "Username",
|
|
9
|
+
"email": "E-Mail",
|
|
10
|
+
"password": "Password",
|
|
11
|
+
"confirmPassword": "Confirm password",
|
|
12
|
+
"typeYourNoteHere": "Type your note here",
|
|
13
|
+
"selectGender": "Select Gender",
|
|
14
|
+
"selectCurrency": "Select Currency",
|
|
15
|
+
"selectLanguage": "Select Language",
|
|
16
|
+
"selectCountry": "Select Country",
|
|
17
|
+
"birthday": "Birthday",
|
|
18
|
+
"multipleSelection": "Selected ({{- count}})"
|
|
19
19
|
},
|
|
20
20
|
"options": {
|
|
21
|
-
"all": "
|
|
22
|
-
"male": "
|
|
23
|
-
"female": "
|
|
21
|
+
"all": "All",
|
|
22
|
+
"male": "Male",
|
|
23
|
+
"female": "Female",
|
|
24
24
|
"languages": {
|
|
25
|
-
"turkish": "
|
|
26
|
-
"english": "
|
|
25
|
+
"turkish": "Turkish",
|
|
26
|
+
"english": "English"
|
|
27
27
|
},
|
|
28
28
|
"currencies": {
|
|
29
|
-
"TRY": "
|
|
29
|
+
"TRY": "Turkish Lira",
|
|
30
30
|
"EUR": "Euro",
|
|
31
|
-
"USD": "
|
|
31
|
+
"USD": "Dollar"
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"buttons": {
|
|
35
|
-
"submit": "
|
|
36
|
-
"reset": "
|
|
35
|
+
"submit": "Submit",
|
|
36
|
+
"reset": "Reset"
|
|
37
37
|
},
|
|
38
38
|
"errors": {
|
|
39
|
-
"required": "
|
|
40
|
-
"minLength": "
|
|
41
|
-
"maxLength": "
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
39
|
+
"required": "This field is required!",
|
|
40
|
+
"minLength": "Should contain at least {{- length}} characters",
|
|
41
|
+
"maxLength": "Is too long. Max size is {{- length}}",
|
|
42
|
+
"passwordRule": "Your password must be at least 8 characters long, contain at least one digit, one uppercase letter, one lowercase letter, one special character, and must not contain spaces.",
|
|
43
|
+
"invalidEmailAddress": "Invalid email address",
|
|
44
|
+
"passwordsDontMatch": "The two passwords that you entered do not match!",
|
|
45
|
+
"usernameRule": "Only English letters, digits and symbols (-_.). No space is allowed",
|
|
46
|
+
"wrongTCIdentity": "Wrong TC Identity Number",
|
|
47
|
+
"fieldMustBeTheSame": "This field must be the same as: {{- fields}}",
|
|
48
|
+
"siteUsernameRule": "Only English lowercase letters, digits and symbols (-_.). No space is allowed, no uppercase letters are allowed",
|
|
49
|
+
"adminUsernameRule": "Only English letters and digits. No symbols (-_. vs) and no space is allowed",
|
|
50
|
+
"invalidURL": "Invalid URL",
|
|
51
|
+
"fieldMustBeDifferent": "This field must be different from: {{- fields}}",
|
|
52
|
+
"forbiddenWords": "You cannot use this word in this field."
|
|
53
53
|
},
|
|
54
54
|
"uploader": {
|
|
55
|
-
"header": "
|
|
56
|
-
"hint": "
|
|
57
|
-
"fileUploading": "
|
|
58
|
-
"info": "
|
|
59
|
-
"delete": "
|
|
60
|
-
"preview": "
|
|
61
|
-
"error": "
|
|
62
|
-
"fileFormatError": "
|
|
63
|
-
"fileSizeError": "
|
|
64
|
-
"fileUploadSuccess": "
|
|
65
|
-
"fileUploadFailed": "
|
|
66
|
-
"removeFileSuccess": "
|
|
67
|
-
"browserDoesntSupportDND": "
|
|
68
|
-
"calculating": "
|
|
69
|
-
"removeFile": "
|
|
70
|
-
"areYouSureToDeleteThisFile": "
|
|
71
|
-
"yes": "
|
|
72
|
-
"no": "
|
|
55
|
+
"header": "Drag and drop an file",
|
|
56
|
+
"hint": "or Browse to choose a file",
|
|
57
|
+
"fileUploading": "File uploading...",
|
|
58
|
+
"info": "Total: {{- total}} - {{- estimated}} s remaining.",
|
|
59
|
+
"delete": "Delete",
|
|
60
|
+
"preview": "Preview",
|
|
61
|
+
"error": "Error",
|
|
62
|
+
"fileFormatError": "You can only upload {{fileFormat}} file",
|
|
63
|
+
"fileSizeError": "File must smaller than {{fileSize}}",
|
|
64
|
+
"fileUploadSuccess": "File successfully uploaded.",
|
|
65
|
+
"fileUploadFailed": "File upload failed!",
|
|
66
|
+
"removeFileSuccess": "File successfully delete!",
|
|
67
|
+
"browserDoesntSupportDND": "Browser doesn't support drag and drop!",
|
|
68
|
+
"calculating": "Calculating...",
|
|
69
|
+
"removeFile": "Remove File",
|
|
70
|
+
"areYouSureToDeleteThisFile": "Are you sure to delete this file?",
|
|
71
|
+
"yes": "Yes",
|
|
72
|
+
"no": "No"
|
|
73
73
|
},
|
|
74
74
|
"results": {
|
|
75
75
|
"authentication": {
|
|
76
|
-
"title": "
|
|
77
|
-
"subtitle": "
|
|
78
|
-
"button": "
|
|
76
|
+
"title": "You Need To Sign In",
|
|
77
|
+
"subtitle": "You need to login to access this page. Please login by clicking the button below.",
|
|
78
|
+
"button": "LOGIN"
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
81
|
"currencies": {
|
|
82
|
-
"TRY": "
|
|
82
|
+
"TRY": "Turkish Lira",
|
|
83
83
|
"EUR": "Euro",
|
|
84
|
-
"USD": "
|
|
84
|
+
"USD": "Dollar"
|
|
85
85
|
},
|
|
86
86
|
"countries": {
|
|
87
|
-
"af": "
|
|
88
|
-
"al": "
|
|
89
|
-
"dz": "
|
|
87
|
+
"af": "Afghanistan",
|
|
88
|
+
"al": "Albania",
|
|
89
|
+
"dz": "Algeria",
|
|
90
90
|
"ad": "Andorra",
|
|
91
91
|
"ao": "Angola",
|
|
92
|
-
"ag": "Antigua
|
|
93
|
-
"ar": "
|
|
94
|
-
"am": "
|
|
95
|
-
"au": "
|
|
96
|
-
"at": "
|
|
97
|
-
"az": "
|
|
98
|
-
"bs": "
|
|
99
|
-
"bh": "
|
|
100
|
-
"bd": "
|
|
92
|
+
"ag": "Antigua and Barbuda",
|
|
93
|
+
"ar": "Argentina",
|
|
94
|
+
"am": "Armenia",
|
|
95
|
+
"au": "Australia",
|
|
96
|
+
"at": "Austria",
|
|
97
|
+
"az": "Azerbaijan",
|
|
98
|
+
"bs": "Bahamas",
|
|
99
|
+
"bh": "Bahrain",
|
|
100
|
+
"bd": "Bangladesh",
|
|
101
101
|
"bb": "Barbados",
|
|
102
|
-
"by": "
|
|
103
|
-
"be": "
|
|
102
|
+
"by": "Belarus",
|
|
103
|
+
"be": "Belgium",
|
|
104
104
|
"bz": "Belize",
|
|
105
105
|
"bj": "Benin",
|
|
106
106
|
"bt": "Bhutan",
|
|
107
|
-
"bo": "
|
|
108
|
-
"ba": "
|
|
109
|
-
"bw": "
|
|
110
|
-
"br": "
|
|
111
|
-
"bn": "Brunei",
|
|
112
|
-
"bg": "
|
|
107
|
+
"bo": "Bolivia",
|
|
108
|
+
"ba": "Bosnia and Herzegovina",
|
|
109
|
+
"bw": "Botswana",
|
|
110
|
+
"br": "Brazil",
|
|
111
|
+
"bn": "Brunei Darussalam",
|
|
112
|
+
"bg": "Bulgaria",
|
|
113
113
|
"bf": "Burkina Faso",
|
|
114
114
|
"bi": "Burundi",
|
|
115
|
-
"cv": "
|
|
116
|
-
"kh": "
|
|
117
|
-
"cm": "
|
|
118
|
-
"ca": "
|
|
119
|
-
"cf": "
|
|
120
|
-
"td": "
|
|
121
|
-
"cl": "
|
|
122
|
-
"cn": "
|
|
123
|
-
"co": "
|
|
124
|
-
"km": "
|
|
125
|
-
"cg": "
|
|
126
|
-
"cd": "
|
|
127
|
-
"cr": "
|
|
128
|
-
"ci": "
|
|
129
|
-
"hr": "
|
|
130
|
-
"cu": "
|
|
131
|
-
"cw": "
|
|
132
|
-
"cy": "
|
|
133
|
-
"cz": "
|
|
134
|
-
"dk": "
|
|
135
|
-
"dj": "
|
|
136
|
-
"dm": "
|
|
137
|
-
"do": "
|
|
138
|
-
"ec": "
|
|
139
|
-
"eg": "
|
|
115
|
+
"cv": "Cabo Verde",
|
|
116
|
+
"kh": "Cambodia",
|
|
117
|
+
"cm": "Cameroon",
|
|
118
|
+
"ca": "Canada",
|
|
119
|
+
"cf": "Central African Republic",
|
|
120
|
+
"td": "Chad",
|
|
121
|
+
"cl": "Chile",
|
|
122
|
+
"cn": "China",
|
|
123
|
+
"co": "Colombia",
|
|
124
|
+
"km": "Comoros",
|
|
125
|
+
"cg": "Congo",
|
|
126
|
+
"cd": "Congo, Democratic",
|
|
127
|
+
"cr": "Costa Rica",
|
|
128
|
+
"ci": "Côte d'Ivoire",
|
|
129
|
+
"hr": "Croatia",
|
|
130
|
+
"cu": "Cuba",
|
|
131
|
+
"cw": "Curacao",
|
|
132
|
+
"cy": "Cyprus",
|
|
133
|
+
"cz": "Czechia",
|
|
134
|
+
"dk": "Denmark",
|
|
135
|
+
"dj": "Djibouti",
|
|
136
|
+
"dm": "Dominica",
|
|
137
|
+
"do": "Dominican Republic",
|
|
138
|
+
"ec": "Ecuador",
|
|
139
|
+
"eg": "Egypt",
|
|
140
140
|
"sv": "El Salvador",
|
|
141
|
-
"gq": "
|
|
142
|
-
"er": "
|
|
143
|
-
"ee": "
|
|
144
|
-
"sz": "
|
|
145
|
-
"et": "
|
|
141
|
+
"gq": "Equatorial Guinea",
|
|
142
|
+
"er": "Eritrea",
|
|
143
|
+
"ee": "Estonia",
|
|
144
|
+
"sz": "Eswatini",
|
|
145
|
+
"et": "Ethiopia",
|
|
146
146
|
"fj": "Fiji",
|
|
147
|
-
"fi": "
|
|
148
|
-
"fr": "
|
|
147
|
+
"fi": "Finland",
|
|
148
|
+
"fr": "France",
|
|
149
149
|
"ga": "Gabon",
|
|
150
150
|
"gm": "Gambia",
|
|
151
|
-
"ge": "
|
|
152
|
-
"de": "
|
|
153
|
-
"gh": "
|
|
154
|
-
"gr": "
|
|
151
|
+
"ge": "Georgia",
|
|
152
|
+
"de": "Germany",
|
|
153
|
+
"gh": "Ghana",
|
|
154
|
+
"gr": "Greece",
|
|
155
155
|
"gd": "Grenada",
|
|
156
156
|
"gt": "Guatemala",
|
|
157
|
-
"gn": "
|
|
157
|
+
"gn": "Guinea",
|
|
158
158
|
"gw": "Guinea-Bissau",
|
|
159
159
|
"gy": "Guyana",
|
|
160
160
|
"ht": "Haiti",
|
|
161
161
|
"hn": "Honduras",
|
|
162
|
-
"hu": "
|
|
163
|
-
"is": "
|
|
164
|
-
"in": "
|
|
165
|
-
"id": "
|
|
166
|
-
"ir": "
|
|
167
|
-
"iq": "
|
|
162
|
+
"hu": "Hungary",
|
|
163
|
+
"is": "Iceland",
|
|
164
|
+
"in": "India",
|
|
165
|
+
"id": "Indonesia",
|
|
166
|
+
"ir": "Iran",
|
|
167
|
+
"iq": "Iraq",
|
|
168
168
|
"ie": "Ireland",
|
|
169
|
-
"il": "
|
|
170
|
-
"it": "
|
|
171
|
-
"jm": "
|
|
172
|
-
"jp": "
|
|
173
|
-
"jo": "
|
|
174
|
-
"kz": "
|
|
169
|
+
"il": "Israel",
|
|
170
|
+
"it": "Italy",
|
|
171
|
+
"jm": "Jamaica",
|
|
172
|
+
"jp": "Japan",
|
|
173
|
+
"jo": "Jordan",
|
|
174
|
+
"kz": "Kazakhstan",
|
|
175
175
|
"ke": "Kenya",
|
|
176
176
|
"ki": "Kiribati",
|
|
177
|
-
"kp": "
|
|
178
|
-
"kr": "
|
|
179
|
-
"kw": "
|
|
180
|
-
"kg": "
|
|
181
|
-
"la": "
|
|
182
|
-
"lv": "
|
|
183
|
-
"lb": "
|
|
177
|
+
"kp": "North Korea",
|
|
178
|
+
"kr": "South Korea",
|
|
179
|
+
"kw": "Kuwait",
|
|
180
|
+
"kg": "Kyrgyzstan",
|
|
181
|
+
"la": "Lao People's",
|
|
182
|
+
"lv": "Latvia",
|
|
183
|
+
"lb": "Lebanon",
|
|
184
184
|
"ls": "Lesotho",
|
|
185
|
-
"lr": "
|
|
185
|
+
"lr": "Liberia",
|
|
186
186
|
"ly": "Libya",
|
|
187
|
-
"li": "
|
|
188
|
-
"lt": "
|
|
189
|
-
"lu": "
|
|
190
|
-
"mg": "
|
|
191
|
-
"mw": "
|
|
192
|
-
"my": "
|
|
193
|
-
"mv": "
|
|
187
|
+
"li": "Liechtenstein",
|
|
188
|
+
"lt": "Lithuania",
|
|
189
|
+
"lu": "Luxembourg",
|
|
190
|
+
"mg": "Madagascar",
|
|
191
|
+
"mw": "Malawi",
|
|
192
|
+
"my": "Malaysia",
|
|
193
|
+
"mv": "Maldives",
|
|
194
194
|
"ml": "Mali",
|
|
195
195
|
"mt": "Malta",
|
|
196
|
-
"mh": "Marshall
|
|
197
|
-
"mr": "
|
|
196
|
+
"mh": "Marshall Islands",
|
|
197
|
+
"mr": "Mauritania",
|
|
198
198
|
"mu": "Mauritius",
|
|
199
|
-
"mx": "
|
|
200
|
-
"fm": "
|
|
201
|
-
"md": "Moldova",
|
|
202
|
-
"mc": "
|
|
203
|
-
"mn": "
|
|
204
|
-
"me": "
|
|
205
|
-
"ma": "
|
|
206
|
-
"mz": "
|
|
199
|
+
"mx": "Mexico",
|
|
200
|
+
"fm": "Micronesia",
|
|
201
|
+
"md": "Moldova, Republic of",
|
|
202
|
+
"mc": "Monaco",
|
|
203
|
+
"mn": "Mongolia",
|
|
204
|
+
"me": "Montenegro",
|
|
205
|
+
"ma": "Morocco",
|
|
206
|
+
"mz": "Mozambique",
|
|
207
207
|
"mm": "Myanmar",
|
|
208
|
-
"na": "
|
|
208
|
+
"na": "Namibia",
|
|
209
209
|
"nr": "Nauru",
|
|
210
210
|
"np": "Nepal",
|
|
211
|
-
"nl": "
|
|
212
|
-
"nz": "
|
|
213
|
-
"ni": "
|
|
214
|
-
"ne": "
|
|
215
|
-
"ng": "
|
|
216
|
-
"mk": "
|
|
217
|
-
"no": "
|
|
218
|
-
"om": "
|
|
211
|
+
"nl": "Netherlands",
|
|
212
|
+
"nz": "New Zealand",
|
|
213
|
+
"ni": "Nicaragua",
|
|
214
|
+
"ne": "Niger",
|
|
215
|
+
"ng": "Nigeria",
|
|
216
|
+
"mk": "North Macedonia",
|
|
217
|
+
"no": "Norway",
|
|
218
|
+
"om": "Oman",
|
|
219
219
|
"pk": "Pakistan",
|
|
220
220
|
"pw": "Palau",
|
|
221
221
|
"pa": "Panama",
|
|
222
|
-
"pg": "Papua
|
|
222
|
+
"pg": "Papua New Guinea",
|
|
223
223
|
"py": "Paraguay",
|
|
224
224
|
"pe": "Peru",
|
|
225
|
-
"ph": "
|
|
226
|
-
"pl": "
|
|
227
|
-
"pt": "
|
|
228
|
-
"qa": "
|
|
229
|
-
"ro": "
|
|
230
|
-
"ru": "
|
|
231
|
-
"rw": "
|
|
232
|
-
"kn": "Saint Kitts
|
|
225
|
+
"ph": "Philippines",
|
|
226
|
+
"pl": "Poland",
|
|
227
|
+
"pt": "Portugal",
|
|
228
|
+
"qa": "Qatar",
|
|
229
|
+
"ro": "Romania",
|
|
230
|
+
"ru": "Russian Federation",
|
|
231
|
+
"rw": "Rwanda",
|
|
232
|
+
"kn": "Saint Kitts and Nevis",
|
|
233
233
|
"lc": "Saint Lucia",
|
|
234
234
|
"vc": "Saint Vincent",
|
|
235
235
|
"ws": "Samoa",
|
|
236
236
|
"sm": "San Marino",
|
|
237
237
|
"st": "Sao Tome and Principe",
|
|
238
|
-
"sa": "
|
|
238
|
+
"sa": "Saudi Arabia",
|
|
239
239
|
"sn": "Senegal",
|
|
240
|
-
"rs": "
|
|
241
|
-
"sc": "
|
|
240
|
+
"rs": "Serbia",
|
|
241
|
+
"sc": "Seychelles",
|
|
242
242
|
"sl": "Sierra Leone",
|
|
243
|
-
"sg": "
|
|
244
|
-
"sk": "
|
|
245
|
-
"si": "
|
|
246
|
-
"sb": "Solomon
|
|
247
|
-
"so": "
|
|
248
|
-
"za": "
|
|
249
|
-
"ss": "
|
|
250
|
-
"es": "
|
|
243
|
+
"sg": "Singapore",
|
|
244
|
+
"sk": "Slovakia",
|
|
245
|
+
"si": "Slovenia",
|
|
246
|
+
"sb": "Solomon Islands",
|
|
247
|
+
"so": "Somalia",
|
|
248
|
+
"za": "South Africa",
|
|
249
|
+
"ss": "South Sudan",
|
|
250
|
+
"es": "Spain",
|
|
251
251
|
"lk": "Sri Lanka",
|
|
252
252
|
"sd": "Sudan",
|
|
253
|
-
"sr": "
|
|
254
|
-
"se": "
|
|
255
|
-
"ch": "
|
|
256
|
-
"sy": "
|
|
257
|
-
"tj": "
|
|
258
|
-
"tw": "
|
|
259
|
-
"tz": "
|
|
260
|
-
"th": "
|
|
261
|
-
"tl": "
|
|
253
|
+
"sr": "Suriname",
|
|
254
|
+
"se": "Sweden",
|
|
255
|
+
"ch": "Switzerland",
|
|
256
|
+
"sy": "Syrian Arab Republic",
|
|
257
|
+
"tj": "Tajikistan",
|
|
258
|
+
"tw": "Taiwan",
|
|
259
|
+
"tz": "Tanzania",
|
|
260
|
+
"th": "Thailand",
|
|
261
|
+
"tl": "Timor-Leste",
|
|
262
262
|
"tg": "Togo",
|
|
263
263
|
"to": "Tonga",
|
|
264
|
-
"tt": "Trinidad
|
|
265
|
-
"tn": "
|
|
266
|
-
"tr": "
|
|
267
|
-
"tm": "
|
|
264
|
+
"tt": "Trinidad and Tobago",
|
|
265
|
+
"tn": "Tunisia",
|
|
266
|
+
"tr": "Turkey",
|
|
267
|
+
"tm": "Turkmenistan",
|
|
268
268
|
"tv": "Tuvalu",
|
|
269
269
|
"ug": "Uganda",
|
|
270
|
-
"ua": "
|
|
271
|
-
"ae": "
|
|
272
|
-
"gb": "
|
|
273
|
-
"us": "
|
|
270
|
+
"ua": "Ukraine",
|
|
271
|
+
"ae": "United Arab Emirates",
|
|
272
|
+
"gb": "United Kingdom",
|
|
273
|
+
"us": "United States of America",
|
|
274
274
|
"uy": "Uruguay",
|
|
275
|
-
"uz": "
|
|
275
|
+
"uz": "Uzbekistan",
|
|
276
276
|
"vu": "Vanuatu",
|
|
277
277
|
"ve": "Venezuela",
|
|
278
|
-
"vn": "
|
|
278
|
+
"vn": "Viet Nam",
|
|
279
279
|
"ye": "Yemen",
|
|
280
|
-
"zm": "
|
|
281
|
-
"zw": "
|
|
280
|
+
"zm": "Zambia",
|
|
281
|
+
"zw": "Zimbabwe"
|
|
282
282
|
},
|
|
283
283
|
"calendar": {
|
|
284
284
|
"weekdaysLong":[
|
|
285
|
-
"
|
|
286
|
-
"
|
|
287
|
-
"
|
|
288
|
-
"
|
|
289
|
-
"
|
|
290
|
-
"
|
|
291
|
-
"
|
|
285
|
+
"Sunday",
|
|
286
|
+
"Monday",
|
|
287
|
+
"Tuesday",
|
|
288
|
+
"Wednesday",
|
|
289
|
+
"Thursday",
|
|
290
|
+
"Friday",
|
|
291
|
+
"Saturday"
|
|
292
292
|
],
|
|
293
293
|
"weekdaysShort":[
|
|
294
|
-
"
|
|
294
|
+
"Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"
|
|
295
295
|
],
|
|
296
296
|
"months":[
|
|
297
|
-
"
|
|
298
|
-
"
|
|
299
|
-
"
|
|
300
|
-
"
|
|
301
|
-
"
|
|
302
|
-
"
|
|
303
|
-
"
|
|
304
|
-
"
|
|
305
|
-
"
|
|
306
|
-
"
|
|
307
|
-
"
|
|
308
|
-
"
|
|
297
|
+
"January",
|
|
298
|
+
"February",
|
|
299
|
+
"March",
|
|
300
|
+
"April",
|
|
301
|
+
"May",
|
|
302
|
+
"June",
|
|
303
|
+
"July",
|
|
304
|
+
"August",
|
|
305
|
+
"September",
|
|
306
|
+
"October",
|
|
307
|
+
"November",
|
|
308
|
+
"December"
|
|
309
309
|
],
|
|
310
|
-
"firstDay":
|
|
311
|
-
"format": "DD/
|
|
310
|
+
"firstDay": 0,
|
|
311
|
+
"format": "MM/DD/YYYY"
|
|
312
312
|
}
|
|
313
|
-
}
|
|
313
|
+
}
|
package/dist/locales/tr/itd.json
CHANGED
|
@@ -49,7 +49,8 @@
|
|
|
49
49
|
"siteUsernameRule": "Sadece İngilizce küçük harfler, rakamlar ve semboller (-_.) kullanılabilir. Boşluk karakterine ve büyük harflere izin verilmez.",
|
|
50
50
|
"adminUsernameRule": "Sadece ingilizce harflerden ve rakamlardan oluşmalıdır. Semboller (-_. vs) ve boşluk karakteri kullanılamaz.",
|
|
51
51
|
"invalidURL": "Geçersiz URL",
|
|
52
|
-
"fieldMustBeDifferent": "Bu alan şunlarla aynı olmamalıdır: {{- fields}}"
|
|
52
|
+
"fieldMustBeDifferent": "Bu alan şunlarla aynı olmamalıdır: {{- fields}}",
|
|
53
|
+
"forbiddenWords": "Bu alan içerisinde bu kelimeyi kullanamazsınız."
|
|
53
54
|
},
|
|
54
55
|
"uploader": {
|
|
55
56
|
"header": "Bir resmi sürükleyip bırakın",
|