Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions doc/compiled.json
Original file line number Diff line number Diff line change
Expand Up @@ -2301,6 +2301,10 @@
"type": "boolean",
"example": false
},
"fallback_for_unverified_translations": {
"type": "boolean",
"example": false
},
"autocomplete_job_enabled": {
"type": "boolean",
"example": false
Expand Down Expand Up @@ -2348,6 +2352,7 @@
"autotranslate_use_machine_translation": false,
"autotranslate_use_translation_memory": true,
"autotranslate_overwrite_unverified_translations": false,
"fallback_for_unverified_translations": false,
"autocomplete_job_enabled": false,
"default_encoding": "UTF-8",
"cldr_version": "legacy",
Expand Down Expand Up @@ -17935,6 +17940,11 @@
"type": "boolean",
"example": true
},
"fallback_for_unverified_translations": {
"description": "(Optional) When enabled, the fallback locale's translation is used on export for unverified translations in addition to empty ones. Requires a fallback locale to be configured on the locale.",
"type": "boolean",
"example": false
},
"autocomplete_job_enabled": {
"description": "(Optional) Enable autocomplete-job behavior so that newly created keys and locales are automatically added to in-progress jobs.",
"type": "boolean",
Expand Down Expand Up @@ -18259,6 +18269,11 @@
"type": "boolean",
"example": true
},
"fallback_for_unverified_translations": {
"description": "(Optional) When enabled, the fallback locale's translation is used on export for unverified translations in addition to empty ones. Requires a fallback locale to be configured on the locale.",
"type": "boolean",
"example": false
},
"default_encoding": {
"description": "(Optional) Sets the default encoding for Uploads. If you leave it empty, we will try to guess it automatically for you when you Upload a file. You can still override this value by setting the [`file_encoding`](/en/api/strings/uploads/upload-a-new-file) parameter for Uploads.",
"type": "string",
Expand Down
4 changes: 4 additions & 0 deletions paths/projects/create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,10 @@ requestBody:
description: "(Optional) Requires autotranslate_enabled to be true"
type: boolean
example: true
fallback_for_unverified_translations:
description: "(Optional) When enabled, the fallback locale's translation is used on export for unverified translations in addition to empty ones. Requires a fallback locale to be configured on the locale."
type: boolean
example: false
autocomplete_job_enabled:
description: "(Optional) Enable autocomplete-job behavior so that newly created keys and locales are automatically added to in-progress jobs."
type: boolean
Expand Down
4 changes: 4 additions & 0 deletions paths/projects/update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,10 @@ requestBody:
description: "(Optional) Requires autotranslate_enabled to be true"
type: boolean
example: true
fallback_for_unverified_translations:
description: "(Optional) When enabled, the fallback locale's translation is used on export for unverified translations in addition to empty ones. Requires a fallback locale to be configured on the locale."
type: boolean
example: false
default_encoding:
description: "(Optional) Sets the default encoding for Uploads. If you leave it empty, we will try to guess it automatically for you when you Upload a file. You can still override this value by setting the [`file_encoding`](/en/api/strings/uploads/upload-a-new-file) parameter for Uploads."
type: string
Expand Down
4 changes: 4 additions & 0 deletions schemas/project_details.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ project_details:
autotranslate_overwrite_unverified_translations:
type: boolean
example: false
fallback_for_unverified_translations:
type: boolean
example: false
autocomplete_job_enabled:
type: boolean
example: false
Expand Down Expand Up @@ -90,6 +93,7 @@ project_details:
autotranslate_use_machine_translation: false
autotranslate_use_translation_memory: true
autotranslate_overwrite_unverified_translations: false
fallback_for_unverified_translations: false
autocomplete_job_enabled: false
default_encoding: "UTF-8"
cldr_version: "legacy"
Expand Down
Loading