diff --git a/doc/compiled.json b/doc/compiled.json index ba504c34b..09e53b17b 100644 --- a/doc/compiled.json +++ b/doc/compiled.json @@ -2301,6 +2301,10 @@ "type": "boolean", "example": false }, + "fallback_for_unverified_translations": { + "type": "boolean", + "example": false + }, "autocomplete_job_enabled": { "type": "boolean", "example": false @@ -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", @@ -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", @@ -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", diff --git a/paths/projects/create.yaml b/paths/projects/create.yaml index 5d6d0e6b4..bbdb0dd65 100644 --- a/paths/projects/create.yaml +++ b/paths/projects/create.yaml @@ -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 diff --git a/paths/projects/update.yaml b/paths/projects/update.yaml index f1161b286..99ed617b2 100644 --- a/paths/projects/update.yaml +++ b/paths/projects/update.yaml @@ -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 diff --git a/schemas/project_details.yaml b/schemas/project_details.yaml index e72afd129..9b373a5c9 100644 --- a/schemas/project_details.yaml +++ b/schemas/project_details.yaml @@ -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 @@ -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"