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
21 changes: 19 additions & 2 deletions doc/compiled.json
Original file line number Diff line number Diff line change
Expand Up @@ -2444,6 +2444,14 @@
"type": "string",
"example": "legacy"
},
"translation_keys_sort_collation": {
"type": "string",
"example": "unicode_ci",
"enum": [
"general_ci",
"unicode_ci"
]
},
"job_locking_enabled": {
"type": "boolean",
"example": false
Expand Down Expand Up @@ -2483,6 +2491,7 @@
"autocomplete_job_enabled": false,
"default_encoding": "UTF-8",
"cldr_version": "legacy",
"translation_keys_sort_collation": "unicode_ci",
"job_locking_enabled": false,
"placeholder_styles": [
"rails_i18n",
Expand Down Expand Up @@ -18168,7 +18177,11 @@
"translation_keys_sort_collation": {
"description": "(Optional) Collation used when sorting translation keys alphabetically. Defaults to `unicode_ci` when omitted.",
"type": "string",
"example": "unicode_ci"
"example": "unicode_ci",
"enum": [
"general_ci",
"unicode_ci"
]
},
"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.",
Expand Down Expand Up @@ -18540,7 +18553,11 @@
"translation_keys_sort_collation": {
"description": "(Optional) Collation used when sorting translation keys alphabetically.",
"type": "string",
"example": "unicode_ci"
"example": "unicode_ci",
"enum": [
"general_ci",
"unicode_ci"
]
},
"cldr_version": {
"description": "(Optional) CLDR plural-rule version used by the project. Pass `legacy` for pre-CLDR pluralization behaviour, or a CLDR version string such as `cldr48`. Also used as the default version for the ICU skeleton endpoint (`POST /icu/skeleton`) when its own `cldr_version` parameter is omitted.",
Expand Down
3 changes: 3 additions & 0 deletions paths/projects/create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,9 @@ requestBody:
description: "(Optional) Collation used when sorting translation keys alphabetically. Defaults to `unicode_ci` when omitted."
type: string
example: unicode_ci
enum:
- "general_ci"
- "unicode_ci"
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
3 changes: 3 additions & 0 deletions paths/projects/update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,9 @@ requestBody:
description: "(Optional) Collation used when sorting translation keys alphabetically."
type: string
example: unicode_ci
enum:
- "general_ci"
- "unicode_ci"
cldr_version:
description: >-
(Optional) CLDR plural-rule version used by the project. Pass
Expand Down
7 changes: 7 additions & 0 deletions schemas/project_details.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ project_details:
cldr_version:
type: string
example: "legacy"
translation_keys_sort_collation:
type: string
example: "unicode_ci"
enum:
- "general_ci"
- "unicode_ci"
job_locking_enabled:
type: boolean
example: false
Expand Down Expand Up @@ -97,6 +103,7 @@ project_details:
autocomplete_job_enabled: false
default_encoding: "UTF-8"
cldr_version: "legacy"
translation_keys_sort_collation: "unicode_ci"
job_locking_enabled: false
placeholder_styles:
- "rails_i18n"
Expand Down
Loading