foreman_scc_manager 1.6.3 → 1.7.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/README.md +3 -0
- data/Rakefile +1 -1
- data/app/controllers/api/v2/scc_accounts_controller.rb +159 -0
- data/app/controllers/api/v2/scc_products_controller.rb +64 -0
- data/app/models/scc_account.rb +2 -1
- data/app/models/scc_product.rb +1 -0
- data/app/views/api/v2/scc_accounts/base.json.rabl +5 -0
- data/app/views/api/v2/scc_accounts/index.json.rabl +4 -0
- data/app/views/api/v2/scc_accounts/main.json.rabl +5 -0
- data/app/views/api/v2/scc_accounts/show.json.rabl +4 -0
- data/app/views/api/v2/scc_products/base.json.rabl +5 -0
- data/app/views/api/v2/scc_products/index.json.rabl +4 -0
- data/app/views/api/v2/scc_products/main.json.rabl +5 -0
- data/app/views/api/v2/scc_products/show.json.rabl +5 -0
- data/config/routes.rb +30 -1
- data/lib/foreman_scc_manager/engine.rb +28 -9
- data/lib/foreman_scc_manager/version.rb +1 -1
- data/lib/tasks/rubocop.rake +0 -1
- data/locale/action_names.rb +5 -61
- data/locale/de/LC_MESSAGES/foreman_scc_manager.mo +0 -0
- data/locale/de/foreman_scc_manager.po +139 -210
- data/locale/en/LC_MESSAGES/foreman_scc_manager.mo +0 -0
- data/locale/en/foreman_scc_manager.po +129 -152
- data/locale/foreman_scc_manager.pot +120 -212
- data/test/controllers/api/v2/scc_accounts_test.rb +302 -0
- data/test/controllers/api/v2/scc_products_test.rb +40 -0
- data/test/features/sync_test.rb +3 -6
- data/test/{features → fixtures/files}/data_products_page1.json +0 -0
- data/test/{features → fixtures/files}/data_products_page2.json +0 -0
- data/test/fixtures/files/data_repositories.json +502 -0
- data/test/{features → fixtures/files}/data_subscriptions.json +0 -0
- data/test/models/scc_account_test.rb +4 -4
- data/test/models/scc_product_test.rb +2 -2
- data/test/test_plugin_helper.rb +2 -0
- metadata +25 -10
Binary file
|
@@ -5,7 +5,7 @@
|
|
5
5
|
#
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
|
-
"Project-Id-Version: foreman_scc_manager 1.
|
8
|
+
"Project-Id-Version: foreman_scc_manager 1.7.0\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
10
|
"PO-Revision-Date: 2017-04-24 12:30+0000\n"
|
11
11
|
"Last-Translator: ATIX AG <info@atix.de>\n"
|
@@ -17,249 +17,226 @@ msgstr ""
|
|
17
17
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
18
18
|
"\n"
|
19
19
|
|
20
|
-
|
20
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:15
|
21
|
+
msgid "List all scc_accounts"
|
21
22
|
msgstr ""
|
22
23
|
|
23
|
-
|
24
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:24
|
25
|
+
msgid "Show scc_account"
|
24
26
|
msgstr ""
|
25
27
|
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
msgid "Add SCC account"
|
30
|
-
msgstr "Add SCC account"
|
31
|
-
|
32
|
-
msgid "Add SUSE Customer Center Account"
|
33
|
-
msgstr "Add SUSE Customer Center Account"
|
34
|
-
|
35
|
-
msgid "Add Sync Plan Products"
|
36
|
-
msgstr ""
|
37
|
-
|
38
|
-
msgid "Attach subscriptions"
|
39
|
-
msgstr ""
|
40
|
-
|
41
|
-
msgid "Auto attach subscriptions"
|
42
|
-
msgstr ""
|
43
|
-
|
44
|
-
msgid "Auto-attach subscriptions"
|
45
|
-
msgstr ""
|
46
|
-
|
47
|
-
msgid "Base URL"
|
48
|
-
msgstr "Base URL"
|
49
|
-
|
50
|
-
msgid "Configure capsule"
|
28
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:32
|
29
|
+
msgid "Name of the scc_account"
|
51
30
|
msgstr ""
|
52
31
|
|
53
|
-
|
32
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:33 ../app/controllers/api/v2/scc_accounts_controller.rb:64
|
33
|
+
msgid "Login id of scc_account"
|
54
34
|
msgstr ""
|
55
35
|
|
56
|
-
|
36
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:34 ../app/controllers/api/v2/scc_accounts_controller.rb:65
|
37
|
+
msgid "Password of scc_account"
|
57
38
|
msgstr ""
|
58
39
|
|
59
|
-
|
40
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:35 ../app/controllers/api/v2/scc_accounts_controller.rb:66
|
41
|
+
msgid "URL of SUSE for scc_account"
|
60
42
|
msgstr ""
|
61
43
|
|
62
|
-
|
44
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:36
|
45
|
+
msgid "Interval for syncing scc_account"
|
63
46
|
msgstr ""
|
64
47
|
|
65
|
-
|
48
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:37
|
49
|
+
msgid "Last Sync time of scc_account"
|
66
50
|
msgstr ""
|
67
51
|
|
68
|
-
|
52
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:41
|
53
|
+
msgid "Create an scc_account"
|
69
54
|
msgstr ""
|
70
55
|
|
71
|
-
|
56
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:48
|
57
|
+
msgid "Update scc_account"
|
72
58
|
msgstr ""
|
73
59
|
|
74
|
-
|
60
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:55
|
61
|
+
msgid "Delete scc_account"
|
75
62
|
msgstr ""
|
76
63
|
|
77
|
-
|
64
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:61 ../app/controllers/api/v2/scc_accounts_controller.rb:62
|
65
|
+
msgid "Test connection for scc_account"
|
78
66
|
msgstr ""
|
79
67
|
|
80
|
-
|
68
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:89
|
69
|
+
msgid "Sync scc_account"
|
81
70
|
msgstr ""
|
82
71
|
|
83
|
-
|
72
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:103
|
73
|
+
msgid "Bulk subscription of scc_products for scc_account"
|
84
74
|
msgstr ""
|
85
75
|
|
86
|
-
|
76
|
+
#: ../app/controllers/api/v2/scc_products_controller.rb:15
|
77
|
+
msgid "List all products for scc_account"
|
87
78
|
msgstr ""
|
88
79
|
|
89
|
-
|
80
|
+
#: ../app/controllers/api/v2/scc_products_controller.rb:24
|
81
|
+
msgid "Show an scc_account product"
|
90
82
|
msgstr ""
|
91
83
|
|
92
|
-
|
84
|
+
#: ../app/controllers/api/v2/scc_products_controller.rb:29
|
85
|
+
msgid "Subscribe product"
|
93
86
|
msgstr ""
|
94
87
|
|
95
|
-
|
96
|
-
|
88
|
+
#: ../app/controllers/scc_accounts_controller.rb:64
|
89
|
+
msgid "Sync task started."
|
90
|
+
msgstr "Sync task started."
|
97
91
|
|
92
|
+
#: ../app/controllers/scc_accounts_controller.rb:66 ../app/controllers/scc_accounts_controller.rb:86
|
98
93
|
msgid "Failed to add task to queue: %s"
|
99
94
|
msgstr "Failed to add task to queue: %s"
|
100
95
|
|
101
|
-
|
102
|
-
|
96
|
+
#: ../app/controllers/scc_accounts_controller.rb:68 ../app/controllers/scc_accounts_controller.rb:88
|
97
|
+
msgid "Lock on SCC account already taken: %s"
|
98
|
+
msgstr "Lock on SCC account already taken: %s"
|
103
99
|
|
104
|
-
|
105
|
-
"
|
106
|
-
"Katello."
|
100
|
+
#: ../app/controllers/scc_accounts_controller.rb:81
|
101
|
+
msgid "Task to subscribe products started."
|
107
102
|
msgstr ""
|
108
|
-
"Foreman plugin to sync SUSE Customer Center products and repositories into "
|
109
|
-
"Katello."
|
110
103
|
|
111
|
-
|
104
|
+
#: ../app/controllers/scc_accounts_controller.rb:83
|
105
|
+
msgid "No products selected."
|
112
106
|
msgstr ""
|
113
107
|
|
114
|
-
|
115
|
-
|
108
|
+
#: ../app/lib/actions/scc_manager/subscribe_product.rb:5
|
109
|
+
msgid "Product already subscribed!"
|
110
|
+
msgstr "Product already subscribed!"
|
116
111
|
|
117
|
-
|
118
|
-
|
112
|
+
#: ../app/lib/actions/scc_manager/subscribe_product.rb:35 action_names.rb:21
|
113
|
+
msgid "Subscribe SCC Product"
|
114
|
+
msgstr "Subscribe SCC Product"
|
119
115
|
|
120
|
-
|
121
|
-
|
116
|
+
#: ../app/lib/actions/scc_manager/sync.rb:27 action_names.rb:22
|
117
|
+
msgid "Sync SUSE subscriptions"
|
118
|
+
msgstr "Sync SUSE subscriptions"
|
122
119
|
|
123
|
-
|
120
|
+
#: ../app/lib/actions/scc_manager/sync_plan_account_repositories.rb:31
|
121
|
+
msgid "Update SUSE repositories %s"
|
124
122
|
msgstr ""
|
125
123
|
|
126
|
-
|
124
|
+
#: ../app/lib/actions/scc_manager/sync_plan_account_repositories.rb:31
|
125
|
+
msgid "Unknown"
|
127
126
|
msgstr ""
|
128
127
|
|
129
|
-
|
128
|
+
#: ../app/lib/actions/scc_manager/sync_plan_account_repositories.rb:33 action_names.rb:71
|
129
|
+
msgid "Update SUSE repositories"
|
130
130
|
msgstr ""
|
131
131
|
|
132
|
-
|
133
|
-
|
132
|
+
#: ../app/lib/actions/scc_manager/sync_products.rb:34 action_names.rb:72
|
133
|
+
msgid "Sync SUSE subscriptions (Products)"
|
134
|
+
msgstr "Sync SUSE subscriptions (Products)"
|
134
135
|
|
135
|
-
|
136
|
-
|
136
|
+
#: ../app/lib/actions/scc_manager/sync_repositories.rb:33 action_names.rb:73
|
137
|
+
msgid "Sync SUSE subscriptions (Repositories)"
|
138
|
+
msgstr "Sync SUSE subscriptions (Repositories)"
|
137
139
|
|
138
|
-
|
140
|
+
#: ../app/models/scc_account.rb:59
|
141
|
+
msgid "never synced"
|
139
142
|
msgstr ""
|
140
143
|
|
141
|
-
|
144
|
+
#: ../app/models/scc_account.rb:106
|
145
|
+
msgid "Interval cannot be nil"
|
142
146
|
msgstr ""
|
143
147
|
|
144
|
-
|
148
|
+
#: ../app/models/scc_account.rb:113
|
149
|
+
msgid "Interval not set correctly"
|
145
150
|
msgstr ""
|
146
151
|
|
147
|
-
|
152
|
+
#: ../app/models/scc_account.rb:118
|
153
|
+
msgid "Cron expression is not valid!"
|
148
154
|
msgstr ""
|
149
155
|
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
msgid "Lock on SCC account already taken: %s"
|
154
|
-
msgstr "Lock on SCC account already taken: %s"
|
155
|
-
|
156
|
-
msgid "Package Profile Update"
|
156
|
+
#: ../app/models/scc_account_sync_plan_task_group.rb:5
|
157
|
+
msgid "SUSE Subscription"
|
157
158
|
msgstr ""
|
158
159
|
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
msgid "Product Create"
|
160
|
+
#: ../app/views/scc_account_sync_plan_task_groups/_scc_account_sync_plan_task_groups.html.erb:1
|
161
|
+
msgid "SUSE Subscription: "
|
163
162
|
msgstr ""
|
164
163
|
|
165
|
-
|
166
|
-
|
164
|
+
#: ../app/views/scc_accounts/_form.html.erb:6
|
165
|
+
msgid "SUSE Customer Center account"
|
166
|
+
msgstr "SUSE Customer Center account"
|
167
167
|
|
168
|
-
|
168
|
+
#: ../app/views/scc_accounts/_form.html.erb:13
|
169
|
+
msgid "Use your 'Organization credentials' obtained from the SUSE Customer Center."
|
169
170
|
msgstr ""
|
170
171
|
|
171
|
-
|
172
|
-
|
172
|
+
#: ../app/views/scc_accounts/_form.html.erb:15
|
173
|
+
msgid "Base URL"
|
174
|
+
msgstr "Base URL"
|
173
175
|
|
174
|
-
|
176
|
+
#: ../app/views/scc_accounts/_form.html.erb:16
|
177
|
+
msgid "Interval"
|
175
178
|
msgstr ""
|
176
179
|
|
177
|
-
|
180
|
+
#: ../app/views/scc_accounts/_form.html.erb:17
|
181
|
+
msgid "Sync Date"
|
178
182
|
msgstr ""
|
179
183
|
|
180
|
-
|
181
|
-
|
184
|
+
#: ../app/views/scc_accounts/_form.html.erb:24
|
185
|
+
msgid "Test Connection"
|
186
|
+
msgstr "Test Connection"
|
182
187
|
|
183
|
-
|
188
|
+
#: ../app/views/scc_accounts/edit.html.erb:1
|
189
|
+
msgid "Edit %s"
|
184
190
|
msgstr ""
|
185
191
|
|
186
|
-
|
187
|
-
|
192
|
+
#: ../app/views/scc_accounts/index.html.erb:2
|
193
|
+
msgid "SUSE subscriptions"
|
194
|
+
msgstr "SUSE subscriptions"
|
188
195
|
|
189
|
-
|
190
|
-
|
196
|
+
#: ../app/views/scc_accounts/index.html.erb:3
|
197
|
+
msgid "Add SCC account"
|
198
|
+
msgstr "Add SCC account"
|
191
199
|
|
192
|
-
|
200
|
+
#: ../app/views/scc_accounts/index.html.erb:9
|
201
|
+
msgid "Products"
|
193
202
|
msgstr ""
|
194
203
|
|
195
|
-
|
196
|
-
|
204
|
+
#: ../app/views/scc_accounts/index.html.erb:10
|
205
|
+
msgid "Last synced"
|
206
|
+
msgstr "Last synced"
|
197
207
|
|
198
|
-
|
208
|
+
#: ../app/views/scc_accounts/index.html.erb:11
|
209
|
+
msgid "Actions"
|
199
210
|
msgstr ""
|
200
211
|
|
201
|
-
|
212
|
+
#: ../app/views/scc_accounts/index.html.erb:24
|
213
|
+
msgid "Select products"
|
202
214
|
msgstr ""
|
203
215
|
|
204
|
-
|
205
|
-
msgstr "SUSE Customer Center"
|
206
|
-
|
207
|
-
msgid "SUSE Customer Center account"
|
208
|
-
msgstr "SUSE Customer Center account"
|
209
|
-
|
210
|
-
msgid "SUSE Subscriptions"
|
211
|
-
msgstr "SUSE Subscriptions"
|
212
|
-
|
213
|
-
msgid "SUSE subscriptions"
|
214
|
-
msgstr "SUSE subscriptions"
|
215
|
-
|
216
|
-
msgid "Subscribe SCC Product"
|
217
|
-
msgstr "Subscribe SCC Product"
|
218
|
-
|
216
|
+
#: ../app/views/scc_accounts/index.html.erb:25
|
219
217
|
msgid "Sync"
|
220
218
|
msgstr "Sync"
|
221
219
|
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
msgid "Sync SUSE subscriptions (Products)"
|
226
|
-
msgstr "Sync SUSE subscriptions (Products)"
|
227
|
-
|
228
|
-
msgid "Sync SUSE subscriptions (Repositories)"
|
229
|
-
msgstr "Sync SUSE subscriptions (Repositories)"
|
230
|
-
|
231
|
-
msgid "Sync task started."
|
232
|
-
msgstr "Sync task started."
|
233
|
-
|
234
|
-
msgid "Synchronize"
|
235
|
-
msgstr "Synchronize"
|
236
|
-
|
237
|
-
msgid "Synchronize capsule content"
|
238
|
-
msgstr ""
|
239
|
-
|
240
|
-
msgid "Test Connection"
|
241
|
-
msgstr "Test Connection"
|
242
|
-
|
243
|
-
msgid "Unregister Host"
|
244
|
-
msgstr ""
|
245
|
-
|
246
|
-
msgid "Update"
|
247
|
-
msgstr ""
|
248
|
-
|
249
|
-
msgid "Update Sync Plan"
|
220
|
+
#: ../app/views/scc_accounts/index.html.erb:28
|
221
|
+
msgid "Delete %s?"
|
250
222
|
msgstr ""
|
251
223
|
|
252
|
-
|
253
|
-
|
224
|
+
#: ../app/views/scc_accounts/new.html.erb:1
|
225
|
+
msgid "Add SUSE Customer Center Account"
|
226
|
+
msgstr "Add SUSE Customer Center Account"
|
254
227
|
|
255
|
-
|
256
|
-
|
228
|
+
#: ../app/views/scc_accounts/show.html.erb:25
|
229
|
+
msgid "SUSE Customer Center"
|
230
|
+
msgstr "SUSE Customer Center"
|
257
231
|
|
258
|
-
|
259
|
-
|
232
|
+
#: ../app/views/scc_accounts/show.html.erb:36
|
233
|
+
msgid "Please sync your SUSE subscriptions first."
|
234
|
+
msgstr "Please sync your SUSE subscriptions first."
|
260
235
|
|
261
|
-
|
262
|
-
|
236
|
+
#: ../lib/foreman_scc_manager/engine.rb:64
|
237
|
+
msgid "SUSE Subscriptions"
|
238
|
+
msgstr "SUSE Subscriptions"
|
263
239
|
|
264
|
-
|
265
|
-
|
240
|
+
#: gemspec.rb:2
|
241
|
+
msgid "Foreman plugin to sync SUSE Customer Center products and repositories into Katello."
|
242
|
+
msgstr "Foreman plugin to sync SUSE Customer Center products and repositories into Katello."
|
@@ -8,8 +8,8 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: foreman_scc_manager 1.0.0\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"POT-Creation-Date:
|
12
|
-
"PO-Revision-Date:
|
11
|
+
"POT-Creation-Date: 2019-11-12 12:27+0000\n"
|
12
|
+
"PO-Revision-Date: 2019-11-12 12:27+0000\n"
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15
15
|
"Language: \n"
|
@@ -18,324 +18,232 @@ msgstr ""
|
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
19
19
|
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
20
20
|
|
21
|
-
#: ../app/controllers/scc_accounts_controller.rb:
|
22
|
-
msgid "
|
23
|
-
msgstr ""
|
24
|
-
|
25
|
-
#: ../app/controllers/scc_accounts_controller.rb:70
|
26
|
-
msgid "Failed to add task to queue: %s"
|
27
|
-
msgstr ""
|
28
|
-
|
29
|
-
#: ../app/controllers/scc_accounts_controller.rb:72
|
30
|
-
msgid "Lock on SCC account already taken: %s"
|
31
|
-
msgstr ""
|
32
|
-
|
33
|
-
#: ../app/lib/actions/scc_manager/subscribe_product.rb:5
|
34
|
-
msgid "Product already subscribed!"
|
35
|
-
msgstr ""
|
36
|
-
|
37
|
-
#: ../app/lib/actions/scc_manager/subscribe_product.rb:36 action_names.rb:55
|
38
|
-
msgid "Subscribe SCC Product"
|
39
|
-
msgstr ""
|
40
|
-
|
41
|
-
#: ../app/lib/actions/scc_manager/sync.rb:26 action_names.rb:44
|
42
|
-
msgid "Sync SUSE subscriptions"
|
43
|
-
msgstr ""
|
44
|
-
|
45
|
-
#: ../app/lib/actions/scc_manager/sync_products.rb:28 action_names.rb:50
|
46
|
-
msgid "Sync SUSE subscriptions (Products)"
|
47
|
-
msgstr ""
|
48
|
-
|
49
|
-
#: ../app/lib/actions/scc_manager/sync_repositories.rb:27 action_names.rb:54
|
50
|
-
msgid "Sync SUSE subscriptions (Repositories)"
|
51
|
-
msgstr ""
|
52
|
-
|
53
|
-
#: ../app/views/scc_accounts/_form.html.erb:8
|
54
|
-
msgid "SUSE Customer Center account"
|
55
|
-
msgstr ""
|
56
|
-
|
57
|
-
#: ../app/views/scc_accounts/_form.html.erb:17
|
58
|
-
msgid "Base URL"
|
59
|
-
msgstr ""
|
60
|
-
|
61
|
-
#: ../app/views/scc_accounts/_form.html.erb:22
|
62
|
-
msgid "Test Connection"
|
63
|
-
msgstr ""
|
64
|
-
|
65
|
-
#: ../app/views/scc_accounts/edit.html.erb:1
|
66
|
-
msgid "Edit %s"
|
67
|
-
msgstr ""
|
68
|
-
|
69
|
-
#: ../app/views/scc_accounts/index.html.erb:4
|
70
|
-
msgid "SUSE subscriptions"
|
71
|
-
msgstr ""
|
72
|
-
|
73
|
-
#: ../app/views/scc_accounts/index.html.erb:5
|
74
|
-
msgid "Add SCC account"
|
75
|
-
msgstr ""
|
76
|
-
|
77
|
-
#: ../app/views/scc_accounts/index.html.erb:11
|
78
|
-
msgid "Products"
|
79
|
-
msgstr ""
|
80
|
-
|
81
|
-
#: ../app/views/scc_accounts/index.html.erb:12
|
82
|
-
msgid "Last synced"
|
83
|
-
msgstr ""
|
84
|
-
|
85
|
-
#: ../app/views/scc_accounts/index.html.erb:13
|
86
|
-
msgid "Actions"
|
21
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:15
|
22
|
+
msgid "List all scc_accounts"
|
87
23
|
msgstr ""
|
88
24
|
|
89
|
-
#: ../app/
|
90
|
-
msgid "
|
91
|
-
msgstr ""
|
92
|
-
|
93
|
-
#: ../app/views/scc_accounts/index.html.erb:29
|
94
|
-
msgid "Edit"
|
95
|
-
msgstr ""
|
96
|
-
|
97
|
-
#: ../app/views/scc_accounts/index.html.erb:32
|
98
|
-
msgid "Delete %s?"
|
99
|
-
msgstr ""
|
100
|
-
|
101
|
-
#: ../app/views/scc_accounts/new.html.erb:1
|
102
|
-
msgid "Add SUSE Customer Center Account"
|
25
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:24
|
26
|
+
msgid "Show scc_account"
|
103
27
|
msgstr ""
|
104
28
|
|
105
|
-
#: ../app/
|
106
|
-
msgid "
|
29
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:32
|
30
|
+
msgid "Name of the scc_account"
|
107
31
|
msgstr ""
|
108
32
|
|
109
|
-
#: ../app/
|
110
|
-
|
33
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:33
|
34
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:64
|
35
|
+
msgid "Login id of scc_account"
|
111
36
|
msgstr ""
|
112
37
|
|
113
|
-
#: ../
|
114
|
-
|
38
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:34
|
39
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:65
|
40
|
+
msgid "Password of scc_account"
|
115
41
|
msgstr ""
|
116
42
|
|
117
|
-
#:
|
118
|
-
|
43
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:35
|
44
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:66
|
45
|
+
msgid "URL of SUSE for scc_account"
|
119
46
|
msgstr ""
|
120
47
|
|
121
|
-
#:
|
122
|
-
msgid "
|
48
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:36
|
49
|
+
msgid "Interval for syncing scc_account"
|
123
50
|
msgstr ""
|
124
51
|
|
125
|
-
#:
|
126
|
-
msgid "
|
52
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:37
|
53
|
+
msgid "Last Sync time of scc_account"
|
127
54
|
msgstr ""
|
128
55
|
|
129
|
-
#:
|
130
|
-
msgid "
|
56
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:41
|
57
|
+
msgid "Create an scc_account"
|
131
58
|
msgstr ""
|
132
59
|
|
133
|
-
#:
|
134
|
-
msgid "
|
60
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:48
|
61
|
+
msgid "Update scc_account"
|
135
62
|
msgstr ""
|
136
63
|
|
137
|
-
#:
|
138
|
-
msgid "
|
64
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:55
|
65
|
+
msgid "Delete scc_account"
|
139
66
|
msgstr ""
|
140
67
|
|
141
|
-
#:
|
142
|
-
|
68
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:61
|
69
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:62
|
70
|
+
msgid "Test connection for scc_account"
|
143
71
|
msgstr ""
|
144
72
|
|
145
|
-
#:
|
146
|
-
msgid "
|
73
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:89
|
74
|
+
msgid "Sync scc_account"
|
147
75
|
msgstr ""
|
148
76
|
|
149
|
-
#:
|
150
|
-
msgid "
|
77
|
+
#: ../app/controllers/api/v2/scc_accounts_controller.rb:103
|
78
|
+
msgid "Bulk subscription of scc_products for scc_account"
|
151
79
|
msgstr ""
|
152
80
|
|
153
|
-
#:
|
154
|
-
msgid "
|
81
|
+
#: ../app/controllers/api/v2/scc_products_controller.rb:15
|
82
|
+
msgid "List all products for scc_account"
|
155
83
|
msgstr ""
|
156
84
|
|
157
|
-
#:
|
158
|
-
msgid "
|
85
|
+
#: ../app/controllers/api/v2/scc_products_controller.rb:24
|
86
|
+
msgid "Show an scc_account product"
|
159
87
|
msgstr ""
|
160
88
|
|
161
|
-
#:
|
162
|
-
msgid "
|
89
|
+
#: ../app/controllers/api/v2/scc_products_controller.rb:29
|
90
|
+
msgid "Subscribe product"
|
163
91
|
msgstr ""
|
164
92
|
|
165
|
-
#:
|
166
|
-
msgid "
|
167
|
-
msgstr ""
|
168
|
-
|
169
|
-
#: action_names.rb:15
|
170
|
-
msgid "Auto-attach subscriptions"
|
171
|
-
msgstr ""
|
172
|
-
|
173
|
-
#: action_names.rb:16
|
174
|
-
msgid "Create repos"
|
175
|
-
msgstr ""
|
176
|
-
|
177
|
-
#: action_names.rb:17
|
178
|
-
msgid "Create"
|
179
|
-
msgstr ""
|
180
|
-
|
181
|
-
#: action_names.rb:18
|
182
|
-
msgid "Remove package group"
|
183
|
-
msgstr ""
|
184
|
-
|
185
|
-
#: action_names.rb:19
|
186
|
-
msgid "Install erratum"
|
187
|
-
msgstr ""
|
188
|
-
|
189
|
-
#: action_names.rb:20
|
190
|
-
msgid "Register Host"
|
93
|
+
#: ../app/controllers/scc_accounts_controller.rb:64
|
94
|
+
msgid "Sync task started."
|
191
95
|
msgstr ""
|
192
96
|
|
193
|
-
#:
|
194
|
-
|
97
|
+
#: ../app/controllers/scc_accounts_controller.rb:66
|
98
|
+
#: ../app/controllers/scc_accounts_controller.rb:86
|
99
|
+
msgid "Failed to add task to queue: %s"
|
195
100
|
msgstr ""
|
196
101
|
|
197
|
-
#:
|
198
|
-
|
102
|
+
#: ../app/controllers/scc_accounts_controller.rb:68
|
103
|
+
#: ../app/controllers/scc_accounts_controller.rb:88
|
104
|
+
msgid "Lock on SCC account already taken: %s"
|
199
105
|
msgstr ""
|
200
106
|
|
201
|
-
#:
|
202
|
-
msgid "
|
107
|
+
#: ../app/controllers/scc_accounts_controller.rb:81
|
108
|
+
msgid "Task to subscribe products started."
|
203
109
|
msgstr ""
|
204
110
|
|
205
|
-
#:
|
206
|
-
msgid "
|
111
|
+
#: ../app/controllers/scc_accounts_controller.rb:83
|
112
|
+
msgid "No products selected."
|
207
113
|
msgstr ""
|
208
114
|
|
209
|
-
#:
|
210
|
-
msgid "
|
115
|
+
#: ../app/lib/actions/scc_manager/subscribe_product.rb:5
|
116
|
+
msgid "Product already subscribed!"
|
211
117
|
msgstr ""
|
212
118
|
|
213
|
-
#: action_names.rb:
|
214
|
-
msgid "
|
119
|
+
#: ../app/lib/actions/scc_manager/subscribe_product.rb:35 action_names.rb:21
|
120
|
+
msgid "Subscribe SCC Product"
|
215
121
|
msgstr ""
|
216
122
|
|
217
|
-
#: action_names.rb:
|
218
|
-
msgid "
|
123
|
+
#: ../app/lib/actions/scc_manager/sync.rb:27 action_names.rb:22
|
124
|
+
msgid "Sync SUSE subscriptions"
|
219
125
|
msgstr ""
|
220
126
|
|
221
|
-
#:
|
222
|
-
msgid "
|
127
|
+
#: ../app/lib/actions/scc_manager/sync_plan_account_repositories.rb:31
|
128
|
+
msgid "Update SUSE repositories %s"
|
223
129
|
msgstr ""
|
224
130
|
|
225
|
-
#:
|
226
|
-
msgid "
|
131
|
+
#: ../app/lib/actions/scc_manager/sync_plan_account_repositories.rb:31
|
132
|
+
msgid "Unknown"
|
227
133
|
msgstr ""
|
228
134
|
|
229
|
-
#:
|
230
|
-
|
135
|
+
#: ../app/lib/actions/scc_manager/sync_plan_account_repositories.rb:33
|
136
|
+
#: action_names.rb:71
|
137
|
+
msgid "Update SUSE repositories"
|
231
138
|
msgstr ""
|
232
139
|
|
233
|
-
#: action_names.rb:
|
234
|
-
msgid "
|
140
|
+
#: ../app/lib/actions/scc_manager/sync_products.rb:34 action_names.rb:72
|
141
|
+
msgid "Sync SUSE subscriptions (Products)"
|
235
142
|
msgstr ""
|
236
143
|
|
237
|
-
#: action_names.rb:
|
238
|
-
msgid "
|
144
|
+
#: ../app/lib/actions/scc_manager/sync_repositories.rb:33 action_names.rb:73
|
145
|
+
msgid "Sync SUSE subscriptions (Repositories)"
|
239
146
|
msgstr ""
|
240
147
|
|
241
|
-
#:
|
242
|
-
msgid "
|
148
|
+
#: ../app/models/scc_account.rb:59
|
149
|
+
msgid "never synced"
|
243
150
|
msgstr ""
|
244
151
|
|
245
|
-
#:
|
246
|
-
msgid "
|
152
|
+
#: ../app/models/scc_account.rb:106
|
153
|
+
msgid "Interval cannot be nil"
|
247
154
|
msgstr ""
|
248
155
|
|
249
|
-
#:
|
250
|
-
msgid "
|
156
|
+
#: ../app/models/scc_account.rb:113
|
157
|
+
msgid "Interval not set correctly"
|
251
158
|
msgstr ""
|
252
159
|
|
253
|
-
#:
|
254
|
-
msgid "
|
160
|
+
#: ../app/models/scc_account.rb:118
|
161
|
+
msgid "Cron expression is not valid!"
|
255
162
|
msgstr ""
|
256
163
|
|
257
|
-
#:
|
258
|
-
msgid "
|
164
|
+
#: ../app/models/scc_account_sync_plan_task_group.rb:5
|
165
|
+
msgid "SUSE Subscription"
|
259
166
|
msgstr ""
|
260
167
|
|
261
|
-
#:
|
262
|
-
|
168
|
+
#:
|
169
|
+
#: ../app/views/scc_account_sync_plan_task_groups/_scc_account_sync_plan_task_groups.html.erb:1
|
170
|
+
msgid "SUSE Subscription: "
|
263
171
|
msgstr ""
|
264
172
|
|
265
|
-
#:
|
266
|
-
msgid "
|
173
|
+
#: ../app/views/scc_accounts/_form.html.erb:6
|
174
|
+
msgid "SUSE Customer Center account"
|
267
175
|
msgstr ""
|
268
176
|
|
269
|
-
#:
|
270
|
-
msgid "
|
177
|
+
#: ../app/views/scc_accounts/_form.html.erb:13
|
178
|
+
msgid "Use your 'Organization credentials' obtained from the SUSE Customer Center."
|
271
179
|
msgstr ""
|
272
180
|
|
273
|
-
#:
|
274
|
-
msgid "
|
181
|
+
#: ../app/views/scc_accounts/_form.html.erb:15
|
182
|
+
msgid "Base URL"
|
275
183
|
msgstr ""
|
276
184
|
|
277
|
-
#:
|
278
|
-
msgid "
|
185
|
+
#: ../app/views/scc_accounts/_form.html.erb:16
|
186
|
+
msgid "Interval"
|
279
187
|
msgstr ""
|
280
188
|
|
281
|
-
#:
|
282
|
-
msgid "
|
189
|
+
#: ../app/views/scc_accounts/_form.html.erb:17
|
190
|
+
msgid "Sync Date"
|
283
191
|
msgstr ""
|
284
192
|
|
285
|
-
#:
|
286
|
-
msgid "
|
193
|
+
#: ../app/views/scc_accounts/_form.html.erb:24
|
194
|
+
msgid "Test Connection"
|
287
195
|
msgstr ""
|
288
196
|
|
289
|
-
#:
|
290
|
-
msgid "
|
197
|
+
#: ../app/views/scc_accounts/edit.html.erb:1
|
198
|
+
msgid "Edit %s"
|
291
199
|
msgstr ""
|
292
200
|
|
293
|
-
#:
|
294
|
-
msgid "
|
201
|
+
#: ../app/views/scc_accounts/index.html.erb:2
|
202
|
+
msgid "SUSE subscriptions"
|
295
203
|
msgstr ""
|
296
204
|
|
297
|
-
#:
|
298
|
-
msgid "
|
205
|
+
#: ../app/views/scc_accounts/index.html.erb:3
|
206
|
+
msgid "Add SCC account"
|
299
207
|
msgstr ""
|
300
208
|
|
301
|
-
#:
|
302
|
-
msgid "
|
209
|
+
#: ../app/views/scc_accounts/index.html.erb:9
|
210
|
+
msgid "Products"
|
303
211
|
msgstr ""
|
304
212
|
|
305
|
-
#:
|
306
|
-
msgid "
|
213
|
+
#: ../app/views/scc_accounts/index.html.erb:10
|
214
|
+
msgid "Last synced"
|
307
215
|
msgstr ""
|
308
216
|
|
309
|
-
#:
|
310
|
-
msgid "
|
217
|
+
#: ../app/views/scc_accounts/index.html.erb:11
|
218
|
+
msgid "Actions"
|
311
219
|
msgstr ""
|
312
220
|
|
313
|
-
#:
|
314
|
-
msgid "
|
221
|
+
#: ../app/views/scc_accounts/index.html.erb:24
|
222
|
+
msgid "Select products"
|
315
223
|
msgstr ""
|
316
224
|
|
317
|
-
#:
|
318
|
-
msgid "
|
225
|
+
#: ../app/views/scc_accounts/index.html.erb:25
|
226
|
+
msgid "Sync"
|
319
227
|
msgstr ""
|
320
228
|
|
321
|
-
#:
|
322
|
-
msgid "
|
229
|
+
#: ../app/views/scc_accounts/index.html.erb:28
|
230
|
+
msgid "Delete %s?"
|
323
231
|
msgstr ""
|
324
232
|
|
325
|
-
#:
|
326
|
-
msgid "
|
233
|
+
#: ../app/views/scc_accounts/new.html.erb:1
|
234
|
+
msgid "Add SUSE Customer Center Account"
|
327
235
|
msgstr ""
|
328
236
|
|
329
|
-
#:
|
330
|
-
msgid "
|
237
|
+
#: ../app/views/scc_accounts/show.html.erb:25
|
238
|
+
msgid "SUSE Customer Center"
|
331
239
|
msgstr ""
|
332
240
|
|
333
|
-
#:
|
334
|
-
msgid "
|
241
|
+
#: ../app/views/scc_accounts/show.html.erb:36
|
242
|
+
msgid "Please sync your SUSE subscriptions first."
|
335
243
|
msgstr ""
|
336
244
|
|
337
|
-
#:
|
338
|
-
msgid "
|
245
|
+
#: ../lib/foreman_scc_manager/engine.rb:64
|
246
|
+
msgid "SUSE Subscriptions"
|
339
247
|
msgstr ""
|
340
248
|
|
341
249
|
#: gemspec.rb:2
|