Skip to content

Commit 8b0b8df

Browse files
author
Phrase
committed
1 parent aba0c7a commit 8b0b8df

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/UploadsApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ with phrase_api.ApiClient(configuration) as api_client:
4949
skip_unverification = True # bool | Indicates whether the upload should unverify updated translations.
5050
file_encoding = 'file_encoding_example' # str | Enforces a specific encoding on the file contents. Valid options are \\\"UTF-8\\\", \\\"UTF-16\\\" and \\\"ISO-8859-1\\\".
5151
locale_mapping = None # object | Mapping between locale names and translation columns. Required in some formats like CSV or XLSX.
52-
format_options = None # object | Additional options available for specific formats. See our format guide for complete list.
52+
format_options = None # object | Additional options available for specific formats. See our format guide for the [complete list](https://support.phrase.com/hc/en-us/articles/9652464547740-List-of-Supported-File-Types-Strings).
5353
autotranslate = True # bool | If set, translations for the uploaded language will be fetched automatically.
5454
mark_reviewed = True # bool | Indicated whether the imported translations should be marked as reviewed. This setting is available if the review workflow is enabled for the project.
5555
tag_only_affected_keys = False # bool | Indicates whether only keys affected (created or updated) by the upload should be tagged. The default is `false` (default to False)
@@ -84,7 +84,7 @@ Name | Type | Description | Notes
8484
**skip_unverification** | **bool**| Indicates whether the upload should unverify updated translations. | [optional]
8585
**file_encoding** | **str**| Enforces a specific encoding on the file contents. Valid options are \\\"UTF-8\\\", \\\"UTF-16\\\" and \\\"ISO-8859-1\\\". | [optional]
8686
**locale_mapping** | [**object**](object.md)| Mapping between locale names and translation columns. Required in some formats like CSV or XLSX. | [optional]
87-
**format_options** | [**object**](object.md)| Additional options available for specific formats. See our format guide for complete list. | [optional]
87+
**format_options** | [**object**](object.md)| Additional options available for specific formats. See our format guide for the [complete list](https://support.phrase.com/hc/en-us/articles/9652464547740-List-of-Supported-File-Types-Strings). | [optional]
8888
**autotranslate** | **bool**| If set, translations for the uploaded language will be fetched automatically. | [optional]
8989
**mark_reviewed** | **bool**| Indicated whether the imported translations should be marked as reviewed. This setting is available if the review workflow is enabled for the project. | [optional]
9090
**tag_only_affected_keys** | **bool**| Indicates whether only keys affected (created or updated) by the upload should be tagged. The default is `false` | [optional] [default to False]

phrase_api/api/uploads_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def upload_create(self, project_id, file, file_format, locale_id, **kwargs): #
6161
:param bool skip_unverification: Indicates whether the upload should unverify updated translations.
6262
:param str file_encoding: Enforces a specific encoding on the file contents. Valid options are \\\"UTF-8\\\", \\\"UTF-16\\\" and \\\"ISO-8859-1\\\".
6363
:param object locale_mapping: Mapping between locale names and translation columns. Required in some formats like CSV or XLSX.
64-
:param object format_options: Additional options available for specific formats. See our format guide for complete list.
64+
:param object format_options: Additional options available for specific formats. See our format guide for the [complete list](https://support.phrase.com/hc/en-us/articles/9652464547740-List-of-Supported-File-Types-Strings).
6565
:param bool autotranslate: If set, translations for the uploaded language will be fetched automatically.
6666
:param bool mark_reviewed: Indicated whether the imported translations should be marked as reviewed. This setting is available if the review workflow is enabled for the project.
6767
:param bool tag_only_affected_keys: Indicates whether only keys affected (created or updated) by the upload should be tagged. The default is `false`
@@ -106,7 +106,7 @@ def upload_create_with_http_info(self, project_id, file, file_format, locale_id,
106106
:param bool skip_unverification: Indicates whether the upload should unverify updated translations.
107107
:param str file_encoding: Enforces a specific encoding on the file contents. Valid options are \\\"UTF-8\\\", \\\"UTF-16\\\" and \\\"ISO-8859-1\\\".
108108
:param object locale_mapping: Mapping between locale names and translation columns. Required in some formats like CSV or XLSX.
109-
:param object format_options: Additional options available for specific formats. See our format guide for complete list.
109+
:param object format_options: Additional options available for specific formats. See our format guide for the [complete list](https://support.phrase.com/hc/en-us/articles/9652464547740-List-of-Supported-File-Types-Strings).
110110
:param bool autotranslate: If set, translations for the uploaded language will be fetched automatically.
111111
:param bool mark_reviewed: Indicated whether the imported translations should be marked as reviewed. This setting is available if the review workflow is enabled for the project.
112112
:param bool tag_only_affected_keys: Indicates whether only keys affected (created or updated) by the upload should be tagged. The default is `false`

0 commit comments

Comments
 (0)