foreman_leapp 0.1.13 → 0.1.15
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/controllers/api/v2/concerns/api_authorizer.rb +1 -1
- data/app/models/preupgrade_report.rb +10 -5
- data/lib/foreman_leapp/version.rb +1 -1
- data/locale/action_names.rb +3 -3
- data/locale/de/foreman_leapp.edit.po +226 -0
- data/locale/de/foreman_leapp.po +27 -0
- data/locale/de/foreman_leapp.po.time_stamp +0 -0
- data/locale/en/foreman_leapp.edit.po +68 -23
- data/locale/en/foreman_leapp.po +27 -0
- data/locale/foreman_leapp.pot +53 -14
- data/locale/fr/foreman_leapp.edit.po +218 -0
- data/locale/fr/foreman_leapp.po.time_stamp +0 -0
- data/locale/ja/foreman_leapp.edit.po +218 -0
- data/locale/ja/foreman_leapp.po.time_stamp +0 -0
- data/locale/ka/foreman_leapp.edit.po +220 -0
- data/locale/ka/foreman_leapp.po +27 -0
- data/locale/ka/foreman_leapp.po.time_stamp +0 -0
- data/locale/pt_BR/foreman_leapp.edit.po +225 -0
- data/locale/pt_BR/foreman_leapp.po.time_stamp +0 -0
- data/locale/zh_CN/foreman_leapp.edit.po +224 -0
- data/locale/zh_CN/foreman_leapp.po.time_stamp +0 -0
- data/locale/zh_TW/foreman_leapp.edit.po +222 -0
- data/locale/zh_TW/foreman_leapp.po.time_stamp +0 -0
- data/package.json +1 -1
- data/webpack/__mocks__/foremanReact/common/I18n.js +1 -0
- data/webpack/components/PreupgradeReports/PreupgradeReports.js +5 -1
- data/webpack/components/PreupgradeReports/PreupgradeReportsActions.js +2 -1
- data/webpack/components/PreupgradeReports/__tests__/__snapshots__/PreupgradeReports.test.js.snap +1 -1
- data/webpack/components/PreupgradeReportsList/components/__tests__/__snapshots__/helpers.test.js.snap +2 -1
- data/webpack/components/PreupgradeReportsList/components/helpers.js +14 -12
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b49548ff1b40aa0357e800ce24120631bafb72b4d563ddcb858e8d99105229e
|
4
|
+
data.tar.gz: 2f54cd46d337499f50714e721e268e45797c49ef3b852818a85e00c5c9a955cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb197e04d8ded1ed5d2e68acc12ffb4405e6ec96a5086f7a56d74523cfa800f34adb5b03caac511376a3c89a7c8bf78351a2eed38134bc104fa255bad488d402
|
7
|
+
data.tar.gz: '078ca61b74fc6b64ef5464b270ce30a579ae6122bb719498e96eb8d581106f016bfd746d60f2ee855a0434ae9c7daa56bce31bb572ab5bcc26d50dd0d721a021'
|
@@ -13,7 +13,7 @@ module ApiAuthorizer
|
|
13
13
|
return if User.current.can?('view_hosts')
|
14
14
|
|
15
15
|
render_error 'access_denied', status: :forbidden,
|
16
|
-
locals: { details:
|
16
|
+
locals: { details: N_('Missing one of the required permissions: view_hosts'),
|
17
17
|
missing_permissions: 'view_hosts' }
|
18
18
|
end
|
19
19
|
|
@@ -7,12 +7,17 @@ class PreupgradeReport < ::Report
|
|
7
7
|
scoped_search on: :job_invocation_id, only_explicit: true
|
8
8
|
|
9
9
|
def self.create_report(host, data, job_invocation_id)
|
10
|
-
|
11
|
-
|
12
|
-
|
10
|
+
# We don't have specific permissions for the Preupgrade leapp reports,
|
11
|
+
# so we need to skip the permission check for non-admin users.
|
12
|
+
# The user is still required to have permission to run the job and view the hosts.
|
13
|
+
skip_permission_check do
|
14
|
+
report = PreupgradeReport.create host: host, status: 0,
|
15
|
+
job_invocation_id: job_invocation_id,
|
16
|
+
reported_at: DateTime.now.utc
|
13
17
|
|
14
|
-
|
15
|
-
|
18
|
+
data['entries']&.each do |entry|
|
19
|
+
PreupgradeReportEntry.create! entry_params(report, entry, host, data)
|
20
|
+
end
|
16
21
|
end
|
17
22
|
end
|
18
23
|
|
data/locale/action_names.rb
CHANGED
@@ -0,0 +1,226 @@
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
|
+
# This file is distributed under the same license as the foreman_leapp package.
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5
|
+
#
|
6
|
+
# Translators:
|
7
|
+
# Martin Zimmermann <martin.zimmermann@gmx.com>, 2022
|
8
|
+
# Ettore Atalan <atalanttore@googlemail.com>, 2022
|
9
|
+
# Wiederoder <stefanwiederoder@googlemail.com>, 2022
|
10
|
+
# Lukas Kallies <github.com@luke-web.de>, 2022
|
11
|
+
# pdolinic, 2022
|
12
|
+
# Crited <Alexander.Stoll@netways.de>, 2022
|
13
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2023
|
14
|
+
#
|
15
|
+
msgid ""
|
16
|
+
msgstr ""
|
17
|
+
"Project-Id-Version: foreman_leapp 1.0.0\n"
|
18
|
+
"Report-Msgid-Bugs-To: \n"
|
19
|
+
"PO-Revision-Date: 2022-10-12 12:00+0000\n"
|
20
|
+
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2023\n"
|
21
|
+
"Language-Team: German (https://app.transifex.com/foreman/teams/114/de/)\n"
|
22
|
+
"MIME-Version: 1.0\n"
|
23
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
24
|
+
"Content-Transfer-Encoding: 8bit\n"
|
25
|
+
"Language: de\n"
|
26
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
27
|
+
|
28
|
+
#: ../app/controllers/api/v2/concerns/api_authorizer.rb:16
|
29
|
+
msgid "Missing one of the required permissions: view_hosts"
|
30
|
+
msgstr "Eine der erforderlichen Berechtigungen fehlt: %s"
|
31
|
+
|
32
|
+
#: ../app/controllers/api/v2/preupgrade_reports_controller.rb:10
|
33
|
+
msgid "List Preupgrade reports"
|
34
|
+
msgstr ""
|
35
|
+
|
36
|
+
#: ../app/controllers/api/v2/preupgrade_reports_controller.rb:16
|
37
|
+
msgid "Show Preupgrade report"
|
38
|
+
msgstr ""
|
39
|
+
|
40
|
+
#: ../app/controllers/api/v2/preupgrade_reports_controller.rb:22
|
41
|
+
msgid "List Preupgrade reports for Job invocation"
|
42
|
+
msgstr ""
|
43
|
+
|
44
|
+
#: ../app/helpers/foreman_leapp/hosts_helper.rb:6 ../lib/foreman_leapp/engine.rb:83
|
45
|
+
msgid "Preupgrade check with Leapp"
|
46
|
+
msgstr ""
|
47
|
+
|
48
|
+
#: ../app/helpers/foreman_leapp/hosts_helper.rb:8 ../lib/foreman_leapp/engine.rb:90
|
49
|
+
msgid "Upgrade with Leapp"
|
50
|
+
msgstr "Aktualisiere mit Leapp"
|
51
|
+
|
52
|
+
#: ../lib/foreman_leapp/engine.rb:33
|
53
|
+
msgid "Leapp preupgrade report"
|
54
|
+
msgstr ""
|
55
|
+
|
56
|
+
#: ../lib/foreman_leapp/engine.rb:84
|
57
|
+
msgid "Upgradeability check for RHEL host"
|
58
|
+
msgstr ""
|
59
|
+
|
60
|
+
#: ../lib/foreman_leapp/engine.rb:91
|
61
|
+
msgid "Run Leapp upgrade job for RHEL host"
|
62
|
+
msgstr ""
|
63
|
+
|
64
|
+
#: ../lib/foreman_leapp/engine.rb:97
|
65
|
+
msgid "Remediation plan"
|
66
|
+
msgstr "Sanierungsplan"
|
67
|
+
|
68
|
+
#: ../lib/foreman_leapp/engine.rb:98
|
69
|
+
msgid "Run Remediation plan with Leapp"
|
70
|
+
msgstr "Sanierungsplan mit Leapp ausführen"
|
71
|
+
|
72
|
+
#: ../webpack/components/PreupgradeReports/PreupgradeReports.js:122
|
73
|
+
msgid "Could not retrieve data: %(status) - %(msg)"
|
74
|
+
msgstr ""
|
75
|
+
|
76
|
+
#: ../webpack/components/PreupgradeReports/PreupgradeReportsActions.js:27
|
77
|
+
msgid "Failed to fetch preupgrade reports from server."
|
78
|
+
msgstr ""
|
79
|
+
|
80
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:19 ../webpack/components/PreupgradeReportsList/components/PreupgradeReportsListHeader.js:38 ../webpack/components/PreupgradeReportsList/components/helpers.js:81
|
81
|
+
msgid "Title"
|
82
|
+
msgstr "Titel"
|
83
|
+
|
84
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:20 ../webpack/components/PreupgradeReportsList/components/PreupgradeReportsListHeader.js:13 ../webpack/components/PreupgradeReportsList/components/helpers.js:95
|
85
|
+
msgid "Risk Factor"
|
86
|
+
msgstr "Risikofaktor"
|
87
|
+
|
88
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:21 ../webpack/components/PreupgradeReportsList/components/PreupgradeReportsListHeader.js:12
|
89
|
+
msgid "Host"
|
90
|
+
msgstr "Host"
|
91
|
+
|
92
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:22
|
93
|
+
msgid "Fix Type"
|
94
|
+
msgstr ""
|
95
|
+
|
96
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:23 ../webpack/components/PreupgradeReportsList/components/InhibitorInfoItem.js:21
|
97
|
+
msgid "Inhibitor"
|
98
|
+
msgstr ""
|
99
|
+
|
100
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:27 ../webpack/components/PreupgradeReports/components/EntriesFilter.js:35 ../webpack/components/PreupgradeReports/components/EntriesFilter.js:41
|
101
|
+
msgid "All"
|
102
|
+
msgstr "Alle"
|
103
|
+
|
104
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:28
|
105
|
+
msgid "Low"
|
106
|
+
msgstr "Niedrig"
|
107
|
+
|
108
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:29
|
109
|
+
msgid "Medium"
|
110
|
+
msgstr "Medium"
|
111
|
+
|
112
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:30
|
113
|
+
msgid "High"
|
114
|
+
msgstr "Hoch"
|
115
|
+
|
116
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:31
|
117
|
+
msgid "Info"
|
118
|
+
msgstr "Info"
|
119
|
+
|
120
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:36 ../webpack/components/PreupgradeReportsList/components/helpers.js:163
|
121
|
+
msgid "Hint"
|
122
|
+
msgstr "Hinweis"
|
123
|
+
|
124
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:37 ../webpack/components/PreupgradeReportsList/components/helpers.js:173
|
125
|
+
msgid "Command"
|
126
|
+
msgstr "Befehl"
|
127
|
+
|
128
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:42
|
129
|
+
msgid "Yes"
|
130
|
+
msgstr "Ja"
|
131
|
+
|
132
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:43
|
133
|
+
msgid "No"
|
134
|
+
msgstr "Nein"
|
135
|
+
|
136
|
+
#: ../webpack/components/PreupgradeReports/components/FixSelectedButton.js:12
|
137
|
+
msgid "Fix Selected"
|
138
|
+
msgstr "Behebe Auswahl"
|
139
|
+
|
140
|
+
#: ../webpack/components/PreupgradeReports/components/NoReports.js:12
|
141
|
+
msgid "The preupgrade report could not be generated, check the job details for the reason"
|
142
|
+
msgstr ""
|
143
|
+
|
144
|
+
#: ../webpack/components/PreupgradeReports/components/NoReports.js:17
|
145
|
+
msgid "The preupgrade report will be available after the job finishes"
|
146
|
+
msgstr ""
|
147
|
+
|
148
|
+
#: ../webpack/components/PreupgradeReports/components/NoReports.js:25
|
149
|
+
msgid "No Preupgrade Report Available"
|
150
|
+
msgstr ""
|
151
|
+
|
152
|
+
#: ../webpack/components/PreupgradeReports/components/UpgradeAllButton.js:8
|
153
|
+
msgid "Run Upgrade"
|
154
|
+
msgstr "Aktualisierung ausführen"
|
155
|
+
|
156
|
+
#: ../webpack/components/PreupgradeReportsList/components/InhibitorInfoItem.js:17
|
157
|
+
msgid "This issue inhibits the upgrade."
|
158
|
+
msgstr ""
|
159
|
+
|
160
|
+
#: ../webpack/components/PreupgradeReportsList/components/PreupgradeReportsListHeader.js:14
|
161
|
+
msgid "Has Remediation?"
|
162
|
+
msgstr "Hat Sanierungsplan?"
|
163
|
+
|
164
|
+
#: ../webpack/components/PreupgradeReportsList/components/PreupgradeReportsListHeader.js:15
|
165
|
+
msgid "Inhibitor?"
|
166
|
+
msgstr ""
|
167
|
+
|
168
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:29 ../webpack/components/PreupgradeReportsList/components/helpers.js:56
|
169
|
+
msgid "Low Risk Factor"
|
170
|
+
msgstr ""
|
171
|
+
|
172
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:38
|
173
|
+
msgid "Medium Risk Factor"
|
174
|
+
msgstr ""
|
175
|
+
|
176
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:47
|
177
|
+
msgid "High Risk Factor"
|
178
|
+
msgstr ""
|
179
|
+
|
180
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:68
|
181
|
+
msgid "Has Remediation"
|
182
|
+
msgstr ""
|
183
|
+
|
184
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:111
|
185
|
+
msgid "Summary"
|
186
|
+
msgstr "Zusammenfassung"
|
187
|
+
|
188
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:127
|
189
|
+
msgid "Tags"
|
190
|
+
msgstr ""
|
191
|
+
|
192
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:143
|
193
|
+
msgid "Links"
|
194
|
+
msgstr ""
|
195
|
+
|
196
|
+
#: action_names.rb:2
|
197
|
+
msgid "Action with sub plans"
|
198
|
+
msgstr "Aktion mit Unterplänen"
|
199
|
+
|
200
|
+
#: action_names.rb:3
|
201
|
+
msgid "Check for long running tasks"
|
202
|
+
msgstr ""
|
203
|
+
|
204
|
+
#: action_names.rb:4
|
205
|
+
msgid "Deliver notifications about long running tasks"
|
206
|
+
msgstr ""
|
207
|
+
|
208
|
+
#: action_names.rb:5
|
209
|
+
msgid "Import Puppet classes"
|
210
|
+
msgstr "Puppet-Klassen importieren"
|
211
|
+
|
212
|
+
#: action_names.rb:6
|
213
|
+
msgid "Import facts"
|
214
|
+
msgstr "Fakten importieren"
|
215
|
+
|
216
|
+
#: action_names.rb:7
|
217
|
+
msgid "Preupgrade job"
|
218
|
+
msgstr "Pre-Upgrade-Job"
|
219
|
+
|
220
|
+
#: action_names.rb:8
|
221
|
+
msgid "Remote action:"
|
222
|
+
msgstr "Entfernte Aktion:"
|
223
|
+
|
224
|
+
#: gemspec.rb:4
|
225
|
+
msgid "A Foreman plugin to support inplace RHEL upgrades with Leapp utility."
|
226
|
+
msgstr ""
|
data/locale/de/foreman_leapp.po
CHANGED
@@ -35,18 +35,30 @@ msgstr "Alle"
|
|
35
35
|
msgid "Command"
|
36
36
|
msgstr "Befehl"
|
37
37
|
|
38
|
+
msgid "Could not retrieve data: %(status) - %(msg)"
|
39
|
+
msgstr ""
|
40
|
+
|
41
|
+
msgid "Failed to fetch preupgrade reports from server."
|
42
|
+
msgstr ""
|
43
|
+
|
38
44
|
msgid "Fix Selected"
|
39
45
|
msgstr "Behebe Auswahl"
|
40
46
|
|
41
47
|
msgid "Fix Type"
|
42
48
|
msgstr ""
|
43
49
|
|
50
|
+
msgid "Has Remediation"
|
51
|
+
msgstr ""
|
52
|
+
|
44
53
|
msgid "Has Remediation?"
|
45
54
|
msgstr "Hat Sanierungsplan?"
|
46
55
|
|
47
56
|
msgid "High"
|
48
57
|
msgstr "Hoch"
|
49
58
|
|
59
|
+
msgid "High Risk Factor"
|
60
|
+
msgstr ""
|
61
|
+
|
50
62
|
msgid "Hint"
|
51
63
|
msgstr "Hinweis"
|
52
64
|
|
@@ -71,6 +83,9 @@ msgstr ""
|
|
71
83
|
msgid "Leapp preupgrade report"
|
72
84
|
msgstr ""
|
73
85
|
|
86
|
+
msgid "Links"
|
87
|
+
msgstr ""
|
88
|
+
|
74
89
|
msgid "List Preupgrade reports"
|
75
90
|
msgstr ""
|
76
91
|
|
@@ -80,9 +95,15 @@ msgstr ""
|
|
80
95
|
msgid "Low"
|
81
96
|
msgstr "Niedrig"
|
82
97
|
|
98
|
+
msgid "Low Risk Factor"
|
99
|
+
msgstr ""
|
100
|
+
|
83
101
|
msgid "Medium"
|
84
102
|
msgstr "Medium"
|
85
103
|
|
104
|
+
msgid "Medium Risk Factor"
|
105
|
+
msgstr ""
|
106
|
+
|
86
107
|
msgid "Missing one of the required permissions: view_hosts"
|
87
108
|
msgstr "Eine der erforderlichen Berechtigungen fehlt: %s"
|
88
109
|
|
@@ -119,6 +140,12 @@ msgstr "Aktualisierung ausführen"
|
|
119
140
|
msgid "Show Preupgrade report"
|
120
141
|
msgstr ""
|
121
142
|
|
143
|
+
msgid "Summary"
|
144
|
+
msgstr ""
|
145
|
+
|
146
|
+
msgid "Tags"
|
147
|
+
msgstr ""
|
148
|
+
|
122
149
|
msgid "The preupgrade report could not be generated, check the job details for the reason"
|
123
150
|
msgstr ""
|
124
151
|
|
File without changes
|
@@ -1,19 +1,20 @@
|
|
1
|
-
#
|
2
|
-
#
|
3
|
-
# This file is distributed under the same license as foreman_leapp.
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
|
+
# This file is distributed under the same license as the foreman_leapp package.
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
4
5
|
#
|
5
6
|
msgid ""
|
6
7
|
msgstr ""
|
7
|
-
"Project-Id-Version:
|
8
|
+
"Project-Id-Version: foreman_leapp 1.0.0\n"
|
8
9
|
"Report-Msgid-Bugs-To: \n"
|
9
|
-
"PO-Revision-Date:
|
10
|
-
"Last-Translator:
|
11
|
-
"Language-Team:
|
10
|
+
"PO-Revision-Date: 2023-05-18 10:53+0000\n"
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
12
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
12
13
|
"Language: \n"
|
13
14
|
"MIME-Version: 1.0\n"
|
14
15
|
"Content-Type: text/plain; charset=UTF-8\n"
|
15
16
|
"Content-Transfer-Encoding: 8bit\n"
|
16
|
-
"Plural-Forms: nplurals=
|
17
|
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
17
18
|
|
18
19
|
#: ../app/controllers/api/v2/concerns/api_authorizer.rb:16
|
19
20
|
msgid "Missing one of the required permissions: view_hosts"
|
@@ -31,39 +32,47 @@ msgstr ""
|
|
31
32
|
msgid "List Preupgrade reports for Job invocation"
|
32
33
|
msgstr ""
|
33
34
|
|
34
|
-
#: ../app/helpers/
|
35
|
+
#: ../app/helpers/foreman_leapp/hosts_helper.rb:6 ../lib/foreman_leapp/engine.rb:83
|
35
36
|
msgid "Preupgrade check with Leapp"
|
36
37
|
msgstr ""
|
37
38
|
|
38
|
-
#: ../app/helpers/
|
39
|
+
#: ../app/helpers/foreman_leapp/hosts_helper.rb:8 ../lib/foreman_leapp/engine.rb:90
|
39
40
|
msgid "Upgrade with Leapp"
|
40
41
|
msgstr ""
|
41
42
|
|
42
|
-
#: ../lib/foreman_leapp/engine.rb:
|
43
|
+
#: ../lib/foreman_leapp/engine.rb:33
|
43
44
|
msgid "Leapp preupgrade report"
|
44
45
|
msgstr ""
|
45
46
|
|
46
|
-
#: ../lib/foreman_leapp/engine.rb:
|
47
|
+
#: ../lib/foreman_leapp/engine.rb:84
|
47
48
|
msgid "Upgradeability check for RHEL host"
|
48
49
|
msgstr ""
|
49
50
|
|
50
|
-
#: ../lib/foreman_leapp/engine.rb:
|
51
|
+
#: ../lib/foreman_leapp/engine.rb:91
|
51
52
|
msgid "Run Leapp upgrade job for RHEL host"
|
52
53
|
msgstr ""
|
53
54
|
|
54
|
-
#: ../lib/foreman_leapp/engine.rb:
|
55
|
+
#: ../lib/foreman_leapp/engine.rb:97
|
55
56
|
msgid "Remediation plan"
|
56
57
|
msgstr ""
|
57
58
|
|
58
|
-
#: ../lib/foreman_leapp/engine.rb:
|
59
|
+
#: ../lib/foreman_leapp/engine.rb:98
|
59
60
|
msgid "Run Remediation plan with Leapp"
|
60
61
|
msgstr ""
|
61
62
|
|
62
|
-
#: ../webpack/components/PreupgradeReports/
|
63
|
+
#: ../webpack/components/PreupgradeReports/PreupgradeReports.js:122
|
64
|
+
msgid "Could not retrieve data: %(status) - %(msg)"
|
65
|
+
msgstr ""
|
66
|
+
|
67
|
+
#: ../webpack/components/PreupgradeReports/PreupgradeReportsActions.js:27
|
68
|
+
msgid "Failed to fetch preupgrade reports from server."
|
69
|
+
msgstr ""
|
70
|
+
|
71
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:19 ../webpack/components/PreupgradeReportsList/components/PreupgradeReportsListHeader.js:38 ../webpack/components/PreupgradeReportsList/components/helpers.js:81
|
63
72
|
msgid "Title"
|
64
73
|
msgstr ""
|
65
74
|
|
66
|
-
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:20 ../webpack/components/PreupgradeReportsList/components/PreupgradeReportsListHeader.js:13
|
75
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:20 ../webpack/components/PreupgradeReportsList/components/PreupgradeReportsListHeader.js:13 ../webpack/components/PreupgradeReportsList/components/helpers.js:95
|
67
76
|
msgid "Risk Factor"
|
68
77
|
msgstr ""
|
69
78
|
|
@@ -99,11 +108,11 @@ msgstr ""
|
|
99
108
|
msgid "Info"
|
100
109
|
msgstr ""
|
101
110
|
|
102
|
-
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:36
|
111
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:36 ../webpack/components/PreupgradeReportsList/components/helpers.js:163
|
103
112
|
msgid "Hint"
|
104
113
|
msgstr ""
|
105
114
|
|
106
|
-
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:37
|
115
|
+
#: ../webpack/components/PreupgradeReports/components/EntriesFilter.js:37 ../webpack/components/PreupgradeReportsList/components/helpers.js:173
|
107
116
|
msgid "Command"
|
108
117
|
msgstr ""
|
109
118
|
|
@@ -147,26 +156,62 @@ msgstr ""
|
|
147
156
|
msgid "Inhibitor?"
|
148
157
|
msgstr ""
|
149
158
|
|
159
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:29 ../webpack/components/PreupgradeReportsList/components/helpers.js:56
|
160
|
+
msgid "Low Risk Factor"
|
161
|
+
msgstr ""
|
162
|
+
|
163
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:38
|
164
|
+
msgid "Medium Risk Factor"
|
165
|
+
msgstr ""
|
166
|
+
|
167
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:47
|
168
|
+
msgid "High Risk Factor"
|
169
|
+
msgstr ""
|
170
|
+
|
171
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:68
|
172
|
+
msgid "Has Remediation"
|
173
|
+
msgstr ""
|
174
|
+
|
175
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:111
|
176
|
+
msgid "Summary"
|
177
|
+
msgstr ""
|
178
|
+
|
179
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:127
|
180
|
+
msgid "Tags"
|
181
|
+
msgstr ""
|
182
|
+
|
183
|
+
#: ../webpack/components/PreupgradeReportsList/components/helpers.js:143
|
184
|
+
msgid "Links"
|
185
|
+
msgstr ""
|
186
|
+
|
150
187
|
#: action_names.rb:2
|
151
|
-
msgid "
|
188
|
+
msgid "Action with sub plans"
|
152
189
|
msgstr ""
|
153
190
|
|
154
191
|
#: action_names.rb:3
|
155
|
-
msgid "
|
192
|
+
msgid "Check for long running tasks"
|
156
193
|
msgstr ""
|
157
194
|
|
158
195
|
#: action_names.rb:4
|
159
|
-
msgid "
|
196
|
+
msgid "Deliver notifications about long running tasks"
|
160
197
|
msgstr ""
|
161
198
|
|
162
199
|
#: action_names.rb:5
|
163
|
-
msgid "
|
200
|
+
msgid "Import Puppet classes"
|
164
201
|
msgstr ""
|
165
202
|
|
166
203
|
#: action_names.rb:6
|
204
|
+
msgid "Import facts"
|
205
|
+
msgstr ""
|
206
|
+
|
207
|
+
#: action_names.rb:7
|
167
208
|
msgid "Preupgrade job"
|
168
209
|
msgstr ""
|
169
210
|
|
211
|
+
#: action_names.rb:8
|
212
|
+
msgid "Remote action:"
|
213
|
+
msgstr ""
|
214
|
+
|
170
215
|
#: gemspec.rb:4
|
171
216
|
msgid "A Foreman plugin to support inplace RHEL upgrades with Leapp utility."
|
172
217
|
msgstr ""
|
data/locale/en/foreman_leapp.po
CHANGED
@@ -27,18 +27,30 @@ msgstr ""
|
|
27
27
|
msgid "Command"
|
28
28
|
msgstr ""
|
29
29
|
|
30
|
+
msgid "Could not retrieve data: %(status) - %(msg)"
|
31
|
+
msgstr ""
|
32
|
+
|
33
|
+
msgid "Failed to fetch preupgrade reports from server."
|
34
|
+
msgstr ""
|
35
|
+
|
30
36
|
msgid "Fix Selected"
|
31
37
|
msgstr ""
|
32
38
|
|
33
39
|
msgid "Fix Type"
|
34
40
|
msgstr ""
|
35
41
|
|
42
|
+
msgid "Has Remediation"
|
43
|
+
msgstr ""
|
44
|
+
|
36
45
|
msgid "Has Remediation?"
|
37
46
|
msgstr ""
|
38
47
|
|
39
48
|
msgid "High"
|
40
49
|
msgstr ""
|
41
50
|
|
51
|
+
msgid "High Risk Factor"
|
52
|
+
msgstr ""
|
53
|
+
|
42
54
|
msgid "Hint"
|
43
55
|
msgstr ""
|
44
56
|
|
@@ -63,6 +75,9 @@ msgstr ""
|
|
63
75
|
msgid "Leapp preupgrade report"
|
64
76
|
msgstr ""
|
65
77
|
|
78
|
+
msgid "Links"
|
79
|
+
msgstr ""
|
80
|
+
|
66
81
|
msgid "List Preupgrade reports"
|
67
82
|
msgstr ""
|
68
83
|
|
@@ -72,9 +87,15 @@ msgstr ""
|
|
72
87
|
msgid "Low"
|
73
88
|
msgstr ""
|
74
89
|
|
90
|
+
msgid "Low Risk Factor"
|
91
|
+
msgstr ""
|
92
|
+
|
75
93
|
msgid "Medium"
|
76
94
|
msgstr ""
|
77
95
|
|
96
|
+
msgid "Medium Risk Factor"
|
97
|
+
msgstr ""
|
98
|
+
|
78
99
|
msgid "Missing one of the required permissions: view_hosts"
|
79
100
|
msgstr ""
|
80
101
|
|
@@ -111,6 +132,12 @@ msgstr ""
|
|
111
132
|
msgid "Show Preupgrade report"
|
112
133
|
msgstr ""
|
113
134
|
|
135
|
+
msgid "Summary"
|
136
|
+
msgstr ""
|
137
|
+
|
138
|
+
msgid "Tags"
|
139
|
+
msgstr ""
|
140
|
+
|
114
141
|
msgid "The preupgrade report could not be generated, check the job details for the reason"
|
115
142
|
msgstr ""
|
116
143
|
|