foreman_snapshot_management 3.0.1 → 4.1.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 -2
- data/app/assets/javascripts/foreman_snapshot_management/locale/cs_CZ/foreman_snapshot_management.js +97 -100
- data/app/assets/javascripts/foreman_snapshot_management/locale/de/foreman_snapshot_management.js +102 -105
- data/app/assets/javascripts/foreman_snapshot_management/locale/el/foreman_snapshot_management.js +90 -93
- data/app/assets/javascripts/foreman_snapshot_management/locale/en/foreman_snapshot_management.js +2 -188
- data/app/assets/javascripts/foreman_snapshot_management/locale/fr/foreman_snapshot_management.js +109 -112
- data/app/assets/javascripts/foreman_snapshot_management/locale/ja/foreman_snapshot_management.js +102 -105
- data/app/assets/javascripts/foreman_snapshot_management/locale/ka/foreman_snapshot_management.js +105 -108
- data/app/assets/javascripts/foreman_snapshot_management/locale/zh_CN/foreman_snapshot_management.js +102 -105
- data/lib/foreman_snapshot_management/engine.rb +63 -64
- data/lib/foreman_snapshot_management/version.rb +1 -1
- data/locale/Makefile +12 -2
- data/locale/cs_CZ/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/cs_CZ/foreman_snapshot_management.po +6 -5
- data/locale/de/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/de/foreman_snapshot_management.po +6 -5
- data/locale/el/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/el/foreman_snapshot_management.po +6 -5
- data/locale/en/foreman_snapshot_management.po +0 -196
- data/locale/fr/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/fr/foreman_snapshot_management.po +11 -10
- data/locale/ja/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/ja/foreman_snapshot_management.po +4 -3
- data/locale/ka/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/ka/foreman_snapshot_management.po +7 -6
- data/locale/zh_CN/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/zh_CN/foreman_snapshot_management.po +4 -3
- data/package.json +9 -10
- data/webpack/components/SnapshotManagement/components/SnapshotList/snapshotList.scss +2 -2
- data/webpack/components/SnapshotManagement/snapshotManagement.scss +1 -1
- metadata +3 -6
@@ -4,70 +4,69 @@ module ForemanSnapshotManagement
|
|
4
4
|
class Engine < ::Rails::Engine
|
5
5
|
engine_name 'foreman_snapshot_management'
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
:
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
:
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
:
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
:
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
:
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
'
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
multiple_actions_provider :snapshot_multiple_actions
|
7
|
+
initializer 'foreman_snapshot_management.register_plugin', before: :finisher_hook do |app|
|
8
|
+
app.reloader.to_prepare do
|
9
|
+
Foreman::Plugin.register :foreman_snapshot_management do
|
10
|
+
requires_foreman '>= 3.13'
|
11
|
+
register_gettext
|
12
|
+
|
13
|
+
# Add Global files for extending foreman-core components and routes
|
14
|
+
register_global_js_file 'global'
|
15
|
+
|
16
|
+
apipie_documented_controllers ["#{ForemanSnapshotManagement::Engine.root}/app/controllers/api/v2/*.rb"]
|
17
|
+
|
18
|
+
# Add permissions
|
19
|
+
security_block :foreman_snapshot_management do
|
20
|
+
permission :view_snapshots, {
|
21
|
+
:'foreman_snapshot_management/snapshots' => [:index],
|
22
|
+
:'api/v2/snapshots' => [:index, :show],
|
23
|
+
}, :resource_type => 'Host'
|
24
|
+
|
25
|
+
permission :create_snapshots, {
|
26
|
+
:'foreman_snapshot_management/snapshots' => [:create, :select_multiple_host, :create_multiple_host],
|
27
|
+
:'api/v2/snapshots' => [:create],
|
28
|
+
}, :resource_type => 'Host'
|
29
|
+
|
30
|
+
permission :edit_snapshots, {
|
31
|
+
:'foreman_snapshot_management/snapshots' => [:update],
|
32
|
+
:'api/v2/snapshots' => [:update],
|
33
|
+
}, :resource_type => 'Host'
|
34
|
+
|
35
|
+
permission :destroy_snapshots, {
|
36
|
+
:'foreman_snapshot_management/snapshots' => [:destroy],
|
37
|
+
:'api/v2/snapshots' => [:destroy],
|
38
|
+
}, :resource_type => 'Host'
|
39
|
+
|
40
|
+
permission :revert_snapshots, {
|
41
|
+
:'foreman_snapshot_management/snapshots' => [:revert],
|
42
|
+
:'api/v2/snapshots' => [:revert],
|
43
|
+
}, :resource_type => 'Host'
|
44
|
+
end
|
45
|
+
|
46
|
+
# Adds roles if they do not exist
|
47
|
+
role 'Snapshot Viewer',
|
48
|
+
[:view_snapshots],
|
49
|
+
'Role granting permission only to view snapshots for hosts'
|
50
|
+
role 'Snapshot Manager',
|
51
|
+
[
|
52
|
+
:view_snapshots,
|
53
|
+
:create_snapshots,
|
54
|
+
:edit_snapshots,
|
55
|
+
:destroy_snapshots,
|
56
|
+
:revert_snapshots,
|
57
|
+
],
|
58
|
+
'Role granting permission to manage snapshots for hosts'
|
59
|
+
|
60
|
+
extend_page('hosts/show') do |context|
|
61
|
+
context.add_pagelet :main_tabs,
|
62
|
+
:name => N_('Snapshots'),
|
63
|
+
:partial => 'hosts/snapshots_tab',
|
64
|
+
:onlyif => proc { |host| host&.uuid.present? && host&.compute_resource&.capable?(:snapshots) }
|
65
|
+
end
|
66
|
+
|
67
|
+
describe_host do
|
68
|
+
multiple_actions_provider :snapshot_multiple_actions
|
69
|
+
end
|
71
70
|
end
|
72
71
|
end
|
73
72
|
end
|
data/locale/Makefile
CHANGED
@@ -31,9 +31,16 @@ all-mo: $(MOFILES)
|
|
31
31
|
cat $@
|
32
32
|
! grep -q msgid $@
|
33
33
|
|
34
|
-
%.edit.po:
|
34
|
+
%.edit.po: %.po.time_stamp
|
35
35
|
touch $@
|
36
36
|
|
37
|
+
# gettext will trash the .edit.po file if the time stamp doesn't exist or is older than the po file
|
38
|
+
%.po.time_stamp: %.po
|
39
|
+
touch --reference $< $@
|
40
|
+
|
41
|
+
# Prevent make from treating this as an intermediate file to be cleaned up
|
42
|
+
.PRECIOUS: %.po.time_stamp
|
43
|
+
|
37
44
|
check: $(POXFILES)
|
38
45
|
|
39
46
|
# Unify duplicate translations
|
@@ -43,7 +50,10 @@ uniq-po:
|
|
43
50
|
done
|
44
51
|
|
45
52
|
tx-pull: $(EDITFILES)
|
46
|
-
|
53
|
+
# Initialize new languages
|
54
|
+
cd .. && tx pull -f --all --minimum-perc 50
|
55
|
+
# Force update all existing languages
|
56
|
+
cd .. && tx pull -f --minimum-perc 0
|
47
57
|
for f in $(EDITFILES) ; do \
|
48
58
|
sed -i 's/^\("Project-Id-Version: \).*$$/\1$(DOMAIN) $(VERSION)\\n"/' $$f; \
|
49
59
|
done
|
Binary file
|
@@ -5,15 +5,16 @@
|
|
5
5
|
#
|
6
6
|
# Translators:
|
7
7
|
# Lukáš Zapletal, 2021
|
8
|
-
# Pavel Borecki <pavel.borecki@gmail.com>,
|
8
|
+
# Pavel Borecki <pavel.borecki@gmail.com>, 2022
|
9
9
|
#
|
10
|
+
#, fuzzy
|
10
11
|
msgid ""
|
11
12
|
msgstr ""
|
12
|
-
"Project-Id-Version: foreman_snapshot_management
|
13
|
+
"Project-Id-Version: foreman_snapshot_management 3.0.1\n"
|
13
14
|
"Report-Msgid-Bugs-To: \n"
|
14
15
|
"PO-Revision-Date: 2019-10-22 11:54+0000\n"
|
15
|
-
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>,
|
16
|
-
"Language-Team: Czech (Czech Republic) (https://
|
16
|
+
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2022\n"
|
17
|
+
"Language-Team: Czech (Czech Republic) (https://app.transifex.com/foreman/teams"
|
17
18
|
"/114/cs_CZ/)\n"
|
18
19
|
"MIME-Version: 1.0\n"
|
19
20
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -83,7 +84,7 @@ msgid "Loading Snapshots information ..."
|
|
83
84
|
msgstr "Načítání informací o zachycených stavech…"
|
84
85
|
|
85
86
|
msgid "Memory"
|
86
|
-
msgstr ""
|
87
|
+
msgstr "Operační paměť"
|
87
88
|
|
88
89
|
msgid "N/A"
|
89
90
|
msgstr "Není"
|
Binary file
|
@@ -5,19 +5,20 @@
|
|
5
5
|
#
|
6
6
|
# Translators:
|
7
7
|
# Lukáš Zapletal, 2019
|
8
|
-
# Wiederoder <stefanwiederoder@googlemail.com>, 2019
|
9
8
|
# Martin Zimmermann <martin.zimmermann@gmx.com>, 2019
|
10
9
|
# Ettore Atalan <atalanttore@googlemail.com>, 2021
|
11
10
|
# Bryan Kearney <bryan.kearney@gmail.com>, 2021
|
12
11
|
# Markus Bucher <bucher@atix.de>, 2021
|
12
|
+
# Wiederoder <stefanwiederoder@googlemail.com>, 2022
|
13
13
|
#
|
14
|
+
#, fuzzy
|
14
15
|
msgid ""
|
15
16
|
msgstr ""
|
16
|
-
"Project-Id-Version: foreman_snapshot_management
|
17
|
+
"Project-Id-Version: foreman_snapshot_management 3.0.1\n"
|
17
18
|
"Report-Msgid-Bugs-To: \n"
|
18
19
|
"PO-Revision-Date: 2019-10-22 11:54+0000\n"
|
19
|
-
"Last-Translator:
|
20
|
-
"Language-Team: German (https://
|
20
|
+
"Last-Translator: Wiederoder <stefanwiederoder@googlemail.com>, 2022\n"
|
21
|
+
"Language-Team: German (https://app.transifex.com/foreman/teams/114/de/)\n"
|
21
22
|
"MIME-Version: 1.0\n"
|
22
23
|
"Content-Type: text/plain; charset=UTF-8\n"
|
23
24
|
"Content-Transfer-Encoding: 8bit\n"
|
@@ -85,7 +86,7 @@ msgid "Loading Snapshots information ..."
|
|
85
86
|
msgstr "Lade Snapshot Informationen ..."
|
86
87
|
|
87
88
|
msgid "Memory"
|
88
|
-
msgstr ""
|
89
|
+
msgstr "Speicher"
|
89
90
|
|
90
91
|
msgid "N/A"
|
91
92
|
msgstr "N/A"
|
Binary file
|
@@ -4,15 +4,16 @@
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5
5
|
#
|
6
6
|
# Translators:
|
7
|
-
# Efstathios Iosifidis <iefstathios@gmail.com>,
|
7
|
+
# Efstathios Iosifidis <iefstathios@gmail.com>, 2022
|
8
8
|
#
|
9
|
+
#, fuzzy
|
9
10
|
msgid ""
|
10
11
|
msgstr ""
|
11
|
-
"Project-Id-Version: foreman_snapshot_management
|
12
|
+
"Project-Id-Version: foreman_snapshot_management 3.0.1\n"
|
12
13
|
"Report-Msgid-Bugs-To: \n"
|
13
14
|
"PO-Revision-Date: 2019-10-22 11:54+0000\n"
|
14
|
-
"Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>,
|
15
|
-
"Language-Team: Greek (https://
|
15
|
+
"Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>, 2022\n"
|
16
|
+
"Language-Team: Greek (https://app.transifex.com/foreman/teams/114/el/)\n"
|
16
17
|
"MIME-Version: 1.0\n"
|
17
18
|
"Content-Type: text/plain; charset=UTF-8\n"
|
18
19
|
"Content-Transfer-Encoding: 8bit\n"
|
@@ -80,7 +81,7 @@ msgid "Loading Snapshots information ..."
|
|
80
81
|
msgstr "Γίνεται φόρτωση πληροφοριών στιγμιοτύπων ..."
|
81
82
|
|
82
83
|
msgid "Memory"
|
83
|
-
msgstr ""
|
84
|
+
msgstr "Μνήμη"
|
84
85
|
|
85
86
|
msgid "N/A"
|
86
87
|
msgstr "Δ/Υ"
|
@@ -1,196 +0,0 @@
|
|
1
|
-
# English translations for foreman_snapshot_management package.
|
2
|
-
# Copyright (C) 2020 THE PACKAGE'S COPYRIGHT HOLDER
|
3
|
-
# This file is distributed under the same license as the foreman_snapshot_management package.
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
5
|
-
#
|
6
|
-
msgid ""
|
7
|
-
msgstr ""
|
8
|
-
"Project-Id-Version: foreman_snapshot_management 2.0.2\n"
|
9
|
-
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"PO-Revision-Date: 2020-03-02 10:27+0000\n"
|
11
|
-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
12
|
-
"Language-Team: English\n"
|
13
|
-
"Language: en\n"
|
14
|
-
"MIME-Version: 1.0\n"
|
15
|
-
"Content-Type: text/plain; charset=UTF-8\n"
|
16
|
-
"Content-Transfer-Encoding: 8bit\n"
|
17
|
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
18
|
-
"\n"
|
19
|
-
|
20
|
-
msgid "Action"
|
21
|
-
msgstr ""
|
22
|
-
|
23
|
-
msgid "Create Snapshot"
|
24
|
-
msgstr ""
|
25
|
-
|
26
|
-
msgid "Create Snapshot for %s"
|
27
|
-
msgstr ""
|
28
|
-
|
29
|
-
msgid "Create a snapshot"
|
30
|
-
msgstr ""
|
31
|
-
|
32
|
-
msgid "Created %{snapshots} for %{num} %{hosts}"
|
33
|
-
msgstr ""
|
34
|
-
|
35
|
-
msgid "Delete"
|
36
|
-
msgstr ""
|
37
|
-
|
38
|
-
msgid "Delete Snapshot \"%s\"?"
|
39
|
-
msgstr ""
|
40
|
-
|
41
|
-
msgid "Delete a snapshot"
|
42
|
-
msgstr ""
|
43
|
-
|
44
|
-
msgid "Description"
|
45
|
-
msgstr ""
|
46
|
-
|
47
|
-
msgid "Description of this snapshot"
|
48
|
-
msgstr ""
|
49
|
-
|
50
|
-
msgid "Error occurred while creating Snapshot for:%s"
|
51
|
-
msgstr ""
|
52
|
-
|
53
|
-
msgid "Error occurred while creating Snapshot: %s"
|
54
|
-
msgstr ""
|
55
|
-
|
56
|
-
msgid "Error occurred while removing Snapshot: %s"
|
57
|
-
msgstr ""
|
58
|
-
|
59
|
-
msgid "Error occurred while rolling back VM: %s"
|
60
|
-
msgstr ""
|
61
|
-
|
62
|
-
msgid "Error occurred while updating Snapshot: %s"
|
63
|
-
msgstr ""
|
64
|
-
|
65
|
-
msgid "Failed to load snapshot list"
|
66
|
-
msgstr ""
|
67
|
-
|
68
|
-
msgid "Failed to update Snapshot: %s"
|
69
|
-
msgstr ""
|
70
|
-
|
71
|
-
msgid "Foreman-plugin to manage snapshots in a virtual-hardware environments."
|
72
|
-
msgstr ""
|
73
|
-
|
74
|
-
msgid "List all snapshots"
|
75
|
-
msgstr ""
|
76
|
-
|
77
|
-
msgid "Loading Snapshots information ..."
|
78
|
-
msgstr ""
|
79
|
-
|
80
|
-
msgid "Memory"
|
81
|
-
msgstr ""
|
82
|
-
|
83
|
-
msgid "N/A"
|
84
|
-
msgstr ""
|
85
|
-
|
86
|
-
msgid "Name"
|
87
|
-
msgstr ""
|
88
|
-
|
89
|
-
msgid "Name must contain at least 2 characters starting with alphabet. Valid characters are A-Z a-z 0-9 _"
|
90
|
-
msgstr ""
|
91
|
-
|
92
|
-
msgid "Name of this snapshot"
|
93
|
-
msgstr ""
|
94
|
-
|
95
|
-
msgid "No capable hosts found."
|
96
|
-
msgstr ""
|
97
|
-
|
98
|
-
msgid "No capable hosts selected"
|
99
|
-
msgstr ""
|
100
|
-
|
101
|
-
msgid "No hosts were found with that id, name or query filter"
|
102
|
-
msgstr ""
|
103
|
-
|
104
|
-
msgid "Quiesce"
|
105
|
-
msgstr ""
|
106
|
-
|
107
|
-
msgid "Revert Host to a snapshot"
|
108
|
-
msgstr ""
|
109
|
-
|
110
|
-
msgid "Rollback"
|
111
|
-
msgstr ""
|
112
|
-
|
113
|
-
msgid "Rollback to \"%s\"?"
|
114
|
-
msgstr ""
|
115
|
-
|
116
|
-
msgid "Select Snapshot Mode between mutually exclusive options, 'Memory' (includes RAM) and 'Quiesce'."
|
117
|
-
msgstr ""
|
118
|
-
|
119
|
-
msgid "Snapshot"
|
120
|
-
msgid_plural "Snapshots"
|
121
|
-
msgstr[0] ""
|
122
|
-
msgstr[1] ""
|
123
|
-
|
124
|
-
msgid "Snapshot Mode"
|
125
|
-
msgstr ""
|
126
|
-
|
127
|
-
msgid "Snapshot name cannot be changed"
|
128
|
-
msgstr ""
|
129
|
-
|
130
|
-
msgid "Snapshot successfully created!"
|
131
|
-
msgstr ""
|
132
|
-
|
133
|
-
msgid "Snapshots"
|
134
|
-
msgstr ""
|
135
|
-
|
136
|
-
msgid "Something went wrong while selecting hosts - %s"
|
137
|
-
msgstr ""
|
138
|
-
|
139
|
-
msgid "Successfully removed Snapshot \"%s\" from host %s"
|
140
|
-
msgstr ""
|
141
|
-
|
142
|
-
msgid "Successfully rolled back Snapshot \"%s\" on host %s"
|
143
|
-
msgstr ""
|
144
|
-
|
145
|
-
msgid "Successfully updated Snapshot \"%s\""
|
146
|
-
msgstr ""
|
147
|
-
|
148
|
-
msgid "Unable to create Proxmox Snapshot"
|
149
|
-
msgstr ""
|
150
|
-
|
151
|
-
msgid "Unable to create VMWare Snapshot"
|
152
|
-
msgstr ""
|
153
|
-
|
154
|
-
msgid "Unable to create VMWare Snapshot with Quiesce. Check Power and VMWare Tools status."
|
155
|
-
msgstr ""
|
156
|
-
|
157
|
-
msgid "Unable to create VMWare Snapshot. Cannot set both Memory and Quiesce options."
|
158
|
-
msgstr ""
|
159
|
-
|
160
|
-
msgid "Unable to remove Proxmox Snapshot"
|
161
|
-
msgstr ""
|
162
|
-
|
163
|
-
msgid "Unable to remove VMWare Snapshot"
|
164
|
-
msgstr ""
|
165
|
-
|
166
|
-
msgid "Unable to revert Proxmox Snapshot"
|
167
|
-
msgstr ""
|
168
|
-
|
169
|
-
msgid "Unable to revert VMWare Snapshot"
|
170
|
-
msgstr ""
|
171
|
-
|
172
|
-
msgid "Unable to update Proxmox Snapshot"
|
173
|
-
msgstr ""
|
174
|
-
|
175
|
-
msgid "Unable to update VMWare Snapshot"
|
176
|
-
msgstr ""
|
177
|
-
|
178
|
-
msgid "Update a snapshot"
|
179
|
-
msgstr ""
|
180
|
-
|
181
|
-
msgid "VM successfully rolled back."
|
182
|
-
msgstr ""
|
183
|
-
|
184
|
-
msgid "Whether to include the Quiesce state in the snapshot"
|
185
|
-
msgstr ""
|
186
|
-
|
187
|
-
msgid "Whether to include the RAM state in the snapshot"
|
188
|
-
msgstr ""
|
189
|
-
|
190
|
-
msgid "edit entry"
|
191
|
-
msgstr ""
|
192
|
-
|
193
|
-
msgid "host"
|
194
|
-
msgid_plural "hosts"
|
195
|
-
msgstr[0] ""
|
196
|
-
msgstr[1] ""
|
Binary file
|
@@ -5,17 +5,18 @@
|
|
5
5
|
#
|
6
6
|
# Translators:
|
7
7
|
# 21966816214bc546c1fc8a185e75ca1c, 2019
|
8
|
-
# Claer <transiblu@claer.hammock.fr>, 2019
|
9
8
|
# Bryan Kearney <bryan.kearney@gmail.com>, 2021
|
10
|
-
#
|
9
|
+
# Claer <transiblu@claer.hammock.fr>, 2022
|
10
|
+
# Amit Upadhye <aupadhye@redhat.com>, 2023
|
11
11
|
#
|
12
|
+
#, fuzzy
|
12
13
|
msgid ""
|
13
14
|
msgstr ""
|
14
|
-
"Project-Id-Version: foreman_snapshot_management
|
15
|
+
"Project-Id-Version: foreman_snapshot_management 3.0.1\n"
|
15
16
|
"Report-Msgid-Bugs-To: \n"
|
16
17
|
"PO-Revision-Date: 2019-10-22 11:54+0000\n"
|
17
|
-
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>,
|
18
|
-
"Language-Team: French (https://
|
18
|
+
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2023\n"
|
19
|
+
"Language-Team: French (https://app.transifex.com/foreman/teams/114/fr/)\n"
|
19
20
|
"MIME-Version: 1.0\n"
|
20
21
|
"Content-Type: text/plain; charset=UTF-8\n"
|
21
22
|
"Content-Transfer-Encoding: 8bit\n"
|
@@ -84,7 +85,7 @@ msgid "Loading Snapshots information ..."
|
|
84
85
|
msgstr "Chargement des informations sur les instantanés ..."
|
85
86
|
|
86
87
|
msgid "Memory"
|
87
|
-
msgstr ""
|
88
|
+
msgstr "Mémoire"
|
88
89
|
|
89
90
|
msgid "N/A"
|
90
91
|
msgstr "Sans objet"
|
@@ -144,13 +145,13 @@ msgid "Something went wrong while selecting hosts - %s"
|
|
144
145
|
msgstr "Une erreur s'est produite lors de la sélection des hôtes - %s"
|
145
146
|
|
146
147
|
msgid "Successfully removed Snapshot \"%s\" from host %s"
|
147
|
-
msgstr "L’instantané \"%s\" a été supprimé de l'hôte
|
148
|
+
msgstr "L’instantané \"%s\" a été supprimé de l'hôte %s"
|
148
149
|
|
149
150
|
msgid "Successfully rolled back Snapshot \"%s\" on host %s"
|
150
|
-
msgstr "L’instantané \"%s\" sur l'hôte %s a été retiré avec succès
|
151
|
+
msgstr "L’instantané \"%s\" sur l'hôte %s a été retiré avec succès"
|
151
152
|
|
152
153
|
msgid "Successfully updated Snapshot \"%s\""
|
153
|
-
msgstr "La mise à jour de l’instantané \"%s\" a réussi
|
154
|
+
msgstr "La mise à jour de l’instantané \"%s\" a réussi"
|
154
155
|
|
155
156
|
msgid "Unable to create Proxmox Snapshot"
|
156
157
|
msgstr "Impossible de créer un instantané de Proxmox"
|
@@ -189,7 +190,7 @@ msgid "VM successfully rolled back."
|
|
189
190
|
msgstr "La VM a été reprise avec succès."
|
190
191
|
|
191
192
|
msgid "Whether to include the Quiesce state in the snapshot"
|
192
|
-
msgstr "Si l'état de repos doit être inclus dans l'
|
193
|
+
msgstr "Si l'état de repos doit être inclus dans l'instantané"
|
193
194
|
|
194
195
|
msgid "Whether to include the RAM state in the snapshot"
|
195
196
|
msgstr "Inclure ou non l'état de la RAM dans l'instantané"
|
Binary file
|
@@ -7,13 +7,14 @@
|
|
7
7
|
# Bryan Kearney <bryan.kearney@gmail.com>, 2021
|
8
8
|
# Amit Upadhye <aupadhye@redhat.com>, 2022
|
9
9
|
#
|
10
|
+
#, fuzzy
|
10
11
|
msgid ""
|
11
12
|
msgstr ""
|
12
|
-
"Project-Id-Version: foreman_snapshot_management
|
13
|
+
"Project-Id-Version: foreman_snapshot_management 3.0.1\n"
|
13
14
|
"Report-Msgid-Bugs-To: \n"
|
14
15
|
"PO-Revision-Date: 2019-10-22 11:54+0000\n"
|
15
16
|
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2022\n"
|
16
|
-
"Language-Team: Japanese (https://
|
17
|
+
"Language-Team: Japanese (https://app.transifex.com/foreman/teams/114/ja/)\n"
|
17
18
|
"MIME-Version: 1.0\n"
|
18
19
|
"Content-Type: text/plain; charset=UTF-8\n"
|
19
20
|
"Content-Transfer-Encoding: 8bit\n"
|
@@ -81,7 +82,7 @@ msgid "Loading Snapshots information ..."
|
|
81
82
|
msgstr "スナップショット情報の読み込み中 ..."
|
82
83
|
|
83
84
|
msgid "Memory"
|
84
|
-
msgstr ""
|
85
|
+
msgstr "メモリー"
|
85
86
|
|
86
87
|
msgid "N/A"
|
87
88
|
msgstr "N/A"
|
Binary file
|
@@ -6,13 +6,14 @@
|
|
6
6
|
# Translators:
|
7
7
|
# Temuri Doghonadze <temuri.doghonadze@gmail.com>, 2022
|
8
8
|
#
|
9
|
+
#, fuzzy
|
9
10
|
msgid ""
|
10
11
|
msgstr ""
|
11
|
-
"Project-Id-Version: foreman_snapshot_management
|
12
|
+
"Project-Id-Version: foreman_snapshot_management 3.0.1\n"
|
12
13
|
"Report-Msgid-Bugs-To: \n"
|
13
14
|
"PO-Revision-Date: 2019-10-22 11:54+0000\n"
|
14
15
|
"Last-Translator: Temuri Doghonadze <temuri.doghonadze@gmail.com>, 2022\n"
|
15
|
-
"Language-Team: Georgian (https://
|
16
|
+
"Language-Team: Georgian (https://app.transifex.com/foreman/teams/114/ka/)\n"
|
16
17
|
"MIME-Version: 1.0\n"
|
17
18
|
"Content-Type: text/plain; charset=UTF-8\n"
|
18
19
|
"Content-Transfer-Encoding: 8bit\n"
|
@@ -80,7 +81,7 @@ msgid "Loading Snapshots information ..."
|
|
80
81
|
msgstr "სწრაფი ასლების ინფორმაციის ჩატვირთვა ..."
|
81
82
|
|
82
83
|
msgid "Memory"
|
83
|
-
msgstr ""
|
84
|
+
msgstr "მეხსიერება"
|
84
85
|
|
85
86
|
msgid "N/A"
|
86
87
|
msgstr "არარსებული"
|
@@ -104,7 +105,7 @@ msgid "No hosts were found with that id, name or query filter"
|
|
104
105
|
msgstr "მითითებული ID-ით, სახელით ან საძებნი სტრიქონით ჰოსტები ნაპოვნი არაა"
|
105
106
|
|
106
107
|
msgid "Quiesce"
|
107
|
-
msgstr ""
|
108
|
+
msgstr "Quiesce"
|
108
109
|
|
109
110
|
msgid "Revert Host to a snapshot"
|
110
111
|
msgstr "ჰოსტის სწრაფ ასლზე დაბრუნება"
|
@@ -116,7 +117,7 @@ msgid "Rollback to \"%s\"?"
|
|
116
117
|
msgstr "დავაბრუნო \"%s\"-ზე?"
|
117
118
|
|
118
119
|
msgid "Select Snapshot Mode between mutually exclusive options, 'Memory' (includes RAM) and 'Quiesce'."
|
119
|
-
msgstr ""
|
120
|
+
msgstr "აირჩიეთ სწრაფი ასლის რეჟიმი ურთიერთგამომრიცხავი პარამეტრებიდან 'Memory' (მეხსიერების ჩათვლით) და 'Quiesce'."
|
120
121
|
|
121
122
|
msgid "Snapshot"
|
122
123
|
msgid_plural "Snapshots"
|
@@ -124,7 +125,7 @@ msgstr[0] "სწრაფი ასლი"
|
|
124
125
|
msgstr[1] "სწრაფი ასლები"
|
125
126
|
|
126
127
|
msgid "Snapshot Mode"
|
127
|
-
msgstr ""
|
128
|
+
msgstr "სწრაფი ასლის რეჟიმი"
|
128
129
|
|
129
130
|
msgid "Snapshot name cannot be changed"
|
130
131
|
msgstr "სწრაფი ასლის სახელის შეცვლა შეუძლებელია"
|
Binary file
|
@@ -8,13 +8,14 @@
|
|
8
8
|
# Bryan Kearney <bryan.kearney@gmail.com>, 2019
|
9
9
|
# Amit Upadhye <aupadhye@redhat.com>, 2022
|
10
10
|
#
|
11
|
+
#, fuzzy
|
11
12
|
msgid ""
|
12
13
|
msgstr ""
|
13
|
-
"Project-Id-Version: foreman_snapshot_management
|
14
|
+
"Project-Id-Version: foreman_snapshot_management 3.0.1\n"
|
14
15
|
"Report-Msgid-Bugs-To: \n"
|
15
16
|
"PO-Revision-Date: 2019-10-22 11:54+0000\n"
|
16
17
|
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2022\n"
|
17
|
-
"Language-Team: Chinese (China) (https://
|
18
|
+
"Language-Team: Chinese (China) (https://app.transifex.com/foreman/teams/114/zh"
|
18
19
|
"_CN/)\n"
|
19
20
|
"MIME-Version: 1.0\n"
|
20
21
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -83,7 +84,7 @@ msgid "Loading Snapshots information ..."
|
|
83
84
|
msgstr "加载快照信息..."
|
84
85
|
|
85
86
|
msgid "Memory"
|
86
|
-
msgstr ""
|
87
|
+
msgstr "内存"
|
87
88
|
|
88
89
|
msgid "N/A"
|
89
90
|
msgstr "不适用"
|