Skip to content
Merged
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
25 changes: 25 additions & 0 deletions doc/compiled.json
Original file line number Diff line number Diff line change
Expand Up @@ -1688,6 +1688,18 @@
"language_ai_profile": {
"type": "string"
},
"unverify_new_translations": {
"type": "boolean",
"description": "Indicates that new translations for this locale are marked as unverified. Only applies to locales using the basic verification workflow. Part of the [Advanced Workflows](https://support.phrase.com/hc/en-us/articles/5784094755484) feature."
},
"unverify_updated_translations": {
"type": "boolean",
"description": "Indicates that updated translations for this locale are marked as unverified. Only applies to locales using the basic verification workflow. Part of the [Advanced Workflows](https://support.phrase.com/hc/en-us/articles/5784094755484) feature."
},
"unverify_on_source_changes": {
"type": "boolean",
"description": "Indicates that translations for this locale are marked as unverified when the source language has been changed."
},
"created_at": {
"type": "string",
"format": "date-time"
Expand Down Expand Up @@ -1724,6 +1736,9 @@
"code": "en-GB"
},
"language_ai_profile": "abcd1234abcd1234abcd1234abcd1234",
"unverify_new_translations": false,
"unverify_updated_translations": false,
"unverify_on_source_changes": false,
"created_at": "2015-01-28T09:52:53Z",
"updated_at": "2015-01-28T09:52:53Z"
}
Expand Down Expand Up @@ -9415,6 +9430,11 @@
"type": "boolean",
"example": null
},
"unverify_on_source_changes": {
"description": "Indicates that translations for this locale should be marked as unverified when the source language has been changed.",
"type": "boolean",
"example": null
},
"autotranslate": {
"description": "If set, translations for this locale will be fetched automatically, right after creation.",
"type": "boolean",
Expand Down Expand Up @@ -9640,6 +9660,11 @@
"type": "boolean",
"example": null
},
"unverify_on_source_changes": {
"description": "Indicates that translations for this locale should be marked as unverified when the source language has been changed.",
"type": "boolean",
"example": null
},
"autotranslate": {
"description": "If set, translations for this locale will be fetched automatically, right after creation.",
"type": "boolean",
Expand Down
4 changes: 4 additions & 0 deletions paths/locales/create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ requestBody:
description: Indicates that updated translations for this locale should be marked as unverified. Part of the [Advanced Workflows](https://support.phrase.com/hc/en-us/articles/5784094755484) feature.
type: boolean
example:
unverify_on_source_changes:
description: Indicates that translations for this locale should be marked as unverified when the source language has been changed.
type: boolean
example:
autotranslate:
description: If set, translations for this locale will be fetched automatically, right after creation.
type: boolean
Expand Down
4 changes: 4 additions & 0 deletions paths/locales/update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ requestBody:
description: Indicates that updated translations for this locale should be marked as unverified. Part of the [Advanced Workflows](https://support.phrase.com/hc/en-us/articles/5784094755484) feature.
type: boolean
example:
unverify_on_source_changes:
description: Indicates that translations for this locale should be marked as unverified when the source language has been changed.
type: boolean
example:
autotranslate:
description: If set, translations for this locale will be fetched automatically, right after creation.
type: boolean
Expand Down
12 changes: 12 additions & 0 deletions schemas/locale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ locale:
"$ref": "./locale_preview.yaml#/locale_preview"
language_ai_profile:
type: string
unverify_new_translations:
type: boolean
description: Indicates that new translations for this locale are marked as unverified. Only applies to locales using the basic verification workflow. Part of the [Advanced Workflows](https://support.phrase.com/hc/en-us/articles/5784094755484) feature.
unverify_updated_translations:
type: boolean
description: Indicates that updated translations for this locale are marked as unverified. Only applies to locales using the basic verification workflow. Part of the [Advanced Workflows](https://support.phrase.com/hc/en-us/articles/5784094755484) feature.
unverify_on_source_changes:
type: boolean
description: Indicates that translations for this locale are marked as unverified when the source language has been changed.
created_at:
type: string
format: date-time
Expand Down Expand Up @@ -58,5 +67,8 @@ locale:
name: en
code: en-GB
language_ai_profile: abcd1234abcd1234abcd1234abcd1234
unverify_new_translations: false
unverify_updated_translations: false
unverify_on_source_changes: false
created_at: '2015-01-28T09:52:53Z'
updated_at: '2015-01-28T09:52:53Z'
Loading