artefacts-cli 0.8.0__py3-none-any.whl → 0.9.2__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.
- artefacts/cli/__init__.py +67 -19
- artefacts/cli/app.py +196 -167
- artefacts/cli/app_containers.py +97 -25
- artefacts/cli/app_containers.pyi +3 -0
- artefacts/cli/bagparser.py +4 -0
- artefacts/cli/config.py +62 -0
- artefacts/cli/constants.py +7 -0
- artefacts/cli/containers/__init__.py +5 -5
- artefacts/cli/containers/docker_cm.py +175 -0
- artefacts/cli/containers/docker_utils.py +98 -0
- artefacts/cli/containers/utils.py +20 -8
- artefacts/cli/helpers.py +55 -0
- artefacts/cli/i18n.py +35 -0
- artefacts/cli/locales/art.pot +524 -0
- artefacts/cli/locales/base.pot +995 -0
- artefacts/cli/locales/click.pot +496 -0
- artefacts/cli/other.py +1 -0
- artefacts/cli/ros1.py +21 -6
- artefacts/cli/ros2.py +10 -3
- artefacts/cli/utils.py +8 -4
- artefacts/cli/utils_ros.py +35 -9
- artefacts/cli/version.py +2 -2
- artefacts/copava/__init__.py +1 -0
- {artefacts_cli-0.8.0.dist-info → artefacts_cli-0.9.2.dist-info}/METADATA +10 -3
- artefacts_cli-0.9.2.dist-info/RECORD +33 -0
- {artefacts_cli-0.8.0.dist-info → artefacts_cli-0.9.2.dist-info}/WHEEL +1 -1
- artefacts/cli/containers/docker.py +0 -119
- artefacts_cli-0.8.0.dist-info/RECORD +0 -24
- {artefacts_cli-0.8.0.dist-info → artefacts_cli-0.9.2.dist-info}/entry_points.txt +0 -0
- {artefacts_cli-0.8.0.dist-info → artefacts_cli-0.9.2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,995 @@
|
|
1
|
+
# Translations template for artefacts.
|
2
|
+
# Copyright (C) 2025 Asteria ART
|
3
|
+
# This file is distributed under the same license as the artefacts project.
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
|
5
|
+
#
|
6
|
+
#, fuzzy
|
7
|
+
msgid ""
|
8
|
+
msgstr ""
|
9
|
+
"Project-Id-Version: artefacts 0.9.2.dev8\n"
|
10
|
+
"Report-Msgid-Bugs-To: dev@artefacts.com\n"
|
11
|
+
"POT-Creation-Date: 2025-05-12 11:10+0900\n"
|
12
|
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15
|
+
"MIME-Version: 1.0\n"
|
16
|
+
"Content-Type: text/plain; charset=utf-8\n"
|
17
|
+
"Content-Transfer-Encoding: 8bit\n"
|
18
|
+
"Generated-By: Babel 2.17.0\n"
|
19
|
+
|
20
|
+
#: artefacts/cli/__init__.py:28
|
21
|
+
#, python-brace-format
|
22
|
+
msgid "Could not determine package version: {error_message}. Default to 0.0.0"
|
23
|
+
msgstr ""
|
24
|
+
|
25
|
+
#: artefacts/cli/__init__.py:99
|
26
|
+
#, python-brace-format
|
27
|
+
msgid "Error on job creation: {status_code}"
|
28
|
+
msgstr ""
|
29
|
+
|
30
|
+
#: artefacts/cli/__init__.py:179
|
31
|
+
#, python-brace-format
|
32
|
+
msgid "Error on scenario creation: {status_code}"
|
33
|
+
msgstr ""
|
34
|
+
|
35
|
+
#: artefacts/cli/__init__.py:290
|
36
|
+
msgid ""
|
37
|
+
"Files generated by the job are not uploaded to Artefacts, including the ones "
|
38
|
+
"specified in output_dirs"
|
39
|
+
msgstr ""
|
40
|
+
|
41
|
+
#: artefacts/cli/__init__.py:302
|
42
|
+
#, python-brace-format
|
43
|
+
msgid "Uploading {file_name} ({file_size:.2f} MB)"
|
44
|
+
msgstr ""
|
45
|
+
|
46
|
+
#: artefacts/cli/__init__.py:316
|
47
|
+
#, python-brace-format
|
48
|
+
msgid "File too large: {file_name} could not be uploaded"
|
49
|
+
msgstr ""
|
50
|
+
|
51
|
+
#: artefacts/cli/__init__.py:324
|
52
|
+
#, python-brace-format
|
53
|
+
msgid "Error uploading {file_name}: {error_message}, skipping"
|
54
|
+
msgstr ""
|
55
|
+
|
56
|
+
#: artefacts/cli/app.py:57 artefacts/cli/app.py:104 artefacts/cli/app.py:117
|
57
|
+
msgid "PROJECT_NAME"
|
58
|
+
msgstr ""
|
59
|
+
|
60
|
+
#: artefacts/cli/app.py:76
|
61
|
+
#, python-brace-format
|
62
|
+
msgid "Opening the project settings page: {url}"
|
63
|
+
msgstr ""
|
64
|
+
|
65
|
+
#: artefacts/cli/app.py:81
|
66
|
+
#, python-brace-format
|
67
|
+
msgid "Please enter your API KEY for {project}"
|
68
|
+
msgstr ""
|
69
|
+
|
70
|
+
#: artefacts/cli/app.py:88
|
71
|
+
#, python-brace-format
|
72
|
+
msgid "API KEY saved for {project}"
|
73
|
+
msgstr ""
|
74
|
+
|
75
|
+
#: artefacts/cli/app.py:91
|
76
|
+
msgid ""
|
77
|
+
"Would you like to download the generated artefacts.yaml file? This will "
|
78
|
+
"overwrite any existing config file in the current directory."
|
79
|
+
msgstr ""
|
80
|
+
|
81
|
+
#: artefacts/cli/app.py:113
|
82
|
+
#, python-brace-format
|
83
|
+
msgid "{project} config removed"
|
84
|
+
msgstr ""
|
85
|
+
|
86
|
+
#: artefacts/cli/app.py:133 artefacts/cli/app.py:635 artefacts/cli/app.py:641
|
87
|
+
#, python-brace-format
|
88
|
+
msgid "Error getting project info: {message}"
|
89
|
+
msgstr ""
|
90
|
+
|
91
|
+
#: artefacts/cli/app.py:144 artefacts/cli/app.py:518
|
92
|
+
#: artefacts/cli/app_containers.py:187
|
93
|
+
msgid "JOBNAME"
|
94
|
+
msgstr ""
|
95
|
+
|
96
|
+
#: artefacts/cli/app.py:149 artefacts/cli/app.py:502
|
97
|
+
msgid "Artefacts configuration file."
|
98
|
+
msgstr ""
|
99
|
+
|
100
|
+
#: artefacts/cli/app.py:155
|
101
|
+
msgid "Run with no tracking nor test execution"
|
102
|
+
msgstr ""
|
103
|
+
|
104
|
+
#: artefacts/cli/app.py:161
|
105
|
+
msgid "Skip configuring a simulator resource provided by Artefacts"
|
106
|
+
msgstr ""
|
107
|
+
|
108
|
+
#: artefacts/cli/app.py:168
|
109
|
+
msgid "Do not upload to Artefacts files generated during a run (e.g. rosbags)"
|
110
|
+
msgstr ""
|
111
|
+
|
112
|
+
#: artefacts/cli/app.py:176
|
113
|
+
msgid ""
|
114
|
+
"Break the 'middleware network' isolation between the test suite and the host "
|
115
|
+
"(in ROS1: --reuse-master flag; in ROS2: --disable-isolation flag). Primarily "
|
116
|
+
"for debugging"
|
117
|
+
msgstr ""
|
118
|
+
|
119
|
+
#: artefacts/cli/app.py:182 artefacts/cli/app.py:507
|
120
|
+
msgid "Optional description for this run"
|
121
|
+
msgstr ""
|
122
|
+
|
123
|
+
#: artefacts/cli/app.py:190 artefacts/cli/app.py:515
|
124
|
+
msgid ""
|
125
|
+
"Skip configuration validation, so that unsupported settings can be tried "
|
126
|
+
"out, e.g. non-ROS settings or simulators like SAPIEN."
|
127
|
+
msgstr ""
|
128
|
+
|
129
|
+
#: artefacts/cli/app.py:198
|
130
|
+
msgid ""
|
131
|
+
"[Experimental] Run the job inside a package container. The container image "
|
132
|
+
"is build if it does not exist yet, with default name as \"artefacts\" "
|
133
|
+
"(please use --with-image to override the image name). This option overrides "
|
134
|
+
"(for now) --dryrun, --nosim, --noisolation and --description."
|
135
|
+
msgstr ""
|
136
|
+
|
137
|
+
#: artefacts/cli/app.py:205
|
138
|
+
msgid ""
|
139
|
+
"[Experimental] Path to a custom Dockerfile. Defaults to Dockerfile in the "
|
140
|
+
"run directory. This flag is only used together with `--in-container`"
|
141
|
+
msgstr ""
|
142
|
+
|
143
|
+
#: artefacts/cli/app.py:212
|
144
|
+
msgid ""
|
145
|
+
"[Deprecated and unused from 0.8.0; Image names are now internally managed] "
|
146
|
+
"Run the job using the image name passed here. Only used when running with --"
|
147
|
+
"in-container set."
|
148
|
+
msgstr ""
|
149
|
+
|
150
|
+
#: artefacts/cli/app.py:220
|
151
|
+
msgid ""
|
152
|
+
"[Experimental] Override the default behaviour to always rebuild the "
|
153
|
+
"container image (as we assume incremental testing)."
|
154
|
+
msgstr ""
|
155
|
+
|
156
|
+
#: artefacts/cli/app.py:228
|
157
|
+
msgid ""
|
158
|
+
"Show any GUI if any is created by the test runs. By default, UI elements are "
|
159
|
+
"run but hidden---only test logs are returned. Please note GUI often assume "
|
160
|
+
"X11 (e.g. ROS), typically with Qt, so this may not work without a "
|
161
|
+
"appropriate environment."
|
162
|
+
msgstr ""
|
163
|
+
|
164
|
+
#: artefacts/cli/app.py:277
|
165
|
+
msgid "Checking container image"
|
166
|
+
msgstr ""
|
167
|
+
|
168
|
+
#: artefacts/cli/app.py:285
|
169
|
+
msgid "Container image ready"
|
170
|
+
msgstr ""
|
171
|
+
|
172
|
+
#: artefacts/cli/app.py:286
|
173
|
+
msgid "Run in container"
|
174
|
+
msgstr ""
|
175
|
+
|
176
|
+
#: artefacts/cli/app.py:296
|
177
|
+
msgid "Starting tests"
|
178
|
+
msgstr ""
|
179
|
+
|
180
|
+
#: artefacts/cli/app.py:299
|
181
|
+
msgid "Error: Job name not defined"
|
182
|
+
msgstr ""
|
183
|
+
|
184
|
+
#: artefacts/cli/app.py:309
|
185
|
+
#, python-brace-format
|
186
|
+
msgid "Job type not supported: {jt}"
|
187
|
+
msgstr ""
|
188
|
+
|
189
|
+
#: artefacts/cli/app.py:321
|
190
|
+
#, python-brace-format
|
191
|
+
msgid ""
|
192
|
+
"The selected framework '{framework}' is deprecated. Using '{alt}' instead."
|
193
|
+
msgstr ""
|
194
|
+
|
195
|
+
#: artefacts/cli/app.py:330
|
196
|
+
#, python-brace-format
|
197
|
+
msgid ""
|
198
|
+
"WARNING: framework: '{framework}' is not officially supported. Attempting "
|
199
|
+
"run."
|
200
|
+
msgstr ""
|
201
|
+
|
202
|
+
#: artefacts/cli/app.py:339
|
203
|
+
#, python-brace-format
|
204
|
+
msgid "AWS BATCH ARRAY DETECTED, batch_index={index}"
|
205
|
+
msgstr ""
|
206
|
+
|
207
|
+
#: artefacts/cli/app.py:368
|
208
|
+
msgid ""
|
209
|
+
"Unable to authenticate (Stage: Job initialisation), please check your "
|
210
|
+
"project name and API key"
|
211
|
+
msgstr ""
|
212
|
+
|
213
|
+
#: artefacts/cli/app.py:379
|
214
|
+
#, python-brace-format
|
215
|
+
msgid "Starting scenario {sid}/{num}: {name}"
|
216
|
+
msgstr ""
|
217
|
+
|
218
|
+
#: artefacts/cli/app.py:389
|
219
|
+
msgid ""
|
220
|
+
"Unable to authenticate (Stage: Job run), please check your project name and "
|
221
|
+
"API key"
|
222
|
+
msgstr ""
|
223
|
+
|
224
|
+
#: artefacts/cli/app.py:402
|
225
|
+
msgid "Test launch file not specified for ros2 project"
|
226
|
+
msgstr ""
|
227
|
+
|
228
|
+
#: artefacts/cli/app.py:408
|
229
|
+
msgid "launch_test file not specified error"
|
230
|
+
msgstr ""
|
231
|
+
|
232
|
+
#: artefacts/cli/app.py:410
|
233
|
+
msgid ""
|
234
|
+
"Please specify a `ros_testfile` in the artefacts.yaml scenario configuration."
|
235
|
+
msgstr ""
|
236
|
+
|
237
|
+
#: artefacts/cli/app.py:416 artefacts/cli/app.py:459 artefacts/cli/app.py:477
|
238
|
+
msgid "Performing dry run"
|
239
|
+
msgstr ""
|
240
|
+
|
241
|
+
#: artefacts/cli/app.py:427
|
242
|
+
msgid "Artefacts failed to execute the tests"
|
243
|
+
msgstr ""
|
244
|
+
|
245
|
+
#: artefacts/cli/app.py:439
|
246
|
+
msgid ""
|
247
|
+
"Not able to execute tests. Make sure that ROS2 is sourced and that your "
|
248
|
+
"launch file syntax is correct."
|
249
|
+
msgstr ""
|
250
|
+
|
251
|
+
#: artefacts/cli/app.py:453
|
252
|
+
msgid "Test launch file not specified for ros1 project"
|
253
|
+
msgstr ""
|
254
|
+
|
255
|
+
#: artefacts/cli/app.py:471
|
256
|
+
msgid "run command not specified for scenario"
|
257
|
+
msgstr ""
|
258
|
+
|
259
|
+
#: artefacts/cli/app.py:491
|
260
|
+
msgid "Done"
|
261
|
+
msgstr ""
|
262
|
+
|
263
|
+
#: artefacts/cli/app.py:530 artefacts/cli/app_containers.py:231
|
264
|
+
#, python-brace-format
|
265
|
+
msgid "Project config file not found: {config}"
|
266
|
+
msgstr ""
|
267
|
+
|
268
|
+
#: artefacts/cli/app.py:542
|
269
|
+
#, python-brace-format
|
270
|
+
msgid "Can't find a job named '{jobname}' in config '{config}'"
|
271
|
+
msgstr ""
|
272
|
+
|
273
|
+
#: artefacts/cli/app.py:562
|
274
|
+
msgid "Packaging source..."
|
275
|
+
msgstr ""
|
276
|
+
|
277
|
+
#: artefacts/cli/app.py:608
|
278
|
+
#, python-brace-format
|
279
|
+
msgid ""
|
280
|
+
"Apologies, problem in interacting with the Artefacts backend: {status_code} "
|
281
|
+
"{reason}. Response text: {detail}."
|
282
|
+
msgstr ""
|
283
|
+
|
284
|
+
#: artefacts/cli/app.py:622
|
285
|
+
#, python-brace-format
|
286
|
+
msgid ""
|
287
|
+
"Missing access! Please make sure your API key is added at {url}/settings"
|
288
|
+
msgstr ""
|
289
|
+
|
290
|
+
#: artefacts/cli/app.py:629
|
291
|
+
#, python-brace-format
|
292
|
+
msgid "Billing issue, please go to {url}/settings to correct: {error}"
|
293
|
+
msgstr ""
|
294
|
+
|
295
|
+
#: artefacts/cli/app.py:648
|
296
|
+
#, python-brace-format
|
297
|
+
msgid ""
|
298
|
+
"Error getting project info: {status_code} {reason}. Response text: {detail}."
|
299
|
+
msgstr ""
|
300
|
+
|
301
|
+
#: artefacts/cli/app.py:664
|
302
|
+
msgid "Testing local source"
|
303
|
+
msgstr ""
|
304
|
+
|
305
|
+
#: artefacts/cli/app.py:713
|
306
|
+
#, python-brace-format
|
307
|
+
msgid "Uploading complete! The new job will show up shortly at {url}"
|
308
|
+
msgstr ""
|
309
|
+
|
310
|
+
#: artefacts/cli/app_containers.py:28
|
311
|
+
msgid ""
|
312
|
+
"[Deprecated since 0.8.0; please see --root] Path to the root of the project."
|
313
|
+
msgstr ""
|
314
|
+
|
315
|
+
#: artefacts/cli/app_containers.py:34
|
316
|
+
msgid "Path to the root of the project."
|
317
|
+
msgstr ""
|
318
|
+
|
319
|
+
#: artefacts/cli/app_containers.py:40
|
320
|
+
msgid ""
|
321
|
+
"Path to a custom Dockerfile. Defaults to Dockerfile under `path` (see option "
|
322
|
+
"of the same name)."
|
323
|
+
msgstr ""
|
324
|
+
|
325
|
+
#: artefacts/cli/app_containers.py:47
|
326
|
+
msgid ""
|
327
|
+
"[Deprecated since 0.8.0; not used and will disappear after 0.8.0] Name for "
|
328
|
+
"the generated image"
|
329
|
+
msgstr ""
|
330
|
+
|
331
|
+
#: artefacts/cli/app_containers.py:55 artefacts/cli/app_containers.py:193
|
332
|
+
msgid ""
|
333
|
+
"Path to the Artefacts configuration file. It defaults to `./artefacts.yaml`"
|
334
|
+
msgstr ""
|
335
|
+
|
336
|
+
#: artefacts/cli/app_containers.py:64
|
337
|
+
msgid ""
|
338
|
+
"Optional list of job names to process. The default is to process all jobs."
|
339
|
+
msgstr ""
|
340
|
+
|
341
|
+
#: artefacts/cli/app_containers.py:82
|
342
|
+
#, python-brace-format
|
343
|
+
msgid ""
|
344
|
+
"Project config file not found: {config}. Please provide an Artefacts "
|
345
|
+
"configuration file to proceed (running `artefacts init` allows to generate "
|
346
|
+
"one)."
|
347
|
+
msgstr ""
|
348
|
+
|
349
|
+
#: artefacts/cli/app_containers.py:106
|
350
|
+
#, python-brace-format
|
351
|
+
msgid ""
|
352
|
+
"Dockerfile `{dockerfile}` not found. Please ensure the file exits. Automatic "
|
353
|
+
"Dockerfile generation may also work by dropping the --dockerfile option."
|
354
|
+
msgstr ""
|
355
|
+
|
356
|
+
#: artefacts/cli/app_containers.py:123
|
357
|
+
#, python-brace-format
|
358
|
+
msgid ""
|
359
|
+
"No {dockerfile} found here. Let's generate one per scenario based on "
|
360
|
+
"artefacts.yaml. They will be available under the `{dest_root}` folder and "
|
361
|
+
"used from there."
|
362
|
+
msgstr ""
|
363
|
+
|
364
|
+
#: artefacts/cli/app_containers.py:143
|
365
|
+
#, python-brace-format
|
366
|
+
msgid "Using generated Dockerfile at: {dockerfile}"
|
367
|
+
msgstr ""
|
368
|
+
|
369
|
+
#: artefacts/cli/app_containers.py:161
|
370
|
+
msgid "No Dockerfile, nothing to do."
|
371
|
+
msgstr ""
|
372
|
+
|
373
|
+
#: artefacts/cli/app_containers.py:165
|
374
|
+
msgid "IMAGE_NAME"
|
375
|
+
msgstr ""
|
376
|
+
|
377
|
+
#: artefacts/cli/app_containers.py:175
|
378
|
+
#, python-brace-format
|
379
|
+
msgid "Container image {name} exists and ready to use."
|
380
|
+
msgstr ""
|
381
|
+
|
382
|
+
#: artefacts/cli/app_containers.py:201
|
383
|
+
msgid ""
|
384
|
+
"Show any GUI if any is created by the test runs. By default, UI elements are "
|
385
|
+
"run but hidden---only test logs are returned. Please note GUI often assume "
|
386
|
+
"an X11 environment, typically with Qt, so this may not work without a "
|
387
|
+
"appropriate environment."
|
388
|
+
msgstr ""
|
389
|
+
|
390
|
+
#: artefacts/cli/app_containers.py:249
|
391
|
+
#, python-brace-format
|
392
|
+
msgid "Container run complete: Container Id for inspection: {container_id}"
|
393
|
+
msgstr ""
|
394
|
+
|
395
|
+
#: artefacts/cli/app_containers.py:255
|
396
|
+
msgid "Package run failed:"
|
397
|
+
msgstr ""
|
398
|
+
|
399
|
+
#: artefacts/cli/config.py:31
|
400
|
+
#, python-brace-format
|
401
|
+
msgid "No API KEY set. Please run `artefacts config add {project_name}`"
|
402
|
+
msgstr ""
|
403
|
+
|
404
|
+
#: artefacts/cli/config.py:50 artefacts/cli/config.py:58
|
405
|
+
#, python-brace-format
|
406
|
+
msgid "Connecting to {api_url} using {auth_type}"
|
407
|
+
msgstr ""
|
408
|
+
|
409
|
+
#: artefacts/cli/ros1.py:55
|
410
|
+
msgid ""
|
411
|
+
"[warning in generate_rosbag_args] rosbag_record asks for 'subscriptions' but "
|
412
|
+
"they are not specified. Falling back to default: no rosbag will be recorded"
|
413
|
+
msgstr ""
|
414
|
+
|
415
|
+
#: artefacts/cli/ros1.py:108
|
416
|
+
#, python-brace-format
|
417
|
+
msgid "[Exception in get_result_path()] {message}"
|
418
|
+
msgstr ""
|
419
|
+
|
420
|
+
#: artefacts/cli/ros1.py:112
|
421
|
+
#, python-brace-format
|
422
|
+
msgid ""
|
423
|
+
"Unable to parse the ros1 .launch specified ({testfile}) and the <test> tag "
|
424
|
+
"within to find the unittest test method's name."
|
425
|
+
msgstr ""
|
426
|
+
|
427
|
+
#: artefacts/cli/ros1.py:119
|
428
|
+
msgid ""
|
429
|
+
"Please ensure all ROS and unittest naming conventions are respected. "
|
430
|
+
"Exiting.."
|
431
|
+
msgstr ""
|
432
|
+
|
433
|
+
#: artefacts/cli/ros1.py:227
|
434
|
+
#, python-brace-format
|
435
|
+
msgid "New rosbag found: {file_name}"
|
436
|
+
msgstr ""
|
437
|
+
|
438
|
+
#: artefacts/cli/ros1.py:233
|
439
|
+
msgid "starting rosbag postprocess"
|
440
|
+
msgstr ""
|
441
|
+
|
442
|
+
#: artefacts/cli/ros2.py:73
|
443
|
+
msgid ""
|
444
|
+
"Problem with parameter name. Please ensure params are in the format `node/"
|
445
|
+
"param`"
|
446
|
+
msgstr ""
|
447
|
+
|
448
|
+
#: artefacts/cli/utils.py:81
|
449
|
+
#, python-brace-format
|
450
|
+
msgid "Project config file {file_name} not found."
|
451
|
+
msgstr ""
|
452
|
+
|
453
|
+
#: artefacts/cli/utils_ros.py:70
|
454
|
+
#, python-brace-format
|
455
|
+
msgid "[Exception in parse_tests_results] {message}"
|
456
|
+
msgstr ""
|
457
|
+
|
458
|
+
#: artefacts/cli/utils_ros.py:72
|
459
|
+
msgid "Test result xml could not be loaded, marking success as False"
|
460
|
+
msgstr ""
|
461
|
+
|
462
|
+
#: artefacts/cli/containers/docker_cm.py:82
|
463
|
+
#, python-brace-format
|
464
|
+
msgid ""
|
465
|
+
"Missing API key for the project. Does `{path}/config` exist and contain your "
|
466
|
+
"key? Alternatively ARTEFACTS_KEY can be set with the key."
|
467
|
+
msgstr ""
|
468
|
+
|
469
|
+
#: artefacts/cli/containers/docker_cm.py:160
|
470
|
+
#, python-brace-format
|
471
|
+
msgid "Image {image} not found by Docker. Perhaps need to build first?"
|
472
|
+
msgstr ""
|
473
|
+
|
474
|
+
#: artefacts/cli/containers/docker_cm.py:170
|
475
|
+
#, python-brace-format
|
476
|
+
msgid "Failed to run from {image}. All we know: {message}"
|
477
|
+
msgstr ""
|
478
|
+
|
479
|
+
#: artefacts/cli/containers/docker_utils.py:28
|
480
|
+
#, python-brace-format
|
481
|
+
msgid ""
|
482
|
+
"Invalid GPU device for Docker: {g} ({e}). Accepted device formats are all, "
|
483
|
+
"device=1 and \"device=1,2\" (with a list of devices, quotes must be included"
|
484
|
+
msgstr ""
|
485
|
+
|
486
|
+
#: artefacts/cli/containers/docker_utils.py:38
|
487
|
+
#, python-brace-format
|
488
|
+
msgid ""
|
489
|
+
"Invalid GPU device for Docker: {g}. List of devices must be double-quoted. "
|
490
|
+
"Accepted device formats are all, device=1 and \"device=1,2\" (with a list of "
|
491
|
+
"devices, quotes must be included"
|
492
|
+
msgstr ""
|
493
|
+
|
494
|
+
#: artefacts/cli/containers/docker_utils.py:49
|
495
|
+
#, python-brace-format
|
496
|
+
msgid ""
|
497
|
+
"Invalid GPU device for Docker: {g}. Accepted device formats are all, "
|
498
|
+
"device=1 and \"device=1,2\" (with a list of devices, quotes must be included"
|
499
|
+
msgstr ""
|
500
|
+
|
501
|
+
#: artefacts/cli/containers/utils.py:23
|
502
|
+
#, python-brace-format
|
503
|
+
msgid ""
|
504
|
+
"Failed to find supported container stack. Please install and start one of "
|
505
|
+
"{engines}, with default settings (custom sockets not supported at this stage)"
|
506
|
+
msgstr ""
|
507
|
+
|
508
|
+
#: artefacts/cli/containers/utils.py:40
|
509
|
+
#, python-brace-format
|
510
|
+
msgid ""
|
511
|
+
"Tried to detect an unsupported engine: {engine}. WIP? Ignore and continue."
|
512
|
+
msgstr ""
|
513
|
+
|
514
|
+
#: artefacts/cli/containers/utils.py:48
|
515
|
+
#, python-brace-format
|
516
|
+
msgid "Problem in detecting {engine} ({message}) Ignore and continue."
|
517
|
+
msgstr ""
|
518
|
+
|
519
|
+
#: venv/lib/python3.10/site-packages/click/_termui_impl.py:179
|
520
|
+
msgid "d"
|
521
|
+
msgstr ""
|
522
|
+
|
523
|
+
#: venv/lib/python3.10/site-packages/click/_termui_impl.py:606
|
524
|
+
#, python-brace-format
|
525
|
+
msgid "{editor}: Editing failed"
|
526
|
+
msgstr ""
|
527
|
+
|
528
|
+
#: venv/lib/python3.10/site-packages/click/_termui_impl.py:610
|
529
|
+
#, python-brace-format
|
530
|
+
msgid "{editor}: Editing failed: {e}"
|
531
|
+
msgstr ""
|
532
|
+
|
533
|
+
#: venv/lib/python3.10/site-packages/click/_winconsole.py:155
|
534
|
+
#, python-brace-format
|
535
|
+
msgid "Windows error: {error}"
|
536
|
+
msgstr ""
|
537
|
+
|
538
|
+
#: venv/lib/python3.10/site-packages/click/_winconsole.py:172
|
539
|
+
#, python-brace-format
|
540
|
+
msgid "Windows error {errno}"
|
541
|
+
msgstr ""
|
542
|
+
|
543
|
+
#: venv/lib/python3.10/site-packages/click/core.py:88
|
544
|
+
#, python-brace-format
|
545
|
+
msgid ""
|
546
|
+
"It is not possible to add the group {cmd_name!r} to another group "
|
547
|
+
"{base_cmd_name!r} that is in chain mode."
|
548
|
+
msgstr ""
|
549
|
+
|
550
|
+
#: venv/lib/python3.10/site-packages/click/core.py:93
|
551
|
+
#, python-brace-format
|
552
|
+
msgid ""
|
553
|
+
"Found the group {cmd_name!r} as subcommand to another group {base_cmd_name!"
|
554
|
+
"r} that is in chain mode. This is not supported."
|
555
|
+
msgstr ""
|
556
|
+
|
557
|
+
#: venv/lib/python3.10/site-packages/click/core.py:998
|
558
|
+
#, python-brace-format
|
559
|
+
msgid ""
|
560
|
+
"The parameter {param} is used more than once. Remove its duplicate as "
|
561
|
+
"parameters should be unique."
|
562
|
+
msgstr ""
|
563
|
+
|
564
|
+
#: venv/lib/python3.10/site-packages/click/core.py:1090
|
565
|
+
#: venv/lib/python3.10/site-packages/click/core.py:1127
|
566
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2593
|
567
|
+
#, python-brace-format
|
568
|
+
msgid "(DEPRECATED: {target})"
|
569
|
+
msgstr ""
|
570
|
+
|
571
|
+
#: venv/lib/python3.10/site-packages/click/core.py:1092
|
572
|
+
#: venv/lib/python3.10/site-packages/click/core.py:1129
|
573
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2595
|
574
|
+
msgid "(DEPRECATED)"
|
575
|
+
msgstr ""
|
576
|
+
|
577
|
+
#: venv/lib/python3.10/site-packages/click/core.py:1094
|
578
|
+
#: venv/lib/python3.10/site-packages/click/core.py:1131
|
579
|
+
#, python-brace-format
|
580
|
+
msgid "{text} {deprecated_message}"
|
581
|
+
msgstr ""
|
582
|
+
|
583
|
+
#: venv/lib/python3.10/site-packages/click/core.py:1150
|
584
|
+
msgid "Options"
|
585
|
+
msgstr ""
|
586
|
+
|
587
|
+
#: venv/lib/python3.10/site-packages/click/core.py:1212
|
588
|
+
#, python-brace-format
|
589
|
+
msgid "Got unexpected extra argument ({args})"
|
590
|
+
msgid_plural "Got unexpected extra arguments ({args})"
|
591
|
+
msgstr[0] ""
|
592
|
+
msgstr[1] ""
|
593
|
+
|
594
|
+
#: venv/lib/python3.10/site-packages/click/core.py:1231
|
595
|
+
#, python-brace-format
|
596
|
+
msgid "DeprecationWarning: The command {name!r} is deprecated.{extra_message}"
|
597
|
+
msgstr ""
|
598
|
+
|
599
|
+
#: venv/lib/python3.10/site-packages/click/core.py:1415
|
600
|
+
msgid "Aborted!"
|
601
|
+
msgstr ""
|
602
|
+
|
603
|
+
#: venv/lib/python3.10/site-packages/click/core.py:1789
|
604
|
+
msgid "Commands"
|
605
|
+
msgstr ""
|
606
|
+
|
607
|
+
#: venv/lib/python3.10/site-packages/click/core.py:1820
|
608
|
+
msgid "Missing command."
|
609
|
+
msgstr ""
|
610
|
+
|
611
|
+
#: venv/lib/python3.10/site-packages/click/core.py:1898
|
612
|
+
#, python-brace-format
|
613
|
+
msgid "No such command {name!r}."
|
614
|
+
msgstr ""
|
615
|
+
|
616
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2137
|
617
|
+
#, python-brace-format
|
618
|
+
msgid ""
|
619
|
+
"'nargs' must be {arity} (or None) for type {type!r}, but it was {nargs}."
|
620
|
+
msgstr ""
|
621
|
+
|
622
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2173
|
623
|
+
#, python-brace-format
|
624
|
+
msgid "'default' {subject} must match nargs={nargs}."
|
625
|
+
msgstr ""
|
626
|
+
|
627
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2181
|
628
|
+
#, python-brace-format
|
629
|
+
msgid ""
|
630
|
+
"The {type_name} '{readable_name}' is deprecated and still required. A "
|
631
|
+
"deprecated {type_name} cannot be required."
|
632
|
+
msgstr ""
|
633
|
+
|
634
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2322
|
635
|
+
msgid "Value must be an iterable."
|
636
|
+
msgstr ""
|
637
|
+
|
638
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2343
|
639
|
+
#, python-brace-format
|
640
|
+
msgid "Takes {nargs} values but 1 was given."
|
641
|
+
msgid_plural "Takes {nargs} values but {len} were given."
|
642
|
+
msgstr[0] ""
|
643
|
+
msgstr[1] ""
|
644
|
+
|
645
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2423
|
646
|
+
#, python-brace-format
|
647
|
+
msgid ""
|
648
|
+
"DeprecationWarning: The {param_type} {name!r} is deprecated.{extra_message}"
|
649
|
+
msgstr ""
|
650
|
+
|
651
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2698
|
652
|
+
#, python-brace-format
|
653
|
+
msgid " (env var: '{var}')"
|
654
|
+
msgstr ""
|
655
|
+
|
656
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2712
|
657
|
+
#, python-brace-format
|
658
|
+
msgid "Name '{name}' defined twice"
|
659
|
+
msgstr ""
|
660
|
+
|
661
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2728
|
662
|
+
#, python-brace-format
|
663
|
+
msgid "Boolean option {decl!r} cannot use the same flag for true/false."
|
664
|
+
msgstr ""
|
665
|
+
|
666
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2747
|
667
|
+
#, python-brace-format
|
668
|
+
msgid "Could not determine name for option with declarations {decls!r}"
|
669
|
+
msgstr ""
|
670
|
+
|
671
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2754
|
672
|
+
#, python-brace-format
|
673
|
+
msgid ""
|
674
|
+
"No options defined but a name was passed ({name}). Did you mean to declare "
|
675
|
+
"an argument instead? Did you mean to pass '--{name}'?"
|
676
|
+
msgstr ""
|
677
|
+
|
678
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2831
|
679
|
+
#, python-brace-format
|
680
|
+
msgid "env var: {var}"
|
681
|
+
msgstr ""
|
682
|
+
|
683
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2834
|
684
|
+
#, python-brace-format
|
685
|
+
msgid "default: {default}"
|
686
|
+
msgstr ""
|
687
|
+
|
688
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2838
|
689
|
+
msgid "required"
|
690
|
+
msgstr ""
|
691
|
+
|
692
|
+
#: venv/lib/python3.10/site-packages/click/core.py:2894
|
693
|
+
msgid "(dynamic)"
|
694
|
+
msgstr ""
|
695
|
+
|
696
|
+
#: venv/lib/python3.10/site-packages/click/core.py:3124
|
697
|
+
#, python-brace-format
|
698
|
+
msgid ""
|
699
|
+
"Arguments take exactly one parameter declaration, got {length}: {decls}."
|
700
|
+
msgstr ""
|
701
|
+
|
702
|
+
#: venv/lib/python3.10/site-packages/click/decorators.py:97
|
703
|
+
#, python-brace-format
|
704
|
+
msgid ""
|
705
|
+
"Managed to invoke callback without a context object of type {type!r} "
|
706
|
+
"existing."
|
707
|
+
msgstr ""
|
708
|
+
|
709
|
+
#: venv/lib/python3.10/site-packages/click/decorators.py:134
|
710
|
+
#, python-brace-format
|
711
|
+
msgid "the {key!r} key from :attr:`click.Context.meta`"
|
712
|
+
msgstr ""
|
713
|
+
|
714
|
+
#: venv/lib/python3.10/site-packages/click/decorators.py:139
|
715
|
+
#, python-brace-format
|
716
|
+
msgid ""
|
717
|
+
"Decorator that passes {description} as the first argument to the decorated "
|
718
|
+
"function."
|
719
|
+
msgstr ""
|
720
|
+
|
721
|
+
#: venv/lib/python3.10/site-packages/click/decorators.py:477
|
722
|
+
#, python-format
|
723
|
+
msgid "%(prog)s, version %(version)s"
|
724
|
+
msgstr ""
|
725
|
+
|
726
|
+
#: venv/lib/python3.10/site-packages/click/decorators.py:514
|
727
|
+
#, python-brace-format
|
728
|
+
msgid "{name!r} is not installed. Try passing 'package_name' instead."
|
729
|
+
msgstr ""
|
730
|
+
|
731
|
+
#: venv/lib/python3.10/site-packages/click/decorators.py:521
|
732
|
+
#, python-brace-format
|
733
|
+
msgid "Could not determine the version for {name!r} automatically."
|
734
|
+
msgstr ""
|
735
|
+
|
736
|
+
#: venv/lib/python3.10/site-packages/click/decorators.py:538
|
737
|
+
msgid "Show the version and exit."
|
738
|
+
msgstr ""
|
739
|
+
|
740
|
+
#: venv/lib/python3.10/site-packages/click/decorators.py:564
|
741
|
+
msgid "Show this message and exit."
|
742
|
+
msgstr ""
|
743
|
+
|
744
|
+
#: venv/lib/python3.10/site-packages/click/exceptions.py:50
|
745
|
+
#: venv/lib/python3.10/site-packages/click/exceptions.py:89
|
746
|
+
#, python-brace-format
|
747
|
+
msgid "Error: {message}"
|
748
|
+
msgstr ""
|
749
|
+
|
750
|
+
#: venv/lib/python3.10/site-packages/click/exceptions.py:81
|
751
|
+
#, python-brace-format
|
752
|
+
msgid "Try '{command} {option}' for help."
|
753
|
+
msgstr ""
|
754
|
+
|
755
|
+
#: venv/lib/python3.10/site-packages/click/exceptions.py:130
|
756
|
+
#, python-brace-format
|
757
|
+
msgid "Invalid value: {message}"
|
758
|
+
msgstr ""
|
759
|
+
|
760
|
+
#: venv/lib/python3.10/site-packages/click/exceptions.py:132
|
761
|
+
#, python-brace-format
|
762
|
+
msgid "Invalid value for {param_hint}: {message}"
|
763
|
+
msgstr ""
|
764
|
+
|
765
|
+
#: venv/lib/python3.10/site-packages/click/exceptions.py:190
|
766
|
+
msgid "Missing argument"
|
767
|
+
msgstr ""
|
768
|
+
|
769
|
+
#: venv/lib/python3.10/site-packages/click/exceptions.py:192
|
770
|
+
msgid "Missing option"
|
771
|
+
msgstr ""
|
772
|
+
|
773
|
+
#: venv/lib/python3.10/site-packages/click/exceptions.py:194
|
774
|
+
msgid "Missing parameter"
|
775
|
+
msgstr ""
|
776
|
+
|
777
|
+
#: venv/lib/python3.10/site-packages/click/exceptions.py:196
|
778
|
+
#, python-brace-format
|
779
|
+
msgid "Missing {param_type}"
|
780
|
+
msgstr ""
|
781
|
+
|
782
|
+
#: venv/lib/python3.10/site-packages/click/exceptions.py:203
|
783
|
+
#, python-brace-format
|
784
|
+
msgid "Missing parameter: {param_name}"
|
785
|
+
msgstr ""
|
786
|
+
|
787
|
+
#: venv/lib/python3.10/site-packages/click/exceptions.py:223
|
788
|
+
#, python-brace-format
|
789
|
+
msgid "No such option: {name}"
|
790
|
+
msgstr ""
|
791
|
+
|
792
|
+
#: venv/lib/python3.10/site-packages/click/exceptions.py:235
|
793
|
+
#, python-brace-format
|
794
|
+
msgid "Did you mean {possibility}?"
|
795
|
+
msgid_plural "(Possible options: {possibilities})"
|
796
|
+
msgstr[0] ""
|
797
|
+
msgstr[1] ""
|
798
|
+
|
799
|
+
#: venv/lib/python3.10/site-packages/click/exceptions.py:282
|
800
|
+
msgid "unknown error"
|
801
|
+
msgstr ""
|
802
|
+
|
803
|
+
#: venv/lib/python3.10/site-packages/click/exceptions.py:289
|
804
|
+
#, python-brace-format
|
805
|
+
msgid "Could not open file {filename!r}: {message}"
|
806
|
+
msgstr ""
|
807
|
+
|
808
|
+
#: venv/lib/python3.10/site-packages/click/formatting.py:156
|
809
|
+
msgid "Usage:"
|
810
|
+
msgstr ""
|
811
|
+
|
812
|
+
#: venv/lib/python3.10/site-packages/click/parser.py:154
|
813
|
+
#, python-brace-format
|
814
|
+
msgid "Invalid start character for option ({option})"
|
815
|
+
msgstr ""
|
816
|
+
|
817
|
+
#: venv/lib/python3.10/site-packages/click/parser.py:190
|
818
|
+
#, python-brace-format
|
819
|
+
msgid "unknown action '{action}'"
|
820
|
+
msgstr ""
|
821
|
+
|
822
|
+
#: venv/lib/python3.10/site-packages/click/parser.py:212
|
823
|
+
#, python-brace-format
|
824
|
+
msgid "Argument {name!r} takes {nargs} values."
|
825
|
+
msgstr ""
|
826
|
+
|
827
|
+
#: venv/lib/python3.10/site-packages/click/parser.py:395
|
828
|
+
#, python-brace-format
|
829
|
+
msgid "Option {name!r} does not take a value."
|
830
|
+
msgstr ""
|
831
|
+
|
832
|
+
#: venv/lib/python3.10/site-packages/click/parser.py:456
|
833
|
+
#, python-brace-format
|
834
|
+
msgid "Option {name!r} requires an argument."
|
835
|
+
msgid_plural "Option {name!r} requires {nargs} arguments."
|
836
|
+
msgstr[0] ""
|
837
|
+
msgstr[1] ""
|
838
|
+
|
839
|
+
#: venv/lib/python3.10/site-packages/click/parser.py:527
|
840
|
+
#, python-brace-format
|
841
|
+
msgid ""
|
842
|
+
"'parser.{name}' is deprecated and will be removed in Click 9.0. The old "
|
843
|
+
"parser is available in 'optparse'."
|
844
|
+
msgstr ""
|
845
|
+
|
846
|
+
#: venv/lib/python3.10/site-packages/click/parser.py:540
|
847
|
+
msgid ""
|
848
|
+
"Importing 'parser.split_arg_string' is deprecated, it will only be available "
|
849
|
+
"in 'shell_completion' in Click 9.0."
|
850
|
+
msgstr ""
|
851
|
+
|
852
|
+
#: venv/lib/python3.10/site-packages/click/shell_completion.py:326
|
853
|
+
msgid "Shell completion is not supported for Bash versions older than 4.4."
|
854
|
+
msgstr ""
|
855
|
+
|
856
|
+
#: venv/lib/python3.10/site-packages/click/shell_completion.py:333
|
857
|
+
msgid "Couldn't detect Bash version, shell completion is not supported."
|
858
|
+
msgstr ""
|
859
|
+
|
860
|
+
#: venv/lib/python3.10/site-packages/click/termui.py:162
|
861
|
+
msgid "Repeat for confirmation"
|
862
|
+
msgstr ""
|
863
|
+
|
864
|
+
#: venv/lib/python3.10/site-packages/click/termui.py:178
|
865
|
+
msgid "Error: The value you entered was invalid."
|
866
|
+
msgstr ""
|
867
|
+
|
868
|
+
#: venv/lib/python3.10/site-packages/click/termui.py:180
|
869
|
+
#, python-brace-format
|
870
|
+
msgid "Error: {e.message}"
|
871
|
+
msgstr ""
|
872
|
+
|
873
|
+
#: venv/lib/python3.10/site-packages/click/termui.py:191
|
874
|
+
msgid "Error: The two entered values do not match."
|
875
|
+
msgstr ""
|
876
|
+
|
877
|
+
#: venv/lib/python3.10/site-packages/click/termui.py:247
|
878
|
+
msgid "Error: invalid input"
|
879
|
+
msgstr ""
|
880
|
+
|
881
|
+
#: venv/lib/python3.10/site-packages/click/termui.py:611
|
882
|
+
#: venv/lib/python3.10/site-packages/click/termui.py:617
|
883
|
+
#, python-brace-format
|
884
|
+
msgid "Unknown color {colour!r}"
|
885
|
+
msgstr ""
|
886
|
+
|
887
|
+
#: venv/lib/python3.10/site-packages/click/termui.py:866
|
888
|
+
msgid "Press any key to continue..."
|
889
|
+
msgstr ""
|
890
|
+
|
891
|
+
#: venv/lib/python3.10/site-packages/click/types.py:340
|
892
|
+
#, python-brace-format
|
893
|
+
msgid ""
|
894
|
+
"Choose from:\n"
|
895
|
+
"\t{choices}"
|
896
|
+
msgstr ""
|
897
|
+
|
898
|
+
#: venv/lib/python3.10/site-packages/click/types.py:377
|
899
|
+
#, python-brace-format
|
900
|
+
msgid "{value!r} is not {choice}."
|
901
|
+
msgid_plural "{value!r} is not one of {choices}."
|
902
|
+
msgstr[0] ""
|
903
|
+
msgstr[1] ""
|
904
|
+
|
905
|
+
#: venv/lib/python3.10/site-packages/click/types.py:383
|
906
|
+
#, python-brace-format
|
907
|
+
msgid "Choice({choices})"
|
908
|
+
msgstr ""
|
909
|
+
|
910
|
+
#: venv/lib/python3.10/site-packages/click/types.py:468
|
911
|
+
#, python-brace-format
|
912
|
+
msgid "{value!r} does not match the format {format}."
|
913
|
+
msgid_plural "{value!r} does not match the formats {formats}."
|
914
|
+
msgstr[0] ""
|
915
|
+
msgstr[1] ""
|
916
|
+
|
917
|
+
#: venv/lib/python3.10/site-packages/click/types.py:490
|
918
|
+
#, python-brace-format
|
919
|
+
msgid "{value!r} is not a valid {number_type}."
|
920
|
+
msgstr ""
|
921
|
+
|
922
|
+
#: venv/lib/python3.10/site-packages/click/types.py:546
|
923
|
+
#, python-brace-format
|
924
|
+
msgid "{value} is not in the range {range}."
|
925
|
+
msgstr ""
|
926
|
+
|
927
|
+
#: venv/lib/python3.10/site-packages/click/types.py:687
|
928
|
+
#, python-brace-format
|
929
|
+
msgid "{value!r} is not a valid boolean."
|
930
|
+
msgstr ""
|
931
|
+
|
932
|
+
#: venv/lib/python3.10/site-packages/click/types.py:711
|
933
|
+
#, python-brace-format
|
934
|
+
msgid "{value!r} is not a valid UUID."
|
935
|
+
msgstr ""
|
936
|
+
|
937
|
+
#: venv/lib/python3.10/site-packages/click/types.py:905
|
938
|
+
msgid "file"
|
939
|
+
msgstr ""
|
940
|
+
|
941
|
+
#: venv/lib/python3.10/site-packages/click/types.py:907
|
942
|
+
msgid "directory"
|
943
|
+
msgstr ""
|
944
|
+
|
945
|
+
#: venv/lib/python3.10/site-packages/click/types.py:909
|
946
|
+
msgid "path"
|
947
|
+
msgstr ""
|
948
|
+
|
949
|
+
#: venv/lib/python3.10/site-packages/click/types.py:956
|
950
|
+
#, python-brace-format
|
951
|
+
msgid "{name} {filename!r} does not exist."
|
952
|
+
msgstr ""
|
953
|
+
|
954
|
+
#: venv/lib/python3.10/site-packages/click/types.py:965
|
955
|
+
#, python-brace-format
|
956
|
+
msgid "{name} {filename!r} is a file."
|
957
|
+
msgstr ""
|
958
|
+
|
959
|
+
#: venv/lib/python3.10/site-packages/click/types.py:973
|
960
|
+
#, python-brace-format
|
961
|
+
msgid "{name} {filename!r} is a directory."
|
962
|
+
msgstr ""
|
963
|
+
|
964
|
+
#: venv/lib/python3.10/site-packages/click/types.py:982
|
965
|
+
#, python-brace-format
|
966
|
+
msgid "{name} {filename!r} is not readable."
|
967
|
+
msgstr ""
|
968
|
+
|
969
|
+
#: venv/lib/python3.10/site-packages/click/types.py:991
|
970
|
+
#, python-brace-format
|
971
|
+
msgid "{name} {filename!r} is not writable."
|
972
|
+
msgstr ""
|
973
|
+
|
974
|
+
#: venv/lib/python3.10/site-packages/click/types.py:1000
|
975
|
+
#, python-brace-format
|
976
|
+
msgid "{name} {filename!r} is not executable."
|
977
|
+
msgstr ""
|
978
|
+
|
979
|
+
#: venv/lib/python3.10/site-packages/click/types.py:1067
|
980
|
+
#, python-brace-format
|
981
|
+
msgid "{len_type} values are required, but {len_value} was given."
|
982
|
+
msgid_plural "{len_type} values are required, but {len_value} were given."
|
983
|
+
msgstr[0] ""
|
984
|
+
msgstr[1] ""
|
985
|
+
|
986
|
+
#: venv/lib/python3.10/site-packages/click/types.py:1130
|
987
|
+
#, python-brace-format
|
988
|
+
msgid "Attempted to use an uninstantiated parameter type ({type})."
|
989
|
+
msgstr ""
|
990
|
+
|
991
|
+
#: venv/lib/python3.10/site-packages/click/utils.py:342
|
992
|
+
#: venv/lib/python3.10/site-packages/click/utils.py:363
|
993
|
+
#, python-brace-format
|
994
|
+
msgid "Unknown standard stream '{name}'"
|
995
|
+
msgstr ""
|