thestage 0.6.2__py3-none-any.whl → 0.6.3__py3-none-any.whl
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.
- thestage/.env +4 -5
- thestage/__init__.py +3 -3
- thestage/__main__.py +9 -9
- thestage/cli_command.py +56 -56
- thestage/cli_command_helper.py +51 -51
- thestage/color_scheme/color_scheme.py +7 -7
- thestage/config/__init__.py +18 -18
- thestage/config/config_storage.py +5 -5
- thestage/config/env_base.py +7 -7
- thestage/controllers/__init__.py +0 -0
- thestage/controllers/base_controller.py +67 -67
- thestage/controllers/config_controller.py +137 -137
- thestage/controllers/container_controller.py +389 -389
- thestage/controllers/instance_controller.py +183 -183
- thestage/controllers/project_controller.py +810 -810
- thestage/controllers/utils_controller.py +32 -32
- thestage/debug_main.dist.py +28 -28
- thestage/entities/__init__.py +0 -0
- thestage/entities/container.py +17 -17
- thestage/entities/enums/__init__.py +0 -0
- thestage/entities/enums/order_direction_type.py +6 -6
- thestage/entities/enums/shell_type.py +7 -7
- thestage/entities/enums/tail_output_type.py +6 -6
- thestage/entities/enums/yes_no_response.py +7 -7
- thestage/entities/file_item.py +27 -27
- thestage/entities/project_inference_simulator.py +18 -18
- thestage/entities/project_inference_simulator_model.py +16 -16
- thestage/entities/project_task.py +19 -19
- thestage/entities/rented_instance.py +19 -19
- thestage/entities/self_hosted_instance.py +18 -18
- thestage/exceptions/__init__.py +0 -0
- thestage/exceptions/auth_exception.py +6 -6
- thestage/exceptions/base_exception.py +13 -13
- thestage/exceptions/business_logic_exception.py +6 -6
- thestage/exceptions/config_exception.py +6 -6
- thestage/exceptions/file_system_exception.py +6 -6
- thestage/exceptions/git_access_exception.py +17 -17
- thestage/exceptions/remote_server_exception.py +24 -24
- thestage/git/ProgressPrinter.py +22 -22
- thestage/helpers/__init__.py +0 -0
- thestage/helpers/error_handler.py +115 -115
- thestage/helpers/exception_hook.py +14 -14
- thestage/helpers/logger/__init__.py +0 -0
- thestage/helpers/logger/app_logger.py +50 -50
- thestage/helpers/ssh_util.py +38 -38
- thestage/i18n/en_GB/messages.po +947 -947
- thestage/i18n/translation.py +9 -9
- thestage/main.py +36 -36
- thestage/services/.env +6 -6
- thestage/services/__init__.py +0 -0
- thestage/services/abstract_mapper.py +9 -9
- thestage/services/abstract_service.py +87 -87
- thestage/services/app_config_service.py +52 -52
- thestage/services/clients/__init__.py +0 -0
- thestage/services/clients/git/__init__.py +0 -0
- thestage/services/clients/git/git_client.py +436 -436
- thestage/services/clients/thestage_api/__init__.py +0 -0
- thestage/services/clients/thestage_api/api_client.py +718 -718
- thestage/services/clients/thestage_api/core/api_client_core.py +108 -108
- thestage/services/clients/thestage_api/core/http_client_exception.py +12 -12
- thestage/services/clients/thestage_api/dtos/__init__.py +0 -0
- thestage/services/clients/thestage_api/dtos/base_response.py +13 -13
- thestage/services/clients/thestage_api/dtos/cloud_provider_region.py +19 -19
- thestage/services/clients/thestage_api/dtos/container_param_request.py +11 -11
- thestage/services/clients/thestage_api/dtos/container_response.py +67 -67
- thestage/services/clients/thestage_api/dtos/docker_container_assigned_device.py +10 -10
- thestage/services/clients/thestage_api/dtos/docker_container_controller/docker_container_list_request.py +13 -13
- thestage/services/clients/thestage_api/dtos/docker_container_controller/docker_container_list_response.py +13 -13
- thestage/services/clients/thestage_api/dtos/docker_container_mapping.py +10 -10
- thestage/services/clients/thestage_api/dtos/entity_filter_request.py +14 -14
- thestage/services/clients/thestage_api/dtos/enums/__init__.py +0 -0
- thestage/services/clients/thestage_api/dtos/enums/container_pending_action.py +10 -10
- thestage/services/clients/thestage_api/dtos/enums/container_status.py +17 -17
- thestage/services/clients/thestage_api/dtos/enums/cpu_type.py +8 -8
- thestage/services/clients/thestage_api/dtos/enums/currency_type.py +10 -10
- thestage/services/clients/thestage_api/dtos/enums/daemon_status.py +9 -9
- thestage/services/clients/thestage_api/dtos/enums/disk_type.py +7 -7
- thestage/services/clients/thestage_api/dtos/enums/drive_type.py +7 -7
- thestage/services/clients/thestage_api/dtos/enums/gpu_name.py +8 -8
- thestage/services/clients/thestage_api/dtos/enums/inference_model_status.py +9 -9
- thestage/services/clients/thestage_api/dtos/enums/inference_simulator_status.py +15 -15
- thestage/services/clients/thestage_api/dtos/enums/instance_rented_status.py +17 -17
- thestage/services/clients/thestage_api/dtos/enums/instance_type.py +7 -7
- thestage/services/clients/thestage_api/dtos/enums/location_region.py +11 -11
- thestage/services/clients/thestage_api/dtos/enums/power_status.py +10 -10
- thestage/services/clients/thestage_api/dtos/enums/provider_name.py +11 -11
- thestage/services/clients/thestage_api/dtos/enums/selfhosted_status.py +10 -10
- thestage/services/clients/thestage_api/dtos/enums/task_execution_status.py +12 -12
- thestage/services/clients/thestage_api/dtos/enums/task_status.py +12 -12
- thestage/services/clients/thestage_api/dtos/frontend_status.py +10 -10
- thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_instance_request.py +13 -13
- thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_instance_response.py +13 -13
- thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_sagemaker_request.py +12 -12
- thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_sagemaker_response.py +12 -12
- thestage/services/clients/thestage_api/dtos/inference_controller/get_inference_simulator_request.py +10 -10
- thestage/services/clients/thestage_api/dtos/inference_controller/get_inference_simulator_response.py +13 -13
- thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_list_for_project_request.py +14 -14
- thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_list_for_project_response.py +12 -12
- thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_model_list_for_project_request.py +12 -12
- thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_model_list_for_project_response.py +13 -13
- thestage/services/clients/thestage_api/dtos/inference_simulator_model_response.py +11 -11
- thestage/services/clients/thestage_api/dtos/inference_simulator_response.py +11 -11
- thestage/services/clients/thestage_api/dtos/installed_service.py +17 -17
- thestage/services/clients/thestage_api/dtos/instance_detected_gpus.py +20 -20
- thestage/services/clients/thestage_api/dtos/instance_rented_response.py +71 -71
- thestage/services/clients/thestage_api/dtos/logging_controller/docker_container_log_stream_request.py +7 -7
- thestage/services/clients/thestage_api/dtos/logging_controller/log_polling_request.py +13 -13
- thestage/services/clients/thestage_api/dtos/logging_controller/log_polling_response.py +14 -14
- thestage/services/clients/thestage_api/dtos/logging_controller/task_log_stream_request.py +7 -7
- thestage/services/clients/thestage_api/dtos/logging_controller/user_logs_query_request.py +21 -21
- thestage/services/clients/thestage_api/dtos/logging_controller/user_logs_query_response.py +14 -14
- thestage/services/clients/thestage_api/dtos/paginated_entity_list.py +11 -11
- thestage/services/clients/thestage_api/dtos/pagination_data.py +10 -10
- thestage/services/clients/thestage_api/dtos/price_definition.py +14 -14
- thestage/services/clients/thestage_api/dtos/project_controller/project_get_deploy_ssh_key_request.py +7 -7
- thestage/services/clients/thestage_api/dtos/project_controller/project_get_deploy_ssh_key_response.py +10 -10
- thestage/services/clients/thestage_api/dtos/project_controller/project_push_inference_simulator_model_request.py +8 -8
- thestage/services/clients/thestage_api/dtos/project_controller/project_push_inference_simulator_model_response.py +6 -6
- thestage/services/clients/thestage_api/dtos/project_controller/project_run_task_request.py +15 -15
- thestage/services/clients/thestage_api/dtos/project_controller/project_run_task_response.py +10 -10
- thestage/services/clients/thestage_api/dtos/project_controller/project_start_inference_simulator_request.py +13 -13
- thestage/services/clients/thestage_api/dtos/project_controller/project_start_inference_simulator_response.py +10 -10
- thestage/services/clients/thestage_api/dtos/project_response.py +32 -32
- thestage/services/clients/thestage_api/dtos/selfhosted_instance_response.py +56 -56
- thestage/services/clients/thestage_api/dtos/sftp_path_helper.py +13 -13
- thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_key_to_user_request.py +8 -8
- thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_key_to_user_response.py +11 -11
- thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_public_key_to_instance_request.py +8 -8
- thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_public_key_to_instance_response.py +11 -11
- thestage/services/clients/thestage_api/dtos/ssh_key_controller/is_user_has_public_ssh_key_request.py +7 -7
- thestage/services/clients/thestage_api/dtos/ssh_key_controller/is_user_has_public_ssh_key_response.py +12 -12
- thestage/services/clients/thestage_api/dtos/task_controller/task_list_for_project_request.py +10 -10
- thestage/services/clients/thestage_api/dtos/task_controller/task_list_for_project_response.py +12 -12
- thestage/services/clients/thestage_api/dtos/task_controller/task_status_localized_map_response.py +9 -9
- thestage/services/clients/thestage_api/dtos/task_controller/task_view_response.py +12 -12
- thestage/services/clients/thestage_api/dtos/user_controller/user_profile.py +12 -12
- thestage/services/clients/thestage_api/dtos/validate_token_response.py +11 -11
- thestage/services/config_provider/__init__.py +0 -0
- thestage/services/config_provider/config_provider.py +237 -237
- thestage/services/connect/connect_service.py +193 -196
- thestage/services/connect/dto/remote_server_config.py +9 -9
- thestage/services/container/__init__.py +0 -0
- thestage/services/container/container_service.py +374 -374
- thestage/services/container/mapper/__init__.py +0 -0
- thestage/services/container/mapper/container_mapper.py +30 -30
- thestage/services/core_files/config_entity.py +26 -26
- thestage/services/filesystem_service.py +133 -133
- thestage/services/instance/__init__.py +0 -0
- thestage/services/instance/instance_service.py +303 -303
- thestage/services/instance/mapper/__init__.py +0 -0
- thestage/services/instance/mapper/instance_mapper.py +24 -24
- thestage/services/instance/mapper/selfhosted_mapper.py +33 -33
- thestage/services/logging/byte_print_style.py +5 -5
- thestage/services/logging/dto/log_message.py +15 -15
- thestage/services/logging/dto/log_type.py +6 -6
- thestage/services/logging/exception/log_polling_exception.py +6 -6
- thestage/services/logging/logging_constants.py +3 -3
- thestage/services/logging/logging_service.py +367 -367
- thestage/services/project/__init__.py +0 -0
- thestage/services/project/dto/inference_simulator_dto.py +22 -22
- thestage/services/project/dto/inference_simulator_model_dto.py +20 -20
- thestage/services/project/dto/project_config.py +14 -14
- thestage/services/project/mapper/__init__.py +0 -0
- thestage/services/project/mapper/project_inference_simulator_mapper.py +21 -21
- thestage/services/project/mapper/project_inference_simulator_model_mapper.py +21 -21
- thestage/services/project/mapper/project_task_mapper.py +22 -22
- thestage/services/project/project_service.py +1253 -1253
- thestage/services/remote_server_service.py +609 -609
- thestage/services/service_factory.py +97 -97
- thestage/services/task/dto/task_dto.py +40 -40
- thestage/services/validation_service.py +61 -61
- {thestage-0.6.2.dist-info → thestage-0.6.3.dist-info}/LICENSE.txt +12 -12
- {thestage-0.6.2.dist-info → thestage-0.6.3.dist-info}/METADATA +3 -2
- thestage-0.6.3.dist-info/RECORD +176 -0
- {thestage-0.6.2.dist-info → thestage-0.6.3.dist-info}/WHEEL +1 -1
- thestage-0.6.2.dist-info/RECORD +0 -176
- {thestage-0.6.2.dist-info → thestage-0.6.3.dist-info}/entry_points.txt +0 -0
thestage/i18n/en_GB/messages.po
CHANGED
|
@@ -1,947 +1,947 @@
|
|
|
1
|
-
msgid ""
|
|
2
|
-
msgstr ""
|
|
3
|
-
"Project-Id-Version: \n"
|
|
4
|
-
"Report-Msgid-Bugs-To: \n"
|
|
5
|
-
"Last-Translator: \n"
|
|
6
|
-
"Language-Team: \n"
|
|
7
|
-
"MIME-Version: 1.0\n"
|
|
8
|
-
"Content-Type: text/plain; charset=UTF-8\n"
|
|
9
|
-
"Content-Transfer-Encoding: 8bit\n"
|
|
10
|
-
"POT-Creation-Date: 2024-06-06T15:55:19+00:00\n"
|
|
11
|
-
"PO-Revision-Date: 2024-06-06T15:55:19+00:00\n"
|
|
12
|
-
"Language: \n"
|
|
13
|
-
|
|
14
|
-
# Branch: master
|
|
15
|
-
#: tsr/controllers/base_controller.py
|
|
16
|
-
#~ msgid "Show the application's version and exit."
|
|
17
|
-
#~ msgstr "Display the application's version and exit"
|
|
18
|
-
|
|
19
|
-
# Branch: feature/add_new_method_for_containers
|
|
20
|
-
#: tsr/controllers/base_controller.py
|
|
21
|
-
msgid "Help change some config items"
|
|
22
|
-
msgstr "Help with modifying configuration items"
|
|
23
|
-
|
|
24
|
-
# Branch: feature/add_new_method_for_containers
|
|
25
|
-
#: tsr/controllers/base_controller.py
|
|
26
|
-
msgid "Full path for working directory"
|
|
27
|
-
msgstr "Full path for working directory"
|
|
28
|
-
|
|
29
|
-
# Branch: feature/add_new_method_for_containers
|
|
30
|
-
#: tsr/controllers/base_controller.py
|
|
31
|
-
msgid "If you want initialize change token"
|
|
32
|
-
msgstr "Change API token"
|
|
33
|
-
|
|
34
|
-
# Branch: feature/add_new_method_for_containers
|
|
35
|
-
#: tsr/controllers/base_controller.py
|
|
36
|
-
msgid "Help clear env, after update command cli"
|
|
37
|
-
msgstr "Help with clearing environment after updating CLI"
|
|
38
|
-
|
|
39
|
-
# Branch: feature/add_new_method_for_containers
|
|
40
|
-
#: tsr/helpers/error_handler.py
|
|
41
|
-
msgid "We have error on working with file system - %error_message%"
|
|
42
|
-
msgstr "File system error: %error_message%"
|
|
43
|
-
|
|
44
|
-
# Branch: feature/add_new_method_for_containers
|
|
45
|
-
#: tsr/helpers/error_handler.py
|
|
46
|
-
msgid "Please open this repo url %git_url% and 'Accept invitation', or check your access to repository"
|
|
47
|
-
msgstr "Please visit %git_url% to accept the invitation or verify your repository access"
|
|
48
|
-
|
|
49
|
-
# Branch: feature/add_new_method_for_containers
|
|
50
|
-
#: tsr/helpers/error_handler.py
|
|
51
|
-
msgid "Error git command - %git_status% - %git_error%"
|
|
52
|
-
msgstr "Error in Git command: %git_status% - %git_error%"
|
|
53
|
-
|
|
54
|
-
# Branch: feature/add_new_method_for_containers
|
|
55
|
-
#: tsr/helpers/error_handler.py
|
|
56
|
-
msgid "Auth exception, change token"
|
|
57
|
-
msgstr "Authentication exception: please update your API token"
|
|
58
|
-
|
|
59
|
-
# Branch: feature/add_new_method_for_containers
|
|
60
|
-
#: tsr/helpers/error_handler.py
|
|
61
|
-
msgid "We have error on business logic, please connect with developer"
|
|
62
|
-
msgstr "Business logic error: please contact TheStage AI team for assistance"
|
|
63
|
-
|
|
64
|
-
# Branch: feature/add_new_method_for_containers
|
|
65
|
-
#: tsr/helpers/error_handler.py
|
|
66
|
-
msgid "We have error on working with config - %error_message%"
|
|
67
|
-
msgstr "Configuration error: %error_message%"
|
|
68
|
-
|
|
69
|
-
# Branch: feature/add_new_method_for_containers
|
|
70
|
-
#: tsr/helpers/error_handler.py
|
|
71
|
-
msgid "Undefined utility error"
|
|
72
|
-
msgstr "Undefined error in utility"
|
|
73
|
-
|
|
74
|
-
# Branch: feature/add_new_method_for_containers
|
|
75
|
-
#: tsr/controllers/instance_controller.py
|
|
76
|
-
msgid "Help working with rented instances"
|
|
77
|
-
msgstr "Help with rented server instances"
|
|
78
|
-
|
|
79
|
-
# Branch: feature/add_new_method_for_containers
|
|
80
|
-
#: tsr/controllers/instance_controller.py
|
|
81
|
-
#: tsr/controllers/container_controller.py
|
|
82
|
-
#: tsr/controllers/sketch_controller.py
|
|
83
|
-
#: tsr/controllers/storage_controller.py
|
|
84
|
-
msgid "Count row in table"
|
|
85
|
-
msgstr "Number of rows in table"
|
|
86
|
-
|
|
87
|
-
# Branch: feature/add_new_method_for_containers
|
|
88
|
-
#: tsr/controllers/instance_controller.py
|
|
89
|
-
#: tsr/controllers/container_controller.py
|
|
90
|
-
#: tsr/controllers/sketch_controller.py
|
|
91
|
-
#: tsr/controllers/storage_controller.py
|
|
92
|
-
msgid "Page number"
|
|
93
|
-
msgstr "Page number"
|
|
94
|
-
|
|
95
|
-
# Branch: feature/add_new_method_for_containers
|
|
96
|
-
#: tsr/controllers/instance_controller.py
|
|
97
|
-
#: tsr/controllers/container_controller.py
|
|
98
|
-
#: tsr/controllers/sketch_controller.py
|
|
99
|
-
#: tsr/controllers/storage_controller.py
|
|
100
|
-
msgid "Start process with default values, without future dialog"
|
|
101
|
-
msgstr "Start process with default values, bypass further prompts"
|
|
102
|
-
|
|
103
|
-
# Branch: feature/add_new_method_for_containers
|
|
104
|
-
#: tsr/controllers/instance_controller.py
|
|
105
|
-
#: tsr/controllers/container_controller.py
|
|
106
|
-
#: tsr/controllers/sketch_controller.py
|
|
107
|
-
#: tsr/controllers/storage_controller.py
|
|
108
|
-
msgid "This folder is not initialize, please doing init or clone"
|
|
109
|
-
msgstr "Folder not initialized: please initialize or clone it"
|
|
110
|
-
|
|
111
|
-
# Branch: feature/add_new_method_for_containers
|
|
112
|
-
#: tsr/controllers/instance_controller.py
|
|
113
|
-
#: tsr/controllers/sketch_controller.py
|
|
114
|
-
msgid "List runs done"
|
|
115
|
-
msgstr "Fetching run list completed"
|
|
116
|
-
|
|
117
|
-
# Branch: feature/add_new_method_for_containers
|
|
118
|
-
#: tsr/controllers/base_controller.py
|
|
119
|
-
msgid "%app_name% v%version%"
|
|
120
|
-
msgstr "Application: %app_name% Version: %version%"
|
|
121
|
-
|
|
122
|
-
# Branch: feature/add_new_method_for_containers
|
|
123
|
-
#: tsr/controllers/container_controller.py
|
|
124
|
-
msgid "Help working with containers"
|
|
125
|
-
msgstr "Help with container management"
|
|
126
|
-
|
|
127
|
-
# Branch: feature/add_new_method_for_containers
|
|
128
|
-
#: tsr/controllers/container_controller.py
|
|
129
|
-
msgid "List containers done"
|
|
130
|
-
msgstr "Fetching container list completed"
|
|
131
|
-
|
|
132
|
-
# Branch: feature/add_new_method_for_containers
|
|
133
|
-
#: tsr/controllers/sketch_controller.py
|
|
134
|
-
msgid "Help working with sketches"
|
|
135
|
-
msgstr "Help with sketch management"
|
|
136
|
-
|
|
137
|
-
# Branch: feature/add_new_method_for_containers
|
|
138
|
-
#: tsr/controllers/sketch_controller.py
|
|
139
|
-
msgid "Slug for sketch"
|
|
140
|
-
msgstr "Enter slug for sketch"
|
|
141
|
-
|
|
142
|
-
# Branch: feature/add_new_method_for_containers
|
|
143
|
-
#: tsr/controllers/sketch_controller.py
|
|
144
|
-
msgid "This folder is initialize, and present working sketch"
|
|
145
|
-
msgstr "Folder initialized, it contains a working sketch"
|
|
146
|
-
|
|
147
|
-
# Branch: feature/add_new_method_for_containers
|
|
148
|
-
#: tsr/controllers/sketch_controller.py
|
|
149
|
-
msgid "Init done"
|
|
150
|
-
msgstr "Initialization completed"
|
|
151
|
-
|
|
152
|
-
# Branch: feature/add_new_method_for_containers
|
|
153
|
-
#: tsr/controllers/sketch_controller.py
|
|
154
|
-
msgid "Slug for sketch (Required)"
|
|
155
|
-
msgstr "Enter sketch slug (required)"
|
|
156
|
-
|
|
157
|
-
# Branch: feature/add_new_method_for_containers
|
|
158
|
-
#: tsr/controllers/sketch_controller.py
|
|
159
|
-
msgid "You can add own repository url"
|
|
160
|
-
msgstr "Add URL to your own repository"
|
|
161
|
-
|
|
162
|
-
# Branch: feature/add_new_method_for_containers
|
|
163
|
-
#: tsr/controllers/sketch_controller.py
|
|
164
|
-
msgid "This folder is not empty, we can not clone here"
|
|
165
|
-
msgstr "Cannot clone: the folder is not empty"
|
|
166
|
-
|
|
167
|
-
# Branch: feature/add_new_method_for_containers
|
|
168
|
-
#: tsr/controllers/sketch_controller.py
|
|
169
|
-
msgid "Clone done"
|
|
170
|
-
msgstr "Cloning completed"
|
|
171
|
-
|
|
172
|
-
# Branch: feature/add_new_method_for_containers
|
|
173
|
-
#: tsr/controllers/sketch_controller.py
|
|
174
|
-
msgid "Command for run (Required)"
|
|
175
|
-
msgstr "Enter command to run (required)"
|
|
176
|
-
|
|
177
|
-
# Branch: feature/add_new_method_for_containers
|
|
178
|
-
#: tsr/controllers/sketch_controller.py
|
|
179
|
-
msgid "Command args"
|
|
180
|
-
msgstr "Command arguments"
|
|
181
|
-
|
|
182
|
-
# Branch: feature/add_new_method_for_containers
|
|
183
|
-
#: tsr/controllers/sketch_controller.py
|
|
184
|
-
msgid "Commit hash"
|
|
185
|
-
msgstr "Commit hash"
|
|
186
|
-
|
|
187
|
-
# Branch: feature/add_new_method_for_containers
|
|
188
|
-
#: tsr/controllers/sketch_controller.py
|
|
189
|
-
msgid "Title for task"
|
|
190
|
-
msgstr "Task title"
|
|
191
|
-
|
|
192
|
-
# Branch: feature/add_new_method_for_containers
|
|
193
|
-
#: tsr/controllers/sketch_controller.py
|
|
194
|
-
msgid "Description for task"
|
|
195
|
-
msgstr "Task description"
|
|
196
|
-
|
|
197
|
-
# Branch: feature/add_new_method_for_containers
|
|
198
|
-
#: tsr/controllers/sketch_controller.py
|
|
199
|
-
msgid "Instance slug"
|
|
200
|
-
msgstr "Server instance slug"
|
|
201
|
-
|
|
202
|
-
# Branch: feature/add_new_method_for_containers
|
|
203
|
-
#: tsr/controllers/sketch_controller.py
|
|
204
|
-
msgid "Storage slug"
|
|
205
|
-
msgstr "Storage slug"
|
|
206
|
-
|
|
207
|
-
# Branch: feature/add_new_method_for_containers
|
|
208
|
-
#: tsr/controllers/sketch_controller.py
|
|
209
|
-
msgid "If 1 - working all time, if 0 - run task and exit"
|
|
210
|
-
msgstr "Enter '0' to run the task and exit, or '1' to continue"
|
|
211
|
-
|
|
212
|
-
# Branch: feature/add_new_method_for_containers
|
|
213
|
-
#: tsr/controllers/sketch_controller.py
|
|
214
|
-
msgid "Use with no_dialog config, default disable auto commit"
|
|
215
|
-
msgstr "Enable 'no_dialog' mode to run CLI without interactive prompts: in this mode, auto-commit is disabled by default, skipping the commit stage automatically (for testing)"
|
|
216
|
-
|
|
217
|
-
# Branch: feature/add_new_method_for_containers
|
|
218
|
-
#: tsr/controllers/sketch_controller.py
|
|
219
|
-
#: tsr/services/sketch/sketch_service.py
|
|
220
|
-
msgid "Task id: %task_id% - %task_status%"
|
|
221
|
-
msgstr "Task ID: %task_id%, Status: %task_status%"
|
|
222
|
-
|
|
223
|
-
# Branch: feature/add_new_method_for_containers
|
|
224
|
-
#: tsr/controllers/sketch_controller.py
|
|
225
|
-
msgid "Run task done"
|
|
226
|
-
msgstr "Task run completed"
|
|
227
|
-
|
|
228
|
-
# Branch: feature/add_new_method_for_containers
|
|
229
|
-
#: tsr/controllers/sketch_controller.py
|
|
230
|
-
msgid "Id run task (Required)"
|
|
231
|
-
msgstr "Enter task run ID (required)"
|
|
232
|
-
|
|
233
|
-
# Branch: feature/add_new_method_for_containers
|
|
234
|
-
#: tsr/controllers/sketch_controller.py
|
|
235
|
-
msgid "Task not found"
|
|
236
|
-
msgstr "Task not found"
|
|
237
|
-
|
|
238
|
-
# Branch: feature/add_new_method_for_containers
|
|
239
|
-
#: tsr/controllers/sketch_controller.py
|
|
240
|
-
msgid "TASK ID: %task_id%"
|
|
241
|
-
msgstr "TASK ID: %task_id%"
|
|
242
|
-
|
|
243
|
-
# Branch: feature/add_new_method_for_containers
|
|
244
|
-
#: tsr/controllers/sketch_controller.py
|
|
245
|
-
msgid "HASH COMMIT: %commit_hash%"
|
|
246
|
-
msgstr "COMMIT HASH: %commit_hash%"
|
|
247
|
-
|
|
248
|
-
# Branch: feature/add_new_method_for_containers
|
|
249
|
-
#: tsr/controllers/sketch_controller.py
|
|
250
|
-
msgid "TASK STATUS: %task_status%"
|
|
251
|
-
msgstr "TASK STATUS: %task_status%"
|
|
252
|
-
|
|
253
|
-
# Branch: feature/add_new_method_for_containers
|
|
254
|
-
#: tsr/controllers/sketch_controller.py
|
|
255
|
-
msgid "LINK RUNNER: %task_view_url%"
|
|
256
|
-
msgstr "TASK VIEW URL: %task_view_url%"
|
|
257
|
-
|
|
258
|
-
# Branch: feature/add_new_method_for_containers
|
|
259
|
-
#: tsr/controllers/sketch_controller.py
|
|
260
|
-
msgid "LINK RUNNER LOG: %task_output_url%"
|
|
261
|
-
msgstr "TASK OUTPUT LOG URL: %task_output_url"
|
|
262
|
-
|
|
263
|
-
# Branch: feature/add_new_method_for_containers
|
|
264
|
-
#: tsr/controllers/sketch_controller.py
|
|
265
|
-
msgid "Run details done"
|
|
266
|
-
msgstr "Fetching run details completed"
|
|
267
|
-
|
|
268
|
-
# Branch: feature/add_new_method_for_containers
|
|
269
|
-
#: tsr/controllers/sketch_controller.py
|
|
270
|
-
msgid "Task output empty"
|
|
271
|
-
msgstr "No output from task"
|
|
272
|
-
|
|
273
|
-
# Branch: feature/add_new_method_for_containers
|
|
274
|
-
#: tsr/controllers/sketch_controller.py
|
|
275
|
-
msgid "Output is empty"
|
|
276
|
-
msgstr "No output"
|
|
277
|
-
|
|
278
|
-
# Branch: feature/add_new_method_for_containers
|
|
279
|
-
#: tsr/controllers/sketch_controller.py
|
|
280
|
-
msgid "Task log done"
|
|
281
|
-
msgstr "Task logging completed"
|
|
282
|
-
|
|
283
|
-
# Branch: feature/add_new_method_for_containers
|
|
284
|
-
#: tsr/controllers/sketch_controller.py
|
|
285
|
-
msgid "Task %task_id% was stopped"
|
|
286
|
-
msgstr "Task with ID: %task_id% has been stopped"
|
|
287
|
-
|
|
288
|
-
# Branch: feature/add_new_method_for_containers
|
|
289
|
-
#: tsr/controllers/sketch_controller.py
|
|
290
|
-
msgid "Command is required"
|
|
291
|
-
msgstr "Command is required"
|
|
292
|
-
|
|
293
|
-
# Branch: feature/add_new_method_for_containers
|
|
294
|
-
#: tsr/controllers/sketch_controller.py
|
|
295
|
-
msgid "Task id is required"
|
|
296
|
-
msgstr "Task ID is required"
|
|
297
|
-
|
|
298
|
-
# Branch: feature/add_new_method_for_containers
|
|
299
|
-
#: tsr/controllers/storage_controller.py
|
|
300
|
-
msgid "Help working with rented storages"
|
|
301
|
-
msgstr "Help with managing rented storages"
|
|
302
|
-
|
|
303
|
-
# Branch: feature/add_new_method_for_containers
|
|
304
|
-
#: tsr/controllers/storage_controller.py
|
|
305
|
-
msgid "List storages done"
|
|
306
|
-
msgstr "Fetching storage list completed"
|
|
307
|
-
|
|
308
|
-
# Branch: feature/add_new_method_for_containers
|
|
309
|
-
#: tsr/services/abstract_service.py
|
|
310
|
-
#~ msgid "Page: %page%, Limit: %row%, Total: %total%"
|
|
311
|
-
#~ msgstr "Page: %page%, Limit: %row%, Total Items: %total%"
|
|
312
|
-
|
|
313
|
-
# Branch: feature/add_new_method_for_containers
|
|
314
|
-
#: tsr/services/abstract_service.py
|
|
315
|
-
msgid "List empty, work done"
|
|
316
|
-
msgstr "No items to list, listing completed"
|
|
317
|
-
|
|
318
|
-
# Branch: feature/add_new_method_for_containers
|
|
319
|
-
#: tsr/services/abstract_service.py
|
|
320
|
-
msgid "Go to next page (0 to exit)?"
|
|
321
|
-
msgstr "Proceed to next page? Enter '0' to exit"
|
|
322
|
-
|
|
323
|
-
# Branch: feature/add_new_method_for_containers
|
|
324
|
-
#: tsr/services/validation_service.py
|
|
325
|
-
msgid "In no dialog mode, you need added token to config or to system env: TSR_AUTH_TOKEN"
|
|
326
|
-
msgstr "Authentication required: Please add 'TSR_AUTH_TOKEN' to your configuration file or as an environment variable to run in no_dialog mode"
|
|
327
|
-
|
|
328
|
-
# Branch: feature/add_new_method_for_containers
|
|
329
|
-
#: tsr/services/validation_service.py
|
|
330
|
-
msgid "Please sign in via valid TheStage.ai API token"
|
|
331
|
-
msgstr "Please authenticate using valid TheStage AI API token"
|
|
332
|
-
|
|
333
|
-
# Branch: feature/add_new_method_for_containers
|
|
334
|
-
#: tsr/services/validation_service.py
|
|
335
|
-
msgid "Please issue the valid API token in your TheStage.ai web app account"
|
|
336
|
-
msgstr "Please generate API token using TheStage AI WebApp"
|
|
337
|
-
|
|
338
|
-
# Branch: feature/add_new_method_for_containers
|
|
339
|
-
#: tsr/services/validation_service.py
|
|
340
|
-
msgid "Token is valid"
|
|
341
|
-
msgstr "API token is valid"
|
|
342
|
-
|
|
343
|
-
# Branch: feature/add_new_method_for_containers
|
|
344
|
-
#: tsr/services/validation_service.py
|
|
345
|
-
msgid "Where you want to save token (LOCAL or GLOBAL config)"
|
|
346
|
-
msgstr "Please select API token storage location: local or global configuration"
|
|
347
|
-
|
|
348
|
-
# Branch: feature/add_new_method_for_containers
|
|
349
|
-
#: tsr/services/sketch/sketch_service.py
|
|
350
|
-
msgid "Sketch don't have repo url, you can set up local"
|
|
351
|
-
msgstr "Sketch not linked to remote repository: please configure local setup or provide repository URL"
|
|
352
|
-
|
|
353
|
-
# Branch: feature/add_new_method_for_containers
|
|
354
|
-
#: tsr/services/sketch/sketch_service.py
|
|
355
|
-
msgid "Please check you mail or open this repo url %git_url% and 'Accept invitation'"
|
|
356
|
-
msgstr "Please check your email or visit %git_url% to accept invitation"
|
|
357
|
-
|
|
358
|
-
# Branch: feature/add_new_method_for_containers
|
|
359
|
-
#: tsr/services/sketch/sketch_service.py
|
|
360
|
-
msgid "Task title is required, you can input manual or auto generated"
|
|
361
|
-
msgstr "Task title is required: please type or select to auto-generate"
|
|
362
|
-
|
|
363
|
-
# Branch: feature/add_new_method_for_containers
|
|
364
|
-
#: tsr/services/sketch/sketch_service.py
|
|
365
|
-
msgid "Task title can not be empty"
|
|
366
|
-
msgstr "Task title is required"
|
|
367
|
-
|
|
368
|
-
# Branch: feature/add_new_method_for_containers
|
|
369
|
-
#: tsr/services/sketch/sketch_service.py
|
|
370
|
-
msgid "This folder dont have git project"
|
|
371
|
-
msgstr "Folder does not contain git project"
|
|
372
|
-
|
|
373
|
-
# Branch: feature/add_new_method_for_containers
|
|
374
|
-
#: tsr/services/sketch/sketch_service.py
|
|
375
|
-
msgid "Auto created name for commit by tsr"
|
|
376
|
-
msgstr "Commit name automatically generated by tsr"
|
|
377
|
-
|
|
378
|
-
# Branch: feature/add_new_method_for_containers
|
|
379
|
-
#: tsr/services/sketch/sketch_service.py
|
|
380
|
-
msgid "Task run on server"
|
|
381
|
-
msgstr "Task run on server instance"
|
|
382
|
-
|
|
383
|
-
# Branch: feature/add_new_method_for_containers
|
|
384
|
-
#: tsr/services/sketch/sketch_service.py
|
|
385
|
-
msgid "The task failed with an error"
|
|
386
|
-
msgstr "Task failed with error"
|
|
387
|
-
|
|
388
|
-
# Branch: feature/add_new_method_for_containers
|
|
389
|
-
#: tsr/services/sketch/sketch_service.py
|
|
390
|
-
msgid "Run task details not found"
|
|
391
|
-
msgstr "Task run details not found"
|
|
392
|
-
|
|
393
|
-
# Branch: feature/add_new_method_for_containers
|
|
394
|
-
#: tsr/services/sketch/sketch_service.py
|
|
395
|
-
msgid "Task is crashed"
|
|
396
|
-
msgstr "Task crashed"
|
|
397
|
-
|
|
398
|
-
# Branch: feature/add_new_method_for_containers
|
|
399
|
-
#: tsr/services/sketch/sketch_service.py
|
|
400
|
-
msgid "Task is success done"
|
|
401
|
-
msgstr "Task has been successfully completed"
|
|
402
|
-
|
|
403
|
-
# Branch: feature/add_new_method_for_containers
|
|
404
|
-
#: tsr/services/sketch/sketch_service.py
|
|
405
|
-
msgid "Error on canceling task %message%"
|
|
406
|
-
msgstr "Failed to cancel task: %message%"
|
|
407
|
-
|
|
408
|
-
# Branch: feature/add_new_method_for_containers
|
|
409
|
-
#: tsr/services/sketch/sketch_service.py
|
|
410
|
-
msgid "In no dialog mode, you need added sketch slug as params"
|
|
411
|
-
msgstr "In no_dialog mode, add sketch slug as parameter"
|
|
412
|
-
|
|
413
|
-
# Branch: feature/add_new_method_for_containers
|
|
414
|
-
#: tsr/services/sketch/sketch_service.py
|
|
415
|
-
msgid "Please go to site and create new sketch or select present"
|
|
416
|
-
msgstr "Please create new sketch or select existing one using TheStage AI web application"
|
|
417
|
-
|
|
418
|
-
# Branch: feature/add_new_method_for_containers
|
|
419
|
-
#: tsr/services/sketch/sketch_service.py
|
|
420
|
-
msgid "Please give me sketch slug"
|
|
421
|
-
msgstr "Provide sketch slug"
|
|
422
|
-
|
|
423
|
-
# Branch: feature/add_new_method_for_containers
|
|
424
|
-
#: tsr/services/sketch/sketch_service.py
|
|
425
|
-
msgid "You entered the wrong slug, sketch not found"
|
|
426
|
-
msgstr "Incorrect slug specified: sketch not found"
|
|
427
|
-
|
|
428
|
-
# Branch: feature/add_new_method_for_containers
|
|
429
|
-
#: tsr/services/sketch/sketch_service.py
|
|
430
|
-
msgid "You have local repo with remote, we can not work with this"
|
|
431
|
-
msgstr "Your local repository is linked to a remote: this configuration is not supported for the current operation"
|
|
432
|
-
|
|
433
|
-
# Branch: feature/add_new_method_for_containers
|
|
434
|
-
#: tsr/services/sketch/sketch_service.py
|
|
435
|
-
msgid "Sketch dont have git repository url"
|
|
436
|
-
msgstr "No git repository URL associated with the sketch"
|
|
437
|
-
|
|
438
|
-
# Branch: feature/add_new_method_for_containers
|
|
439
|
-
#: tsr/services/sketch/sketch_service.py
|
|
440
|
-
msgid "You local repo has changes and not empty, please create empty folder"
|
|
441
|
-
msgstr "Your local repo has been modified and is not empty, please create an empty folder"
|
|
442
|
-
|
|
443
|
-
# Branch: feature/add_new_method_for_containers
|
|
444
|
-
#: tsr/services/sketch/sketch_service.py
|
|
445
|
-
msgid "We can not add remote, something wrong"
|
|
446
|
-
msgstr "Cannot add remote, something wrong"
|
|
447
|
-
|
|
448
|
-
# Branch: feature/add_new_method_for_containers
|
|
449
|
-
#: tsr/services/sketch/sketch_service.py
|
|
450
|
-
msgid "You have local repo, we can not work with this"
|
|
451
|
-
msgstr "Local repository in use: not supported for current operation"
|
|
452
|
-
|
|
453
|
-
# Branch: feature/add_new_method_for_containers
|
|
454
|
-
#: tsr/services/sketch/sketch_service.py
|
|
455
|
-
msgid "Please give me repository url"
|
|
456
|
-
msgstr "Please provide repository URL"
|
|
457
|
-
|
|
458
|
-
# Branch: feature/add_new_method_for_containers
|
|
459
|
-
#: tsr/services/sketch/sketch_service.py
|
|
460
|
-
msgid "New task title:"
|
|
461
|
-
msgstr "New task title:"
|
|
462
|
-
|
|
463
|
-
# Branch: feature/add_new_method_for_containers
|
|
464
|
-
#: tsr/services/sketch/sketch_service.py
|
|
465
|
-
msgid "You have not commit changes"
|
|
466
|
-
msgstr "Changes have not been committed"
|
|
467
|
-
|
|
468
|
-
# Branch: feature/add_new_method_for_containers
|
|
469
|
-
#: tsr/services/sketch/sketch_service.py
|
|
470
|
-
msgid "COMMIT you changes or EXIT ?"
|
|
471
|
-
msgstr "Commit changes or exit?"
|
|
472
|
-
|
|
473
|
-
# Branch: feature/add_new_method_for_containers
|
|
474
|
-
#: tsr/services/sketch/sketch_service.py
|
|
475
|
-
msgid "Please give me commit name"
|
|
476
|
-
msgstr "Specify commit name"
|
|
477
|
-
|
|
478
|
-
# Branch: feature/add_new_method_for_containers
|
|
479
|
-
#: tsr/services/sketch/sketch_service.py
|
|
480
|
-
msgid "Cannot commit with empty commit name, your code run without last changes."
|
|
481
|
-
msgstr "Cannot commit: commit name is required. Uncommitted changes will not be included in this run"
|
|
482
|
-
|
|
483
|
-
# Branch: feature/add_new_method_for_containers
|
|
484
|
-
#: tsr/services/sketch/sketch_service.py
|
|
485
|
-
msgid "Working instance is required, please add to sketch rented instance or selfhosted instance."
|
|
486
|
-
msgstr "Sketch requires running server instance: please add rented or self-hosted server instance to the sketch"
|
|
487
|
-
|
|
488
|
-
# Branch: feature/add_new_method_for_containers
|
|
489
|
-
#: tsr/services/sketch/sketch_service.py
|
|
490
|
-
msgid "The task failed with an error: %server_massage%"
|
|
491
|
-
msgstr "Task failed with error: %server_massage%"
|
|
492
|
-
|
|
493
|
-
# Branch: feature/add_new_method_for_containers
|
|
494
|
-
#: tsr/services/sketch/sketch_service.py
|
|
495
|
-
msgid "Server stdout:"
|
|
496
|
-
msgstr "Server stdout:"
|
|
497
|
-
|
|
498
|
-
# Branch: feature/add_new_method_for_containers
|
|
499
|
-
#: tsr/services/sketch/sketch_service.py
|
|
500
|
-
msgid "Server sterr:"
|
|
501
|
-
msgstr "Server sterr:"
|
|
502
|
-
|
|
503
|
-
# Branch: feature/add_new_method_for_containers
|
|
504
|
-
#: tsr/services/app_config_service.py
|
|
505
|
-
msgid "Do you want to change current token?"
|
|
506
|
-
msgstr "Do you want to change the current API token?"
|
|
507
|
-
|
|
508
|
-
# Branch: feature/add_new_method_for_containers
|
|
509
|
-
#: tsr/services/filesystem_service.py
|
|
510
|
-
msgid "Error read home user folder"
|
|
511
|
-
msgstr "Failed to read user's home directory"
|
|
512
|
-
|
|
513
|
-
# Branch: feature/add_new_method_for_containers
|
|
514
|
-
#: tsr/services/filesystem_service.py
|
|
515
|
-
msgid "Not found this path"
|
|
516
|
-
msgstr "Path not found"
|
|
517
|
-
|
|
518
|
-
# Branch: feature/add_new_method_for_containers
|
|
519
|
-
#: tsr/services/filesystem_service.py
|
|
520
|
-
msgid "We can not make dir"
|
|
521
|
-
msgstr "Failed to create directory"
|
|
522
|
-
|
|
523
|
-
# Branch: feature/add_new_method_for_containers
|
|
524
|
-
#: tsr/services/filesystem_service.py
|
|
525
|
-
msgid "We can not make file"
|
|
526
|
-
msgstr "Failed to create file"
|
|
527
|
-
|
|
528
|
-
# Branch: feature/add_new_method_for_containers
|
|
529
|
-
#: tsr/services/filesystem_service.py
|
|
530
|
-
msgid "Please set up working directory as folder not file"
|
|
531
|
-
msgstr "Please specify directory (not file) as working directory"
|
|
532
|
-
|
|
533
|
-
# Branch: feature/add_new_method_for_containers
|
|
534
|
-
#: tsr/controllers/container_controller.py
|
|
535
|
-
msgid "Container id"
|
|
536
|
-
msgstr "Container ID"
|
|
537
|
-
|
|
538
|
-
# Branch: feature/add_new_method_for_containers
|
|
539
|
-
#: tsr/controllers/container_controller.py
|
|
540
|
-
msgid "Container slug"
|
|
541
|
-
msgstr "Container slug"
|
|
542
|
-
|
|
543
|
-
# Branch: feature/add_new_method_for_containers
|
|
544
|
-
#: tsr/controllers/container_controller.py
|
|
545
|
-
msgid "Not found container - %container_item%"
|
|
546
|
-
msgstr "Container not found: %container_item%"
|
|
547
|
-
|
|
548
|
-
# Branch: feature/add_new_method_for_containers
|
|
549
|
-
#: tsr/controllers/container_controller.py
|
|
550
|
-
msgid "ID: %id%"
|
|
551
|
-
msgstr "ID: %id%"
|
|
552
|
-
|
|
553
|
-
# Branch: feature/add_new_method_for_containers
|
|
554
|
-
#: tsr/controllers/container_controller.py
|
|
555
|
-
msgid "SLUG: %slug%"
|
|
556
|
-
msgstr "SLUG: %slug%"
|
|
557
|
-
|
|
558
|
-
# Branch: feature/add_new_method_for_containers
|
|
559
|
-
#: tsr/controllers/container_controller.py
|
|
560
|
-
msgid "TITLE: %title%"
|
|
561
|
-
msgstr "TITLE: %title%"
|
|
562
|
-
|
|
563
|
-
# Branch: feature/add_new_method_for_containers
|
|
564
|
-
#: tsr/controllers/container_controller.py
|
|
565
|
-
msgid "SYSTEM NAME: %system_name%"
|
|
566
|
-
msgstr "SYSTEM NAME: %system_name%"
|
|
567
|
-
|
|
568
|
-
# Branch: feature/add_new_method_for_containers
|
|
569
|
-
#: tsr/controllers/container_controller.py
|
|
570
|
-
msgid "DOCKER IMAGE: %docker_image%"
|
|
571
|
-
msgstr "DOCKER IMAGE: %docker_image%"
|
|
572
|
-
|
|
573
|
-
# Branch: feature/add_new_method_for_containers
|
|
574
|
-
#: tsr/controllers/container_controller.py
|
|
575
|
-
msgid "INSTANCE RANTED ID: %instance_id%"
|
|
576
|
-
msgstr "RENTED INSTANCE ID: %instance_id%"
|
|
577
|
-
|
|
578
|
-
# Branch: feature/add_new_method_for_containers
|
|
579
|
-
#: tsr/controllers/container_controller.py
|
|
580
|
-
msgid "INSTANCE RANTED: %instance_slug%"
|
|
581
|
-
msgstr "RENTED INSTANCE SLUG: %instance_slug%"
|
|
582
|
-
|
|
583
|
-
# Branch: feature/add_new_method_for_containers
|
|
584
|
-
#: tsr/controllers/container_controller.py
|
|
585
|
-
msgid "INSTANCE IP: %instance_ip%"
|
|
586
|
-
msgstr "RENTED INSTANCE IP: %instance_ip%"
|
|
587
|
-
|
|
588
|
-
# Branch: feature/add_new_method_for_containers
|
|
589
|
-
#: tsr/controllers/container_controller.py
|
|
590
|
-
msgid "INSTANCE USERNAME: %instance_username%"
|
|
591
|
-
msgstr "RENTED INSTANCE USERNAME: %instance_username%"
|
|
592
|
-
|
|
593
|
-
# Branch: feature/add_new_method_for_containers
|
|
594
|
-
#: tsr/controllers/container_controller.py
|
|
595
|
-
msgid "INSTANCE STATUS: %instance_status%"
|
|
596
|
-
msgstr "RENTED INSTANCE STATUS: %instance_status%"
|
|
597
|
-
|
|
598
|
-
# Branch: feature/add_new_method_for_containers
|
|
599
|
-
#: tsr/controllers/container_controller.py
|
|
600
|
-
msgid "SELFHOSTED INSTANCE ID: %instance_id%"
|
|
601
|
-
msgstr "SELF-HOSTED INSTANCE ID: %instance_id%"
|
|
602
|
-
|
|
603
|
-
# Branch: feature/add_new_method_for_containers
|
|
604
|
-
#: tsr/controllers/container_controller.py
|
|
605
|
-
msgid "SELFHOSTED INSTANCE SLUG: %instance_slug%"
|
|
606
|
-
msgstr "SELF-HOSTED INSTANCE SLUG: %instance_slug%"
|
|
607
|
-
|
|
608
|
-
# Branch: feature/add_new_method_for_containers
|
|
609
|
-
#: tsr/controllers/container_controller.py
|
|
610
|
-
msgid "SELFHOSTED INSTANCE IP: %instance_ip%"
|
|
611
|
-
msgstr "SELF-HOSTED INSTANCE IP: %instance_ip%"
|
|
612
|
-
|
|
613
|
-
# Branch: feature/add_new_method_for_containers
|
|
614
|
-
#: tsr/controllers/container_controller.py
|
|
615
|
-
msgid "SELFHOSTED INSTANCE USERNAME: %instance_username%"
|
|
616
|
-
msgstr "SELF-HOSTED INSTANCE USERNAME: %instance_username%"
|
|
617
|
-
|
|
618
|
-
# Branch: feature/add_new_method_for_containers
|
|
619
|
-
#: tsr/controllers/container_controller.py
|
|
620
|
-
msgid "SELFHOSTED INSTANCE STATUS: %instance_status%"
|
|
621
|
-
msgstr "SELF-HOSTED INSTANCE STATUS: %instance_status%"
|
|
622
|
-
|
|
623
|
-
# Branch: feature/add_new_method_for_containers
|
|
624
|
-
#: tsr/controllers/container_controller.py
|
|
625
|
-
msgid "CONTAINER SKETCH ID: %sketch_id%"
|
|
626
|
-
msgstr "CONTAINER SKETCH ID: %sketch_id%"
|
|
627
|
-
|
|
628
|
-
# Branch: feature/add_new_method_for_containers
|
|
629
|
-
#: tsr/controllers/container_controller.py
|
|
630
|
-
msgid "CONTAINER SKETCH SLUG: %sketch_slug%"
|
|
631
|
-
msgstr "CONTAINER SKETCH SLUG: %sketch_slug%"
|
|
632
|
-
|
|
633
|
-
# Branch: feature/add_new_method_for_containers
|
|
634
|
-
#: tsr/controllers/container_controller.py
|
|
635
|
-
msgid "CONTAINER SKETCH NAME: %sketch_name%"
|
|
636
|
-
msgstr "CONTAINER SKETCH NAME: %sketch_name%"
|
|
637
|
-
|
|
638
|
-
# Branch: feature/add_new_method_for_containers
|
|
639
|
-
#: tsr/controllers/container_controller.py
|
|
640
|
-
msgid "Container details done"
|
|
641
|
-
msgstr "Fetching container details completed"
|
|
642
|
-
|
|
643
|
-
# Branch: feature/add_new_method_for_containers
|
|
644
|
-
#: tsr/controllers/container_controller.py
|
|
645
|
-
msgid "Instance username if use selfhosted"
|
|
646
|
-
msgstr "Specify username if using a self-hosted instance"
|
|
647
|
-
|
|
648
|
-
# Branch: feature/add_new_method_for_containers
|
|
649
|
-
#: tsr/controllers/container_controller.py
|
|
650
|
-
msgid "Path to file for copy"
|
|
651
|
-
msgstr "Path to file to copy"
|
|
652
|
-
|
|
653
|
-
# Branch: feature/add_new_method_for_containers
|
|
654
|
-
#: tsr/controllers/container_controller.py
|
|
655
|
-
msgid "Recursive flag help copy folders"
|
|
656
|
-
msgstr "Use recursive flag for folder copying"
|
|
657
|
-
|
|
658
|
-
# Branch: feature/add_new_method_for_containers
|
|
659
|
-
#: tsr/controllers/container_controller.py
|
|
660
|
-
msgid "Container id or container slug is required"
|
|
661
|
-
msgstr "Specify container ID or container slug"
|
|
662
|
-
|
|
663
|
-
# Branch: feature/add_new_method_for_containers
|
|
664
|
-
#: tsr/controllers/container_controller.py
|
|
665
|
-
msgid "CONTAINER DATA:"
|
|
666
|
-
msgstr "CONTAINER DATA:"
|
|
667
|
-
|
|
668
|
-
# Branch: feature/add_new_method_for_containers
|
|
669
|
-
#: tsr/controllers/container_controller.py
|
|
670
|
-
#~ msgid "Container start"
|
|
671
|
-
#~ msgstr "Container started"
|
|
672
|
-
|
|
673
|
-
# Branch: feature/add_new_method_for_containers
|
|
674
|
-
#: tsr/controllers/container_controller.py
|
|
675
|
-
msgid "Something went wrong on server, please change late"
|
|
676
|
-
msgstr "Something went wrong on the server instance: try again later"
|
|
677
|
-
|
|
678
|
-
# Branch: feature/add_new_method_for_containers
|
|
679
|
-
#: tsr/controllers/container_controller.py
|
|
680
|
-
#~ msgid "Container stop"
|
|
681
|
-
#~ msgstr "Сontainer stopped"
|
|
682
|
-
|
|
683
|
-
# Branch: feature/add_new_method_for_containers
|
|
684
|
-
#: tsr/helpers/error_handler.py
|
|
685
|
-
msgid "Error connect to server or docker container %ip_address% by %username%"
|
|
686
|
-
msgstr "Failed to connect to server or Docker container, IP address: %ip_address%, username: %username%"
|
|
687
|
-
|
|
688
|
-
# Branch: feature/add_new_method_for_containers
|
|
689
|
-
#: tsr/services/container/container_service.py
|
|
690
|
-
msgid "Not found rented or selfhosted instance for connect"
|
|
691
|
-
msgstr "Cannot connect to rented or self-hosted instance"
|
|
692
|
-
|
|
693
|
-
# Branch: feature/add_new_method_for_containers
|
|
694
|
-
#: tsr/services/container/container_service.py
|
|
695
|
-
msgid "Container name not present, can not connect to container"
|
|
696
|
-
msgstr "Cannot connect to container: please specify container slug"
|
|
697
|
-
|
|
698
|
-
# Branch: feature/add_new_method_for_containers
|
|
699
|
-
#: tsr/services/container/container_service.py
|
|
700
|
-
msgid "We can not get shell on container (bash, shell), please use standard shell"
|
|
701
|
-
msgstr "Unable to access the requested shell (bash, shell) in the container: please use the default shell available in the container"
|
|
702
|
-
|
|
703
|
-
# Branch: feature/add_new_method_for_containers
|
|
704
|
-
#: tsr/services/container/container_service.py
|
|
705
|
-
msgid "Not found path with file"
|
|
706
|
-
msgstr "Path to file not found"
|
|
707
|
-
|
|
708
|
-
# Branch: feature/add_new_method_for_containers
|
|
709
|
-
#: tsr/services/container/container_service.py
|
|
710
|
-
msgid "Path is folder, please set up recursive flag"
|
|
711
|
-
msgstr "Path to folder specified: please set recursive flag"
|
|
712
|
-
|
|
713
|
-
# Branch: feature/add_new_method_for_containers
|
|
714
|
-
#: tsr/services/container/container_service.py
|
|
715
|
-
msgid "Please set up username as parameter on no-dialog mode"
|
|
716
|
-
msgstr "Specify username as parameter in no_dialog mode"
|
|
717
|
-
|
|
718
|
-
# Branch: feature/add_new_method_for_containers
|
|
719
|
-
#: tsr/services/container/container_service.py
|
|
720
|
-
msgid "Please set up username to connect instance"
|
|
721
|
-
msgstr "Specify username to connect to server instance"
|
|
722
|
-
|
|
723
|
-
# Branch: feature/add_new_method_for_containers
|
|
724
|
-
#: tsr/services/container/container_service.py
|
|
725
|
-
msgid "Container is running, can not start working server"
|
|
726
|
-
msgstr "Container is running: cannot start running container"
|
|
727
|
-
|
|
728
|
-
# Branch: feature/add_new_method_for_containers
|
|
729
|
-
#: tsr/services/container/container_service.py
|
|
730
|
-
msgid "Container creating, please check status later"
|
|
731
|
-
msgstr "Container is being created: check its status later"
|
|
732
|
-
|
|
733
|
-
# Branch: feature/add_new_method_for_containers
|
|
734
|
-
#: tsr/services/container/container_service.py
|
|
735
|
-
msgid "The container starts now, you can be up and running in minutes"
|
|
736
|
-
msgstr "Container is starting: check its status later"
|
|
737
|
-
|
|
738
|
-
# Branch: feature/add_new_method_for_containers
|
|
739
|
-
#: tsr/services/container/container_service.py
|
|
740
|
-
msgid "The container was deleted, create new"
|
|
741
|
-
msgstr "Container has been deleted"
|
|
742
|
-
|
|
743
|
-
# Branch: feature/add_new_method_for_containers
|
|
744
|
-
#: tsr/services/container/container_service.py
|
|
745
|
-
msgid "Container in rebooting or creating, please stop later"
|
|
746
|
-
msgstr "Container is in the process of restarting, starting or creating, please stop it later"
|
|
747
|
-
|
|
748
|
-
# Branch: feature/add_new_method_for_containers
|
|
749
|
-
#: tsr/services/container/container_service.py
|
|
750
|
-
msgid "Container was stopped, by error or manually"
|
|
751
|
-
msgstr "Container has been stopped due to error or manually"
|
|
752
|
-
|
|
753
|
-
# Branch: feature/add_new_method_for_containers
|
|
754
|
-
#: tsr/services/container/container_service.py
|
|
755
|
-
msgid "Container is rebooted, please connect late"
|
|
756
|
-
msgstr "Container is restarting, try to connect later"
|
|
757
|
-
|
|
758
|
-
# Branch: feature/add_new_method_for_containers
|
|
759
|
-
#: tsr/services/container/container_service.py
|
|
760
|
-
msgid "Container is failed, please start him"
|
|
761
|
-
msgstr "Container has been exited, please start it"
|
|
762
|
-
|
|
763
|
-
# Branch: feature/add_new_method_for_containers
|
|
764
|
-
#: tsr/services/container/container_service.py
|
|
765
|
-
msgid "Container was deleted, create new"
|
|
766
|
-
msgstr "Container has been deleted"
|
|
767
|
-
|
|
768
|
-
# Branch: feature/add_new_method_for_containers
|
|
769
|
-
#: tsr/services/remote_server_service.py
|
|
770
|
-
msgid "Error connect to remote server"
|
|
771
|
-
msgstr "Cannot connect to server instance"
|
|
772
|
-
|
|
773
|
-
# Branch: feature/add_new_method_for_containers
|
|
774
|
-
#: tsr/services/remote_server_service.py
|
|
775
|
-
msgid "Copy %file_name%"
|
|
776
|
-
msgstr "Copy %file_name%"
|
|
777
|
-
|
|
778
|
-
# Branch: feature/add_new_method_for_containers
|
|
779
|
-
#: tsr/services/remote_server_service.py
|
|
780
|
-
msgid "Error put file, file not found on server"
|
|
781
|
-
msgstr "Cannot upload file: file not found"
|
|
782
|
-
|
|
783
|
-
# Branch: feature/add_new_method_for_containers
|
|
784
|
-
#: tsr/services/remote_server_service.py
|
|
785
|
-
msgid "Error put file, undefined server error"
|
|
786
|
-
msgstr "Cannot upload file: undefined server error"
|
|
787
|
-
|
|
788
|
-
# Branch: feature/add_new_method_for_containers
|
|
789
|
-
#: tsr/services/remote_server_service.py
|
|
790
|
-
msgid "Complete copy %file_name%"
|
|
791
|
-
msgstr "File copy completed: %file_name%"
|
|
792
|
-
|
|
793
|
-
# Branch: feature/add_new_method_for_containers
|
|
794
|
-
#: tsr/services/sketch/mapper/sketch_task_mapper.py
|
|
795
|
-
msgid "Don't found instance slug"
|
|
796
|
-
msgstr "Server instance slug not found"
|
|
797
|
-
|
|
798
|
-
# Branch: feature/add_new_method_for_containers
|
|
799
|
-
#: tsr/services/sketch/sketch_service.py
|
|
800
|
-
msgid "Slug can not be empty"
|
|
801
|
-
msgstr "Specify slug"
|
|
802
|
-
|
|
803
|
-
# Branch: main
|
|
804
|
-
#: tsr/controllers/storage_controller.py
|
|
805
|
-
#: tsr/controllers/instance_controller.py
|
|
806
|
-
msgid "Status item (ALL - show all instances)"
|
|
807
|
-
msgstr ""
|
|
808
|
-
|
|
809
|
-
# Branch: main
|
|
810
|
-
#: tsr/controllers/storage_controller.py
|
|
811
|
-
msgid "Start show rented storages list with statuses: %statuses% (You can show all statuses set up status=ALL)"
|
|
812
|
-
msgstr ""
|
|
813
|
-
|
|
814
|
-
# Branch: main
|
|
815
|
-
#: tsr/controllers/instance_controller.py
|
|
816
|
-
msgid "Help working with instances"
|
|
817
|
-
msgstr ""
|
|
818
|
-
|
|
819
|
-
# Branch: main
|
|
820
|
-
#: tsr/controllers/instance_controller.py
|
|
821
|
-
msgid "Help working with self hosted instances"
|
|
822
|
-
msgstr ""
|
|
823
|
-
|
|
824
|
-
# Branch: main
|
|
825
|
-
#: tsr/controllers/instance_controller.py
|
|
826
|
-
msgid "Show list rented instances"
|
|
827
|
-
msgstr ""
|
|
828
|
-
|
|
829
|
-
# Branch: main
|
|
830
|
-
#: tsr/controllers/instance_controller.py
|
|
831
|
-
msgid "Start show instance list with statuses: %statuses% (You can show all statuses set up status=ALL)"
|
|
832
|
-
msgstr ""
|
|
833
|
-
|
|
834
|
-
# Branch: main
|
|
835
|
-
#: tsr/controllers/instance_controller.py
|
|
836
|
-
msgid "List rented done"
|
|
837
|
-
msgstr ""
|
|
838
|
-
|
|
839
|
-
# Branch: main
|
|
840
|
-
#: tsr/controllers/instance_controller.py
|
|
841
|
-
msgid "Show list self-hosted instances"
|
|
842
|
-
msgstr ""
|
|
843
|
-
|
|
844
|
-
# Branch: main
|
|
845
|
-
#: tsr/controllers/instance_controller.py
|
|
846
|
-
msgid "Start show self-hosted list with statuses: %statuses% (You can show all statuses set up status=ALL)"
|
|
847
|
-
msgstr ""
|
|
848
|
-
|
|
849
|
-
# Branch: main
|
|
850
|
-
#: tsr/controllers/instance_controller.py
|
|
851
|
-
msgid "List self-hosted done"
|
|
852
|
-
msgstr ""
|
|
853
|
-
|
|
854
|
-
# Branch: main
|
|
855
|
-
#: tsr/controllers/container_controller.py
|
|
856
|
-
msgid "Show list containers"
|
|
857
|
-
msgstr ""
|
|
858
|
-
|
|
859
|
-
# Branch: main
|
|
860
|
-
#: tsr/controllers/container_controller.py
|
|
861
|
-
msgid "Status item (ALL - show all containers)"
|
|
862
|
-
msgstr ""
|
|
863
|
-
|
|
864
|
-
# Branch: main
|
|
865
|
-
#: tsr/controllers/container_controller.py
|
|
866
|
-
msgid "Start show container list with statuses: %statuses% (You can show all statuses set up status=ALL)"
|
|
867
|
-
msgstr ""
|
|
868
|
-
|
|
869
|
-
# Branch: main
|
|
870
|
-
#: tsr/controllers/container_controller.py
|
|
871
|
-
msgid "Show details container"
|
|
872
|
-
msgstr ""
|
|
873
|
-
|
|
874
|
-
# Branch: main
|
|
875
|
-
#: tsr/controllers/container_controller.py
|
|
876
|
-
msgid "STATUS: %status%"
|
|
877
|
-
msgstr ""
|
|
878
|
-
|
|
879
|
-
# Branch: main
|
|
880
|
-
#: tsr/controllers/container_controller.py
|
|
881
|
-
msgid "CONTAINER PORT MAPPING:"
|
|
882
|
-
msgstr ""
|
|
883
|
-
|
|
884
|
-
# Branch: main
|
|
885
|
-
#: tsr/controllers/container_controller.py
|
|
886
|
-
msgid "CONTAINER DIRECTORY MAPPING:"
|
|
887
|
-
msgstr ""
|
|
888
|
-
|
|
889
|
-
# Branch: main
|
|
890
|
-
#: tsr/controllers/container_controller.py
|
|
891
|
-
msgid "Help connect to container"
|
|
892
|
-
msgstr ""
|
|
893
|
-
|
|
894
|
-
# Branch: main
|
|
895
|
-
#: tsr/controllers/container_controller.py
|
|
896
|
-
msgid "Help copy file to container"
|
|
897
|
-
msgstr ""
|
|
898
|
-
|
|
899
|
-
# Branch: main
|
|
900
|
-
#: tsr/controllers/container_controller.py
|
|
901
|
-
msgid "Path destination copy"
|
|
902
|
-
msgstr ""
|
|
903
|
-
|
|
904
|
-
# Branch: main
|
|
905
|
-
#: tsr/controllers/container_controller.py
|
|
906
|
-
msgid "Help start container"
|
|
907
|
-
msgstr ""
|
|
908
|
-
|
|
909
|
-
# Branch: main
|
|
910
|
-
#: tsr/controllers/container_controller.py
|
|
911
|
-
msgid "Help stop container"
|
|
912
|
-
msgstr ""
|
|
913
|
-
|
|
914
|
-
# Branch: main
|
|
915
|
-
#: tsr/controllers/container_controller.py
|
|
916
|
-
msgid "Container will be started"
|
|
917
|
-
msgstr ""
|
|
918
|
-
|
|
919
|
-
# Branch: main
|
|
920
|
-
#: tsr/controllers/container_controller.py
|
|
921
|
-
msgid "Container will be stoped"
|
|
922
|
-
msgstr ""
|
|
923
|
-
|
|
924
|
-
# Branch: main
|
|
925
|
-
#: tsr/services/abstract_service.py
|
|
926
|
-
msgid "Page: %page%, Limit: %limit%, Total page: %total_pages%"
|
|
927
|
-
msgstr ""
|
|
928
|
-
|
|
929
|
-
# Branch: main
|
|
930
|
-
#: tsr/services/container/container_service.py
|
|
931
|
-
msgid "Error, can not find mapping folders"
|
|
932
|
-
msgstr ""
|
|
933
|
-
|
|
934
|
-
# Branch: main
|
|
935
|
-
#: tsr/services/container/container_service.py
|
|
936
|
-
msgid "Error, can not find mapping for /public folder"
|
|
937
|
-
msgstr ""
|
|
938
|
-
|
|
939
|
-
# Branch: main
|
|
940
|
-
#: tsr/services/remote_server_service.py
|
|
941
|
-
msgid "Can not find mapping folders"
|
|
942
|
-
msgstr ""
|
|
943
|
-
|
|
944
|
-
# Branch: main
|
|
945
|
-
#: tsr/services/remote_server_service.py
|
|
946
|
-
msgid "No sftp server is installed on your instance"
|
|
947
|
-
msgstr ""
|
|
1
|
+
msgid ""
|
|
2
|
+
msgstr ""
|
|
3
|
+
"Project-Id-Version: \n"
|
|
4
|
+
"Report-Msgid-Bugs-To: \n"
|
|
5
|
+
"Last-Translator: \n"
|
|
6
|
+
"Language-Team: \n"
|
|
7
|
+
"MIME-Version: 1.0\n"
|
|
8
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
9
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
10
|
+
"POT-Creation-Date: 2024-06-06T15:55:19+00:00\n"
|
|
11
|
+
"PO-Revision-Date: 2024-06-06T15:55:19+00:00\n"
|
|
12
|
+
"Language: \n"
|
|
13
|
+
|
|
14
|
+
# Branch: master
|
|
15
|
+
#: tsr/controllers/base_controller.py
|
|
16
|
+
#~ msgid "Show the application's version and exit."
|
|
17
|
+
#~ msgstr "Display the application's version and exit"
|
|
18
|
+
|
|
19
|
+
# Branch: feature/add_new_method_for_containers
|
|
20
|
+
#: tsr/controllers/base_controller.py
|
|
21
|
+
msgid "Help change some config items"
|
|
22
|
+
msgstr "Help with modifying configuration items"
|
|
23
|
+
|
|
24
|
+
# Branch: feature/add_new_method_for_containers
|
|
25
|
+
#: tsr/controllers/base_controller.py
|
|
26
|
+
msgid "Full path for working directory"
|
|
27
|
+
msgstr "Full path for working directory"
|
|
28
|
+
|
|
29
|
+
# Branch: feature/add_new_method_for_containers
|
|
30
|
+
#: tsr/controllers/base_controller.py
|
|
31
|
+
msgid "If you want initialize change token"
|
|
32
|
+
msgstr "Change API token"
|
|
33
|
+
|
|
34
|
+
# Branch: feature/add_new_method_for_containers
|
|
35
|
+
#: tsr/controllers/base_controller.py
|
|
36
|
+
msgid "Help clear env, after update command cli"
|
|
37
|
+
msgstr "Help with clearing environment after updating CLI"
|
|
38
|
+
|
|
39
|
+
# Branch: feature/add_new_method_for_containers
|
|
40
|
+
#: tsr/helpers/error_handler.py
|
|
41
|
+
msgid "We have error on working with file system - %error_message%"
|
|
42
|
+
msgstr "File system error: %error_message%"
|
|
43
|
+
|
|
44
|
+
# Branch: feature/add_new_method_for_containers
|
|
45
|
+
#: tsr/helpers/error_handler.py
|
|
46
|
+
msgid "Please open this repo url %git_url% and 'Accept invitation', or check your access to repository"
|
|
47
|
+
msgstr "Please visit %git_url% to accept the invitation or verify your repository access"
|
|
48
|
+
|
|
49
|
+
# Branch: feature/add_new_method_for_containers
|
|
50
|
+
#: tsr/helpers/error_handler.py
|
|
51
|
+
msgid "Error git command - %git_status% - %git_error%"
|
|
52
|
+
msgstr "Error in Git command: %git_status% - %git_error%"
|
|
53
|
+
|
|
54
|
+
# Branch: feature/add_new_method_for_containers
|
|
55
|
+
#: tsr/helpers/error_handler.py
|
|
56
|
+
msgid "Auth exception, change token"
|
|
57
|
+
msgstr "Authentication exception: please update your API token"
|
|
58
|
+
|
|
59
|
+
# Branch: feature/add_new_method_for_containers
|
|
60
|
+
#: tsr/helpers/error_handler.py
|
|
61
|
+
msgid "We have error on business logic, please connect with developer"
|
|
62
|
+
msgstr "Business logic error: please contact TheStage AI team for assistance"
|
|
63
|
+
|
|
64
|
+
# Branch: feature/add_new_method_for_containers
|
|
65
|
+
#: tsr/helpers/error_handler.py
|
|
66
|
+
msgid "We have error on working with config - %error_message%"
|
|
67
|
+
msgstr "Configuration error: %error_message%"
|
|
68
|
+
|
|
69
|
+
# Branch: feature/add_new_method_for_containers
|
|
70
|
+
#: tsr/helpers/error_handler.py
|
|
71
|
+
msgid "Undefined utility error"
|
|
72
|
+
msgstr "Undefined error in utility"
|
|
73
|
+
|
|
74
|
+
# Branch: feature/add_new_method_for_containers
|
|
75
|
+
#: tsr/controllers/instance_controller.py
|
|
76
|
+
msgid "Help working with rented instances"
|
|
77
|
+
msgstr "Help with rented server instances"
|
|
78
|
+
|
|
79
|
+
# Branch: feature/add_new_method_for_containers
|
|
80
|
+
#: tsr/controllers/instance_controller.py
|
|
81
|
+
#: tsr/controllers/container_controller.py
|
|
82
|
+
#: tsr/controllers/sketch_controller.py
|
|
83
|
+
#: tsr/controllers/storage_controller.py
|
|
84
|
+
msgid "Count row in table"
|
|
85
|
+
msgstr "Number of rows in table"
|
|
86
|
+
|
|
87
|
+
# Branch: feature/add_new_method_for_containers
|
|
88
|
+
#: tsr/controllers/instance_controller.py
|
|
89
|
+
#: tsr/controllers/container_controller.py
|
|
90
|
+
#: tsr/controllers/sketch_controller.py
|
|
91
|
+
#: tsr/controllers/storage_controller.py
|
|
92
|
+
msgid "Page number"
|
|
93
|
+
msgstr "Page number"
|
|
94
|
+
|
|
95
|
+
# Branch: feature/add_new_method_for_containers
|
|
96
|
+
#: tsr/controllers/instance_controller.py
|
|
97
|
+
#: tsr/controllers/container_controller.py
|
|
98
|
+
#: tsr/controllers/sketch_controller.py
|
|
99
|
+
#: tsr/controllers/storage_controller.py
|
|
100
|
+
msgid "Start process with default values, without future dialog"
|
|
101
|
+
msgstr "Start process with default values, bypass further prompts"
|
|
102
|
+
|
|
103
|
+
# Branch: feature/add_new_method_for_containers
|
|
104
|
+
#: tsr/controllers/instance_controller.py
|
|
105
|
+
#: tsr/controllers/container_controller.py
|
|
106
|
+
#: tsr/controllers/sketch_controller.py
|
|
107
|
+
#: tsr/controllers/storage_controller.py
|
|
108
|
+
msgid "This folder is not initialize, please doing init or clone"
|
|
109
|
+
msgstr "Folder not initialized: please initialize or clone it"
|
|
110
|
+
|
|
111
|
+
# Branch: feature/add_new_method_for_containers
|
|
112
|
+
#: tsr/controllers/instance_controller.py
|
|
113
|
+
#: tsr/controllers/sketch_controller.py
|
|
114
|
+
msgid "List runs done"
|
|
115
|
+
msgstr "Fetching run list completed"
|
|
116
|
+
|
|
117
|
+
# Branch: feature/add_new_method_for_containers
|
|
118
|
+
#: tsr/controllers/base_controller.py
|
|
119
|
+
msgid "%app_name% v%version%"
|
|
120
|
+
msgstr "Application: %app_name% Version: %version%"
|
|
121
|
+
|
|
122
|
+
# Branch: feature/add_new_method_for_containers
|
|
123
|
+
#: tsr/controllers/container_controller.py
|
|
124
|
+
msgid "Help working with containers"
|
|
125
|
+
msgstr "Help with container management"
|
|
126
|
+
|
|
127
|
+
# Branch: feature/add_new_method_for_containers
|
|
128
|
+
#: tsr/controllers/container_controller.py
|
|
129
|
+
msgid "List containers done"
|
|
130
|
+
msgstr "Fetching container list completed"
|
|
131
|
+
|
|
132
|
+
# Branch: feature/add_new_method_for_containers
|
|
133
|
+
#: tsr/controllers/sketch_controller.py
|
|
134
|
+
msgid "Help working with sketches"
|
|
135
|
+
msgstr "Help with sketch management"
|
|
136
|
+
|
|
137
|
+
# Branch: feature/add_new_method_for_containers
|
|
138
|
+
#: tsr/controllers/sketch_controller.py
|
|
139
|
+
msgid "Slug for sketch"
|
|
140
|
+
msgstr "Enter slug for sketch"
|
|
141
|
+
|
|
142
|
+
# Branch: feature/add_new_method_for_containers
|
|
143
|
+
#: tsr/controllers/sketch_controller.py
|
|
144
|
+
msgid "This folder is initialize, and present working sketch"
|
|
145
|
+
msgstr "Folder initialized, it contains a working sketch"
|
|
146
|
+
|
|
147
|
+
# Branch: feature/add_new_method_for_containers
|
|
148
|
+
#: tsr/controllers/sketch_controller.py
|
|
149
|
+
msgid "Init done"
|
|
150
|
+
msgstr "Initialization completed"
|
|
151
|
+
|
|
152
|
+
# Branch: feature/add_new_method_for_containers
|
|
153
|
+
#: tsr/controllers/sketch_controller.py
|
|
154
|
+
msgid "Slug for sketch (Required)"
|
|
155
|
+
msgstr "Enter sketch slug (required)"
|
|
156
|
+
|
|
157
|
+
# Branch: feature/add_new_method_for_containers
|
|
158
|
+
#: tsr/controllers/sketch_controller.py
|
|
159
|
+
msgid "You can add own repository url"
|
|
160
|
+
msgstr "Add URL to your own repository"
|
|
161
|
+
|
|
162
|
+
# Branch: feature/add_new_method_for_containers
|
|
163
|
+
#: tsr/controllers/sketch_controller.py
|
|
164
|
+
msgid "This folder is not empty, we can not clone here"
|
|
165
|
+
msgstr "Cannot clone: the folder is not empty"
|
|
166
|
+
|
|
167
|
+
# Branch: feature/add_new_method_for_containers
|
|
168
|
+
#: tsr/controllers/sketch_controller.py
|
|
169
|
+
msgid "Clone done"
|
|
170
|
+
msgstr "Cloning completed"
|
|
171
|
+
|
|
172
|
+
# Branch: feature/add_new_method_for_containers
|
|
173
|
+
#: tsr/controllers/sketch_controller.py
|
|
174
|
+
msgid "Command for run (Required)"
|
|
175
|
+
msgstr "Enter command to run (required)"
|
|
176
|
+
|
|
177
|
+
# Branch: feature/add_new_method_for_containers
|
|
178
|
+
#: tsr/controllers/sketch_controller.py
|
|
179
|
+
msgid "Command args"
|
|
180
|
+
msgstr "Command arguments"
|
|
181
|
+
|
|
182
|
+
# Branch: feature/add_new_method_for_containers
|
|
183
|
+
#: tsr/controllers/sketch_controller.py
|
|
184
|
+
msgid "Commit hash"
|
|
185
|
+
msgstr "Commit hash"
|
|
186
|
+
|
|
187
|
+
# Branch: feature/add_new_method_for_containers
|
|
188
|
+
#: tsr/controllers/sketch_controller.py
|
|
189
|
+
msgid "Title for task"
|
|
190
|
+
msgstr "Task title"
|
|
191
|
+
|
|
192
|
+
# Branch: feature/add_new_method_for_containers
|
|
193
|
+
#: tsr/controllers/sketch_controller.py
|
|
194
|
+
msgid "Description for task"
|
|
195
|
+
msgstr "Task description"
|
|
196
|
+
|
|
197
|
+
# Branch: feature/add_new_method_for_containers
|
|
198
|
+
#: tsr/controllers/sketch_controller.py
|
|
199
|
+
msgid "Instance slug"
|
|
200
|
+
msgstr "Server instance slug"
|
|
201
|
+
|
|
202
|
+
# Branch: feature/add_new_method_for_containers
|
|
203
|
+
#: tsr/controllers/sketch_controller.py
|
|
204
|
+
msgid "Storage slug"
|
|
205
|
+
msgstr "Storage slug"
|
|
206
|
+
|
|
207
|
+
# Branch: feature/add_new_method_for_containers
|
|
208
|
+
#: tsr/controllers/sketch_controller.py
|
|
209
|
+
msgid "If 1 - working all time, if 0 - run task and exit"
|
|
210
|
+
msgstr "Enter '0' to run the task and exit, or '1' to continue"
|
|
211
|
+
|
|
212
|
+
# Branch: feature/add_new_method_for_containers
|
|
213
|
+
#: tsr/controllers/sketch_controller.py
|
|
214
|
+
msgid "Use with no_dialog config, default disable auto commit"
|
|
215
|
+
msgstr "Enable 'no_dialog' mode to run CLI without interactive prompts: in this mode, auto-commit is disabled by default, skipping the commit stage automatically (for testing)"
|
|
216
|
+
|
|
217
|
+
# Branch: feature/add_new_method_for_containers
|
|
218
|
+
#: tsr/controllers/sketch_controller.py
|
|
219
|
+
#: tsr/services/sketch/sketch_service.py
|
|
220
|
+
msgid "Task id: %task_id% - %task_status%"
|
|
221
|
+
msgstr "Task ID: %task_id%, Status: %task_status%"
|
|
222
|
+
|
|
223
|
+
# Branch: feature/add_new_method_for_containers
|
|
224
|
+
#: tsr/controllers/sketch_controller.py
|
|
225
|
+
msgid "Run task done"
|
|
226
|
+
msgstr "Task run completed"
|
|
227
|
+
|
|
228
|
+
# Branch: feature/add_new_method_for_containers
|
|
229
|
+
#: tsr/controllers/sketch_controller.py
|
|
230
|
+
msgid "Id run task (Required)"
|
|
231
|
+
msgstr "Enter task run ID (required)"
|
|
232
|
+
|
|
233
|
+
# Branch: feature/add_new_method_for_containers
|
|
234
|
+
#: tsr/controllers/sketch_controller.py
|
|
235
|
+
msgid "Task not found"
|
|
236
|
+
msgstr "Task not found"
|
|
237
|
+
|
|
238
|
+
# Branch: feature/add_new_method_for_containers
|
|
239
|
+
#: tsr/controllers/sketch_controller.py
|
|
240
|
+
msgid "TASK ID: %task_id%"
|
|
241
|
+
msgstr "TASK ID: %task_id%"
|
|
242
|
+
|
|
243
|
+
# Branch: feature/add_new_method_for_containers
|
|
244
|
+
#: tsr/controllers/sketch_controller.py
|
|
245
|
+
msgid "HASH COMMIT: %commit_hash%"
|
|
246
|
+
msgstr "COMMIT HASH: %commit_hash%"
|
|
247
|
+
|
|
248
|
+
# Branch: feature/add_new_method_for_containers
|
|
249
|
+
#: tsr/controllers/sketch_controller.py
|
|
250
|
+
msgid "TASK STATUS: %task_status%"
|
|
251
|
+
msgstr "TASK STATUS: %task_status%"
|
|
252
|
+
|
|
253
|
+
# Branch: feature/add_new_method_for_containers
|
|
254
|
+
#: tsr/controllers/sketch_controller.py
|
|
255
|
+
msgid "LINK RUNNER: %task_view_url%"
|
|
256
|
+
msgstr "TASK VIEW URL: %task_view_url%"
|
|
257
|
+
|
|
258
|
+
# Branch: feature/add_new_method_for_containers
|
|
259
|
+
#: tsr/controllers/sketch_controller.py
|
|
260
|
+
msgid "LINK RUNNER LOG: %task_output_url%"
|
|
261
|
+
msgstr "TASK OUTPUT LOG URL: %task_output_url"
|
|
262
|
+
|
|
263
|
+
# Branch: feature/add_new_method_for_containers
|
|
264
|
+
#: tsr/controllers/sketch_controller.py
|
|
265
|
+
msgid "Run details done"
|
|
266
|
+
msgstr "Fetching run details completed"
|
|
267
|
+
|
|
268
|
+
# Branch: feature/add_new_method_for_containers
|
|
269
|
+
#: tsr/controllers/sketch_controller.py
|
|
270
|
+
msgid "Task output empty"
|
|
271
|
+
msgstr "No output from task"
|
|
272
|
+
|
|
273
|
+
# Branch: feature/add_new_method_for_containers
|
|
274
|
+
#: tsr/controllers/sketch_controller.py
|
|
275
|
+
msgid "Output is empty"
|
|
276
|
+
msgstr "No output"
|
|
277
|
+
|
|
278
|
+
# Branch: feature/add_new_method_for_containers
|
|
279
|
+
#: tsr/controllers/sketch_controller.py
|
|
280
|
+
msgid "Task log done"
|
|
281
|
+
msgstr "Task logging completed"
|
|
282
|
+
|
|
283
|
+
# Branch: feature/add_new_method_for_containers
|
|
284
|
+
#: tsr/controllers/sketch_controller.py
|
|
285
|
+
msgid "Task %task_id% was stopped"
|
|
286
|
+
msgstr "Task with ID: %task_id% has been stopped"
|
|
287
|
+
|
|
288
|
+
# Branch: feature/add_new_method_for_containers
|
|
289
|
+
#: tsr/controllers/sketch_controller.py
|
|
290
|
+
msgid "Command is required"
|
|
291
|
+
msgstr "Command is required"
|
|
292
|
+
|
|
293
|
+
# Branch: feature/add_new_method_for_containers
|
|
294
|
+
#: tsr/controllers/sketch_controller.py
|
|
295
|
+
msgid "Task id is required"
|
|
296
|
+
msgstr "Task ID is required"
|
|
297
|
+
|
|
298
|
+
# Branch: feature/add_new_method_for_containers
|
|
299
|
+
#: tsr/controllers/storage_controller.py
|
|
300
|
+
msgid "Help working with rented storages"
|
|
301
|
+
msgstr "Help with managing rented storages"
|
|
302
|
+
|
|
303
|
+
# Branch: feature/add_new_method_for_containers
|
|
304
|
+
#: tsr/controllers/storage_controller.py
|
|
305
|
+
msgid "List storages done"
|
|
306
|
+
msgstr "Fetching storage list completed"
|
|
307
|
+
|
|
308
|
+
# Branch: feature/add_new_method_for_containers
|
|
309
|
+
#: tsr/services/abstract_service.py
|
|
310
|
+
#~ msgid "Page: %page%, Limit: %row%, Total: %total%"
|
|
311
|
+
#~ msgstr "Page: %page%, Limit: %row%, Total Items: %total%"
|
|
312
|
+
|
|
313
|
+
# Branch: feature/add_new_method_for_containers
|
|
314
|
+
#: tsr/services/abstract_service.py
|
|
315
|
+
msgid "List empty, work done"
|
|
316
|
+
msgstr "No items to list, listing completed"
|
|
317
|
+
|
|
318
|
+
# Branch: feature/add_new_method_for_containers
|
|
319
|
+
#: tsr/services/abstract_service.py
|
|
320
|
+
msgid "Go to next page (0 to exit)?"
|
|
321
|
+
msgstr "Proceed to next page? Enter '0' to exit"
|
|
322
|
+
|
|
323
|
+
# Branch: feature/add_new_method_for_containers
|
|
324
|
+
#: tsr/services/validation_service.py
|
|
325
|
+
msgid "In no dialog mode, you need added token to config or to system env: TSR_AUTH_TOKEN"
|
|
326
|
+
msgstr "Authentication required: Please add 'TSR_AUTH_TOKEN' to your configuration file or as an environment variable to run in no_dialog mode"
|
|
327
|
+
|
|
328
|
+
# Branch: feature/add_new_method_for_containers
|
|
329
|
+
#: tsr/services/validation_service.py
|
|
330
|
+
msgid "Please sign in via valid TheStage.ai API token"
|
|
331
|
+
msgstr "Please authenticate using valid TheStage AI API token"
|
|
332
|
+
|
|
333
|
+
# Branch: feature/add_new_method_for_containers
|
|
334
|
+
#: tsr/services/validation_service.py
|
|
335
|
+
msgid "Please issue the valid API token in your TheStage.ai web app account"
|
|
336
|
+
msgstr "Please generate API token using TheStage AI WebApp"
|
|
337
|
+
|
|
338
|
+
# Branch: feature/add_new_method_for_containers
|
|
339
|
+
#: tsr/services/validation_service.py
|
|
340
|
+
msgid "Token is valid"
|
|
341
|
+
msgstr "API token is valid"
|
|
342
|
+
|
|
343
|
+
# Branch: feature/add_new_method_for_containers
|
|
344
|
+
#: tsr/services/validation_service.py
|
|
345
|
+
msgid "Where you want to save token (LOCAL or GLOBAL config)"
|
|
346
|
+
msgstr "Please select API token storage location: local or global configuration"
|
|
347
|
+
|
|
348
|
+
# Branch: feature/add_new_method_for_containers
|
|
349
|
+
#: tsr/services/sketch/sketch_service.py
|
|
350
|
+
msgid "Sketch don't have repo url, you can set up local"
|
|
351
|
+
msgstr "Sketch not linked to remote repository: please configure local setup or provide repository URL"
|
|
352
|
+
|
|
353
|
+
# Branch: feature/add_new_method_for_containers
|
|
354
|
+
#: tsr/services/sketch/sketch_service.py
|
|
355
|
+
msgid "Please check you mail or open this repo url %git_url% and 'Accept invitation'"
|
|
356
|
+
msgstr "Please check your email or visit %git_url% to accept invitation"
|
|
357
|
+
|
|
358
|
+
# Branch: feature/add_new_method_for_containers
|
|
359
|
+
#: tsr/services/sketch/sketch_service.py
|
|
360
|
+
msgid "Task title is required, you can input manual or auto generated"
|
|
361
|
+
msgstr "Task title is required: please type or select to auto-generate"
|
|
362
|
+
|
|
363
|
+
# Branch: feature/add_new_method_for_containers
|
|
364
|
+
#: tsr/services/sketch/sketch_service.py
|
|
365
|
+
msgid "Task title can not be empty"
|
|
366
|
+
msgstr "Task title is required"
|
|
367
|
+
|
|
368
|
+
# Branch: feature/add_new_method_for_containers
|
|
369
|
+
#: tsr/services/sketch/sketch_service.py
|
|
370
|
+
msgid "This folder dont have git project"
|
|
371
|
+
msgstr "Folder does not contain git project"
|
|
372
|
+
|
|
373
|
+
# Branch: feature/add_new_method_for_containers
|
|
374
|
+
#: tsr/services/sketch/sketch_service.py
|
|
375
|
+
msgid "Auto created name for commit by tsr"
|
|
376
|
+
msgstr "Commit name automatically generated by tsr"
|
|
377
|
+
|
|
378
|
+
# Branch: feature/add_new_method_for_containers
|
|
379
|
+
#: tsr/services/sketch/sketch_service.py
|
|
380
|
+
msgid "Task run on server"
|
|
381
|
+
msgstr "Task run on server instance"
|
|
382
|
+
|
|
383
|
+
# Branch: feature/add_new_method_for_containers
|
|
384
|
+
#: tsr/services/sketch/sketch_service.py
|
|
385
|
+
msgid "The task failed with an error"
|
|
386
|
+
msgstr "Task failed with error"
|
|
387
|
+
|
|
388
|
+
# Branch: feature/add_new_method_for_containers
|
|
389
|
+
#: tsr/services/sketch/sketch_service.py
|
|
390
|
+
msgid "Run task details not found"
|
|
391
|
+
msgstr "Task run details not found"
|
|
392
|
+
|
|
393
|
+
# Branch: feature/add_new_method_for_containers
|
|
394
|
+
#: tsr/services/sketch/sketch_service.py
|
|
395
|
+
msgid "Task is crashed"
|
|
396
|
+
msgstr "Task crashed"
|
|
397
|
+
|
|
398
|
+
# Branch: feature/add_new_method_for_containers
|
|
399
|
+
#: tsr/services/sketch/sketch_service.py
|
|
400
|
+
msgid "Task is success done"
|
|
401
|
+
msgstr "Task has been successfully completed"
|
|
402
|
+
|
|
403
|
+
# Branch: feature/add_new_method_for_containers
|
|
404
|
+
#: tsr/services/sketch/sketch_service.py
|
|
405
|
+
msgid "Error on canceling task %message%"
|
|
406
|
+
msgstr "Failed to cancel task: %message%"
|
|
407
|
+
|
|
408
|
+
# Branch: feature/add_new_method_for_containers
|
|
409
|
+
#: tsr/services/sketch/sketch_service.py
|
|
410
|
+
msgid "In no dialog mode, you need added sketch slug as params"
|
|
411
|
+
msgstr "In no_dialog mode, add sketch slug as parameter"
|
|
412
|
+
|
|
413
|
+
# Branch: feature/add_new_method_for_containers
|
|
414
|
+
#: tsr/services/sketch/sketch_service.py
|
|
415
|
+
msgid "Please go to site and create new sketch or select present"
|
|
416
|
+
msgstr "Please create new sketch or select existing one using TheStage AI web application"
|
|
417
|
+
|
|
418
|
+
# Branch: feature/add_new_method_for_containers
|
|
419
|
+
#: tsr/services/sketch/sketch_service.py
|
|
420
|
+
msgid "Please give me sketch slug"
|
|
421
|
+
msgstr "Provide sketch slug"
|
|
422
|
+
|
|
423
|
+
# Branch: feature/add_new_method_for_containers
|
|
424
|
+
#: tsr/services/sketch/sketch_service.py
|
|
425
|
+
msgid "You entered the wrong slug, sketch not found"
|
|
426
|
+
msgstr "Incorrect slug specified: sketch not found"
|
|
427
|
+
|
|
428
|
+
# Branch: feature/add_new_method_for_containers
|
|
429
|
+
#: tsr/services/sketch/sketch_service.py
|
|
430
|
+
msgid "You have local repo with remote, we can not work with this"
|
|
431
|
+
msgstr "Your local repository is linked to a remote: this configuration is not supported for the current operation"
|
|
432
|
+
|
|
433
|
+
# Branch: feature/add_new_method_for_containers
|
|
434
|
+
#: tsr/services/sketch/sketch_service.py
|
|
435
|
+
msgid "Sketch dont have git repository url"
|
|
436
|
+
msgstr "No git repository URL associated with the sketch"
|
|
437
|
+
|
|
438
|
+
# Branch: feature/add_new_method_for_containers
|
|
439
|
+
#: tsr/services/sketch/sketch_service.py
|
|
440
|
+
msgid "You local repo has changes and not empty, please create empty folder"
|
|
441
|
+
msgstr "Your local repo has been modified and is not empty, please create an empty folder"
|
|
442
|
+
|
|
443
|
+
# Branch: feature/add_new_method_for_containers
|
|
444
|
+
#: tsr/services/sketch/sketch_service.py
|
|
445
|
+
msgid "We can not add remote, something wrong"
|
|
446
|
+
msgstr "Cannot add remote, something wrong"
|
|
447
|
+
|
|
448
|
+
# Branch: feature/add_new_method_for_containers
|
|
449
|
+
#: tsr/services/sketch/sketch_service.py
|
|
450
|
+
msgid "You have local repo, we can not work with this"
|
|
451
|
+
msgstr "Local repository in use: not supported for current operation"
|
|
452
|
+
|
|
453
|
+
# Branch: feature/add_new_method_for_containers
|
|
454
|
+
#: tsr/services/sketch/sketch_service.py
|
|
455
|
+
msgid "Please give me repository url"
|
|
456
|
+
msgstr "Please provide repository URL"
|
|
457
|
+
|
|
458
|
+
# Branch: feature/add_new_method_for_containers
|
|
459
|
+
#: tsr/services/sketch/sketch_service.py
|
|
460
|
+
msgid "New task title:"
|
|
461
|
+
msgstr "New task title:"
|
|
462
|
+
|
|
463
|
+
# Branch: feature/add_new_method_for_containers
|
|
464
|
+
#: tsr/services/sketch/sketch_service.py
|
|
465
|
+
msgid "You have not commit changes"
|
|
466
|
+
msgstr "Changes have not been committed"
|
|
467
|
+
|
|
468
|
+
# Branch: feature/add_new_method_for_containers
|
|
469
|
+
#: tsr/services/sketch/sketch_service.py
|
|
470
|
+
msgid "COMMIT you changes or EXIT ?"
|
|
471
|
+
msgstr "Commit changes or exit?"
|
|
472
|
+
|
|
473
|
+
# Branch: feature/add_new_method_for_containers
|
|
474
|
+
#: tsr/services/sketch/sketch_service.py
|
|
475
|
+
msgid "Please give me commit name"
|
|
476
|
+
msgstr "Specify commit name"
|
|
477
|
+
|
|
478
|
+
# Branch: feature/add_new_method_for_containers
|
|
479
|
+
#: tsr/services/sketch/sketch_service.py
|
|
480
|
+
msgid "Cannot commit with empty commit name, your code run without last changes."
|
|
481
|
+
msgstr "Cannot commit: commit name is required. Uncommitted changes will not be included in this run"
|
|
482
|
+
|
|
483
|
+
# Branch: feature/add_new_method_for_containers
|
|
484
|
+
#: tsr/services/sketch/sketch_service.py
|
|
485
|
+
msgid "Working instance is required, please add to sketch rented instance or selfhosted instance."
|
|
486
|
+
msgstr "Sketch requires running server instance: please add rented or self-hosted server instance to the sketch"
|
|
487
|
+
|
|
488
|
+
# Branch: feature/add_new_method_for_containers
|
|
489
|
+
#: tsr/services/sketch/sketch_service.py
|
|
490
|
+
msgid "The task failed with an error: %server_massage%"
|
|
491
|
+
msgstr "Task failed with error: %server_massage%"
|
|
492
|
+
|
|
493
|
+
# Branch: feature/add_new_method_for_containers
|
|
494
|
+
#: tsr/services/sketch/sketch_service.py
|
|
495
|
+
msgid "Server stdout:"
|
|
496
|
+
msgstr "Server stdout:"
|
|
497
|
+
|
|
498
|
+
# Branch: feature/add_new_method_for_containers
|
|
499
|
+
#: tsr/services/sketch/sketch_service.py
|
|
500
|
+
msgid "Server sterr:"
|
|
501
|
+
msgstr "Server sterr:"
|
|
502
|
+
|
|
503
|
+
# Branch: feature/add_new_method_for_containers
|
|
504
|
+
#: tsr/services/app_config_service.py
|
|
505
|
+
msgid "Do you want to change current token?"
|
|
506
|
+
msgstr "Do you want to change the current API token?"
|
|
507
|
+
|
|
508
|
+
# Branch: feature/add_new_method_for_containers
|
|
509
|
+
#: tsr/services/filesystem_service.py
|
|
510
|
+
msgid "Error read home user folder"
|
|
511
|
+
msgstr "Failed to read user's home directory"
|
|
512
|
+
|
|
513
|
+
# Branch: feature/add_new_method_for_containers
|
|
514
|
+
#: tsr/services/filesystem_service.py
|
|
515
|
+
msgid "Not found this path"
|
|
516
|
+
msgstr "Path not found"
|
|
517
|
+
|
|
518
|
+
# Branch: feature/add_new_method_for_containers
|
|
519
|
+
#: tsr/services/filesystem_service.py
|
|
520
|
+
msgid "We can not make dir"
|
|
521
|
+
msgstr "Failed to create directory"
|
|
522
|
+
|
|
523
|
+
# Branch: feature/add_new_method_for_containers
|
|
524
|
+
#: tsr/services/filesystem_service.py
|
|
525
|
+
msgid "We can not make file"
|
|
526
|
+
msgstr "Failed to create file"
|
|
527
|
+
|
|
528
|
+
# Branch: feature/add_new_method_for_containers
|
|
529
|
+
#: tsr/services/filesystem_service.py
|
|
530
|
+
msgid "Please set up working directory as folder not file"
|
|
531
|
+
msgstr "Please specify directory (not file) as working directory"
|
|
532
|
+
|
|
533
|
+
# Branch: feature/add_new_method_for_containers
|
|
534
|
+
#: tsr/controllers/container_controller.py
|
|
535
|
+
msgid "Container id"
|
|
536
|
+
msgstr "Container ID"
|
|
537
|
+
|
|
538
|
+
# Branch: feature/add_new_method_for_containers
|
|
539
|
+
#: tsr/controllers/container_controller.py
|
|
540
|
+
msgid "Container slug"
|
|
541
|
+
msgstr "Container slug"
|
|
542
|
+
|
|
543
|
+
# Branch: feature/add_new_method_for_containers
|
|
544
|
+
#: tsr/controllers/container_controller.py
|
|
545
|
+
msgid "Not found container - %container_item%"
|
|
546
|
+
msgstr "Container not found: %container_item%"
|
|
547
|
+
|
|
548
|
+
# Branch: feature/add_new_method_for_containers
|
|
549
|
+
#: tsr/controllers/container_controller.py
|
|
550
|
+
msgid "ID: %id%"
|
|
551
|
+
msgstr "ID: %id%"
|
|
552
|
+
|
|
553
|
+
# Branch: feature/add_new_method_for_containers
|
|
554
|
+
#: tsr/controllers/container_controller.py
|
|
555
|
+
msgid "SLUG: %slug%"
|
|
556
|
+
msgstr "SLUG: %slug%"
|
|
557
|
+
|
|
558
|
+
# Branch: feature/add_new_method_for_containers
|
|
559
|
+
#: tsr/controllers/container_controller.py
|
|
560
|
+
msgid "TITLE: %title%"
|
|
561
|
+
msgstr "TITLE: %title%"
|
|
562
|
+
|
|
563
|
+
# Branch: feature/add_new_method_for_containers
|
|
564
|
+
#: tsr/controllers/container_controller.py
|
|
565
|
+
msgid "SYSTEM NAME: %system_name%"
|
|
566
|
+
msgstr "SYSTEM NAME: %system_name%"
|
|
567
|
+
|
|
568
|
+
# Branch: feature/add_new_method_for_containers
|
|
569
|
+
#: tsr/controllers/container_controller.py
|
|
570
|
+
msgid "DOCKER IMAGE: %docker_image%"
|
|
571
|
+
msgstr "DOCKER IMAGE: %docker_image%"
|
|
572
|
+
|
|
573
|
+
# Branch: feature/add_new_method_for_containers
|
|
574
|
+
#: tsr/controllers/container_controller.py
|
|
575
|
+
msgid "INSTANCE RANTED ID: %instance_id%"
|
|
576
|
+
msgstr "RENTED INSTANCE ID: %instance_id%"
|
|
577
|
+
|
|
578
|
+
# Branch: feature/add_new_method_for_containers
|
|
579
|
+
#: tsr/controllers/container_controller.py
|
|
580
|
+
msgid "INSTANCE RANTED: %instance_slug%"
|
|
581
|
+
msgstr "RENTED INSTANCE SLUG: %instance_slug%"
|
|
582
|
+
|
|
583
|
+
# Branch: feature/add_new_method_for_containers
|
|
584
|
+
#: tsr/controllers/container_controller.py
|
|
585
|
+
msgid "INSTANCE IP: %instance_ip%"
|
|
586
|
+
msgstr "RENTED INSTANCE IP: %instance_ip%"
|
|
587
|
+
|
|
588
|
+
# Branch: feature/add_new_method_for_containers
|
|
589
|
+
#: tsr/controllers/container_controller.py
|
|
590
|
+
msgid "INSTANCE USERNAME: %instance_username%"
|
|
591
|
+
msgstr "RENTED INSTANCE USERNAME: %instance_username%"
|
|
592
|
+
|
|
593
|
+
# Branch: feature/add_new_method_for_containers
|
|
594
|
+
#: tsr/controllers/container_controller.py
|
|
595
|
+
msgid "INSTANCE STATUS: %instance_status%"
|
|
596
|
+
msgstr "RENTED INSTANCE STATUS: %instance_status%"
|
|
597
|
+
|
|
598
|
+
# Branch: feature/add_new_method_for_containers
|
|
599
|
+
#: tsr/controllers/container_controller.py
|
|
600
|
+
msgid "SELFHOSTED INSTANCE ID: %instance_id%"
|
|
601
|
+
msgstr "SELF-HOSTED INSTANCE ID: %instance_id%"
|
|
602
|
+
|
|
603
|
+
# Branch: feature/add_new_method_for_containers
|
|
604
|
+
#: tsr/controllers/container_controller.py
|
|
605
|
+
msgid "SELFHOSTED INSTANCE SLUG: %instance_slug%"
|
|
606
|
+
msgstr "SELF-HOSTED INSTANCE SLUG: %instance_slug%"
|
|
607
|
+
|
|
608
|
+
# Branch: feature/add_new_method_for_containers
|
|
609
|
+
#: tsr/controllers/container_controller.py
|
|
610
|
+
msgid "SELFHOSTED INSTANCE IP: %instance_ip%"
|
|
611
|
+
msgstr "SELF-HOSTED INSTANCE IP: %instance_ip%"
|
|
612
|
+
|
|
613
|
+
# Branch: feature/add_new_method_for_containers
|
|
614
|
+
#: tsr/controllers/container_controller.py
|
|
615
|
+
msgid "SELFHOSTED INSTANCE USERNAME: %instance_username%"
|
|
616
|
+
msgstr "SELF-HOSTED INSTANCE USERNAME: %instance_username%"
|
|
617
|
+
|
|
618
|
+
# Branch: feature/add_new_method_for_containers
|
|
619
|
+
#: tsr/controllers/container_controller.py
|
|
620
|
+
msgid "SELFHOSTED INSTANCE STATUS: %instance_status%"
|
|
621
|
+
msgstr "SELF-HOSTED INSTANCE STATUS: %instance_status%"
|
|
622
|
+
|
|
623
|
+
# Branch: feature/add_new_method_for_containers
|
|
624
|
+
#: tsr/controllers/container_controller.py
|
|
625
|
+
msgid "CONTAINER SKETCH ID: %sketch_id%"
|
|
626
|
+
msgstr "CONTAINER SKETCH ID: %sketch_id%"
|
|
627
|
+
|
|
628
|
+
# Branch: feature/add_new_method_for_containers
|
|
629
|
+
#: tsr/controllers/container_controller.py
|
|
630
|
+
msgid "CONTAINER SKETCH SLUG: %sketch_slug%"
|
|
631
|
+
msgstr "CONTAINER SKETCH SLUG: %sketch_slug%"
|
|
632
|
+
|
|
633
|
+
# Branch: feature/add_new_method_for_containers
|
|
634
|
+
#: tsr/controllers/container_controller.py
|
|
635
|
+
msgid "CONTAINER SKETCH NAME: %sketch_name%"
|
|
636
|
+
msgstr "CONTAINER SKETCH NAME: %sketch_name%"
|
|
637
|
+
|
|
638
|
+
# Branch: feature/add_new_method_for_containers
|
|
639
|
+
#: tsr/controllers/container_controller.py
|
|
640
|
+
msgid "Container details done"
|
|
641
|
+
msgstr "Fetching container details completed"
|
|
642
|
+
|
|
643
|
+
# Branch: feature/add_new_method_for_containers
|
|
644
|
+
#: tsr/controllers/container_controller.py
|
|
645
|
+
msgid "Instance username if use selfhosted"
|
|
646
|
+
msgstr "Specify username if using a self-hosted instance"
|
|
647
|
+
|
|
648
|
+
# Branch: feature/add_new_method_for_containers
|
|
649
|
+
#: tsr/controllers/container_controller.py
|
|
650
|
+
msgid "Path to file for copy"
|
|
651
|
+
msgstr "Path to file to copy"
|
|
652
|
+
|
|
653
|
+
# Branch: feature/add_new_method_for_containers
|
|
654
|
+
#: tsr/controllers/container_controller.py
|
|
655
|
+
msgid "Recursive flag help copy folders"
|
|
656
|
+
msgstr "Use recursive flag for folder copying"
|
|
657
|
+
|
|
658
|
+
# Branch: feature/add_new_method_for_containers
|
|
659
|
+
#: tsr/controllers/container_controller.py
|
|
660
|
+
msgid "Container id or container slug is required"
|
|
661
|
+
msgstr "Specify container ID or container slug"
|
|
662
|
+
|
|
663
|
+
# Branch: feature/add_new_method_for_containers
|
|
664
|
+
#: tsr/controllers/container_controller.py
|
|
665
|
+
msgid "CONTAINER DATA:"
|
|
666
|
+
msgstr "CONTAINER DATA:"
|
|
667
|
+
|
|
668
|
+
# Branch: feature/add_new_method_for_containers
|
|
669
|
+
#: tsr/controllers/container_controller.py
|
|
670
|
+
#~ msgid "Container start"
|
|
671
|
+
#~ msgstr "Container started"
|
|
672
|
+
|
|
673
|
+
# Branch: feature/add_new_method_for_containers
|
|
674
|
+
#: tsr/controllers/container_controller.py
|
|
675
|
+
msgid "Something went wrong on server, please change late"
|
|
676
|
+
msgstr "Something went wrong on the server instance: try again later"
|
|
677
|
+
|
|
678
|
+
# Branch: feature/add_new_method_for_containers
|
|
679
|
+
#: tsr/controllers/container_controller.py
|
|
680
|
+
#~ msgid "Container stop"
|
|
681
|
+
#~ msgstr "Сontainer stopped"
|
|
682
|
+
|
|
683
|
+
# Branch: feature/add_new_method_for_containers
|
|
684
|
+
#: tsr/helpers/error_handler.py
|
|
685
|
+
msgid "Error connect to server or docker container %ip_address% by %username%"
|
|
686
|
+
msgstr "Failed to connect to server or Docker container, IP address: %ip_address%, username: %username%"
|
|
687
|
+
|
|
688
|
+
# Branch: feature/add_new_method_for_containers
|
|
689
|
+
#: tsr/services/container/container_service.py
|
|
690
|
+
msgid "Not found rented or selfhosted instance for connect"
|
|
691
|
+
msgstr "Cannot connect to rented or self-hosted instance"
|
|
692
|
+
|
|
693
|
+
# Branch: feature/add_new_method_for_containers
|
|
694
|
+
#: tsr/services/container/container_service.py
|
|
695
|
+
msgid "Container name not present, can not connect to container"
|
|
696
|
+
msgstr "Cannot connect to container: please specify container slug"
|
|
697
|
+
|
|
698
|
+
# Branch: feature/add_new_method_for_containers
|
|
699
|
+
#: tsr/services/container/container_service.py
|
|
700
|
+
msgid "We can not get shell on container (bash, shell), please use standard shell"
|
|
701
|
+
msgstr "Unable to access the requested shell (bash, shell) in the container: please use the default shell available in the container"
|
|
702
|
+
|
|
703
|
+
# Branch: feature/add_new_method_for_containers
|
|
704
|
+
#: tsr/services/container/container_service.py
|
|
705
|
+
msgid "Not found path with file"
|
|
706
|
+
msgstr "Path to file not found"
|
|
707
|
+
|
|
708
|
+
# Branch: feature/add_new_method_for_containers
|
|
709
|
+
#: tsr/services/container/container_service.py
|
|
710
|
+
msgid "Path is folder, please set up recursive flag"
|
|
711
|
+
msgstr "Path to folder specified: please set recursive flag"
|
|
712
|
+
|
|
713
|
+
# Branch: feature/add_new_method_for_containers
|
|
714
|
+
#: tsr/services/container/container_service.py
|
|
715
|
+
msgid "Please set up username as parameter on no-dialog mode"
|
|
716
|
+
msgstr "Specify username as parameter in no_dialog mode"
|
|
717
|
+
|
|
718
|
+
# Branch: feature/add_new_method_for_containers
|
|
719
|
+
#: tsr/services/container/container_service.py
|
|
720
|
+
msgid "Please set up username to connect instance"
|
|
721
|
+
msgstr "Specify username to connect to server instance"
|
|
722
|
+
|
|
723
|
+
# Branch: feature/add_new_method_for_containers
|
|
724
|
+
#: tsr/services/container/container_service.py
|
|
725
|
+
msgid "Container is running, can not start working server"
|
|
726
|
+
msgstr "Container is running: cannot start running container"
|
|
727
|
+
|
|
728
|
+
# Branch: feature/add_new_method_for_containers
|
|
729
|
+
#: tsr/services/container/container_service.py
|
|
730
|
+
msgid "Container creating, please check status later"
|
|
731
|
+
msgstr "Container is being created: check its status later"
|
|
732
|
+
|
|
733
|
+
# Branch: feature/add_new_method_for_containers
|
|
734
|
+
#: tsr/services/container/container_service.py
|
|
735
|
+
msgid "The container starts now, you can be up and running in minutes"
|
|
736
|
+
msgstr "Container is starting: check its status later"
|
|
737
|
+
|
|
738
|
+
# Branch: feature/add_new_method_for_containers
|
|
739
|
+
#: tsr/services/container/container_service.py
|
|
740
|
+
msgid "The container was deleted, create new"
|
|
741
|
+
msgstr "Container has been deleted"
|
|
742
|
+
|
|
743
|
+
# Branch: feature/add_new_method_for_containers
|
|
744
|
+
#: tsr/services/container/container_service.py
|
|
745
|
+
msgid "Container in rebooting or creating, please stop later"
|
|
746
|
+
msgstr "Container is in the process of restarting, starting or creating, please stop it later"
|
|
747
|
+
|
|
748
|
+
# Branch: feature/add_new_method_for_containers
|
|
749
|
+
#: tsr/services/container/container_service.py
|
|
750
|
+
msgid "Container was stopped, by error or manually"
|
|
751
|
+
msgstr "Container has been stopped due to error or manually"
|
|
752
|
+
|
|
753
|
+
# Branch: feature/add_new_method_for_containers
|
|
754
|
+
#: tsr/services/container/container_service.py
|
|
755
|
+
msgid "Container is rebooted, please connect late"
|
|
756
|
+
msgstr "Container is restarting, try to connect later"
|
|
757
|
+
|
|
758
|
+
# Branch: feature/add_new_method_for_containers
|
|
759
|
+
#: tsr/services/container/container_service.py
|
|
760
|
+
msgid "Container is failed, please start him"
|
|
761
|
+
msgstr "Container has been exited, please start it"
|
|
762
|
+
|
|
763
|
+
# Branch: feature/add_new_method_for_containers
|
|
764
|
+
#: tsr/services/container/container_service.py
|
|
765
|
+
msgid "Container was deleted, create new"
|
|
766
|
+
msgstr "Container has been deleted"
|
|
767
|
+
|
|
768
|
+
# Branch: feature/add_new_method_for_containers
|
|
769
|
+
#: tsr/services/remote_server_service.py
|
|
770
|
+
msgid "Error connect to remote server"
|
|
771
|
+
msgstr "Cannot connect to server instance"
|
|
772
|
+
|
|
773
|
+
# Branch: feature/add_new_method_for_containers
|
|
774
|
+
#: tsr/services/remote_server_service.py
|
|
775
|
+
msgid "Copy %file_name%"
|
|
776
|
+
msgstr "Copy %file_name%"
|
|
777
|
+
|
|
778
|
+
# Branch: feature/add_new_method_for_containers
|
|
779
|
+
#: tsr/services/remote_server_service.py
|
|
780
|
+
msgid "Error put file, file not found on server"
|
|
781
|
+
msgstr "Cannot upload file: file not found"
|
|
782
|
+
|
|
783
|
+
# Branch: feature/add_new_method_for_containers
|
|
784
|
+
#: tsr/services/remote_server_service.py
|
|
785
|
+
msgid "Error put file, undefined server error"
|
|
786
|
+
msgstr "Cannot upload file: undefined server error"
|
|
787
|
+
|
|
788
|
+
# Branch: feature/add_new_method_for_containers
|
|
789
|
+
#: tsr/services/remote_server_service.py
|
|
790
|
+
msgid "Complete copy %file_name%"
|
|
791
|
+
msgstr "File copy completed: %file_name%"
|
|
792
|
+
|
|
793
|
+
# Branch: feature/add_new_method_for_containers
|
|
794
|
+
#: tsr/services/sketch/mapper/sketch_task_mapper.py
|
|
795
|
+
msgid "Don't found instance slug"
|
|
796
|
+
msgstr "Server instance slug not found"
|
|
797
|
+
|
|
798
|
+
# Branch: feature/add_new_method_for_containers
|
|
799
|
+
#: tsr/services/sketch/sketch_service.py
|
|
800
|
+
msgid "Slug can not be empty"
|
|
801
|
+
msgstr "Specify slug"
|
|
802
|
+
|
|
803
|
+
# Branch: main
|
|
804
|
+
#: tsr/controllers/storage_controller.py
|
|
805
|
+
#: tsr/controllers/instance_controller.py
|
|
806
|
+
msgid "Status item (ALL - show all instances)"
|
|
807
|
+
msgstr ""
|
|
808
|
+
|
|
809
|
+
# Branch: main
|
|
810
|
+
#: tsr/controllers/storage_controller.py
|
|
811
|
+
msgid "Start show rented storages list with statuses: %statuses% (You can show all statuses set up status=ALL)"
|
|
812
|
+
msgstr ""
|
|
813
|
+
|
|
814
|
+
# Branch: main
|
|
815
|
+
#: tsr/controllers/instance_controller.py
|
|
816
|
+
msgid "Help working with instances"
|
|
817
|
+
msgstr ""
|
|
818
|
+
|
|
819
|
+
# Branch: main
|
|
820
|
+
#: tsr/controllers/instance_controller.py
|
|
821
|
+
msgid "Help working with self hosted instances"
|
|
822
|
+
msgstr ""
|
|
823
|
+
|
|
824
|
+
# Branch: main
|
|
825
|
+
#: tsr/controllers/instance_controller.py
|
|
826
|
+
msgid "Show list rented instances"
|
|
827
|
+
msgstr ""
|
|
828
|
+
|
|
829
|
+
# Branch: main
|
|
830
|
+
#: tsr/controllers/instance_controller.py
|
|
831
|
+
msgid "Start show instance list with statuses: %statuses% (You can show all statuses set up status=ALL)"
|
|
832
|
+
msgstr ""
|
|
833
|
+
|
|
834
|
+
# Branch: main
|
|
835
|
+
#: tsr/controllers/instance_controller.py
|
|
836
|
+
msgid "List rented done"
|
|
837
|
+
msgstr ""
|
|
838
|
+
|
|
839
|
+
# Branch: main
|
|
840
|
+
#: tsr/controllers/instance_controller.py
|
|
841
|
+
msgid "Show list self-hosted instances"
|
|
842
|
+
msgstr ""
|
|
843
|
+
|
|
844
|
+
# Branch: main
|
|
845
|
+
#: tsr/controllers/instance_controller.py
|
|
846
|
+
msgid "Start show self-hosted list with statuses: %statuses% (You can show all statuses set up status=ALL)"
|
|
847
|
+
msgstr ""
|
|
848
|
+
|
|
849
|
+
# Branch: main
|
|
850
|
+
#: tsr/controllers/instance_controller.py
|
|
851
|
+
msgid "List self-hosted done"
|
|
852
|
+
msgstr ""
|
|
853
|
+
|
|
854
|
+
# Branch: main
|
|
855
|
+
#: tsr/controllers/container_controller.py
|
|
856
|
+
msgid "Show list containers"
|
|
857
|
+
msgstr ""
|
|
858
|
+
|
|
859
|
+
# Branch: main
|
|
860
|
+
#: tsr/controllers/container_controller.py
|
|
861
|
+
msgid "Status item (ALL - show all containers)"
|
|
862
|
+
msgstr ""
|
|
863
|
+
|
|
864
|
+
# Branch: main
|
|
865
|
+
#: tsr/controllers/container_controller.py
|
|
866
|
+
msgid "Start show container list with statuses: %statuses% (You can show all statuses set up status=ALL)"
|
|
867
|
+
msgstr ""
|
|
868
|
+
|
|
869
|
+
# Branch: main
|
|
870
|
+
#: tsr/controllers/container_controller.py
|
|
871
|
+
msgid "Show details container"
|
|
872
|
+
msgstr ""
|
|
873
|
+
|
|
874
|
+
# Branch: main
|
|
875
|
+
#: tsr/controllers/container_controller.py
|
|
876
|
+
msgid "STATUS: %status%"
|
|
877
|
+
msgstr ""
|
|
878
|
+
|
|
879
|
+
# Branch: main
|
|
880
|
+
#: tsr/controllers/container_controller.py
|
|
881
|
+
msgid "CONTAINER PORT MAPPING:"
|
|
882
|
+
msgstr ""
|
|
883
|
+
|
|
884
|
+
# Branch: main
|
|
885
|
+
#: tsr/controllers/container_controller.py
|
|
886
|
+
msgid "CONTAINER DIRECTORY MAPPING:"
|
|
887
|
+
msgstr ""
|
|
888
|
+
|
|
889
|
+
# Branch: main
|
|
890
|
+
#: tsr/controllers/container_controller.py
|
|
891
|
+
msgid "Help connect to container"
|
|
892
|
+
msgstr ""
|
|
893
|
+
|
|
894
|
+
# Branch: main
|
|
895
|
+
#: tsr/controllers/container_controller.py
|
|
896
|
+
msgid "Help copy file to container"
|
|
897
|
+
msgstr ""
|
|
898
|
+
|
|
899
|
+
# Branch: main
|
|
900
|
+
#: tsr/controllers/container_controller.py
|
|
901
|
+
msgid "Path destination copy"
|
|
902
|
+
msgstr ""
|
|
903
|
+
|
|
904
|
+
# Branch: main
|
|
905
|
+
#: tsr/controllers/container_controller.py
|
|
906
|
+
msgid "Help start container"
|
|
907
|
+
msgstr ""
|
|
908
|
+
|
|
909
|
+
# Branch: main
|
|
910
|
+
#: tsr/controllers/container_controller.py
|
|
911
|
+
msgid "Help stop container"
|
|
912
|
+
msgstr ""
|
|
913
|
+
|
|
914
|
+
# Branch: main
|
|
915
|
+
#: tsr/controllers/container_controller.py
|
|
916
|
+
msgid "Container will be started"
|
|
917
|
+
msgstr ""
|
|
918
|
+
|
|
919
|
+
# Branch: main
|
|
920
|
+
#: tsr/controllers/container_controller.py
|
|
921
|
+
msgid "Container will be stoped"
|
|
922
|
+
msgstr ""
|
|
923
|
+
|
|
924
|
+
# Branch: main
|
|
925
|
+
#: tsr/services/abstract_service.py
|
|
926
|
+
msgid "Page: %page%, Limit: %limit%, Total page: %total_pages%"
|
|
927
|
+
msgstr ""
|
|
928
|
+
|
|
929
|
+
# Branch: main
|
|
930
|
+
#: tsr/services/container/container_service.py
|
|
931
|
+
msgid "Error, can not find mapping folders"
|
|
932
|
+
msgstr ""
|
|
933
|
+
|
|
934
|
+
# Branch: main
|
|
935
|
+
#: tsr/services/container/container_service.py
|
|
936
|
+
msgid "Error, can not find mapping for /public folder"
|
|
937
|
+
msgstr ""
|
|
938
|
+
|
|
939
|
+
# Branch: main
|
|
940
|
+
#: tsr/services/remote_server_service.py
|
|
941
|
+
msgid "Can not find mapping folders"
|
|
942
|
+
msgstr ""
|
|
943
|
+
|
|
944
|
+
# Branch: main
|
|
945
|
+
#: tsr/services/remote_server_service.py
|
|
946
|
+
msgid "No sftp server is installed on your instance"
|
|
947
|
+
msgstr ""
|