You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/schemas/json/phrase.json
+18-1Lines changed: 18 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -187,6 +187,13 @@
187
187
"locale_id": {
188
188
"$ref": "#/definitions/locale_id"
189
189
},
190
+
"locale_ids": {
191
+
"description": "List of locale IDs to be downloaded.",
192
+
"type": "array",
193
+
"items": {
194
+
"type": "string"
195
+
}
196
+
},
190
197
"include_empty_translations": {
191
198
"description": "Indicates whether keys without translations should be included in the output as well",
192
199
"type": "boolean",
@@ -233,9 +240,14 @@
233
240
"default": false
234
241
},
235
242
"fallback_locale_id": {
236
-
"description": "If a key has no translation in the locale being downloaded the translation in the fallback locale will be used. Provide the public ID of the locale that should be used as the fallback. Requires include_empty_translations to be set to true",
243
+
"description": "If a key has no translation in the locale being downloaded the translation in the fallback locale will be used. Provide the public ID of the locale that should be used as the fallback. Requires include_empty_translations to be set to true. Mutually exclusive with use_locale_fallback",
237
244
"type": "string"
238
245
},
246
+
"use_locale_fallback": {
247
+
"description": "If set to true the locale fallback (set in the locale's settings) will be used to fetch missing translations. Requires include_empty_translations to be set to true. Mutually exclusive with fallback_locale_id",
248
+
"type": "boolean",
249
+
"default": false
250
+
},
239
251
"custom_metadata_filters": {
240
252
"description": "Custom metadata filters. Provide the name of the metadata field and the value to filter by. Only keys with matching metadata will be included in the download",
241
253
"type": "object"
@@ -248,6 +260,11 @@
248
260
"description": "If a key name starts with the given prefix, the prefix will be removed from the key name in the files",
249
261
"type": "string"
250
262
},
263
+
"updated_since": {
264
+
"description": "Only keys updated since the given date (in ISO 8601 format) will be included in the download",
0 commit comments