foreman_remote_execution 11.1.3 → 12.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +1 -1
  3. data/.rubocop_todo.yml +0 -8
  4. data/.tx/config +2 -2
  5. data/app/assets/javascripts/foreman_remote_execution/locale/de/foreman_remote_execution.js +27 -21
  6. data/app/assets/javascripts/foreman_remote_execution/locale/en/foreman_remote_execution.js +24 -15
  7. data/app/assets/javascripts/foreman_remote_execution/locale/en_GB/foreman_remote_execution.js +27 -9
  8. data/app/assets/javascripts/foreman_remote_execution/locale/es/foreman_remote_execution.js +27 -24
  9. data/app/assets/javascripts/foreman_remote_execution/locale/fr/foreman_remote_execution.js +27 -24
  10. data/app/assets/javascripts/foreman_remote_execution/locale/ja/foreman_remote_execution.js +27 -24
  11. data/app/assets/javascripts/foreman_remote_execution/locale/ka/foreman_remote_execution.js +1587 -0
  12. data/app/assets/javascripts/foreman_remote_execution/locale/ko/foreman_remote_execution.js +27 -15
  13. data/app/assets/javascripts/foreman_remote_execution/locale/pt_BR/foreman_remote_execution.js +27 -24
  14. data/app/assets/javascripts/foreman_remote_execution/locale/ru/foreman_remote_execution.js +27 -15
  15. data/app/assets/javascripts/foreman_remote_execution/locale/zh_CN/foreman_remote_execution.js +27 -24
  16. data/app/assets/javascripts/foreman_remote_execution/locale/zh_TW/foreman_remote_execution.js +27 -15
  17. data/app/helpers/remote_execution_helper.rb +10 -4
  18. data/app/lib/actions/remote_execution/event_helpers.rb +42 -0
  19. data/app/lib/actions/remote_execution/run_host_job.rb +3 -16
  20. data/app/lib/actions/remote_execution/run_hosts_job.rb +7 -5
  21. data/app/models/concerns/api/v2/hosts_controller_extensions.rb +12 -0
  22. data/app/views/api/v2/job_invocations/base.json.rabl +14 -0
  23. data/config/routes.rb +2 -0
  24. data/db/migrate/20151215114631_add_host_id_to_template_invocation.rb +1 -1
  25. data/db/migrate/20151217092555_migrate_to_task_groups.rb +1 -1
  26. data/db/migrate/20160113162007_expand_all_template_invocations.rb +2 -2
  27. data/db/migrate/20160114125628_rename_job_name_to_job_category.rb +2 -2
  28. data/db/migrate/20200623073022_rename_sudo_password_to_effective_user_password.rb +2 -2
  29. data/db/migrate/20220321101835_rename_ssh_provider_to_script.rb +1 -1
  30. data/extra/cockpit/foreman-cockpit-session +1 -1
  31. data/foreman_remote_execution.gemspec +3 -1
  32. data/lib/foreman_remote_execution/engine.rb +14 -9
  33. data/lib/foreman_remote_execution/version.rb +1 -1
  34. data/locale/Makefile +3 -4
  35. data/locale/de/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  36. data/locale/de/foreman_remote_execution.po +24 -15
  37. data/locale/en/foreman_remote_execution.po +24 -15
  38. data/locale/en_GB/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  39. data/locale/en_GB/foreman_remote_execution.po +24 -15
  40. data/locale/es/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  41. data/locale/es/foreman_remote_execution.po +24 -15
  42. data/locale/foreman_remote_execution.pot +82 -69
  43. data/locale/fr/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  44. data/locale/fr/foreman_remote_execution.po +24 -15
  45. data/locale/ja/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  46. data/locale/ja/foreman_remote_execution.po +24 -15
  47. data/locale/ka/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  48. data/locale/ka/foreman_remote_execution.po +1576 -0
  49. data/locale/ko/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  50. data/locale/ko/foreman_remote_execution.po +24 -15
  51. data/locale/pt_BR/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  52. data/locale/pt_BR/foreman_remote_execution.po +24 -15
  53. data/locale/ru/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  54. data/locale/ru/foreman_remote_execution.po +24 -15
  55. data/locale/zh_CN/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  56. data/locale/zh_CN/foreman_remote_execution.po +24 -15
  57. data/locale/zh_TW/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  58. data/locale/zh_TW/foreman_remote_execution.po +24 -15
  59. data/test/unit/actions/run_hosts_job_test.rb +1 -1
  60. data/test/unit/api_params_test.rb +2 -10
  61. data/webpack/JobInvocationDetail/JobInvocationActions.js +22 -0
  62. data/webpack/JobInvocationDetail/JobInvocationConstants.js +7 -0
  63. data/webpack/JobInvocationDetail/JobInvocationOverview.js +104 -0
  64. data/webpack/JobInvocationDetail/JobInvocationSelectors.js +5 -0
  65. data/webpack/JobInvocationDetail/index.js +77 -0
  66. data/webpack/JobWizard/JobWizardPageRerun.js +10 -25
  67. data/webpack/JobWizard/index.js +9 -18
  68. data/webpack/Routes/routes.js +6 -0
  69. data/webpack/react_app/components/FeaturesDropdown/actions.js +4 -2
  70. data/webpack/react_app/components/FeaturesDropdown/constants.js +5 -0
  71. data/webpack/react_app/components/FeaturesDropdown/index.js +53 -14
  72. data/webpack/react_app/components/FeaturesDropdown/index.scss +11 -0
  73. data/webpack/react_app/extend/Fills.js +6 -0
  74. metadata +24 -10
  75. data/webpack/react_app/components/FeaturesDropdown/constant.js +0 -3
  76. /data/test/graphql/mutations/job_invocations/{create.rb → create_test.rb} +0 -0
  77. /data/test/unit/{renderer_scope_input.rb → renderer_scope_input_test.rb} +0 -0
