-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy patharb.json
378 lines (378 loc) · 22.1 KB
/
arb.json
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
{
"$schema": "http://json-schema.org/schema",
"$id": "arb.json",
"title": "Product",
"description": "A product in the catalog",
"type": "object",
"patternProperties": {
"^@@x-.+$": {
"type": [
"string",
"number",
"integer",
"boolean"
],
"description": "A custom global attribute."
},
"^@(?!@).+$": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"text",
"image",
"css"
],
"description": "The type of resource. Possible values are \"text\", \"image\", or \"css\". Program should not rely on this attribute in run time. It is mainly for the localization tools."
},
"context": {
"type": "string",
"description": "The context in which this resource applies. Context is organized in hierarchy, and level separated by \":\". Tools can use this information to restore the tree structure from ARB's flat layout. When this piece of information is missing, it defaults to global."
},
"placeholders": {
"type": "object",
"patternProperties": {
"^.+$": {
"oneOf": [
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"String"
]
},
"example": {
"type": "string"
},
"description": {
"type": "string"
}
},
"description": "A named placeholder of type String.",
"additionalProperties": false
},
{
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"enum": [
"int",
"double",
"num"
],
"description": "The type of the parameter, either String, Object, int, double, num, or DateTime."
},
"format": {
"type": "string",
"enum": [
"compact",
"compactCurrency",
"compactSimpleCurrency",
"compactLong",
"currency",
"decimalPattern",
"decimalPatternDigits",
"decimalPercentPattern",
"percentPattern",
"scientificPattern",
"simpleCurrency"
],
"description": ""
},
"example": {
"type": "string"
},
"description": {
"type": "string"
},
"optionalParameters": {
"type": "object"
}
},
"description": "A number placeholder.",
"additionalProperties": false
},
{
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"enum": [
"DateTime"
],
"description": "The type of the parameter, either String, Object, int, double, num, or DateTime."
},
"format": {
"type": "string",
"description": "The formatters are the ones provided by the DateFormat class in Dart's package:intl."
},
"isCustomDateFormat": {
"oneOf": [
{
"type": "string",
"enum": [
"true",
"false"
]
},
{
"type": "boolean"
}
]
},
"example": {
"type": "string"
},
"description": {
"type": "string"
},
"optionalParameters": {
"type": "object"
}
},
"description": "A Date placeholder.",
"additionalProperties": false,
"anyOf": [
{
"required": [
"isCustomDateFormat"
],
"properties": {
"isCustomDateFormat": {
"oneOf": [
{
"type": "string",
"const": "true"
},
{
"type": "boolean",
"const": true
}
]
}
}
},
{
"required": [
"format"
],
"properties": {
"format": {
"type": "string",
"oneOf": [
{
"const": "d",
"examples": [],
"description": "DAY"
},
{
"const": "E",
"description": "ABBR_WEEKDAY"
},
{
"const": "EEEE",
"description": "WEEKDAY"
},
{
"const": "LLL",
"description": "ABBR_STANDALONE_MONTH"
},
{
"const": "LLLL",
"description": "STANDALONE_MONTH"
},
{
"const": "M",
"description": "NUM_MONTH"
},
{
"const": "Md",
"description": "NUM_MONTH_DAY"
},
{
"const": "MEd",
"description": "NUM_MONTH_WEEKDAY_DAY"
},
{
"const": "MMM",
"description": "ABBR_MONTH"
},
{
"const": "MMMd",
"description": "ABBR_MONTH_DAY"
},
{
"const": "MMMEd",
"description": "ABBR_MONTH_WEEKDAY_DAY"
},
{
"const": "MMMM",
"description": "MONTH"
},
{
"const": "MMMMd",
"description": "MONTH_DAY"
},
{
"const": "MMMMEEEEd",
"description": "MONTH_WEEKDAY_DAY"
},
{
"const": "QQQ",
"description": "ABBR_QUARTER"
},
{
"const": "QQQQ",
"description": "QUARTER"
},
{
"const": "y",
"description": "YEAR"
},
{
"const": "yM",
"description": "YEAR_NUM_MONTH"
},
{
"const": "yMd",
"description": "YEAR_NUM_MONTH_DAY"
},
{
"const": "yMEd",
"description": "YEAR_NUM_MONTH_WEEKDAY_DAY"
},
{
"const": "yMMM",
"description": "YEAR_ABBR_MONTH"
},
{
"const": "yMMMd",
"description": "YEAR_ABBR_MONTH_DAY"
},
{
"const": "yMMMEd",
"description": "YEAR_ABBR_MONTH_WEEKDAY_DAY"
},
{
"const": "yMMMM",
"description": "YEAR_MONTH"
},
{
"const": "yMMMMd",
"description": "YEAR_MONTH_DAY"
},
{
"const": "yMMMMEEEEd",
"description": "YEAR_MONTH_WEEKDAY_DAY"
},
{
"const": "yQQQ",
"description": "YEAR_ABBR_QUARTER"
},
{
"const": "yQQQQ",
"description": "YEAR_QUARTER"
},
{
"const": "H",
"description": "HOUR24"
},
{
"const": "Hm",
"description": "HOUR24_MINUTE"
},
{
"const": "Hms",
"description": "HOUR24_MINUTE_SECOND"
},
{
"const": "j",
"description": "HOUR"
},
{
"const": "jm",
"description": "HOUR_MINUTE"
},
{
"const": "jms",
"description": "HOUR_MINUTE_SECOND"
},
{
"const": "m",
"description": "MINUTE"
},
{
"const": "ms",
"description": "MINUTE_SECOND"
},
{
"const": "s",
"description": "SECOND"
}
],
"description": "The formatters are the ones provided by the DateFormat class in Dart's package:intl."
}
}
}
]
}
]
}
},
"description": "A map from placeholder id to placeholder properties, including description and example. Placeholder can be specified using number (as in \"{0}\") or name (as in \"{num}\"). Number starts from 0 and the corresponding argument(s) are passed directly as function arguments. Named arguments are provided through an map object that maps each name to its value.",
"additionalProperties": false
},
"description": {
"type": "string",
"description": "A short paragraph describing the resource and how it is being used by the app, and message that need to be passed to localization process and translators."
},
"comment":{
"type": "string",
"description": "A comment on this resource. This is not intended to be sent to translators."
}
},
"description": "Metadata for a message.",
"additionalProperties": false
},
"^(?!@@).+$": {
"type": "string",
"description": "The ID of a message"
}
},
"properties": {
"@@locale": {
"description": "The locale for which messages/resources are stored in this file.",
"type": "string"
},
"@@context": {
"description": "It describes (in text) the context in which all these resources apply.",
"type": "string"
},
"@@last_modified": {
"description": "The last modified time of this ARB file/data. It is presented in ISO8601 complete form with hour and minutes. Example like: 2011-09-08T09:42-07:00.",
"type": "string"
},
"@@author": {
"description": "The author of these messages. In the case of localized ARB files it can contain the names/details of the translator.",
"type": "string"
},
"@@comment": {
"description": "A top-level comment for this file. This is not intended to be sent to translators.",
"type": "string"
}
},
"required": [
"@@locale"
],
"additionalProperties": false
}