You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$branch = 'branch_example'; // string | specify the branch to use
42
42
$tags = 'tags_example'; // string | List of tags separated by comma to be associated with the new keys contained in the upload.
43
43
$update_translations = True; // bool | Indicates whether existing translations should be updated with the file content.
44
+
$update_custom_metadata = true; // bool | Indicates whether existing custom metadata properties should be updated with the file content
44
45
$update_translation_keys = true; // bool | Pass `false` here to prevent new keys from being created and existing keys updated.
45
46
$update_translations_on_source_match = false; // bool | Update target translations only if the source translations of the uploaded multilingual file match the stored translations.
46
47
$update_descriptions = True; // bool | Existing key descriptions will be updated with the file content. Empty descriptions overwrite existing descriptions.
$translation_key_prefix = 'translation_key_prefix_example'; // string | This prefix will be added to all uploaded translation key names to prevent collisions. Use a meaningful prefix related to your project or file to keep key names organized.
echo 'Exception when calling UploadsApi->uploadCreate: ', $e->getMessage(), PHP_EOL;
@@ -78,6 +79,7 @@ Name | Type | Description | Notes
78
79
**branch** | **string**| specify the branch to use | [optional]
79
80
**tags** | **string**| List of tags separated by comma to be associated with the new keys contained in the upload. | [optional]
80
81
**update_translations** | **bool**| Indicates whether existing translations should be updated with the file content. | [optional]
82
+
**update_custom_metadata** | **bool**| Indicates whether existing custom metadata properties should be updated with the file content | [optional][default to true]
81
83
**update_translation_keys** | **bool**| Pass `false` here to prevent new keys from being created and existing keys updated. | [optional][default to true]
82
84
**update_translations_on_source_match** | **bool**| Update target translations only if the source translations of the uploaded multilingual file match the stored translations. | [optional][default to false]
83
85
**update_descriptions** | **bool**| Existing key descriptions will be updated with the file content. Empty descriptions overwrite existing descriptions. | [optional]
0 commit comments