@@ -0,0 +1,1587 @@
1
+ locales['foreman_remote_execution'] = locales['foreman_remote_execution'] || {}; locales['foreman_remote_execution']['ka'] = {
2
+ "domain": "foreman_remote_execution",
3
+ "locale_data": {
4
+ "foreman_remote_execution": {
5
+ "": {
6
+ "Project-Id-Version": "Foreman",
7
+ "Report-Msgid-Bugs-To": "",
8
+ "PO-Revision-Date": "2016-02-15 13:54+0000",
9
+ "Last-Translator": "FULL NAME <EMAIL@ADDRESS>",
10
+ "Language-Team": "Georgian (http://app.transifex.com/foreman/foreman/language/ka/)",
11
+ "MIME-Version": "1.0",
12
+ "Content-Type": "text/plain; charset=UTF-8",
13
+ "Content-Transfer-Encoding": "8bit",
14
+ "Language": "ka",
15
+ "Plural-Forms": "nplurals=2; plural=(n!=1);",
16
+ "lang": "ka",
17
+ "domain": "foreman_remote_execution",
18
+ "plural_forms": "nplurals=2; plural=(n!=1);"
19
+ },
20
+ "Another interface is already set as execution. Are you sure you want to use this one instead?": [
21
+ "ზოგიერთი სხვა ინტერფეისი უკვე დაყენებულია როგორც გასაშვები. დარწმუნებული ხართ, რომ გსურთ ამის ნაცვლად გამოიყენოთ?"
22
+ ],
23
+ "There was an error while updating the status, try refreshing the page.": [
24
+ "შეცდომა სტატუსის განახლებისას. სცადეთ, განაახლოთ ეს გვერდი."
25
+ ],
26
+ "List foreign input sets": [
27
+ "შემოტანის უცხო სეტების სია"
28
+ ],
29
+ "Show foreign input set details": [
30
+ "შემოტანის უცხო სეტების დეტალების ჩვენება"
31
+ ],
32
+ "Target template ID": [
33
+ "სამიზნე შაბლონის ID"
34
+ ],
35
+ "Include all inputs from the foreign template": [
36
+ "შეიცავს გარე შაბლონს ყველა შეყვანას"
37
+ ],
38
+ "A comma separated list of input names to be included from the foreign template.": [
39
+ "მძიმით გამოყოფილი შეყვანილი სახელების სია, რომელიც გარე პროფილიდან გნებავთ, ჩასვათ."
40
+ ],
41
+ "Input set description": [
42
+ "შეყვანის ნაკრების აღწერა"
43
+ ],
44
+ "Create a foreign input set": [
45
+ "გარედან შეყვანის სეტის შექმნა"
46
+ ],
47
+ "Delete a foreign input set": [
48
+ "გარედან შეყვანის სეტის წაშლა"
49
+ ],
50
+ "Update a foreign input set": [
51
+ "გარედან შეყვანის სეტის განახლება"
52
+ ],
53
+ "List job invocations": [
54
+ "დავალების ჩაწოდების სია"
55
+ ],
56
+ "Show job invocation": [
57
+ "დავალების ჩაწოდების ჩვენება"
58
+ ],
59
+ "Show Job status for the hosts": [
60
+ "ჰოსტების დავალების სტატუსის ჩვენება"
61
+ ],
62
+ "The job template to use, parameter is required unless feature was specified": [
63
+ ""
64
+ ],
65
+ "Invocation type, one of %s": [
66
+ "ჩაწოდების ტიპი. ერთერთი %s-დან"
67
+ ],
68
+ "Execute the jobs on hosts in randomized order": [
69
+ "ჰოსტებზე დავალებების შემთხვევითი მიმდევრობით გაშვება"
70
+ ],
71
+ "Inputs to use": [
72
+ "გამოყენებული შეყვანები"
73
+ ],
74
+ "SSH provider specific options": [
75
+ "SSH-ის მომწოდებლის სპეციფიკური პარამეტრები"
76
+ ],
77
+ "What user should be used to run the script (using sudo-like mechanisms). Defaults to a template parameter or global setting.": [
78
+ ""
79
+ ],
80
+ "Set password for effective user (using sudo-like mechanisms)": [
81
+ ""
82
+ ],
83
+ "Set SSH user": [
84
+ "დააყენეთ SSH-ის მომხმარებელი"
85
+ ],
86
+ "Set SSH password": [
87
+ "SSH პაროლის დაყენება"
88
+ ],
89
+ "Set SSH key passphrase": [
90
+ "SSH გასაღების პაროლის დაყენება"
91
+ ],
92
+ "Create a recurring job": [
93
+ "განეორებადი ლოგიკის დავალების შექმნა"
94
+ ],
95
+ "How often the job should occur, in the cron format": [
96
+ "რამდენ ხანში ერთხელ გაეშვება ეს დავალება. cron-ის ფორმატში"
97
+ ],
98
+ "Repeat a maximum of N times": [
99
+ "მაქსიმუმ N-ჯერ გამეორება"
100
+ ],
101
+ "Perform no more executions after this time": [
102
+ "ამ დროის შემდეგ გაშვებები აღარ მოხდება"
103
+ ],
104
+ "Designation of a special purpose": [
105
+ "განსაკუთრებული მიზნის აღნიშვნა"
106
+ ],
107
+ "Schedule the job to start at a later time": [
108
+ "დავალების მოგვიანებით გაშვების დაგეგმვა"
109
+ ],
110
+ "Schedule the job for a future time": [
111
+ "დავალების მომავალში გაშვების დაგეგმვა"
112
+ ],
113
+ "Indicates that the action should be cancelled if it cannot be started before this time.": [
114
+ "მიუთითებს, რომ მოქმედება უნდა გაუქმდეს, თუ მისი დაწყება ამ დრომდე შეუძლებელია."
115
+ ],
116
+ "Control concurrency level and distribution over time": [
117
+ "ერთდროულობის დონისა და დროში განაწილების მართვა"
118
+ ],
119
+ "Run at most N tasks at a time": [
120
+ "ერთდროულად მაქსიმუმ N დავალების გაშვება"
121
+ ],
122
+ "Override the description format from the template for this invocation only": [
123
+ ""
124
+ ],
125
+ "Override the timeout interval from the template for this invocation only": [
126
+ ""
127
+ ],
128
+ "Remote execution feature label that should be triggered, job template assigned to this feature will be used": [
129
+ ""
130
+ ],
131
+ "Override the global time to pickup interval for this invocation only": [
132
+ ""
133
+ ],
134
+ "Create a job invocation": [
135
+ "დავალების ჩაწოდების შექმნა"
136
+ ],
137
+ "Get output for a host": [
138
+ "ჰოსტის გამოტანის მიღება"
139
+ ],
140
+ "Get raw output for a host": [
141
+ "ჰოსტის გამოტანის პირდაპირ მიღება"
142
+ ],
143
+ "Cancel job invocation": [
144
+ "დავალების ჩაწოდების გაუქმება"
145
+ ],
146
+ "The job could not be cancelled.": [
147
+ "ამოცანის შეწყვეტა შეუძლებელია."
148
+ ],
149
+ "Rerun job on failed hosts": [
150
+ "წარუმატებელ ჰოსტებზე დავალების თავიდან გაშვება"
151
+ ],
152
+ "Could not rerun job %{id} because its template could not be found": [
153
+ ""
154
+ ],
155
+ "Get outputs of hosts in a job": [
156
+ "დავალებაში ჰოსტების გამოტანის ჩართვა"
157
+ ],
158
+ "Host with id '%{id}' was not found": [
159
+ "ჰოსტი ID-ით \\\"%{id} არ არსებობს"
160
+ ],
161
+ "Only one of feature or job_template_id can be specified": [
162
+ ""
163
+ ],
164
+ "List job templates": [
165
+ "დავალების შაბლონების სია"
166
+ ],
167
+ "List job templates per location": [
168
+ "მდებარეობის დავალების შაბლონების სია"
169
+ ],
170
+ "List job templates per organization": [
171
+ "ორგანიზაციის დავალების შაბლონების სია"
172
+ ],
173
+ "Import a job template from ERB": [
174
+ "დავალების შაბლონის ERB-დან შემოტანა"
175
+ ],
176
+ "Template ERB": [
177
+ "ERB შაბლონი"
178
+ ],
179
+ "Overwrite template if it already exists": [
180
+ "გადააწერე შაბლონი, თუ ის უკვე არსებობს"
181
+ ],
182
+ "Export a job template to ERB": [
183
+ "დავალების შაბლონის ERB-ში გატანა"
184
+ ],
185
+ "Show job template details": [
186
+ "დავალების შაბლონის დეტალების ჩვენება"
187
+ ],
188
+ "Template name": [
189
+ "შაბლონის სახელი"
190
+ ],
191
+ "Job category": [
192
+ "დავალების კატეგორია"
193
+ ],
194
+ "This template is used to generate the description. Input values can be used using the syntax %{package}. You may also include the job category and template name using %{job_category} and %{template_name}.": [
195
+ ""
196
+ ],
197
+ "Provider type": [
198
+ "მომწოდებლის წიპი"
199
+ ],
200
+ "Whether or not the template is locked for editing": [
201
+ "დაიბლოკება თუ არა შაბლონი მისი ჩასწორებისას"
202
+ ],
203
+ "Effective user options": [
204
+ "ეფექტური მომხმარებლის მორგება"
205
+ ],
206
+ "What user should be used to run the script (using sudo-like mechanisms)": [
207
+ ""
208
+ ],
209
+ "Whether it should be allowed to override the effective user from the invocation form.": [
210
+ ""
211
+ ],
212
+ "Whether the current user login should be used as the effective user": [
213
+ ""
214
+ ],
215
+ "Create a job template": [
216
+ "დავალების შაბლონის შექმნა"
217
+ ],
218
+ "Update a job template": [
219
+ "დავალების შაბლონის განახლება"
220
+ ],
221
+ "Template version": [
222
+ "შაბლონის ვერსია"
223
+ ],
224
+ "Delete a job template": [
225
+ "დავალების შაბლონის წაშლა"
226
+ ],
227
+ "Clone a provision template": [
228
+ "შაბლონის კლონირების შაბლონის კლონირება"
229
+ ],
230
+ "List remote execution features": [
231
+ "დაშორებული გაშვების ინტერფეისის ფუნქციები"
232
+ ],
233
+ "Show remote execution feature": [
234
+ "დაშორებული გაშვების ინტერფეისის ჩვენება"
235
+ ],
236
+ "Job template ID to be used for the feature": [
237
+ "ამ ფუნქციისთვის გამოყენებული დავალების შაბლონის ID"
238
+ ],
239
+ "List available remote execution features for a host": [
240
+ ""
241
+ ],
242
+ "List template invocations belonging to job invocation": [
243
+ ""
244
+ ],
245
+ "Identifier of the Host interface for Remote execution": [
246
+ "ჰოსტის ინტერფეისის იდენტიფიკატორი დაშორებული გაშვებისთვის"
247
+ ],
248
+ "Set 'host_registration_remote_execution_pull' parameter for the host. If it is set to true, pull provider client will be deployed on the host": [
249
+ ""
250
+ ],
251
+ "List of proxy IDs to be used for remote execution": [
252
+ "დაშორებული გაშვებისთვის გამოსაყენებელი პროქსის ID-ების სია"
253
+ ],
254
+ "Trying to abort the job": [
255
+ "დავალების შეწყვეტის მცდელობა"
256
+ ],
257
+ "Trying to cancel the job": [
258
+ "დავალების გაუქმების მცდელობა"
259
+ ],
260
+ "The job cannot be aborted at the moment.": [
261
+ "ამჟამად დავალების შეწყვეტა შეუძლებელია."
262
+ ],
263
+ "The job cannot be cancelled at the moment.": [
264
+ "ამჟამად დავალების გაუქმება შეუძლებელია."
265
+ ],
266
+ "Problem with previewing the template: %{error}. Note that you must save template input changes before you try to preview it.": [
267
+ ""
268
+ ],
269
+ "Job template imported successfully.": [
270
+ "დავალების შაბლონის შემოტანა წარმატებულია."
271
+ ],
272
+ "Unable to save template. Correct highlighted errors": [
273
+ "შაბლონის შენახვის შეცდომა. შეასწორეთ გამოკვეთილი შეცდომები"
274
+ ],
275
+ "Run": [
276
+ "გაშვება"
277
+ ],
278
+ "Schedule Remote Job": [
279
+ "დაშორებული დავალების დაგეგმვა"
280
+ ],
281
+ "Jobs": [
282
+ "დავალებები"
283
+ ],
284
+ "Job invocations": [
285
+ "დავალების ჩაწოდებები"
286
+ ],
287
+ "%s": [
288
+ "%s"
289
+ ],
290
+ "Web Console": [
291
+ "ვებ კონსოლი"
292
+ ],
293
+ "Success": [
294
+ "წარმატება"
295
+ ],
296
+ "Failed": [
297
+ "შეცდომა"
298
+ ],
299
+ "Pending": [
300
+ "დარჩენილი"
301
+ ],
302
+ "Cancelled": [
303
+ "შეწყვეტილია"
304
+ ],
305
+ "queued to start executing in %{time}": [
306
+ "გასაშვებ რიგშია %{time}"
307
+ ],
308
+ "queued": [
309
+ "რიგში"
310
+ ],
311
+ "running %{percent}%%": [
312
+ "გაშვებულია %{percent}%%"
313
+ ],
314
+ "succeeded": [
315
+ "წარმატებული"
316
+ ],
317
+ "cancelled": [
318
+ "შეწყვეტილია"
319
+ ],
320
+ "failed": [
321
+ "შეცდომა"
322
+ ],
323
+ "unknown status": [
324
+ "უცნობი სტატუსი"
325
+ ],
326
+ "Any Organization": [
327
+ "ნებისმიერი ორგანიზაცია"
328
+ ],
329
+ "Any Location": [
330
+ "ნებისმიერი მდებარეობა"
331
+ ],
332
+ "error": [
333
+ "შეცდომა"
334
+ ],
335
+ "Host detail": [
336
+ "ჰოსტის დეტალები"
337
+ ],
338
+ "Rerun on %s": [
339
+ "%s-ზე თავიდან გაშვება"
340
+ ],
341
+ "Host task": [
342
+ "ჰოსტის ამოცანა"
343
+ ],
344
+ "N/A": [
345
+ "N/A"
346
+ ],
347
+ "Run Job": [
348
+ "დავალების გაშვება"
349
+ ],
350
+ "Create Report": [
351
+ "ანგარიშის შექმნა"
352
+ ],
353
+ "Create report for this job": [
354
+ "ამ დავალების ანგარიშის შექმნა"
355
+ ],
356
+ "Rerun": [
357
+ "თავიდან გაშვება"
358
+ ],
359
+ "Rerun the job": [
360
+ "დავალების თავიდან გაშვება"
361
+ ],
362
+ "Rerun failed": [
363
+ "თავიდან გაშვების შეცდომა"
364
+ ],
365
+ "Rerun on failed hosts": [
366
+ "ავარიულ ჰოსტებზე თავიდან გაშვება"
367
+ ],
368
+ "Job Task": [
369
+ "დავალების ამოცანა"
370
+ ],
371
+ "See the last task details": [
372
+ "ბოლო ამოცანის დეტალების ნახვა"
373
+ ],
374
+ "Cancel Job": [
375
+ "ამოცანის გაუქმება"
376
+ ],
377
+ "Try to cancel the job": [
378
+ "დავალების"
379
+ ],
380
+ "Abort Job": [
381
+ "დავალების გაუქმება"
382
+ ],
383
+ "Try to abort the job without waiting for the results from the remote hosts": [
384
+ ""
385
+ ],
386
+ "New UI": [
387
+ ""
388
+ ],
389
+ "Switch to the new job invocation detail UI": [
390
+ ""
391
+ ],
392
+ "Task Details": [
393
+ "ამოცანის დეტალები"
394
+ ],
395
+ "See the task details": [
396
+ "ამოცანის დეტალების ნახვა"
397
+ ],
398
+ "Try to cancel the job on a host": [
399
+ "ჰოსტზე დავალების გაუქმების ცდა"
400
+ ],
401
+ "Try to abort the job on a host without waiting for its result": [
402
+ ""
403
+ ],
404
+ "Could not render the preview because no host matches the search query.": [
405
+ ""
406
+ ],
407
+ "in %s": [
408
+ "%s-ში"
409
+ ],
410
+ "%s ago": [
411
+ "%s-ის წინ"
412
+ ],
413
+ "Use default description template": [
414
+ "აღწერის ნაგულისხმები შაბლონის გამოყენება"
415
+ ],
416
+ "Description template": [
417
+ "აღწერის შაბლონი"
418
+ ],
419
+ "This template is used to generate the description.<br/>Input values can be used using the syntax %{package}.<br/>You may also include the job category and template<br/>name using %{job_category} and %{template_name}.": [
420
+ ""
421
+ ],
422
+ "Could not use any template used in the job invocation": [
423
+ "დავალების ჩაწოდებაში შაბლონები ვერ გამოვიყენე"
424
+ ],
425
+ "Failed rendering template: %s": [
426
+ "შაბლონის რენდერის შეცდომა: %s"
427
+ ],
428
+ "Task cancelled": [
429
+ "ამოცანა გაუქმდა"
430
+ ],
431
+ "Job execution failed": [
432
+ "დავალების შესრულების შეცდომა"
433
+ ],
434
+ "%{description} on %{host}": [
435
+ "%{description} %{host}-ზე"
436
+ ],
437
+ "Remote action:": [
438
+ "დაშორებული ქმედება:"
439
+ ],
440
+ "Job cancelled by user": [
441
+ "დავალება შეწყვეტილია მომხმარებლის მიერ"
442
+ ],
443
+ "Exit status: %s": [
444
+ "დასრულების სტატუსი: %s"
445
+ ],
446
+ "Job finished with error": [
447
+ "დავალება შეცდომით დასრულდა"
448
+ ],
449
+ "Error loading data from proxy": [
450
+ "პროქსიდან მონაცემების ჩატვირთვის შეცდომა"
451
+ ],
452
+ "User can not execute job on host %s": [
453
+ "მომხმარებელს ჰოსტზე (%s) დავალების შესრულება არ შეუძლია"
454
+ ],
455
+ "User can not execute this job template": [
456
+ "მომხმარებელს დავალების ამ შაბლონის შესრულება არ შეუძლია"
457
+ ],
458
+ "User can not execute job on infrastructure host %s": [
459
+ ""
460
+ ],
461
+ "User can not execute this job template on %s": [
462
+ ""
463
+ ],
464
+ "The only applicable proxy %{proxy_names} is down": [
465
+ "",
466
+ ""
467
+ ],
468
+ "Could not use any proxy for the %{provider} job. Consider configuring %{global_proxy}, %{fallback_proxy} in settings": [
469
+ ""
470
+ ],
471
+ "REX job has succeeded - %s": [
472
+ "REX დავალება წარმატებულია - %s"
473
+ ],
474
+ "REX job has failed - %s": [
475
+ "REX დავალების შეცდომა - %s"
476
+ ],
477
+ "included template '%s' not found": [
478
+ "ჩასმული შაბლონი '%s' ვერ ვიპოვე"
479
+ ],
480
+ "input macro with name '%s' used, but no input with such name defined for this template": [
481
+ ""
482
+ ],
483
+ "Unable to fetch public key": [
484
+ "საჯარო გასაღების გამოთხოვის შეცდომა"
485
+ ],
486
+ "Unable to remove host from known hosts": [
487
+ "ჰოსტის სანდო ჰოსტების სიიდან წაშლის შეცდომა"
488
+ ],
489
+ "REX job has finished - %s": [
490
+ "REX დავალება დასრულდა - %s"
491
+ ],
492
+ "Should this interface be used for remote execution?": [
493
+ "გამოვიყენო ეს ინტერფეისი დაშორებული გაშვებისთვის?"
494
+ ],
495
+ "Interface with the '%s' identifier was specified as a remote execution interface, however the interface was not found on the host. If the interface exists, it needs to be created in Foreman during the registration.": [
496
+ ""
497
+ ],
498
+ "host already has an execution interface": [
499
+ "ჰოსტს დაშორებული გაშვების ინტერფეისი უკვე გააჩნია"
500
+ ],
501
+ "This template is locked. Please clone it to a new template to customize.": [
502
+ "შაბლონი დაბლოკილია. მოსარგებად საჭიროა მისი კლონირება."
503
+ ],
504
+ "Circular dependency detected in foreign input set '%{template}' -> '%{target_template}'. Templates stack: %{templates_stack}": [
505
+ ""
506
+ ],
507
+ "Execution": [
508
+ "შესრულება"
509
+ ],
510
+ "Last execution succeeded": [
511
+ "ბოლო წარმატებული შესრულება"
512
+ ],
513
+ "No execution finished yet": [
514
+ "შესრულება არ დამთავრებულა"
515
+ ],
516
+ "Last execution cancelled": [
517
+ "ბოლო შესრულება გაუქმდა"
518
+ ],
519
+ "Last execution failed": [
520
+ "ბოლო შესრულება შეცდომით დასრულდა"
521
+ ],
522
+ "Unknown execution status": [
523
+ "შეცდომის უცნობი სტატუსი"
524
+ ],
525
+ "Recursive rendering of templates detected": [
526
+ ""
527
+ ],
528
+ "error during rendering: %s": [
529
+ "შეცდომა რენდერის დროს: %s"
530
+ ],
531
+ "template": [
532
+ "შაბლონი"
533
+ ],
534
+ "Cannot specify both bookmark_id and search_query": [
535
+ ""
536
+ ],
537
+ "Unknown input %{input_name} for template %{template_name}": [
538
+ ""
539
+ ],
540
+ "Template with id '%{id}' was not found": [
541
+ "შაბლონი ID-ით %{id} ნაპოვნი არაა"
542
+ ],
543
+ "Feature input %{input_name} not defined in template %{template_name}": [
544
+ ""
545
+ ],
546
+ "No template mapped to feature %{feature_name}": [
547
+ ""
548
+ ],
549
+ "The template %{template_name} mapped to feature %{feature_name} is not accessible by the user": [
550
+ ""
551
+ ],
552
+ "Job Invocation": [
553
+ "დავალების ჩაწოდება"
554
+ ],
555
+ "Duplicated inputs detected: %{duplicated_inputs}": [
556
+ "ნაპოვნია დუბლირებული შეყვანები: %{duplicated_inputs}"
557
+ ],
558
+ "Unknown remote execution feature %s": [
559
+ "დაშორებული გაშვების უცნობ ფუნქცია %s"
560
+ ],
561
+ "Effective user method \\\"%{current_value}\\\" is not one of %{valid_methods}": [
562
+ ""
563
+ ],
564
+ "Could not find any suitable interface for execution": [
565
+ ""
566
+ ],
567
+ "Subscribe to my failed jobs": [
568
+ "ყველა ჩემი წარუმატებელი დავალების გამოწერა"
569
+ ],
570
+ "Subscribe to my succeeded jobs": [
571
+ "ყველა ჩემი წარმატებული დავალების გამოწერა"
572
+ ],
573
+ "Subscribe to all my jobs": [
574
+ "ყველა ჩემი დავალების გამოწერა"
575
+ ],
576
+ "Script": [
577
+ "სკრიპტი"
578
+ ],
579
+ "Static Query": [
580
+ "სტატიკური მოთხოვნა"
581
+ ],
582
+ "Dynamic Query": [
583
+ "დინამიკური მოთხოვნა"
584
+ ],
585
+ "Alphabetical": [
586
+ "ანბანით დალაგებული"
587
+ ],
588
+ "Randomized": [
589
+ "შემთხვევით"
590
+ ],
591
+ "Cannot resolve hosts without a user": [
592
+ "მომხმარებლის გარეშე ჰოსტებს ვერ ამოვხსნი"
593
+ ],
594
+ "Cannot resolve hosts without a bookmark or search query": [
595
+ "ჰოსტების ამოხსნა შეუძლებელია სანიშნის ან საძებნი სტრიქონის გარეშე"
596
+ ],
597
+ "Must select a bookmark or enter a search query": [
598
+ "აირჩიეთ სანიშნე ან შეიყვანეთ საძებნი სტრიქონი"
599
+ ],
600
+ "Input": [
601
+ "შეყვანა"
602
+ ],
603
+ "Not all required inputs have values. Missing inputs: %s": [
604
+ ""
605
+ ],
606
+ "Internal proxy selector can only be used if Katello is enabled": [
607
+ "თუ Katello ჩართულია, პროქსის შიდა ამრჩევი იქნება გამოყენებული"
608
+ ],
609
+ "default_capsule method missing from SmartProxy": [
610
+ "ჭკვიან პროქსის აკლია მეთოდი default_capsule"
611
+ ],
612
+ "Can't find Job Invocation for an id %s": [
613
+ "დავალების ჩაწოდება ID-ით %s ნაპოვნი არაა"
614
+ ],
615
+ "Latest Jobs": [
616
+ "უკანასკნელი დავალებები"
617
+ ],
618
+ "Name": [
619
+ "სახელი"
620
+ ],
621
+ "State": [
622
+ "State"
623
+ ],
624
+ "Started": [
625
+ "დაიწყო"
626
+ ],
627
+ "No jobs available": [
628
+ "დავალებების გარეშე"
629
+ ],
630
+ "Results": [
631
+ "შედეგები"
632
+ ],
633
+ "Schedule": [
634
+ "განრიგი"
635
+ ],
636
+ "Concurrency level limited to": [
637
+ "ერთდროულობის დონის ლიმიტია"
638
+ ],
639
+ "tasks at a time": [
640
+ "ერთდროული ამოცანები"
641
+ ],
642
+ "Scheduled to start before": [
643
+ "გაეშვება მითითებულ დრომდე"
644
+ ],
645
+ "Scheduled to start at": [
646
+ "დაგეგმილი გაშვების დრო"
647
+ ],
648
+ "Timeout to kill after": [
649
+ "პროცესის დასრულების ვადა"
650
+ ],
651
+ "seconds": [
652
+ "წამი"
653
+ ],
654
+ "Time to pickup": [
655
+ "აყვანის დრო"
656
+ ],
657
+ "Target hosts": [
658
+ "სამიზნე ჰოსტები"
659
+ ],
660
+ "Bookmark": [
661
+ "სანიშნი"
662
+ ],
663
+ "Manual selection": [
664
+ "ხელით არჩევა"
665
+ ],
666
+ "using ": [
667
+ "გამოყენებით "
668
+ ],
669
+ "Execution order": [
670
+ "გაშვების მიმდევრობა"
671
+ ],
672
+ "Organization": [
673
+ "ორგანიზაცია"
674
+ ],
675
+ "Location": [
676
+ "მდებარეობა"
677
+ ],
678
+ "SSH User": [
679
+ "SSH-ის მომხმარებლის სახელი"
680
+ ],
681
+ "Evaluated at:": [
682
+ "შემოწმების დრო:"
683
+ ],
684
+ "User Inputs": [
685
+ "მომხმარებლის შეყვანა"
686
+ ],
687
+ "Description": [
688
+ "აღწერილობა"
689
+ ],
690
+ "Job template": [
691
+ "დავალების შაბლონი"
692
+ ],
693
+ "Resolves to": [
694
+ "ამოიხსნება"
695
+ ],
696
+ "hosts": [
697
+ "ჰოსტი"
698
+ ],
699
+ "Refresh": [
700
+ "განახლება"
701
+ ],
702
+ "Preview": [
703
+ "მინიატურა"
704
+ ],
705
+ "Display advanced fields": [
706
+ "დამატებითი ველების ჩვენება"
707
+ ],
708
+ "Hide advanced fields": [
709
+ "დამატებითი ველების დამალვა"
710
+ ],
711
+ "SSH user": [
712
+ "SSH-ის მომხმარებლის სახელი"
713
+ ],
714
+ "A user to be used for SSH.": [
715
+ "SSH-ის მომხმარებელი."
716
+ ],
717
+ "Effective user": [
718
+ "ეფექტური მომხმარებლის სახელი"
719
+ ],
720
+ "A user to be used for executing the script. If it differs from the SSH user, su or sudo is used to switch the accounts.": [
721
+ "სკრიპტის გაშვებისას გამოყენებული მომხმარებელი. თუ ის SSH მომხმარებლისგან განსხვავდება, გადასართველად su ან sudo იქნება გამოყენებული."
722
+ ],
723
+ "Timeout to kill": [
724
+ "პროცესის ვადა"
725
+ ],
726
+ "Time in seconds from the start on the remote host after which the job should be killed.": [
727
+ "დრო წამებში, რამდენ ხანში მოკვდება დაშორებულ ჰოსტზე გაშვებული დავალება."
728
+ ],
729
+ "Interval in seconds, if the job is not picked up by a client within this interval it will be cancelled.": [
730
+ "დრო წამებში. თუ დავალება კლიენტის მიერ აყვანილი არ იქნება, ის გაუქმდება."
731
+ ],
732
+ "Password": [
733
+ "პაროლი"
734
+ ],
735
+ "Password is stored encrypted in DB until the job finishes. For future or recurring executions, it is removed after the last execution.": [
736
+ ""
737
+ ],
738
+ "Private key passphrase": [
739
+ "პირადი გასაღების პაროლი"
740
+ ],
741
+ "Key passhprase is only applicable for SSH provider. Other providers ignore this field. <br> Passphrase is stored encrypted in DB until the job finishes. For future or recurring executions, it is removed after the last execution.": [
742
+ ""
743
+ ],
744
+ "Effective user password": [
745
+ "ეფექტური მომხმარებლის პაროლი"
746
+ ],
747
+ "Effective user password is only applicable for SSH provider. Other providers ignore this field. <br> Password is stored encrypted in DB until the job finishes. For future or recurring executions, it is removed after the last execution.": [
748
+ ""
749
+ ],
750
+ "Concurrency level": [
751
+ "კონკურენტობის დონე"
752
+ ],
753
+ "Run at most N tasks at a time. If this is set and proxy batch triggering is enabled, then tasks are triggered on the smart proxy in batches of size 1.": [
754
+ ""
755
+ ],
756
+ "Execution ordering": [
757
+ "შესრულების მიმდევრობა"
758
+ ],
759
+ "Execution ordering determines whether the jobs should be executed on hosts in alphabetical order or in randomized order.<br><ul><li><b>Ordered</b> - executes the jobs on hosts in alphabetical order</li><li><b>Randomized</b> - randomizes the order in which jobs are executed on hosts</li></ul>": [
760
+ ""
761
+ ],
762
+ "Type of query": [
763
+ "მოთხოვნის ტიპი"
764
+ ],
765
+ "Type has impact on when is the query evaluated to hosts.<br><ul><li><b>Static</b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evaluates just before the execution is started, so if it's planned in future, targeted hosts set may change before it</li></ul>": [
766
+ ""
767
+ ],
768
+ "The final host list may change because the selected query is dynamic. It will be rerun during execution.": [
769
+ ""
770
+ ],
771
+ "...and %{count} more": [
772
+ "... და კიდევ %{count}",
773
+ "... და კიდევ %{count}"
774
+ ],
775
+ "No hosts found.": [
776
+ "ჰოსტები ნაპოვნი არაა."
777
+ ],
778
+ "Close": [
779
+ "დახურვა"
780
+ ],
781
+ "Current organization %{org_c} is different from job's organization %{org_j}.": [
782
+ ""
783
+ ],
784
+ "Current location %{loc_c} is different from job's location %{loc_j}.": [
785
+ "მიმდინარე მდებარეობა %{loc_c} დავალების მდებარეობისგან განსხვავდება %{loc_j}."
786
+ ],
787
+ "The dynamic query '%{query}' was not resolved yet. The list of hosts to which it would resolve now can be seen %{here}.": [
788
+ ""
789
+ ],
790
+ "here": [
791
+ "აქ"
792
+ ],
793
+ "effective user": [
794
+ "ეფექტური მომხმარებლის სახელი"
795
+ ],
796
+ "Total hosts": [
797
+ "ჰოსტების ჯამური რაოდენობა"
798
+ ],
799
+ "Hosts gone missing": [
800
+ "გამქრალი ჰოსტები"
801
+ ],
802
+ "This can happen if the host is removed or moved to another organization or location after the job was started": [
803
+ ""
804
+ ],
805
+ "Providers and templates": [
806
+ "მომწოდებლები და შაბლონები"
807
+ ],
808
+ "User input": [
809
+ "მომხმარებლის შეყვანილი"
810
+ ],
811
+ "Value": [
812
+ "მნიშვნელობა"
813
+ ],
814
+ "Search Query": [
815
+ "საძებნი სტრიქონი"
816
+ ],
817
+ "Status": [
818
+ "სტატუსი"
819
+ ],
820
+ "Succeeded": [
821
+ "წარმატებულია"
822
+ ],
823
+ "Start": [
824
+ "დაწყება"
825
+ ],
826
+ "Job invocation": [
827
+ "დავალების ჩაწოდება"
828
+ ],
829
+ "Use new job wizard": [
830
+ "ახალი დავალების ოსტატი"
831
+ ],
832
+ "Overview": [
833
+ "მიმოხილვა"
834
+ ],
835
+ "Preview templates": [
836
+ "შაბლონების გადახედვა"
837
+ ],
838
+ "Recurring logic": [
839
+ "განეორებადი ლოგიკა"
840
+ ],
841
+ "Job Invocations": [
842
+ "ამოცანის ჩაწოდებები"
843
+ ],
844
+ "Foreman can run arbitrary commands on remote hosts using different providers, such as SSH or Ansible. Communication goes through the Smart Proxy so Foreman does not have to have direct access to the target hosts and can scale to control many hosts.": [
845
+ ""
846
+ ],
847
+ "Learn more about this in the documentation.": [
848
+ "შეიტყვეთ მეტი ამის შესახებ დოკუმენტაციაში."
849
+ ],
850
+ "Job": [
851
+ "დავალება"
852
+ ],
853
+ "Type": [
854
+ "ტიპი"
855
+ ],
856
+ "Add Foreign Input Set": [
857
+ "შემოტანის უცხო სეტის დამატება"
858
+ ],
859
+ "add an input set for this template to reference a different template inputs": [
860
+ ""
861
+ ],
862
+ "Snippet": [
863
+ "ნაწყვეტი"
864
+ ],
865
+ "Select an ERB file to upload in order to import a job template. The template must contain metadata in the first ERB comment.": [
866
+ ""
867
+ ],
868
+ "Overwrite": [
869
+ "თავზე გადაწერა"
870
+ ],
871
+ "Whether to overwrite the template if it already exists": [
872
+ "გადავაწერო თუ არა შაბლონს, თუ ის უკვე არსებობს"
873
+ ],
874
+ "Job Templates": [
875
+ "დავალების შაბლონები"
876
+ ],
877
+ "Edit %s": [
878
+ "%s-ის ჩასწორება"
879
+ ],
880
+ "Edit Job Template": [
881
+ "დავალების შაბლონის ჩასწოება"
882
+ ],
883
+ "Import": [
884
+ "შემოტანა"
885
+ ],
886
+ "New Job Template": [
887
+ "დავალების ახალი შაბლონი"
888
+ ],
889
+ "JobTemplate|Name": [
890
+ "დავალებისშაბლონი|სახელი"
891
+ ],
892
+ "JobTemplate|Snippet": [
893
+ "დავალებისშაბლონი|ნაწყვეტი"
894
+ ],
895
+ "JobTemplate|Locked": [
896
+ "დავალებისშაბლონი|დაბლოკილი"
897
+ ],
898
+ "Actions": [
899
+ "ქმედებები"
900
+ ],
901
+ "This template is locked for editing.": [
902
+ "შაბლონი დაბლოკილია."
903
+ ],
904
+ "The execution interface is used for remote execution": [
905
+ "გაშვების ინტერფეისი ბრძანებების დაშორებული გაშვებისთვის გამოიყენება"
906
+ ],
907
+ "Remote execution": [
908
+ "დაშორებული გაშვება"
909
+ ],
910
+ "Remote Execution": [
911
+ "დაშორებული გაშვება"
912
+ ],
913
+ "Proxies": [
914
+ "პროქსები"
915
+ ],
916
+ "Select as many remote execution proxies as applicable for this subnet. When multiple proxies with the same provider are added, actions will be load balanced among them.": [
917
+ ""
918
+ ],
919
+ "You are not allowed to see the currently assigned template. Saving the form now would unassign the template.": [
920
+ ""
921
+ ],
922
+ "Remote Execution Features": [
923
+ "დაშორებული გაშვების ფუნქციები"
924
+ ],
925
+ "Label": [
926
+ "ჭდე"
927
+ ],
928
+ "Edit Remote Execution Feature": [
929
+ "დაშორებული გაშვების ფუნქციების ჩასწორება"
930
+ ],
931
+ "A job '%{job_name}' has %{status} at %{time}": [
932
+ "დავალების '%{job_name}' სტატუსი %{status} დრო %{time}"
933
+ ],
934
+ "Job result": [
935
+ "დავალების შედეგი"
936
+ ],
937
+ "Failed hosts": [
938
+ "ავარიული ჰოსტები"
939
+ ],
940
+ "See more details at %s": [
941
+ "მეტი დეტალები იხილეთ %s"
942
+ ],
943
+ "Foreign input set": [
944
+ "შემოტანის უცხო სეტი"
945
+ ],
946
+ "remove template input set": [
947
+ "შაბლონების შეყვანის სეტის წაშლა"
948
+ ],
949
+ "A comma separated list of input names to be excluded from the foreign template.": [
950
+ ""
951
+ ],
952
+ "Template Invocation for %s": [
953
+ "შაბლონის ჩაწოდება %s-სთვის"
954
+ ],
955
+ "Back to Job": [
956
+ "დავალებაზე გადასვლა"
957
+ ],
958
+ "Toggle command": [
959
+ "ბრძანების გადართვა"
960
+ ],
961
+ "Toggle STDERR": [
962
+ "STDERR-ის გადართვა"
963
+ ],
964
+ "Toggle STDOUT": [
965
+ "STDOUT-ის გადართვა"
966
+ ],
967
+ "Toggle DEBUG": [
968
+ "DEBUG-ის გადართვა"
969
+ ],
970
+ "Target: ": [
971
+ "სამიზნე: "
972
+ ],
973
+ "using Smart Proxy": [
974
+ "ჭკვიანი პროქსის გამოყენება"
975
+ ],
976
+ "Scroll to bottom": [
977
+ "ბოლომდე ჩამოქაჩვა"
978
+ ],
979
+ "Scroll to top": [
980
+ "ბოლომდე აქაჩვა"
981
+ ],
982
+ "Could not display data for job invocation.": [
983
+ "ნაჩვენები იქნება თუ არა ამოცანის ჩაწოდების მონაცემები."
984
+ ],
985
+ "Unsupported or no operating system found for this host.": [
986
+ "ამ ჰოსტისთვის ოპერაციული სისტემა არასწორია ან არ არსებობს."
987
+ ],
988
+ "A job '%{subject}' has finished successfully": [
989
+ "ამოცანა წარმატებით დასრულდა '%{subject}'"
990
+ ],
991
+ "Job Details": [
992
+ "დავალების დეტალები"
993
+ ],
994
+ "A job '%{subject}' has failed": [
995
+ "ამოცანის შეცდომა: '%{subject}'"
996
+ ],
997
+ "Remote execution job": [
998
+ "დაშორებული გაშვების დავალება"
999
+ ],
1000
+ "A notification when a job finishes": [
1001
+ "დავალების დასრულების შეტყობინება"
1002
+ ],
1003
+ "Unable to create mail notification: %s": [
1004
+ "ელფოსტის შეტყობინების შექმნის შეცდომა: %s"
1005
+ ],
1006
+ "Search the host for any proxy with Remote Execution, useful when the host has no subnet or the subnet does not have an execution proxy": [
1007
+ ""
1008
+ ],
1009
+ "Fallback to Any Proxy": [
1010
+ "ავარიისას ნებისმიერ პროქსიზე გადართვა"
1011
+ ],
1012
+ "Search for remote execution proxy outside of the proxies assigned to the host. The search will be limited to the host's organization and location.": [
1013
+ ""
1014
+ ],
1015
+ "Enable Global Proxy": [
1016
+ "გლობალური პროქსის ჩართვა"
1017
+ ],
1018
+ "Default user to use for SSH. You may override per host by setting a parameter called remote_execution_ssh_user.": [
1019
+ ""
1020
+ ],
1021
+ "Default user to use for executing the script. If the user differs from the SSH user, su or sudo is used to switch the user.": [
1022
+ ""
1023
+ ],
1024
+ "Effective User": [
1025
+ "ეფექტური მომხმარებელი"
1026
+ ],
1027
+ "What command should be used to switch to the effective user. One of %s": [
1028
+ ""
1029
+ ],
1030
+ "Effective User Method": [
1031
+ "ეფექტური მომხმარებლის მეთოდი"
1032
+ ],
1033
+ "Whether we should sync templates from disk when running db:seed.": [
1034
+ ""
1035
+ ],
1036
+ "Sync Job Templates": [
1037
+ "სინქრონიზაციის დავალების შაბლონები"
1038
+ ],
1039
+ "Port to use for SSH communication. Default port 22. You may override per host by setting a parameter called remote_execution_ssh_port.": [
1040
+ ""
1041
+ ],
1042
+ "SSH Port": [
1043
+ "SSH პორტი"
1044
+ ],
1045
+ "Should the ip addresses on host interfaces be preferred over the fqdn? It is useful when DNS not resolving the fqdns properly. You may override this per host by setting a parameter called remote_execution_connect_by_ip. For dual-stacked hosts you should consider the remote_execution_connect_by_ip_prefer_ipv6 setting": [
1046
+ ""
1047
+ ],
1048
+ "Connect by IP": [
1049
+ "IP-ით მიერთება"
1050
+ ],
1051
+ "When connecting using ip address, should the IPv6 addresses be preferred? If no IPv6 address is set, it falls back to IPv4 automatically. You may override this per host by setting a parameter called remote_execution_connect_by_ip_prefer_ipv6. By default and for compatibility, IPv4 will be preferred over IPv6 by default": [
1052
+ ""
1053
+ ],
1054
+ "Prefer IPv6 over IPv4": [
1055
+ "IPv6-ის უპირატესობა"
1056
+ ],
1057
+ "Default password to use for SSH. You may override per host by setting a parameter called remote_execution_ssh_password": [
1058
+ ""
1059
+ ],
1060
+ "Default SSH password": [
1061
+ "ნაგულისხმები SSH პაროლი"
1062
+ ],
1063
+ "Default key passphrase to use for SSH. You may override per host by setting a parameter called remote_execution_ssh_key_passphrase": [
1064
+ ""
1065
+ ],
1066
+ "Default SSH key passphrase": [
1067
+ "SSH გასაღების ნაგულისხმები პაროლი"
1068
+ ],
1069
+ "Amount of workers in the pool to handle the execution of the remote execution jobs. Restart of the dynflowd/foreman-tasks service is required.": [
1070
+ ""
1071
+ ],
1072
+ "Workers pool size": [
1073
+ "დამხმარე პროცესის პულის ზომა"
1074
+ ],
1075
+ "When enabled, working directories will be removed after task completion. You may override this per host by setting a parameter called remote_execution_cleanup_working_dirs.": [
1076
+ ""
1077
+ ],
1078
+ "Cleanup working directories": [
1079
+ "სამუშაო საქაღალდეების გაწმენდა"
1080
+ ],
1081
+ "Where to find the Cockpit instance for the Web Console button. By default, no button is shown.": [
1082
+ ""
1083
+ ],
1084
+ "Cockpit URL": [
1085
+ "Cockpit-ის URL"
1086
+ ],
1087
+ "Choose a job template that is pre-selected in job invocation form": [
1088
+ ""
1089
+ ],
1090
+ "Form Job Template": [
1091
+ "დავალების შაბლონიდან"
1092
+ ],
1093
+ "Select a report template used for generating a report for a particular remote execution job": [
1094
+ ""
1095
+ ],
1096
+ "Job Invocation Report Template": [
1097
+ "დავალების ჩაწოდების ანგარიშის შაბლონი"
1098
+ ],
1099
+ "Time in seconds within which the host has to pick up a job. If the job is not picked up within this limit, the job will be cancelled. Defaults to 1 day. Applies only to pull-mqtt based jobs.": [
1100
+ ""
1101
+ ],
1102
+ "Job templates": [
1103
+ "დავალების შაბლონები"
1104
+ ],
1105
+ "Job invocations detail": [
1106
+ ""
1107
+ ],
1108
+ "Run Puppet Once": [
1109
+ "Puppet-ის ერთხელ გაშვება"
1110
+ ],
1111
+ "Perform a single Puppet run": [
1112
+ "Puppet-ის ერთხელ გაშვება"
1113
+ ],
1114
+ "Run Script": [
1115
+ ""
1116
+ ],
1117
+ "Run a script": [
1118
+ ""
1119
+ ],
1120
+ "Not yet": [
1121
+ ""
1122
+ ],
1123
+ "Effective user:": [
1124
+ ""
1125
+ ],
1126
+ "Started at:": [
1127
+ ""
1128
+ ],
1129
+ "SSH user:": [
1130
+ ""
1131
+ ],
1132
+ "Template:": [
1133
+ ""
1134
+ ],
1135
+ "Submit": [
1136
+ "გაგზავნა"
1137
+ ],
1138
+ "Next": [
1139
+ "შემდეგი"
1140
+ ],
1141
+ "Back": [
1142
+ "უკან"
1143
+ ],
1144
+ "Start job": [
1145
+ ""
1146
+ ],
1147
+ "Fill all required fields in all the steps": [
1148
+ ""
1149
+ ],
1150
+ "Run on selected hosts": [
1151
+ ""
1152
+ ],
1153
+ "Skip to review step": [
1154
+ ""
1155
+ ],
1156
+ "Fill all required fields in all the steps to start the job": [
1157
+ ""
1158
+ ],
1159
+ "Skip to review": [
1160
+ ""
1161
+ ],
1162
+ "Cancel": [
1163
+ ""
1164
+ ],
1165
+ "Does not repeat": [
1166
+ "არ გაიმეორო"
1167
+ ],
1168
+ "Cronline": [
1169
+ "Cron-ის ხაზი"
1170
+ ],
1171
+ "Monthly": [
1172
+ "თვეში ერთხელ"
1173
+ ],
1174
+ "Weekly": [
1175
+ "კვირაში ერთხელ"
1176
+ ],
1177
+ "Daily": [
1178
+ "დღიურად"
1179
+ ],
1180
+ "Hourly": [
1181
+ "საათობრივ"
1182
+ ],
1183
+ "Immediate execution": [
1184
+ "დაუყოვნებლივი შესრულება"
1185
+ ],
1186
+ "Future execution": [
1187
+ "მომავალი შესრულება"
1188
+ ],
1189
+ "Recurring execution": [
1190
+ "განმეორებად შესრულება"
1191
+ ],
1192
+ "Category and template": [
1193
+ ""
1194
+ ],
1195
+ "Target hosts and inputs": [
1196
+ "სამიზნე ჰოსტები და შეყვანა"
1197
+ ],
1198
+ "Advanced fields": [
1199
+ "დამატებითი ველები"
1200
+ ],
1201
+ "Review details": [
1202
+ "დეტალების გადახედვა"
1203
+ ],
1204
+ "Type of execution": [
1205
+ "შესრულების ტიპი"
1206
+ ],
1207
+ "Hosts": [
1208
+ "ჰოსტები"
1209
+ ],
1210
+ "Host collections": [
1211
+ "ჰოსტების კოლექციები"
1212
+ ],
1213
+ "Host groups": [
1214
+ "ჰოსტის ჯგუფები"
1215
+ ],
1216
+ "Search query": [
1217
+ "საძებნი სტრიქონი"
1218
+ ],
1219
+ "Run job": [
1220
+ "დავალების გაშვება"
1221
+ ],
1222
+ "Use old form": [
1223
+ "ძველი ფორმის გამოყენება"
1224
+ ],
1225
+ "Current organization %s is different from job's organization %s. This job may run on different hosts than before.": [
1226
+ ""
1227
+ ],
1228
+ "Current location %s is different from job's location %s. This job may run on different hosts than before.": [
1229
+ ""
1230
+ ],
1231
+ "'Starts before' date must in the future": [
1232
+ ""
1233
+ ],
1234
+ "Please go back to \\\\\\\"Schedule\\\\\\\" - \\\\\\\"Future execution\\\\\\\" step to fix the error": [
1235
+ ""
1236
+ ],
1237
+ "Use legacy form": [
1238
+ "მოძველებული ფორმის გამოყენება"
1239
+ ],
1240
+ "Edit job description template": [
1241
+ "დავალების აღწერის შაბლონის ჩასწორება"
1242
+ ],
1243
+ "Preview job description": [
1244
+ "დავალების აღწერის გადახედვა"
1245
+ ],
1246
+ "For example: 1, 2, 3, 4, 5...": [
1247
+ "მაგალითად, 1, 2, 3, 4, 5..."
1248
+ ],
1249
+ "Interval in seconds, if the job is not picked up by a client within this interval it will be cancelled. Applies only to pull-mqtt based jobs": [
1250
+ ""
1251
+ ],
1252
+ "Key passphrase is only applicable for SSH provider. Other providers ignore this field. Passphrase is stored encrypted in DB until the job finishes. For future or recurring executions, it is removed after the last execution.": [
1253
+ ""
1254
+ ],
1255
+ "Effective user password is only applicable for SSH provider. Other providers ignore this field. Password is stored encrypted in DB until the job finishes. For future or recurring executions, it is removed after the last execution.": [
1256
+ ""
1257
+ ],
1258
+ "All fields are required.": [
1259
+ "საჭიროა ყველა ველის შევსება."
1260
+ ],
1261
+ "Error": [
1262
+ "შეცდომა"
1263
+ ],
1264
+ "Errors:": [
1265
+ "შეცდომები:"
1266
+ ],
1267
+ "Categories list failed with:": [
1268
+ "კატეგორიების სიის შეცდომა:"
1269
+ ],
1270
+ "Templates list failed with:": [
1271
+ "შაბლონების სიის შეცდომა:"
1272
+ ],
1273
+ "Template failed with:": [
1274
+ "შაბლონის შეცდომა:"
1275
+ ],
1276
+ "Preview Hosts": [
1277
+ "ჰოსტების გადახედვა"
1278
+ ],
1279
+ "...and %s more": [
1280
+ "... და კიდევ %s"
1281
+ ],
1282
+ "%s more": [
1283
+ ""
1284
+ ],
1285
+ "Clear all filters": [
1286
+ ""
1287
+ ],
1288
+ "There are no available input fields for the selected template.": [
1289
+ ""
1290
+ ],
1291
+ "Please select at least one host": [
1292
+ ""
1293
+ ],
1294
+ "Please enter a search query": [
1295
+ ""
1296
+ ],
1297
+ "Please select at least one host collection": [
1298
+ ""
1299
+ ],
1300
+ "Please select at least one host group": [
1301
+ ""
1302
+ ],
1303
+ "Filter by hosts": [
1304
+ "ჰოსტებით ფილტრი"
1305
+ ],
1306
+ "Filter by host collections": [
1307
+ "ჰოსტების კოლექციებით ფილტრი"
1308
+ ],
1309
+ "Filter by host groups": [
1310
+ "ჰოსტის ჯგფუფით ფილტრი"
1311
+ ],
1312
+ "Apply to": [
1313
+ "გადატარება"
1314
+ ],
1315
+ "Never": [
1316
+ "არასდროს"
1317
+ ],
1318
+ "After %s occurences": [
1319
+ ""
1320
+ ],
1321
+ "Every hour at minute %s": [
1322
+ ""
1323
+ ],
1324
+ "Every day at %s": [
1325
+ ""
1326
+ ],
1327
+ "Every week on %s at %s": [
1328
+ ""
1329
+ ],
1330
+ "Every month on %s at %s": [
1331
+ ""
1332
+ ],
1333
+ "Cron line": [
1334
+ "Cron-ის სტრიქონი"
1335
+ ],
1336
+ "No Target Hosts": [
1337
+ "სამიზნე ჰოსტების გარეშე"
1338
+ ],
1339
+ "view host names": [
1340
+ ""
1341
+ ],
1342
+ "Hide all advanced fields": [
1343
+ "დამატებითი ველების დამალვა"
1344
+ ],
1345
+ "Show all advanced fields": [
1346
+ "დამატებითი ველების ჩვენება"
1347
+ ],
1348
+ "Schedule type": [
1349
+ "განრიგის ტიპი"
1350
+ ],
1351
+ "Recurrence": [
1352
+ "გამეორებადობა"
1353
+ ],
1354
+ "Starts at": [
1355
+ "დაწყების დრო"
1356
+ ],
1357
+ "Starts Before": [
1358
+ ""
1359
+ ],
1360
+ "Starts": [
1361
+ "საწყისი"
1362
+ ],
1363
+ "Now": [
1364
+ "ახლა"
1365
+ ],
1366
+ "Repeats": [
1367
+ "გამეორება"
1368
+ ],
1369
+ "Ends": [
1370
+ "საბოლოო"
1371
+ ],
1372
+ "Purpose": [
1373
+ "მიზანი"
1374
+ ],
1375
+ "Static query": [
1376
+ "სტატიკური მოთხოვნა"
1377
+ ],
1378
+ "Dynamic query": [
1379
+ "დინამიკური მოთხოვნა"
1380
+ ],
1381
+ "Description Template": [
1382
+ "აღწერის შაბლონი"
1383
+ ],
1384
+ "A special label for tracking a recurring job. There can be only one active job with a given purpose at a time.": [
1385
+ "სპეციალური ჭდე განმეორებადი დავალების ტრკინგისთვის. მოცემული დანიშნულებით შეიძლება მხოლოდ ერთი აქტიური დავალება არსებობდეს."
1386
+ ],
1387
+ "Query type": [
1388
+ "მოთხოვნის ტიპი"
1389
+ ],
1390
+ "Type has impact on when is the query evaluated to hosts.": [
1391
+ ""
1392
+ ],
1393
+ "evaluates just after you submit this form": [
1394
+ ""
1395
+ ],
1396
+ "evaluates just before the execution is started, so if it's planned in future, targeted hosts set may change before it": [
1397
+ ""
1398
+ ],
1399
+ "Cron line (extended)": [
1400
+ ""
1401
+ ],
1402
+ "Cron line format '1 2 3 4 5', where:": [
1403
+ ""
1404
+ ],
1405
+ "is minute (range: 0-59)": [
1406
+ "წუთი (0-59)"
1407
+ ],
1408
+ "is hour (range: 0-23)": [
1409
+ "საათი (0-23)"
1410
+ ],
1411
+ "is day of month (range: 1-31)": [
1412
+ "თვის დღე (1-31)"
1413
+ ],
1414
+ "is month (range: 1-12)": [
1415
+ "თვე (1-120)"
1416
+ ],
1417
+ "is day of week (range: 0-6)": [
1418
+ "კვირის დღე (0-6)"
1419
+ ],
1420
+ "The cron line supports extended cron line syntax. For details please refer to the ": [
1421
+ ""
1422
+ ],
1423
+ "documentation": [
1424
+ "დოკუმენტაცია"
1425
+ ],
1426
+ "At": [
1427
+ "დრო"
1428
+ ],
1429
+ "Invalid time format": [
1430
+ "დროის არასწორი ფორმატი"
1431
+ ],
1432
+ "At minute": [
1433
+ "წუთი"
1434
+ ],
1435
+ "range: 0-59": [
1436
+ "დიაპაზონი: 0-59"
1437
+ ],
1438
+ "Create": [
1439
+ "შექმნა"
1440
+ ],
1441
+ "Minute can only be a number between 0-59": [
1442
+ "წუთი უნდა იყოს რიცხვი შუალედში 0-59"
1443
+ ],
1444
+ "Days": [
1445
+ "დღე"
1446
+ ],
1447
+ "Days of week": [
1448
+ "კვირის დღე"
1449
+ ],
1450
+ "For Future execution a 'Starts at' date or 'Starts before' date must be selected. Immediate execution can be selected in the previous step.": [
1451
+ ""
1452
+ ],
1453
+ "'Starts before' date must be after 'Starts at' date": [
1454
+ ""
1455
+ ],
1456
+ "Clear input": [
1457
+ "შეტანის გასუფთავება"
1458
+ ],
1459
+ "Starts before": [
1460
+ "მითითებულ დრომდე"
1461
+ ],
1462
+ "End time needs to be after start time": [
1463
+ "დასრულების დრო დასაწყისის დროის შემდეგ უნდა იყოს"
1464
+ ],
1465
+ "On": [
1466
+ "ჩართული"
1467
+ ],
1468
+ "After": [
1469
+ "შემდეგ"
1470
+ ],
1471
+ "Repeat amount can only be a positive number": [
1472
+ "გამეორების რაოდენობა მხოლოდ დადებით რიცხვი შეიძლება იყოს"
1473
+ ],
1474
+ "occurences": [
1475
+ "გამოჩენები"
1476
+ ],
1477
+ "Select the type of execution": [
1478
+ "აირჩიეთ შესრულების ტიპი"
1479
+ ],
1480
+ "Execute the job now.": [
1481
+ "დავალების ახლავე შესრულება."
1482
+ ],
1483
+ "Execute the job later, at a scheduled time.": [
1484
+ "დავალების მოგვიანებით, დაგეგმილ დროს შესრულება."
1485
+ ],
1486
+ "Execute the job on a repeating schedule.": [
1487
+ "დავალების განმეორებადი გეგმით გაშვება."
1488
+ ],
1489
+ "Invalid date": [
1490
+ "არასწორი თარიღი"
1491
+ ],
1492
+ "open-help-tooltip-button": [
1493
+ "open-help-tooltip-button"
1494
+ ],
1495
+ "Reset to default": [
1496
+ "ნაგულისხმებ მნიშვნელობაზე დაბრუნება"
1497
+ ],
1498
+ "Has to be a positive number": [
1499
+ "დადებითი რიცხვი უნდა იყოს"
1500
+ ],
1501
+ "Please refine your search.": [
1502
+ "შეიყვანეთ ძებნის უკეთესი პირობა."
1503
+ ],
1504
+ "You have %s results to display. Showing first %s results": [
1505
+ "საჩვენებელია %s შედეგი. ნაჩვენებია პირველი %s შედეგი"
1506
+ ],
1507
+ "Opening job invocation form": [
1508
+ "დავალების ჩაწოდების ფორმის გახსნა"
1509
+ ],
1510
+ "%s job has been invoked": [
1511
+ "გაშვებულია %s დავალება"
1512
+ ],
1513
+ "Schedule a job": [
1514
+ "დავალების დაგეგმვა"
1515
+ ],
1516
+ "Recent jobs": [
1517
+ "ახლახანს გაშვებული დავალებები"
1518
+ ],
1519
+ "View all jobs": [
1520
+ "ყველა დავალების ნახვა"
1521
+ ],
1522
+ "View finished jobs": [
1523
+ "დასრულებული დავალებების ნახვა"
1524
+ ],
1525
+ "View running jobs": [
1526
+ "გაშვებული დავალებების ნახვა"
1527
+ ],
1528
+ "View scheduled jobs": [
1529
+ "დაგეგმილი ამოცანების ნახვა"
1530
+ ],
1531
+ "Finished": [
1532
+ "დასრულებულია"
1533
+ ],
1534
+ "Running": [
1535
+ "მიმდინარეობს შესრულება"
1536
+ ],
1537
+ "Scheduled": [
1538
+ "დაგეგმილია"
1539
+ ],
1540
+ "No results found": [
1541
+ "შედეგების გარეშე"
1542
+ ],
1543
+ "Remote Execution Interface": [
1544
+ "დაშორებული გაშვების ინტერფეისი"
1545
+ ],
1546
+ "yes": [
1547
+ "დიახ"
1548
+ ],
1549
+ "no": [
1550
+ "არა"
1551
+ ],
1552
+ "Inherit from host parameter": [
1553
+ "მემკვიდრეობით ჰოსტის პარამეტრიდან"
1554
+ ],
1555
+ "Yes (override)": [
1556
+ "დიახ (გადაფარვა)"
1557
+ ],
1558
+ "No (override)": [
1559
+ "არა (გადაფარვა)"
1560
+ ],
1561
+ "REX pull mode": [
1562
+ "REX pull რეჟიმი"
1563
+ ],
1564
+ "Setup remote execution pull mode. If set to `Yes`, pull provider client will be deployed on the registered host. The inherited value is based on the `host_registration_remote_execution_pull` parameter. It can be inherited e.g. from host group, operating system, organization. When overridden, the selected value will be stored on host parameter level.": [
1565
+ ""
1566
+ ],
1567
+ "Host": [
1568
+ "ჰოსტი"
1569
+ ],
1570
+ "Active Filters:": [
1571
+ "აქტიური ფილტრები:"
1572
+ ],
1573
+ "A plugin bringing remote execution to the Foreman, completing the config management functionality with remote management functionality.": [
1574
+ ""
1575
+ ],
1576
+ "Action with sub plans": [
1577
+ "ქმედება ქვე-გეგმებით"
1578
+ ],
1579
+ "Import Puppet classes": [
1580
+ "Puppet-ის კლასების შემოტანა"
1581
+ ],
1582
+ "Import facts": [
1583
+ "ფაქტების შემოტანა"
1584
+ ]
1585
+ }
1586
+ }
1587
+ };