foreman_scc_manager 5.1.0 → 5.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/javascripts/foreman_scc_manager/locale/de/foreman_scc_manager.js +42 -9
- data/app/assets/javascripts/foreman_scc_manager/locale/el/foreman_scc_manager.js +42 -9
- data/app/assets/javascripts/foreman_scc_manager/locale/en/foreman_scc_manager.js +38 -5
- data/app/assets/javascripts/foreman_scc_manager/locale/fr/foreman_scc_manager.js +43 -10
- data/app/assets/javascripts/foreman_scc_manager/locale/ja/foreman_scc_manager.js +43 -10
- data/app/assets/javascripts/foreman_scc_manager/locale/ka/foreman_scc_manager.js +43 -10
- data/app/assets/javascripts/foreman_scc_manager/locale/ko/foreman_scc_manager.js +43 -10
- data/app/assets/javascripts/foreman_scc_manager/locale/zh_CN/foreman_scc_manager.js +43 -10
- data/app/controllers/api/v2/scc_accounts_controller.rb +2 -0
- data/app/controllers/scc_accounts_controller.rb +0 -3
- data/app/views/api/v2/scc_accounts/main.json.rabl +1 -1
- data/app/views/scc_accounts/index.html.erb +14 -33
- data/lib/foreman_scc_manager/version.rb +1 -1
- data/locale/de/LC_MESSAGES/foreman_scc_manager.mo +0 -0
- data/locale/de/foreman_scc_manager.po +46 -18
- data/locale/el/LC_MESSAGES/foreman_scc_manager.mo +0 -0
- data/locale/el/foreman_scc_manager.po +43 -15
- data/locale/en/LC_MESSAGES/foreman_scc_manager.mo +0 -0
- data/locale/en/foreman_scc_manager.po +38 -11
- data/locale/foreman_scc_manager.pot +105 -50
- data/locale/fr/LC_MESSAGES/foreman_scc_manager.mo +0 -0
- data/locale/fr/foreman_scc_manager.po +47 -19
- data/locale/ja/LC_MESSAGES/foreman_scc_manager.mo +0 -0
- data/locale/ja/foreman_scc_manager.po +47 -16
- data/locale/ka/LC_MESSAGES/foreman_scc_manager.mo +0 -0
- data/locale/ka/foreman_scc_manager.po +44 -21
- data/locale/ko/LC_MESSAGES/foreman_scc_manager.mo +0 -0
- data/locale/ko/foreman_scc_manager.po +46 -18
- data/locale/zh_CN/LC_MESSAGES/foreman_scc_manager.mo +0 -0
- data/locale/zh_CN/foreman_scc_manager.po +47 -17
- data/test/controllers/api/v2/scc_accounts_test.rb +30 -0
- data/test/fixtures/models/scc_accounts.yml +2 -0
- data/webpack/components/SCCAccountIndex/SCCAccountIndex.scss +26 -0
- data/webpack/components/SCCAccountIndex/SCCAccountIndex.test.js +291 -0
- data/webpack/components/SCCAccountIndex/SCCAccountIndexActions.js +205 -0
- data/webpack/components/SCCAccountIndex/SCCAccountIndexConstants.js +9 -0
- data/webpack/components/SCCAccountIndex/index.js +262 -0
- data/webpack/components/SCCProductPage/EmptySccProducts.js +10 -7
- data/webpack/components/SCCProductPage/components/SCCProductPicker/components/SCCGenericPicker/index.js +25 -11
- data/webpack/components/SCCProductPage/components/SCCProductPicker/components/SCCTreePicker/components/SCCRepoPicker/index.js +1 -1
- data/webpack/components/SCCProductPage/components/SCCProductPicker/styles.scss +8 -3
- data/webpack/components/SCCProductPage/sccProductPage.scss +5 -0
- data/webpack/index.js +6 -0
- metadata +8 -3
|
@@ -1,37 +1,18 @@
|
|
|
1
|
-
<% javascript 'foreman_scc_manager/scc_accounts' %>
|
|
2
1
|
<% title _("SUSE subscriptions") %>
|
|
3
|
-
<% title_actions new_link(_("Add SCC account")) %>
|
|
4
2
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
<tr>
|
|
8
|
-
<th class="col-md-4"><%= sort :name %></th>
|
|
9
|
-
<th class="col-md-3"><%= _("Products") %></th>
|
|
10
|
-
<th class="col-md-3"><%= _("Last synced") %></th>
|
|
11
|
-
<th class="col-md-2"><%= _("Actions") %></th>
|
|
12
|
-
</tr>
|
|
13
|
-
</thead>
|
|
14
|
-
<tbody>
|
|
15
|
-
<% @scc_accounts.each do |scc_account| %>
|
|
16
|
-
<tr>
|
|
17
|
-
<td class="display-two-pane ellipsis">
|
|
18
|
-
<%= link_to_if_authorized(scc_account.name, hash_for_edit_scc_account_path(:id => scc_account).merge(:auth_object => scc_account, :authorizer => authorizer)) %>
|
|
19
|
-
</td>
|
|
20
|
-
<td><%= scc_account.scc_products_with_repos_count.to_s %></td>
|
|
21
|
-
<td><%= link_to_if(scc_account.sync_task, scc_account.sync_status, scc_account.sync_task) %></td>
|
|
22
|
-
<td>
|
|
23
|
-
<%= action_buttons(
|
|
24
|
-
display_link_if_authorized(_("Select products"), hash_for_scc_account_path(:id => scc_account).merge(:auth_object => scc_account, :authorizer => authorizer, :permission => 'view_scc_accounts')),
|
|
25
|
-
display_link_if_authorized(_("Sync"), hash_for_sync_scc_account_path(:id => scc_account).merge(:auth_object => scc_account, :authorizer => authorizer),
|
|
26
|
-
:method => :put),
|
|
27
|
-
display_delete_if_authorized(hash_for_scc_account_path(:id => scc_account).merge(:auth_object => scc_account, :authorizer => authorizer, :permission => 'delete_scc_accounts'),
|
|
28
|
-
:data => { :confirm => _("WARNING: If you want to switch SCC accounts and retain the synchronized content, DO NOT delete your old SCC account, even if it is expired. Please change the login and password of your SCC account, instead.\n\nIf you delete your old SCC account, you CANNOT reuse existing repositories, products, content views, and composite content views.\n\nReally delete SCC account %s?") % scc_account.to_s })
|
|
3
|
+
<%= webpacked_plugins_js_for :foreman_scc_manager %>
|
|
4
|
+
<%= webpacked_plugins_css_for :foreman_scc_manager %>
|
|
29
5
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
6
|
+
<% initial_accounts = @scc_accounts.map do |a|
|
|
7
|
+
{
|
|
8
|
+
id: a.id,
|
|
9
|
+
name: a.name,
|
|
10
|
+
scc_products_with_repos_count: a.scc_products_with_repos_count,
|
|
11
|
+
sync_status: a.sync_status,
|
|
12
|
+
sync_task: a.sync_task
|
|
13
|
+
}
|
|
14
|
+
end %>
|
|
15
|
+
<%= react_component('SCCAccountIndex', {
|
|
16
|
+
initialAccounts: initial_accounts,
|
|
17
|
+
}) %>
|
|
36
18
|
|
|
37
|
-
<%= will_paginate_with_info @scc_accounts %>
|
|
Binary file
|
|
@@ -4,23 +4,23 @@
|
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
5
|
#
|
|
6
6
|
# Translators:
|
|
7
|
-
# Wiederoder <stefanwiederoder@googlemail.com>, 2019
|
|
8
7
|
# simon11 <transifex@stieger.co>, 2019
|
|
9
8
|
# Michael Moll, 2019
|
|
10
9
|
# Bernhard Suttner <bernhard.suttner@atix.de>, 2019
|
|
11
10
|
# Nadja Heitmann <nadjah@atix.de>, 2021
|
|
12
|
-
#
|
|
13
|
-
# Markus Bucher <bucher@atix.de>, 2022
|
|
14
|
-
# pdolinic, 2022
|
|
11
|
+
# Alexander Stoll <Alexander.Stoll@netways.de>, 2022
|
|
15
12
|
# Bryan Kearney <bryan.kearney@gmail.com>, 2022
|
|
13
|
+
# Markus Bucher <bucher@atix.de>, 2022
|
|
16
14
|
# Ettore Atalan <atalanttore@googlemail.com>, 2023
|
|
15
|
+
# pdolinic, 2025
|
|
16
|
+
# Wiederoder <stefanwiederoder@googlemail.com>, 2025
|
|
17
17
|
#
|
|
18
18
|
msgid ""
|
|
19
19
|
msgstr ""
|
|
20
|
-
"Project-Id-Version: foreman_scc_manager 5.0
|
|
20
|
+
"Project-Id-Version: foreman_scc_manager 5.2.0\n"
|
|
21
21
|
"Report-Msgid-Bugs-To: \n"
|
|
22
22
|
"PO-Revision-Date: 2019-10-17 13:28+0000\n"
|
|
23
|
-
"Last-Translator:
|
|
23
|
+
"Last-Translator: Wiederoder <stefanwiederoder@googlemail.com>, 2025\n"
|
|
24
24
|
"Language-Team: German (https://app.transifex.com/foreman/teams/114/de/)\n"
|
|
25
25
|
"MIME-Version: 1.0\n"
|
|
26
26
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -46,6 +46,9 @@ msgstr ""
|
|
|
46
46
|
msgid "Actions"
|
|
47
47
|
msgstr "Aktionen"
|
|
48
48
|
|
|
49
|
+
msgid "Actions menu"
|
|
50
|
+
msgstr ""
|
|
51
|
+
|
|
49
52
|
msgid "Add SCC account"
|
|
50
53
|
msgstr "SCC Konto hinzufügen"
|
|
51
54
|
|
|
@@ -74,7 +77,7 @@ msgid "Bulk subscription of scc_products with individual repository selection fo
|
|
|
74
77
|
msgstr ""
|
|
75
78
|
|
|
76
79
|
msgid "Cancel"
|
|
77
|
-
msgstr ""
|
|
80
|
+
msgstr "Abbrechen"
|
|
78
81
|
|
|
79
82
|
msgid "Collapse products"
|
|
80
83
|
msgstr ""
|
|
@@ -100,6 +103,12 @@ msgstr "Cron-Ausdruck ungültig!"
|
|
|
100
103
|
msgid "Date and time relative to which the sync interval is run"
|
|
101
104
|
msgstr "Relativ zu diesem Zeitpunkt wird die Synchronisation ausgeführt"
|
|
102
105
|
|
|
106
|
+
msgid "Delete"
|
|
107
|
+
msgstr ""
|
|
108
|
+
|
|
109
|
+
msgid "Delete SCC Account"
|
|
110
|
+
msgstr ""
|
|
111
|
+
|
|
103
112
|
msgid "Delete scc_account"
|
|
104
113
|
msgstr "SCC Konto löschen"
|
|
105
114
|
|
|
@@ -121,6 +130,12 @@ msgstr "Aufgabe konnte nicht in die Warteschlange gestellt werden: %s"
|
|
|
121
130
|
msgid "Failed to create SCC account."
|
|
122
131
|
msgstr ""
|
|
123
132
|
|
|
133
|
+
msgid "Failed to delete SCC account."
|
|
134
|
+
msgstr ""
|
|
135
|
+
|
|
136
|
+
msgid "Failed to start sync task."
|
|
137
|
+
msgstr ""
|
|
138
|
+
|
|
124
139
|
msgid "Failed to update SCC account."
|
|
125
140
|
msgstr ""
|
|
126
141
|
|
|
@@ -182,11 +197,14 @@ msgid "Mirroring Policy"
|
|
|
182
197
|
msgstr ""
|
|
183
198
|
|
|
184
199
|
msgid "Name"
|
|
185
|
-
msgstr ""
|
|
200
|
+
msgstr "Name"
|
|
186
201
|
|
|
187
202
|
msgid "Name of the scc_account"
|
|
188
203
|
msgstr "Name des SCC Kontos"
|
|
189
204
|
|
|
205
|
+
msgid "No options available"
|
|
206
|
+
msgstr ""
|
|
207
|
+
|
|
190
208
|
msgid "None"
|
|
191
209
|
msgstr "Keine"
|
|
192
210
|
|
|
@@ -235,6 +253,9 @@ msgstr ""
|
|
|
235
253
|
msgid "SCC account created successfully."
|
|
236
254
|
msgstr ""
|
|
237
255
|
|
|
256
|
+
msgid "SCC account deleted successfully."
|
|
257
|
+
msgstr ""
|
|
258
|
+
|
|
238
259
|
msgid "SCC account updated successfully."
|
|
239
260
|
msgstr ""
|
|
240
261
|
|
|
@@ -256,11 +277,11 @@ msgstr "SUSE Abonnements"
|
|
|
256
277
|
msgid "Search"
|
|
257
278
|
msgstr "Suche"
|
|
258
279
|
|
|
259
|
-
msgid "Select
|
|
280
|
+
msgid "Select Products"
|
|
260
281
|
msgstr ""
|
|
261
282
|
|
|
262
|
-
msgid "Select products"
|
|
263
|
-
msgstr "
|
|
283
|
+
msgid "Select SUSE products"
|
|
284
|
+
msgstr ""
|
|
264
285
|
|
|
265
286
|
msgid "Selected SUSE Products"
|
|
266
287
|
msgstr ""
|
|
@@ -299,7 +320,7 @@ msgid "Starting the subscription task failed."
|
|
|
299
320
|
msgstr ""
|
|
300
321
|
|
|
301
322
|
msgid "Submit"
|
|
302
|
-
msgstr ""
|
|
323
|
+
msgstr "Absenden"
|
|
303
324
|
|
|
304
325
|
msgid "Subscribe SCC Product"
|
|
305
326
|
msgstr "SCC Produkt abonnieren"
|
|
@@ -331,6 +352,9 @@ msgstr "Synchronisierungsaufgabe gestartet."
|
|
|
331
352
|
msgid "Synchronize SUSE Account"
|
|
332
353
|
msgstr ""
|
|
333
354
|
|
|
355
|
+
msgid "Syncing..."
|
|
356
|
+
msgstr ""
|
|
357
|
+
|
|
334
358
|
msgid "Test Connection"
|
|
335
359
|
msgstr "Verbindung testen"
|
|
336
360
|
|
|
@@ -382,12 +406,7 @@ msgstr "Verwenden Sie diese Einstellung, wenn Sie beim Abonnieren automatisch ei
|
|
|
382
406
|
msgid "Use your 'Organization credentials' obtained from the SUSE Customer Center."
|
|
383
407
|
msgstr "Verwenden Sie die \"Organisationszugangsdaten\" aus dem SUSE Customer Center."
|
|
384
408
|
|
|
385
|
-
msgid ""
|
|
386
|
-
"WARNING: If you want to switch SCC accounts and retain the synchronized content, DO NOT delete your old SCC account, even if it is expired. Please change the login and password of your SCC account, instead.\n"
|
|
387
|
-
"\n"
|
|
388
|
-
"If you delete your old SCC account, you CANNOT reuse existing repositories, products, content views, and composite content views.\n"
|
|
389
|
-
"\n"
|
|
390
|
-
"Really delete SCC account %s?"
|
|
409
|
+
msgid "WARNING: If you want to switch SCC accounts and retain the synchronized content, DO NOT delete your old SCC account, even if it is expired. Please change the login and password of your SCC account, instead.\\n\\nIf you delete your old SCC account, you CANNOT reuse existing repositories, products, content views, and composite content views.\\n\\n Do you Really want to delete this SCC account %acc_name?"
|
|
391
410
|
msgstr ""
|
|
392
411
|
|
|
393
412
|
msgid "YYYY-MM-DD"
|
|
@@ -396,8 +415,17 @@ msgstr ""
|
|
|
396
415
|
msgid "You currently have no SUSE products selected. Search and add SUSE products in the section below."
|
|
397
416
|
msgstr ""
|
|
398
417
|
|
|
418
|
+
msgid "error"
|
|
419
|
+
msgstr ""
|
|
420
|
+
|
|
421
|
+
msgid "finished"
|
|
422
|
+
msgstr ""
|
|
423
|
+
|
|
399
424
|
msgid "never synced"
|
|
400
425
|
msgstr "Nie synchronisiert"
|
|
401
426
|
|
|
402
427
|
msgid "no results"
|
|
403
428
|
msgstr ""
|
|
429
|
+
|
|
430
|
+
msgid "running"
|
|
431
|
+
msgstr ""
|
|
Binary file
|
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
5
|
#
|
|
6
6
|
# Translators:
|
|
7
|
-
# Efstathios Iosifidis <
|
|
7
|
+
# Efstathios Iosifidis <eiosifidis@gmail.com>, 2025
|
|
8
8
|
#
|
|
9
9
|
msgid ""
|
|
10
10
|
msgstr ""
|
|
11
|
-
"Project-Id-Version: foreman_scc_manager 5.0
|
|
11
|
+
"Project-Id-Version: foreman_scc_manager 5.2.0\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
|
13
13
|
"PO-Revision-Date: 2019-10-17 13:28+0000\n"
|
|
14
|
-
"Last-Translator: Efstathios Iosifidis <
|
|
14
|
+
"Last-Translator: Efstathios Iosifidis <eiosifidis@gmail.com>, 2025\n"
|
|
15
15
|
"Language-Team: Greek (https://app.transifex.com/foreman/teams/114/el/)\n"
|
|
16
16
|
"MIME-Version: 1.0\n"
|
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -37,6 +37,9 @@ msgstr ""
|
|
|
37
37
|
msgid "Actions"
|
|
38
38
|
msgstr "Ενέργειες"
|
|
39
39
|
|
|
40
|
+
msgid "Actions menu"
|
|
41
|
+
msgstr ""
|
|
42
|
+
|
|
40
43
|
msgid "Add SCC account"
|
|
41
44
|
msgstr "Προσθήκη λογαριασμού SCC"
|
|
42
45
|
|
|
@@ -65,7 +68,7 @@ msgid "Bulk subscription of scc_products with individual repository selection fo
|
|
|
65
68
|
msgstr ""
|
|
66
69
|
|
|
67
70
|
msgid "Cancel"
|
|
68
|
-
msgstr ""
|
|
71
|
+
msgstr "Ακύρωση"
|
|
69
72
|
|
|
70
73
|
msgid "Collapse products"
|
|
71
74
|
msgstr ""
|
|
@@ -91,6 +94,12 @@ msgstr "Μη έγκυρη έκφραση cron!"
|
|
|
91
94
|
msgid "Date and time relative to which the sync interval is run"
|
|
92
95
|
msgstr ""
|
|
93
96
|
|
|
97
|
+
msgid "Delete"
|
|
98
|
+
msgstr ""
|
|
99
|
+
|
|
100
|
+
msgid "Delete SCC Account"
|
|
101
|
+
msgstr ""
|
|
102
|
+
|
|
94
103
|
msgid "Delete scc_account"
|
|
95
104
|
msgstr "Διαγραφή scc_account"
|
|
96
105
|
|
|
@@ -112,6 +121,12 @@ msgstr ""
|
|
|
112
121
|
msgid "Failed to create SCC account."
|
|
113
122
|
msgstr ""
|
|
114
123
|
|
|
124
|
+
msgid "Failed to delete SCC account."
|
|
125
|
+
msgstr ""
|
|
126
|
+
|
|
127
|
+
msgid "Failed to start sync task."
|
|
128
|
+
msgstr ""
|
|
129
|
+
|
|
115
130
|
msgid "Failed to update SCC account."
|
|
116
131
|
msgstr ""
|
|
117
132
|
|
|
@@ -173,11 +188,14 @@ msgid "Mirroring Policy"
|
|
|
173
188
|
msgstr ""
|
|
174
189
|
|
|
175
190
|
msgid "Name"
|
|
176
|
-
msgstr ""
|
|
191
|
+
msgstr "Όνομα"
|
|
177
192
|
|
|
178
193
|
msgid "Name of the scc_account"
|
|
179
194
|
msgstr "Όνομα του scc_account"
|
|
180
195
|
|
|
196
|
+
msgid "No options available"
|
|
197
|
+
msgstr ""
|
|
198
|
+
|
|
181
199
|
msgid "None"
|
|
182
200
|
msgstr "Κανένα"
|
|
183
201
|
|
|
@@ -226,6 +244,9 @@ msgstr ""
|
|
|
226
244
|
msgid "SCC account created successfully."
|
|
227
245
|
msgstr ""
|
|
228
246
|
|
|
247
|
+
msgid "SCC account deleted successfully."
|
|
248
|
+
msgstr ""
|
|
249
|
+
|
|
229
250
|
msgid "SCC account updated successfully."
|
|
230
251
|
msgstr ""
|
|
231
252
|
|
|
@@ -247,11 +268,11 @@ msgstr "Συνδρομές SUSE"
|
|
|
247
268
|
msgid "Search"
|
|
248
269
|
msgstr "Αναζήτηση"
|
|
249
270
|
|
|
250
|
-
msgid "Select
|
|
271
|
+
msgid "Select Products"
|
|
251
272
|
msgstr ""
|
|
252
273
|
|
|
253
|
-
msgid "Select products"
|
|
254
|
-
msgstr "
|
|
274
|
+
msgid "Select SUSE products"
|
|
275
|
+
msgstr ""
|
|
255
276
|
|
|
256
277
|
msgid "Selected SUSE Products"
|
|
257
278
|
msgstr ""
|
|
@@ -290,7 +311,7 @@ msgid "Starting the subscription task failed."
|
|
|
290
311
|
msgstr ""
|
|
291
312
|
|
|
292
313
|
msgid "Submit"
|
|
293
|
-
msgstr ""
|
|
314
|
+
msgstr "Υποβολή"
|
|
294
315
|
|
|
295
316
|
msgid "Subscribe SCC Product"
|
|
296
317
|
msgstr "Συνδρομή προϊόντος SCC"
|
|
@@ -322,6 +343,9 @@ msgstr "Η εργασία συγχρονισμού εκκίνησε."
|
|
|
322
343
|
msgid "Synchronize SUSE Account"
|
|
323
344
|
msgstr ""
|
|
324
345
|
|
|
346
|
+
msgid "Syncing..."
|
|
347
|
+
msgstr ""
|
|
348
|
+
|
|
325
349
|
msgid "Test Connection"
|
|
326
350
|
msgstr "Δοκιμή σύνδεσης"
|
|
327
351
|
|
|
@@ -373,12 +397,7 @@ msgstr ""
|
|
|
373
397
|
msgid "Use your 'Organization credentials' obtained from the SUSE Customer Center."
|
|
374
398
|
msgstr ""
|
|
375
399
|
|
|
376
|
-
msgid ""
|
|
377
|
-
"WARNING: If you want to switch SCC accounts and retain the synchronized content, DO NOT delete your old SCC account, even if it is expired. Please change the login and password of your SCC account, instead.\n"
|
|
378
|
-
"\n"
|
|
379
|
-
"If you delete your old SCC account, you CANNOT reuse existing repositories, products, content views, and composite content views.\n"
|
|
380
|
-
"\n"
|
|
381
|
-
"Really delete SCC account %s?"
|
|
400
|
+
msgid "WARNING: If you want to switch SCC accounts and retain the synchronized content, DO NOT delete your old SCC account, even if it is expired. Please change the login and password of your SCC account, instead.\\n\\nIf you delete your old SCC account, you CANNOT reuse existing repositories, products, content views, and composite content views.\\n\\n Do you Really want to delete this SCC account %acc_name?"
|
|
382
401
|
msgstr ""
|
|
383
402
|
|
|
384
403
|
msgid "YYYY-MM-DD"
|
|
@@ -387,8 +406,17 @@ msgstr ""
|
|
|
387
406
|
msgid "You currently have no SUSE products selected. Search and add SUSE products in the section below."
|
|
388
407
|
msgstr ""
|
|
389
408
|
|
|
409
|
+
msgid "error"
|
|
410
|
+
msgstr ""
|
|
411
|
+
|
|
412
|
+
msgid "finished"
|
|
413
|
+
msgstr ""
|
|
414
|
+
|
|
390
415
|
msgid "never synced"
|
|
391
416
|
msgstr "δεν συγχρονίστηκε ποτέ"
|
|
392
417
|
|
|
393
418
|
msgid "no results"
|
|
394
419
|
msgstr ""
|
|
420
|
+
|
|
421
|
+
msgid "running"
|
|
422
|
+
msgstr ""
|
|
Binary file
|
|
@@ -3,12 +3,11 @@
|
|
|
3
3
|
# This file is distributed under the same license as the foreman_scc_manager package.
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
5
|
#
|
|
6
|
-
#, fuzzy
|
|
7
6
|
msgid ""
|
|
8
7
|
msgstr ""
|
|
9
|
-
"Project-Id-Version: foreman_scc_manager
|
|
8
|
+
"Project-Id-Version: foreman_scc_manager 5.2.0\n"
|
|
10
9
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"PO-Revision-Date:
|
|
10
|
+
"PO-Revision-Date: 2026-02-11 19:29+0000\n"
|
|
12
11
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
13
12
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
14
13
|
"Language: \n"
|
|
@@ -35,6 +34,9 @@ msgstr ""
|
|
|
35
34
|
msgid "Actions"
|
|
36
35
|
msgstr ""
|
|
37
36
|
|
|
37
|
+
msgid "Actions menu"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
38
40
|
msgid "Add SCC account"
|
|
39
41
|
msgstr ""
|
|
40
42
|
|
|
@@ -89,6 +91,12 @@ msgstr ""
|
|
|
89
91
|
msgid "Date and time relative to which the sync interval is run"
|
|
90
92
|
msgstr ""
|
|
91
93
|
|
|
94
|
+
msgid "Delete"
|
|
95
|
+
msgstr ""
|
|
96
|
+
|
|
97
|
+
msgid "Delete SCC Account"
|
|
98
|
+
msgstr ""
|
|
99
|
+
|
|
92
100
|
msgid "Delete scc_account"
|
|
93
101
|
msgstr ""
|
|
94
102
|
|
|
@@ -110,6 +118,12 @@ msgstr ""
|
|
|
110
118
|
msgid "Failed to create SCC account."
|
|
111
119
|
msgstr ""
|
|
112
120
|
|
|
121
|
+
msgid "Failed to delete SCC account."
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
124
|
+
msgid "Failed to start sync task."
|
|
125
|
+
msgstr ""
|
|
126
|
+
|
|
113
127
|
msgid "Failed to update SCC account."
|
|
114
128
|
msgstr ""
|
|
115
129
|
|
|
@@ -176,6 +190,9 @@ msgstr ""
|
|
|
176
190
|
msgid "Name of the scc_account"
|
|
177
191
|
msgstr ""
|
|
178
192
|
|
|
193
|
+
msgid "No options available"
|
|
194
|
+
msgstr ""
|
|
195
|
+
|
|
179
196
|
msgid "None"
|
|
180
197
|
msgstr ""
|
|
181
198
|
|
|
@@ -224,6 +241,9 @@ msgstr ""
|
|
|
224
241
|
msgid "SCC account created successfully."
|
|
225
242
|
msgstr ""
|
|
226
243
|
|
|
244
|
+
msgid "SCC account deleted successfully."
|
|
245
|
+
msgstr ""
|
|
246
|
+
|
|
227
247
|
msgid "SCC account updated successfully."
|
|
228
248
|
msgstr ""
|
|
229
249
|
|
|
@@ -245,10 +265,10 @@ msgstr ""
|
|
|
245
265
|
msgid "Search"
|
|
246
266
|
msgstr ""
|
|
247
267
|
|
|
248
|
-
msgid "Select
|
|
268
|
+
msgid "Select Products"
|
|
249
269
|
msgstr ""
|
|
250
270
|
|
|
251
|
-
msgid "Select products"
|
|
271
|
+
msgid "Select SUSE products"
|
|
252
272
|
msgstr ""
|
|
253
273
|
|
|
254
274
|
msgid "Selected SUSE Products"
|
|
@@ -320,6 +340,9 @@ msgstr ""
|
|
|
320
340
|
msgid "Synchronize SUSE Account"
|
|
321
341
|
msgstr ""
|
|
322
342
|
|
|
343
|
+
msgid "Syncing..."
|
|
344
|
+
msgstr ""
|
|
345
|
+
|
|
323
346
|
msgid "Test Connection"
|
|
324
347
|
msgstr ""
|
|
325
348
|
|
|
@@ -371,12 +394,7 @@ msgstr ""
|
|
|
371
394
|
msgid "Use your 'Organization credentials' obtained from the SUSE Customer Center."
|
|
372
395
|
msgstr ""
|
|
373
396
|
|
|
374
|
-
msgid ""
|
|
375
|
-
"WARNING: If you want to switch SCC accounts and retain the synchronized content, DO NOT delete your old SCC account, even if it is expired. Please change the login and password of your SCC account, instead.\n"
|
|
376
|
-
"\n"
|
|
377
|
-
"If you delete your old SCC account, you CANNOT reuse existing repositories, products, content views, and composite content views.\n"
|
|
378
|
-
"\n"
|
|
379
|
-
"Really delete SCC account %s?"
|
|
397
|
+
msgid "WARNING: If you want to switch SCC accounts and retain the synchronized content, DO NOT delete your old SCC account, even if it is expired. Please change the login and password of your SCC account, instead.\\n\\nIf you delete your old SCC account, you CANNOT reuse existing repositories, products, content views, and composite content views.\\n\\n Do you Really want to delete this SCC account %acc_name?"
|
|
380
398
|
msgstr ""
|
|
381
399
|
|
|
382
400
|
msgid "YYYY-MM-DD"
|
|
@@ -385,8 +403,17 @@ msgstr ""
|
|
|
385
403
|
msgid "You currently have no SUSE products selected. Search and add SUSE products in the section below."
|
|
386
404
|
msgstr ""
|
|
387
405
|
|
|
406
|
+
msgid "error"
|
|
407
|
+
msgstr ""
|
|
408
|
+
|
|
409
|
+
msgid "finished"
|
|
410
|
+
msgstr ""
|
|
411
|
+
|
|
388
412
|
msgid "never synced"
|
|
389
413
|
msgstr ""
|
|
390
414
|
|
|
391
415
|
msgid "no results"
|
|
392
416
|
msgstr ""
|
|
417
|
+
|
|
418
|
+
msgid "running"
|
|
419
|
+
msgstr ""
|