weblate 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +5 -0
- data/COPYING +674 -0
- data/Gemfile +8 -0
- data/README.md +334 -0
- data/Rakefile +49 -0
- data/bin/console +11 -0
- data/bin/setup +8 -0
- data/bin/smoketest +14 -0
- data/bin/smoketest~ +0 -0
- data/docs/ActionEnum.md +15 -0
- data/docs/Addon.md +28 -0
- data/docs/AddonsApi.md +366 -0
- data/docs/AutoComponentList.md +20 -0
- data/docs/BasicUser.md +22 -0
- data/docs/BlankEnum.md +15 -0
- data/docs/CategoriesApi.md +520 -0
- data/docs/Category.md +30 -0
- data/docs/Change.md +42 -0
- data/docs/ChangesApi.md +163 -0
- data/docs/ColorEnum.md +15 -0
- data/docs/Component.md +146 -0
- data/docs/ComponentLanguageCodeStyle.md +49 -0
- data/docs/ComponentList.md +30 -0
- data/docs/ComponentListsApi.md +667 -0
- data/docs/ComponentsApi.md +1653 -0
- data/docs/ConflictsEnum.md +15 -0
- data/docs/DirectionEnum.md +15 -0
- data/docs/FileFormatEnum.md +15 -0
- data/docs/FrequencyEnum.md +15 -0
- data/docs/FuzzyEnum.md +15 -0
- data/docs/Group.md +40 -0
- data/docs/GroupsApi.md +1257 -0
- data/docs/Language.md +36 -0
- data/docs/LanguageCodeStyleEnum.md +15 -0
- data/docs/LanguagePlural.md +26 -0
- data/docs/LanguageSelectionEnum.md +15 -0
- data/docs/LanguagesApi.md +520 -0
- data/docs/LicenseEnum.md +15 -0
- data/docs/LockRequest.md +18 -0
- data/docs/Memory.md +34 -0
- data/docs/MemoryApi.md +448 -0
- data/docs/MergeStyleEnum.md +15 -0
- data/docs/MethodEnum.md +15 -0
- data/docs/Metrics.md +42 -0
- data/docs/MetricsApi.md +81 -0
- data/docs/NewLangEnum.md +15 -0
- data/docs/Notification.md +28 -0
- data/docs/NotificationEnum.md +15 -0
- data/docs/OperationEnum.md +15 -0
- data/docs/PaginatedAddonList.md +24 -0
- data/docs/PaginatedBasicUserList.md +24 -0
- data/docs/PaginatedCategoryList.md +24 -0
- data/docs/PaginatedChangeList.md +24 -0
- data/docs/PaginatedComponentList.md +24 -0
- data/docs/PaginatedComponentListList.md +24 -0
- data/docs/PaginatedGroupList.md +24 -0
- data/docs/PaginatedLanguageList.md +24 -0
- data/docs/PaginatedMemoryList.md +24 -0
- data/docs/PaginatedNotificationList.md +24 -0
- data/docs/PaginatedProjectList.md +24 -0
- data/docs/PaginatedRoleList.md +24 -0
- data/docs/PaginatedScreenshotList.md +24 -0
- data/docs/PaginatedTranslationList.md +24 -0
- data/docs/PaginatedUnitList.md +24 -0
- data/docs/PatchedAddon.md +28 -0
- data/docs/PatchedBasicUser.md +22 -0
- data/docs/PatchedCategory.md +30 -0
- data/docs/PatchedComponent.md +146 -0
- data/docs/PatchedComponentList.md +30 -0
- data/docs/PatchedGroup.md +40 -0
- data/docs/PatchedLanguage.md +36 -0
- data/docs/PatchedMemory.md +34 -0
- data/docs/PatchedNotification.md +28 -0
- data/docs/PatchedProject.md +58 -0
- data/docs/PatchedRole.md +24 -0
- data/docs/PatchedScreenshot.md +30 -0
- data/docs/PatchedUnitWrite.md +26 -0
- data/docs/PriorityEnum.md +15 -0
- data/docs/Project.md +58 -0
- data/docs/ProjectSelectionEnum.md +15 -0
- data/docs/ProjectsApi.md +1392 -0
- data/docs/RepoRequest.md +18 -0
- data/docs/Role.md +24 -0
- data/docs/RolesApi.md +448 -0
- data/docs/ScopeEnum.md +15 -0
- data/docs/Screenshot.md +30 -0
- data/docs/ScreenshotFile.md +18 -0
- data/docs/ScreenshotsApi.md +815 -0
- data/docs/SearchApi.md +75 -0
- data/docs/SourceEnum.md +15 -0
- data/docs/StateEnum.md +15 -0
- data/docs/TasksApi.md +145 -0
- data/docs/TextDirection.md +49 -0
- data/docs/Translation.md +80 -0
- data/docs/TranslationsApi.md +1028 -0
- data/docs/Unit.md +76 -0
- data/docs/UnitFlatLabels.md +24 -0
- data/docs/UnitLabels.md +24 -0
- data/docs/UnitWrite.md +26 -0
- data/docs/UnitsApi.md +376 -0
- data/docs/UploadRequest.md +28 -0
- data/docs/UploadRequestConflicts.md +49 -0
- data/docs/UploadRequestFuzzy.md +49 -0
- data/docs/UsersApi.md +1130 -0
- data/docs/VcsEnum.md +15 -0
- data/git_push.sh +57 -0
- data/lib/weblate/api/addons_api.rb +353 -0
- data/lib/weblate/api/categories_api.rb +495 -0
- data/lib/weblate/api/changes_api.rb +165 -0
- data/lib/weblate/api/component_lists_api.rb +642 -0
- data/lib/weblate/api/components_api.rb +1775 -0
- data/lib/weblate/api/groups_api.rb +1261 -0
- data/lib/weblate/api/languages_api.rb +495 -0
- data/lib/weblate/api/memory_api.rb +429 -0
- data/lib/weblate/api/metrics_api.rb +84 -0
- data/lib/weblate/api/projects_api.rb +1331 -0
- data/lib/weblate/api/roles_api.rb +429 -0
- data/lib/weblate/api/screenshots_api.rb +803 -0
- data/lib/weblate/api/search_api.rb +75 -0
- data/lib/weblate/api/tasks_api.rb +146 -0
- data/lib/weblate/api/translations_api.rb +1232 -0
- data/lib/weblate/api/units_api.rb +363 -0
- data/lib/weblate/api/users_api.rb +1104 -0
- data/lib/weblate/api_client.rb +437 -0
- data/lib/weblate/api_error.rb +58 -0
- data/lib/weblate/configuration.rb +392 -0
- data/lib/weblate/models/action_enum.rb +108 -0
- data/lib/weblate/models/addon.rb +314 -0
- data/lib/weblate/models/auto_component_list.rb +263 -0
- data/lib/weblate/models/basic_user.rb +292 -0
- data/lib/weblate/models/blank_enum.rb +39 -0
- data/lib/weblate/models/category.rb +361 -0
- data/lib/weblate/models/change.rb +408 -0
- data/lib/weblate/models/color_enum.rb +54 -0
- data/lib/weblate/models/component.rb +1377 -0
- data/lib/weblate/models/component_language_code_style.rb +106 -0
- data/lib/weblate/models/component_list.rb +366 -0
- data/lib/weblate/models/conflicts_enum.rb +41 -0
- data/lib/weblate/models/direction_enum.rb +40 -0
- data/lib/weblate/models/file_format_enum.rb +101 -0
- data/lib/weblate/models/frequency_enum.rb +43 -0
- data/lib/weblate/models/fuzzy_enum.rb +40 -0
- data/lib/weblate/models/group.rb +421 -0
- data/lib/weblate/models/language.rb +417 -0
- data/lib/weblate/models/language_code_style_enum.rb +51 -0
- data/lib/weblate/models/language_plural.rb +314 -0
- data/lib/weblate/models/language_selection_enum.rb +40 -0
- data/lib/weblate/models/license_enum.rb +677 -0
- data/lib/weblate/models/lock_request.rb +221 -0
- data/lib/weblate/models/memory.rb +329 -0
- data/lib/weblate/models/merge_style_enum.rb +41 -0
- data/lib/weblate/models/method_enum.rb +45 -0
- data/lib/weblate/models/metrics.rb +415 -0
- data/lib/weblate/models/new_lang_enum.rb +42 -0
- data/lib/weblate/models/notification.rb +323 -0
- data/lib/weblate/models/notification_enum.rb +60 -0
- data/lib/weblate/models/operation_enum.rb +43 -0
- data/lib/weblate/models/paginated_addon_list.rb +259 -0
- data/lib/weblate/models/paginated_basic_user_list.rb +259 -0
- data/lib/weblate/models/paginated_category_list.rb +259 -0
- data/lib/weblate/models/paginated_change_list.rb +259 -0
- data/lib/weblate/models/paginated_component_list.rb +259 -0
- data/lib/weblate/models/paginated_component_list_list.rb +259 -0
- data/lib/weblate/models/paginated_group_list.rb +259 -0
- data/lib/weblate/models/paginated_language_list.rb +259 -0
- data/lib/weblate/models/paginated_memory_list.rb +259 -0
- data/lib/weblate/models/paginated_notification_list.rb +259 -0
- data/lib/weblate/models/paginated_project_list.rb +259 -0
- data/lib/weblate/models/paginated_role_list.rb +259 -0
- data/lib/weblate/models/paginated_screenshot_list.rb +259 -0
- data/lib/weblate/models/paginated_translation_list.rb +259 -0
- data/lib/weblate/models/paginated_unit_list.rb +259 -0
- data/lib/weblate/models/patched_addon.rb +279 -0
- data/lib/weblate/models/patched_basic_user.rb +271 -0
- data/lib/weblate/models/patched_category.rb +319 -0
- data/lib/weblate/models/patched_component.rb +1242 -0
- data/lib/weblate/models/patched_component_list.rb +324 -0
- data/lib/weblate/models/patched_group.rb +365 -0
- data/lib/weblate/models/patched_language.rb +375 -0
- data/lib/weblate/models/patched_memory.rb +287 -0
- data/lib/weblate/models/patched_notification.rb +281 -0
- data/lib/weblate/models/patched_project.rb +472 -0
- data/lib/weblate/models/patched_role.rb +262 -0
- data/lib/weblate/models/patched_screenshot.rb +309 -0
- data/lib/weblate/models/patched_unit_write.rb +279 -0
- data/lib/weblate/models/priority_enum.rb +43 -0
- data/lib/weblate/models/project.rb +563 -0
- data/lib/weblate/models/project_selection_enum.rb +43 -0
- data/lib/weblate/models/repo_request.rb +243 -0
- data/lib/weblate/models/role.rb +290 -0
- data/lib/weblate/models/scope_enum.rb +43 -0
- data/lib/weblate/models/screenshot.rb +351 -0
- data/lib/weblate/models/screenshot_file.rb +221 -0
- data/lib/weblate/models/source_enum.rb +45 -0
- data/lib/weblate/models/state_enum.rb +43 -0
- data/lib/weblate/models/text_direction.rb +105 -0
- data/lib/weblate/models/translation.rb +760 -0
- data/lib/weblate/models/unit.rb +757 -0
- data/lib/weblate/models/unit_flat_labels.rb +315 -0
- data/lib/weblate/models/unit_labels.rb +315 -0
- data/lib/weblate/models/unit_write.rb +293 -0
- data/lib/weblate/models/upload_request.rb +307 -0
- data/lib/weblate/models/upload_request_conflicts.rb +105 -0
- data/lib/weblate/models/upload_request_fuzzy.rb +105 -0
- data/lib/weblate/models/vcs_enum.rb +46 -0
- data/lib/weblate/version.rb +15 -0
- data/lib/weblate.rb +135 -0
- data/manifest.scm +6 -0
- data/schema.patched.yaml +10113 -0
- data/schema.yaml +10116 -0
- data/sig/weblate.rbs +4 -0
- data/spec/api/addons_api_spec.rb +88 -0
- data/spec/api/categories_api_spec.rb +115 -0
- data/spec/api/changes_api_spec.rb +62 -0
- data/spec/api/component_lists_api_spec.rb +139 -0
- data/spec/api/components_api_spec.rb +307 -0
- data/spec/api/groups_api_spec.rb +236 -0
- data/spec/api/languages_api_spec.rb +115 -0
- data/spec/api/memory_api_spec.rb +104 -0
- data/spec/api/metrics_api_spec.rb +46 -0
- data/spec/api/projects_api_spec.rb +251 -0
- data/spec/api/roles_api_spec.rb +104 -0
- data/spec/api/screenshots_api_spec.rb +163 -0
- data/spec/api/search_api_spec.rb +45 -0
- data/spec/api/tasks_api_spec.rb +55 -0
- data/spec/api/translations_api_spec.rb +218 -0
- data/spec/api/units_api_spec.rb +93 -0
- data/spec/api/users_api_spec.rb +218 -0
- data/spec/models/action_enum_spec.rb +30 -0
- data/spec/models/addon_spec.rb +66 -0
- data/spec/models/auto_component_list_spec.rb +42 -0
- data/spec/models/basic_user_spec.rb +48 -0
- data/spec/models/blank_enum_spec.rb +30 -0
- data/spec/models/category_spec.rb +72 -0
- data/spec/models/change_spec.rb +108 -0
- data/spec/models/color_enum_spec.rb +30 -0
- data/spec/models/component_language_code_style_spec.rb +32 -0
- data/spec/models/component_list_spec.rb +72 -0
- data/spec/models/component_spec.rb +420 -0
- data/spec/models/conflicts_enum_spec.rb +30 -0
- data/spec/models/direction_enum_spec.rb +30 -0
- data/spec/models/file_format_enum_spec.rb +30 -0
- data/spec/models/frequency_enum_spec.rb +30 -0
- data/spec/models/fuzzy_enum_spec.rb +30 -0
- data/spec/models/group_spec.rb +102 -0
- data/spec/models/language_code_style_enum_spec.rb +30 -0
- data/spec/models/language_plural_spec.rb +60 -0
- data/spec/models/language_selection_enum_spec.rb +30 -0
- data/spec/models/language_spec.rb +90 -0
- data/spec/models/license_enum_spec.rb +30 -0
- data/spec/models/lock_request_spec.rb +36 -0
- data/spec/models/memory_spec.rb +84 -0
- data/spec/models/merge_style_enum_spec.rb +30 -0
- data/spec/models/method_enum_spec.rb +30 -0
- data/spec/models/metrics_spec.rb +108 -0
- data/spec/models/new_lang_enum_spec.rb +30 -0
- data/spec/models/notification_enum_spec.rb +30 -0
- data/spec/models/notification_spec.rb +66 -0
- data/spec/models/operation_enum_spec.rb +30 -0
- data/spec/models/paginated_addon_list_spec.rb +54 -0
- data/spec/models/paginated_basic_user_list_spec.rb +54 -0
- data/spec/models/paginated_category_list_spec.rb +54 -0
- data/spec/models/paginated_change_list_spec.rb +54 -0
- data/spec/models/paginated_component_list_list_spec.rb +54 -0
- data/spec/models/paginated_component_list_spec.rb +54 -0
- data/spec/models/paginated_group_list_spec.rb +54 -0
- data/spec/models/paginated_language_list_spec.rb +54 -0
- data/spec/models/paginated_memory_list_spec.rb +54 -0
- data/spec/models/paginated_notification_list_spec.rb +54 -0
- data/spec/models/paginated_project_list_spec.rb +54 -0
- data/spec/models/paginated_role_list_spec.rb +54 -0
- data/spec/models/paginated_screenshot_list_spec.rb +54 -0
- data/spec/models/paginated_translation_list_spec.rb +54 -0
- data/spec/models/paginated_unit_list_spec.rb +54 -0
- data/spec/models/patched_addon_spec.rb +66 -0
- data/spec/models/patched_basic_user_spec.rb +48 -0
- data/spec/models/patched_category_spec.rb +72 -0
- data/spec/models/patched_component_list_spec.rb +72 -0
- data/spec/models/patched_component_spec.rb +420 -0
- data/spec/models/patched_group_spec.rb +102 -0
- data/spec/models/patched_language_spec.rb +90 -0
- data/spec/models/patched_memory_spec.rb +84 -0
- data/spec/models/patched_notification_spec.rb +66 -0
- data/spec/models/patched_project_spec.rb +156 -0
- data/spec/models/patched_role_spec.rb +54 -0
- data/spec/models/patched_screenshot_spec.rb +72 -0
- data/spec/models/patched_unit_write_spec.rb +60 -0
- data/spec/models/priority_enum_spec.rb +30 -0
- data/spec/models/project_selection_enum_spec.rb +30 -0
- data/spec/models/project_spec.rb +156 -0
- data/spec/models/repo_request_spec.rb +36 -0
- data/spec/models/role_spec.rb +54 -0
- data/spec/models/scope_enum_spec.rb +30 -0
- data/spec/models/screenshot_file_spec.rb +36 -0
- data/spec/models/screenshot_spec.rb +72 -0
- data/spec/models/source_enum_spec.rb +30 -0
- data/spec/models/state_enum_spec.rb +30 -0
- data/spec/models/text_direction_spec.rb +32 -0
- data/spec/models/translation_spec.rb +222 -0
- data/spec/models/unit_flat_labels_spec.rb +54 -0
- data/spec/models/unit_labels_spec.rb +54 -0
- data/spec/models/unit_spec.rb +210 -0
- data/spec/models/unit_write_spec.rb +60 -0
- data/spec/models/upload_request_conflicts_spec.rb +32 -0
- data/spec/models/upload_request_fuzzy_spec.rb +32 -0
- data/spec/models/upload_request_spec.rb +66 -0
- data/spec/models/vcs_enum_spec.rb +30 -0
- data/spec/spec_helper.rb +111 -0
- data/weblate.gemspec +47 -0
- metadata +526 -0
data/docs/ChangesApi.md
ADDED
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
# Weblate::ChangesApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *https://hosted.weblate.org*
|
|
4
|
+
|
|
5
|
+
| Method | HTTP request | Description |
|
|
6
|
+
| ------ | ------------ | ----------- |
|
|
7
|
+
| [**changes_list**](ChangesApi.md#changes_list) | **GET** /changes/ | |
|
|
8
|
+
| [**changes_retrieve**](ChangesApi.md#changes_retrieve) | **GET** /changes/{id}/ | |
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## changes_list
|
|
12
|
+
|
|
13
|
+
> <PaginatedChangeList> changes_list(opts)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
Changes API.
|
|
18
|
+
|
|
19
|
+
### Examples
|
|
20
|
+
|
|
21
|
+
```ruby
|
|
22
|
+
require 'time'
|
|
23
|
+
require 'weblate'
|
|
24
|
+
# setup authorization
|
|
25
|
+
Weblate.configure do |config|
|
|
26
|
+
# Configure API key authorization: tokenAuth
|
|
27
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
28
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
29
|
+
# config.api_key_prefix['Authorization'] = 'Bearer'
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
api_instance = Weblate::ChangesApi.new
|
|
33
|
+
opts = {
|
|
34
|
+
action: [0], # Array<Integer> | * `0` - Resource updated * `1` - Translation completed * `2` - Translation changed * `5` - Translation added * `3` - Comment added * `4` - Suggestion added * `6` - Automatically translated * `7` - Suggestion accepted * `8` - Translation reverted * `9` - Translation uploaded * `13` - Source string added * `14` - Component locked * `15` - Component unlocked * `17` - Changes committed * `18` - Changes pushed * `19` - Repository reset * `20` - Repository merged * `21` - Repository rebased * `22` - Repository merge failed * `23` - Repository rebase failed * `28` - Repository push failed * `24` - Parsing failed * `25` - Translation removed * `26` - Suggestion removed * `27` - Translation replaced * `29` - Suggestion removed during cleanup * `30` - Source string changed * `31` - String added * `32` - Bulk status changed * `33` - Visibility changed * `34` - User added * `35` - User removed * `36` - Translation approved * `37` - Marked for edit * `38` - Component removed * `39` - Project removed * `41` - Project renamed * `42` - Component renamed * `43` - Moved component * `45` - Contributor joined * `46` - Announcement posted * `47` - Alert triggered * `48` - Language added * `49` - Language requested * `50` - Project created * `51` - Component created * `52` - User invited * `53` - Repository notification received * `54` - Translation replaced file by upload * `55` - License changed * `56` - Contributor agreement changed * `57` - Screenshot added * `58` - Screenshot uploaded * `59` - String updated in the repository * `60` - Add-on installed * `61` - Add-on configuration changed * `62` - Add-on uninstalled * `63` - String removed * `64` - Comment removed * `65` - Comment resolved * `66` - Explanation updated * `67` - Category removed * `68` - Category renamed * `69` - Category moved * `70` - Saving string failed * `71` - String added in the repository * `72` - String updated in the upload * `73` - String added in the upload * `74` - Translation updated by source upload * `75` - Component translation completed
|
|
35
|
+
page: 56, # Integer | A page number within the paginated result set.
|
|
36
|
+
page_size: 56, # Integer | Number of results to return per page.
|
|
37
|
+
timestamp_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time |
|
|
38
|
+
timestamp_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time |
|
|
39
|
+
user: 'user_example' # String |
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
begin
|
|
43
|
+
|
|
44
|
+
result = api_instance.changes_list(opts)
|
|
45
|
+
p result
|
|
46
|
+
rescue Weblate::ApiError => e
|
|
47
|
+
puts "Error when calling ChangesApi->changes_list: #{e}"
|
|
48
|
+
end
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
#### Using the changes_list_with_http_info variant
|
|
52
|
+
|
|
53
|
+
This returns an Array which contains the response data, status code and headers.
|
|
54
|
+
|
|
55
|
+
> <Array(<PaginatedChangeList>, Integer, Hash)> changes_list_with_http_info(opts)
|
|
56
|
+
|
|
57
|
+
```ruby
|
|
58
|
+
begin
|
|
59
|
+
|
|
60
|
+
data, status_code, headers = api_instance.changes_list_with_http_info(opts)
|
|
61
|
+
p status_code # => 2xx
|
|
62
|
+
p headers # => { ... }
|
|
63
|
+
p data # => <PaginatedChangeList>
|
|
64
|
+
rescue Weblate::ApiError => e
|
|
65
|
+
puts "Error when calling ChangesApi->changes_list_with_http_info: #{e}"
|
|
66
|
+
end
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
### Parameters
|
|
70
|
+
|
|
71
|
+
| Name | Type | Description | Notes |
|
|
72
|
+
| ---- | ---- | ----------- | ----- |
|
|
73
|
+
| **action** | [**Array<Integer>**](Integer.md) | * `0` - Resource updated * `1` - Translation completed * `2` - Translation changed * `5` - Translation added * `3` - Comment added * `4` - Suggestion added * `6` - Automatically translated * `7` - Suggestion accepted * `8` - Translation reverted * `9` - Translation uploaded * `13` - Source string added * `14` - Component locked * `15` - Component unlocked * `17` - Changes committed * `18` - Changes pushed * `19` - Repository reset * `20` - Repository merged * `21` - Repository rebased * `22` - Repository merge failed * `23` - Repository rebase failed * `28` - Repository push failed * `24` - Parsing failed * `25` - Translation removed * `26` - Suggestion removed * `27` - Translation replaced * `29` - Suggestion removed during cleanup * `30` - Source string changed * `31` - String added * `32` - Bulk status changed * `33` - Visibility changed * `34` - User added * `35` - User removed * `36` - Translation approved * `37` - Marked for edit * `38` - Component removed * `39` - Project removed * `41` - Project renamed * `42` - Component renamed * `43` - Moved component * `45` - Contributor joined * `46` - Announcement posted * `47` - Alert triggered * `48` - Language added * `49` - Language requested * `50` - Project created * `51` - Component created * `52` - User invited * `53` - Repository notification received * `54` - Translation replaced file by upload * `55` - License changed * `56` - Contributor agreement changed * `57` - Screenshot added * `58` - Screenshot uploaded * `59` - String updated in the repository * `60` - Add-on installed * `61` - Add-on configuration changed * `62` - Add-on uninstalled * `63` - String removed * `64` - Comment removed * `65` - Comment resolved * `66` - Explanation updated * `67` - Category removed * `68` - Category renamed * `69` - Category moved * `70` - Saving string failed * `71` - String added in the repository * `72` - String updated in the upload * `73` - String added in the upload * `74` - Translation updated by source upload * `75` - Component translation completed | [optional] |
|
|
74
|
+
| **page** | **Integer** | A page number within the paginated result set. | [optional] |
|
|
75
|
+
| **page_size** | **Integer** | Number of results to return per page. | [optional] |
|
|
76
|
+
| **timestamp_after** | **Time** | | [optional] |
|
|
77
|
+
| **timestamp_before** | **Time** | | [optional] |
|
|
78
|
+
| **user** | **String** | | [optional] |
|
|
79
|
+
|
|
80
|
+
### Return type
|
|
81
|
+
|
|
82
|
+
[**PaginatedChangeList**](PaginatedChangeList.md)
|
|
83
|
+
|
|
84
|
+
### Authorization
|
|
85
|
+
|
|
86
|
+
[tokenAuth](../README.md#tokenAuth)
|
|
87
|
+
|
|
88
|
+
### HTTP request headers
|
|
89
|
+
|
|
90
|
+
- **Content-Type**: Not defined
|
|
91
|
+
- **Accept**: application/json
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
## changes_retrieve
|
|
95
|
+
|
|
96
|
+
> <Change> changes_retrieve(id)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
Changes API.
|
|
101
|
+
|
|
102
|
+
### Examples
|
|
103
|
+
|
|
104
|
+
```ruby
|
|
105
|
+
require 'time'
|
|
106
|
+
require 'weblate'
|
|
107
|
+
# setup authorization
|
|
108
|
+
Weblate.configure do |config|
|
|
109
|
+
# Configure API key authorization: tokenAuth
|
|
110
|
+
config.api_key['Authorization'] = 'YOUR API KEY'
|
|
111
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
112
|
+
# config.api_key_prefix['Authorization'] = 'Bearer'
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
api_instance = Weblate::ChangesApi.new
|
|
116
|
+
id = 'id_example' # String |
|
|
117
|
+
|
|
118
|
+
begin
|
|
119
|
+
|
|
120
|
+
result = api_instance.changes_retrieve(id)
|
|
121
|
+
p result
|
|
122
|
+
rescue Weblate::ApiError => e
|
|
123
|
+
puts "Error when calling ChangesApi->changes_retrieve: #{e}"
|
|
124
|
+
end
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
#### Using the changes_retrieve_with_http_info variant
|
|
128
|
+
|
|
129
|
+
This returns an Array which contains the response data, status code and headers.
|
|
130
|
+
|
|
131
|
+
> <Array(<Change>, Integer, Hash)> changes_retrieve_with_http_info(id)
|
|
132
|
+
|
|
133
|
+
```ruby
|
|
134
|
+
begin
|
|
135
|
+
|
|
136
|
+
data, status_code, headers = api_instance.changes_retrieve_with_http_info(id)
|
|
137
|
+
p status_code # => 2xx
|
|
138
|
+
p headers # => { ... }
|
|
139
|
+
p data # => <Change>
|
|
140
|
+
rescue Weblate::ApiError => e
|
|
141
|
+
puts "Error when calling ChangesApi->changes_retrieve_with_http_info: #{e}"
|
|
142
|
+
end
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
### Parameters
|
|
146
|
+
|
|
147
|
+
| Name | Type | Description | Notes |
|
|
148
|
+
| ---- | ---- | ----------- | ----- |
|
|
149
|
+
| **id** | **String** | | |
|
|
150
|
+
|
|
151
|
+
### Return type
|
|
152
|
+
|
|
153
|
+
[**Change**](Change.md)
|
|
154
|
+
|
|
155
|
+
### Authorization
|
|
156
|
+
|
|
157
|
+
[tokenAuth](../README.md#tokenAuth)
|
|
158
|
+
|
|
159
|
+
### HTTP request headers
|
|
160
|
+
|
|
161
|
+
- **Content-Type**: Not defined
|
|
162
|
+
- **Accept**: application/json
|
|
163
|
+
|
data/docs/ColorEnum.md
ADDED
data/docs/Component.md
ADDED
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
# Weblate::Component
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **name** | **String** | Display name | |
|
|
8
|
+
| **slug** | **String** | Name used in URLs and filenames. | |
|
|
9
|
+
| **id** | **Integer** | | [readonly] |
|
|
10
|
+
| **source_language** | [**Language**](Language.md) | | [optional] |
|
|
11
|
+
| **project** | [**Project**](Project.md) | | [readonly] |
|
|
12
|
+
| **vcs** | [**VcsEnum**](VcsEnum.md) | Version control system to use to access your repository containing translations. You can also choose additional integration with third party providers to submit merge requests. * `gerrit` - Gerrit * `git` - Git * `git-force-push` - Git with force push * `github` - GitHub pull request * `gitlab` - GitLab merge request * `local` - No remote repository * `mercurial` - Mercurial * `subversion` - Subversion | [optional] |
|
|
13
|
+
| **repo** | **String** | | |
|
|
14
|
+
| **git_export** | **String** | URL of repository where users can fetch changes from Weblate | [optional] |
|
|
15
|
+
| **branch** | **String** | | [optional] |
|
|
16
|
+
| **push_branch** | **String** | | [optional] |
|
|
17
|
+
| **filemask** | **String** | Path of files to translate relative to repository root, use * instead of language code, for example: po/*.po or locale/*/LC_MESSAGES/django.po. | |
|
|
18
|
+
| **screenshot_filemask** | **String** | Path of screenshots relative to repository root, for example: docs/screenshots/*.png. | [optional] |
|
|
19
|
+
| **template** | **String** | Filename of translation base file, containing all strings and their source for monolingual translations. | [optional] |
|
|
20
|
+
| **edit_template** | **Boolean** | Whether users will be able to edit the base file for monolingual translations. | [optional] |
|
|
21
|
+
| **intermediate** | **String** | Filename of intermediate translation file. In most cases this is a translation file provided by developers and is used when creating actual source strings. | [optional] |
|
|
22
|
+
| **new_base** | **String** | Filename of file used for creating new translations. For gettext choose .pot file. | [optional] |
|
|
23
|
+
| **file_format** | [**FileFormatEnum**](FileFormatEnum.md) | | |
|
|
24
|
+
| **license** | [**LicenseEnum**](LicenseEnum.md) | | [optional] |
|
|
25
|
+
| **license_url** | **String** | | [readonly] |
|
|
26
|
+
| **agreement** | **String** | User agreement which needs to be approved before a user can translate this component. | [optional] |
|
|
27
|
+
| **web_url** | **String** | | [readonly] |
|
|
28
|
+
| **url** | **String** | | [readonly] |
|
|
29
|
+
| **repository_url** | **String** | | [readonly] |
|
|
30
|
+
| **translations_url** | **String** | | [readonly] |
|
|
31
|
+
| **statistics_url** | **String** | | [readonly] |
|
|
32
|
+
| **lock_url** | **String** | | [readonly] |
|
|
33
|
+
| **links_url** | **String** | | [readonly] |
|
|
34
|
+
| **changes_list_url** | **String** | | [readonly] |
|
|
35
|
+
| **task_url** | **String** | | [readonly] |
|
|
36
|
+
| **credits_url** | **String** | | [readonly] |
|
|
37
|
+
| **new_lang** | [**NewLangEnum**](NewLangEnum.md) | How to handle requests for creating new translations. * `contact` - Contact maintainers * `url` - Point to translation instructions URL * `add` - Create new language file * `none` - Disable adding new translations | [optional] |
|
|
38
|
+
| **language_code_style** | [**ComponentLanguageCodeStyle**](ComponentLanguageCodeStyle.md) | | [optional] |
|
|
39
|
+
| **push** | **String** | | [optional] |
|
|
40
|
+
| **check_flags** | **String** | Additional comma-separated flags to influence Weblate behavior. | [optional] |
|
|
41
|
+
| **priority** | [**PriorityEnum**](PriorityEnum.md) | Components with higher priority are offered first to translators. * `60` - Very high * `80` - High * `100` - Medium * `120` - Low * `140` - Very low | [optional] |
|
|
42
|
+
| **enforced_checks** | **Object** | | [optional] |
|
|
43
|
+
| **restricted** | **Boolean** | Restrict access to the component to only those explicitly given permission. | [optional] |
|
|
44
|
+
| **repoweb** | **String** | Link to repository browser, use {{branch}} for branch, {{filename}} and {{line}} as filename and line placeholders. You might want to strip leading directory by using {{filename|parentdir}}. | [optional] |
|
|
45
|
+
| **report_source_bugs** | **String** | E-mail address for reports on errors in source strings. Leave empty for no e-mails. | [optional] |
|
|
46
|
+
| **merge_style** | [**MergeStyleEnum**](MergeStyleEnum.md) | Define whether Weblate should merge the upstream repository or rebase changes onto it. * `merge` - Merge * `rebase` - Rebase * `merge_noff` - Merge without fast-forward | [optional] |
|
|
47
|
+
| **commit_message** | **String** | You can use template language for various info, please consult the documentation for more details. | [optional] |
|
|
48
|
+
| **add_message** | **String** | You can use template language for various info, please consult the documentation for more details. | [optional] |
|
|
49
|
+
| **delete_message** | **String** | You can use template language for various info, please consult the documentation for more details. | [optional] |
|
|
50
|
+
| **merge_message** | **String** | You can use template language for various info, please consult the documentation for more details. | [optional] |
|
|
51
|
+
| **addon_message** | **String** | You can use template language for various info, please consult the documentation for more details. | [optional] |
|
|
52
|
+
| **pull_message** | **String** | You can use template language for various info, please consult the documentation for more details. | [optional] |
|
|
53
|
+
| **allow_translation_propagation** | **Boolean** | Whether translation updates in other components will cause automatic translation in this one | [optional] |
|
|
54
|
+
| **manage_units** | **Boolean** | Enables adding and removing strings straight from Weblate. If your strings are extracted from the source code or managed externally you probably want to keep it disabled. | [optional] |
|
|
55
|
+
| **enable_suggestions** | **Boolean** | Whether to allow translation suggestions at all. | [optional] |
|
|
56
|
+
| **suggestion_voting** | **Boolean** | Users can only vote for suggestions and can’t make direct translations. | [optional] |
|
|
57
|
+
| **suggestion_autoaccept** | **Integer** | Automatically accept suggestions with this number of votes, use 0 to turn it off. | [optional] |
|
|
58
|
+
| **push_on_commit** | **Boolean** | Whether the repository should be pushed upstream on every commit. | [optional] |
|
|
59
|
+
| **commit_pending_age** | **Integer** | Time in hours after which any pending changes will be committed to the VCS. | [optional] |
|
|
60
|
+
| **auto_lock_error** | **Boolean** | Whether the component should be locked on repository errors. | [optional] |
|
|
61
|
+
| **language_regex** | **String** | Regular expression used to filter translation files when scanning for file mask. | [optional] |
|
|
62
|
+
| **key_filter** | **String** | Regular expression used to filter keys. This is only available for monolingual formats. | [optional] |
|
|
63
|
+
| **variant_regex** | **String** | Regular expression used to determine variants of a string. | [optional] |
|
|
64
|
+
| **zipfile** | **String** | | [optional] |
|
|
65
|
+
| **docfile** | **String** | | [optional] |
|
|
66
|
+
| **addons** | **Array<String>** | | [readonly] |
|
|
67
|
+
| **is_glossary** | **Boolean** | | [optional] |
|
|
68
|
+
| **glossary_color** | [**ColorEnum**](ColorEnum.md) | | [optional] |
|
|
69
|
+
| **disable_autoshare** | **Boolean** | | [optional] |
|
|
70
|
+
| **category** | **String** | | [optional] |
|
|
71
|
+
| **linked_component** | **String** | | [readonly] |
|
|
72
|
+
|
|
73
|
+
## Example
|
|
74
|
+
|
|
75
|
+
```ruby
|
|
76
|
+
require 'weblate'
|
|
77
|
+
|
|
78
|
+
instance = Weblate::Component.new(
|
|
79
|
+
name: null,
|
|
80
|
+
slug: null,
|
|
81
|
+
id: null,
|
|
82
|
+
source_language: null,
|
|
83
|
+
project: null,
|
|
84
|
+
vcs: null,
|
|
85
|
+
repo: null,
|
|
86
|
+
git_export: null,
|
|
87
|
+
branch: null,
|
|
88
|
+
push_branch: null,
|
|
89
|
+
filemask: null,
|
|
90
|
+
screenshot_filemask: null,
|
|
91
|
+
template: null,
|
|
92
|
+
edit_template: null,
|
|
93
|
+
intermediate: null,
|
|
94
|
+
new_base: null,
|
|
95
|
+
file_format: null,
|
|
96
|
+
license: null,
|
|
97
|
+
license_url: null,
|
|
98
|
+
agreement: null,
|
|
99
|
+
web_url: null,
|
|
100
|
+
url: null,
|
|
101
|
+
repository_url: null,
|
|
102
|
+
translations_url: null,
|
|
103
|
+
statistics_url: null,
|
|
104
|
+
lock_url: null,
|
|
105
|
+
links_url: null,
|
|
106
|
+
changes_list_url: null,
|
|
107
|
+
task_url: null,
|
|
108
|
+
credits_url: null,
|
|
109
|
+
new_lang: null,
|
|
110
|
+
language_code_style: null,
|
|
111
|
+
push: null,
|
|
112
|
+
check_flags: null,
|
|
113
|
+
priority: null,
|
|
114
|
+
enforced_checks: null,
|
|
115
|
+
restricted: null,
|
|
116
|
+
repoweb: null,
|
|
117
|
+
report_source_bugs: null,
|
|
118
|
+
merge_style: null,
|
|
119
|
+
commit_message: null,
|
|
120
|
+
add_message: null,
|
|
121
|
+
delete_message: null,
|
|
122
|
+
merge_message: null,
|
|
123
|
+
addon_message: null,
|
|
124
|
+
pull_message: null,
|
|
125
|
+
allow_translation_propagation: null,
|
|
126
|
+
manage_units: null,
|
|
127
|
+
enable_suggestions: null,
|
|
128
|
+
suggestion_voting: null,
|
|
129
|
+
suggestion_autoaccept: null,
|
|
130
|
+
push_on_commit: null,
|
|
131
|
+
commit_pending_age: null,
|
|
132
|
+
auto_lock_error: null,
|
|
133
|
+
language_regex: null,
|
|
134
|
+
key_filter: null,
|
|
135
|
+
variant_regex: null,
|
|
136
|
+
zipfile: null,
|
|
137
|
+
docfile: null,
|
|
138
|
+
addons: null,
|
|
139
|
+
is_glossary: null,
|
|
140
|
+
glossary_color: null,
|
|
141
|
+
disable_autoshare: null,
|
|
142
|
+
category: null,
|
|
143
|
+
linked_component: null
|
|
144
|
+
)
|
|
145
|
+
```
|
|
146
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Weblate::ComponentLanguageCodeStyle
|
|
2
|
+
|
|
3
|
+
## Class instance methods
|
|
4
|
+
|
|
5
|
+
### `openapi_one_of`
|
|
6
|
+
|
|
7
|
+
Returns the list of classes defined in oneOf.
|
|
8
|
+
|
|
9
|
+
#### Example
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
require 'weblate'
|
|
13
|
+
|
|
14
|
+
Weblate::ComponentLanguageCodeStyle.openapi_one_of
|
|
15
|
+
# =>
|
|
16
|
+
# [
|
|
17
|
+
# :'BlankEnum',
|
|
18
|
+
# :'LanguageCodeStyleEnum'
|
|
19
|
+
# ]
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### build
|
|
23
|
+
|
|
24
|
+
Find the appropriate object from the `openapi_one_of` list and casts the data into it.
|
|
25
|
+
|
|
26
|
+
#### Example
|
|
27
|
+
|
|
28
|
+
```ruby
|
|
29
|
+
require 'weblate'
|
|
30
|
+
|
|
31
|
+
Weblate::ComponentLanguageCodeStyle.build(data)
|
|
32
|
+
# => #<BlankEnum:0x00007fdd4aab02a0>
|
|
33
|
+
|
|
34
|
+
Weblate::ComponentLanguageCodeStyle.build(data_that_doesnt_match)
|
|
35
|
+
# => nil
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
#### Parameters
|
|
39
|
+
|
|
40
|
+
| Name | Type | Description |
|
|
41
|
+
| ---- | ---- | ----------- |
|
|
42
|
+
| **data** | **Mixed** | data to be matched against the list of oneOf items |
|
|
43
|
+
|
|
44
|
+
#### Return type
|
|
45
|
+
|
|
46
|
+
- `BlankEnum`
|
|
47
|
+
- `LanguageCodeStyleEnum`
|
|
48
|
+
- `nil` (if no type matches)
|
|
49
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Weblate::ComponentList
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **name** | **String** | Display name | |
|
|
8
|
+
| **slug** | **String** | Name used in URLs and filenames. | |
|
|
9
|
+
| **id** | **Integer** | | [readonly] |
|
|
10
|
+
| **show_dashboard** | **Boolean** | When enabled this component list will be shown as a tab on the dashboard | [optional] |
|
|
11
|
+
| **components** | **Array<String>** | | [readonly] |
|
|
12
|
+
| **auto_assign** | [**Array<AutoComponentList>**](AutoComponentList.md) | | [readonly] |
|
|
13
|
+
| **url** | **String** | | [readonly] |
|
|
14
|
+
|
|
15
|
+
## Example
|
|
16
|
+
|
|
17
|
+
```ruby
|
|
18
|
+
require 'weblate'
|
|
19
|
+
|
|
20
|
+
instance = Weblate::ComponentList.new(
|
|
21
|
+
name: null,
|
|
22
|
+
slug: null,
|
|
23
|
+
id: null,
|
|
24
|
+
show_dashboard: null,
|
|
25
|
+
components: null,
|
|
26
|
+
auto_assign: null,
|
|
27
|
+
url: null
|
|
28
|
+
)
|
|
29
|
+
```
|
|
30
|
+
|