foreman_snapshot_management 2.0.2 → 3.0.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 +6 -4
- data/Rakefile +1 -1
- data/app/assets/javascripts/foreman_snapshot_management/locale/cs_CZ/foreman_snapshot_management.js +203 -0
- data/app/assets/javascripts/foreman_snapshot_management/locale/de/foreman_snapshot_management.js +201 -0
- data/app/assets/javascripts/foreman_snapshot_management/locale/el/foreman_snapshot_management.js +201 -0
- data/app/assets/javascripts/foreman_snapshot_management/locale/en/foreman_snapshot_management.js +198 -0
- data/app/assets/javascripts/foreman_snapshot_management/locale/fr/foreman_snapshot_management.js +203 -0
- data/app/assets/javascripts/foreman_snapshot_management/locale/ja/foreman_snapshot_management.js +199 -0
- data/app/assets/javascripts/foreman_snapshot_management/locale/ka/foreman_snapshot_management.js +201 -0
- data/app/assets/javascripts/foreman_snapshot_management/locale/zh_CN/foreman_snapshot_management.js +199 -0
- data/app/controllers/api/v2/snapshots_controller.rb +7 -3
- data/app/controllers/concerns/foreman/controller/parameters/snapshot.rb +1 -1
- data/app/controllers/foreman_snapshot_management/snapshots_controller.rb +20 -4
- data/app/helpers/foreman_snapshot_management/hosts_helper.rb +16 -0
- data/app/models/concerns/fog_extensions/proxmox/snapshots/mock.rb +1 -1
- data/app/models/concerns/fog_extensions/vsphere/snapshots/mock.rb +2 -2
- data/app/models/concerns/fog_extensions/vsphere/snapshots/real.rb +1 -1
- data/app/models/foreman_snapshot_management/proxmox_extensions.rb +5 -4
- data/app/models/foreman_snapshot_management/snapshot.rb +10 -9
- data/app/models/foreman_snapshot_management/vmware_extensions.rb +13 -3
- data/app/views/foreman_snapshot_management/snapshots/_index.html.erb +2 -1
- data/app/views/foreman_snapshot_management/snapshots/select_multiple_host.html.erb +5 -3
- data/config/routes.rb +1 -1
- data/lib/foreman_snapshot_management/engine.rb +24 -29
- data/lib/foreman_snapshot_management/version.rb +1 -1
- data/lib/tasks/foreman_snapshot_management_tasks.rake +1 -1
- data/locale/Makefile +8 -5
- data/locale/cs_CZ/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/cs_CZ/foreman_snapshot_management.po +203 -0
- data/locale/de/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/de/foreman_snapshot_management.po +22 -14
- data/locale/el/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/el/foreman_snapshot_management.po +198 -0
- data/locale/en/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/en/foreman_snapshot_management.po +22 -13
- data/locale/foreman_snapshot_management.pot +56 -35
- data/locale/fr/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/fr/foreman_snapshot_management.po +204 -0
- data/locale/ja/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/ja/foreman_snapshot_management.po +197 -0
- data/locale/ka/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/ka/foreman_snapshot_management.po +198 -0
- data/locale/zh_CN/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/zh_CN/foreman_snapshot_management.po +199 -0
- data/package.json +4 -3
- data/test/controllers/api/v2/snapshots_test.rb +1 -1
- data/test/controllers/foreman_snapshot_management/snapshots_controller_test.rb +18 -3
- data/webpack/components/SnapshotManagement/SnapshotManagement.js +2 -0
- data/webpack/components/SnapshotManagement/components/SnapshotForm/SnapshotForm.js +53 -11
- data/webpack/components/SnapshotManagement/components/SnapshotForm/__tests__/__snapshots__/SnapshotForm.test.js.snap +262 -24
- data/webpack/components/SnapshotManagementCard/SnapshotManagementCard.js +64 -0
- data/webpack/components/SnapshotManagementCard/__tests__/SnapshotManagementCard.test.js +54 -0
- data/webpack/components/SnapshotManagementCard/__tests__/__snapshots__/SnapshotManagementCard.test.js.snap +117 -0
- data/webpack/components/SnapshotManagementCard/index.js +1 -0
- data/webpack/global_index.js +13 -0
- metadata +33 -10
- data/app/helpers/concerns/foreman_snapshot_management/hosts_helper_extension.rb +0 -9
@@ -10,8 +10,10 @@
|
|
10
10
|
<%= textarea_f f, :description,
|
11
11
|
{ :label => _("Description")}
|
12
12
|
%>
|
13
|
-
<%=
|
14
|
-
|
15
|
-
|
13
|
+
<%= selectable_f f, :snapshot_mode, {'Quiesce' => 'quiesce', 'Include RAM' => 'memory'},
|
14
|
+
{:include_blank => true}, {
|
15
|
+
:label => _("Snapshot Mode"),
|
16
|
+
:label_help => _("Select Snapshot Mode between mutually exclusive options, 'Memory' (includes RAM) and 'Quiesce'."),
|
17
|
+
:onchange => "tfm.hosts.table.toggleMultipleOkButton(this)"} %>
|
16
18
|
<% end %>
|
17
19
|
<% end %>
|
data/config/routes.rb
CHANGED
@@ -20,7 +20,7 @@ Rails.application.routes.draw do
|
|
20
20
|
end
|
21
21
|
end
|
22
22
|
|
23
|
-
constraints(host_id: %r{[
|
23
|
+
constraints(host_id: %r{[^/]+}) do
|
24
24
|
resources :hosts, only: [] do
|
25
25
|
resources :snapshots, module: 'foreman_snapshot_management', only: [:index, :create, :destroy, :update] do
|
26
26
|
member do
|
@@ -6,11 +6,11 @@ module ForemanSnapshotManagement
|
|
6
6
|
|
7
7
|
config.autoload_paths += Dir["#{config.root}/app/models/concerns"]
|
8
8
|
config.autoload_paths += Dir["#{config.root}/app/controllers/concerns"]
|
9
|
-
config.autoload_paths += Dir["#{config.root}/app/helpers/concerns"]
|
10
9
|
|
11
10
|
initializer 'foreman_snapshot_management.register_plugin', before: :finisher_hook do |_app|
|
12
11
|
Foreman::Plugin.register :foreman_snapshot_management do
|
13
|
-
requires_foreman '>=
|
12
|
+
requires_foreman '>= 3.7'
|
13
|
+
register_gettext
|
14
14
|
|
15
15
|
# Add Global files for extending foreman-core components and routes
|
16
16
|
register_global_js_file 'global'
|
@@ -21,49 +21,53 @@ module ForemanSnapshotManagement
|
|
21
21
|
security_block :foreman_snapshot_management do
|
22
22
|
permission :view_snapshots, {
|
23
23
|
:'foreman_snapshot_management/snapshots' => [:index],
|
24
|
-
:'api/v2/snapshots' => [:index, :show]
|
24
|
+
:'api/v2/snapshots' => [:index, :show],
|
25
25
|
}, :resource_type => 'Host'
|
26
26
|
|
27
27
|
permission :create_snapshots, {
|
28
28
|
:'foreman_snapshot_management/snapshots' => [:create, :select_multiple_host, :create_multiple_host],
|
29
|
-
:'api/v2/snapshots' => [:create]
|
29
|
+
:'api/v2/snapshots' => [:create],
|
30
30
|
}, :resource_type => 'Host'
|
31
31
|
|
32
32
|
permission :edit_snapshots, {
|
33
33
|
:'foreman_snapshot_management/snapshots' => [:update],
|
34
|
-
:'api/v2/snapshots' => [:update]
|
34
|
+
:'api/v2/snapshots' => [:update],
|
35
35
|
}, :resource_type => 'Host'
|
36
36
|
|
37
37
|
permission :destroy_snapshots, {
|
38
38
|
:'foreman_snapshot_management/snapshots' => [:destroy],
|
39
|
-
:'api/v2/snapshots' => [:destroy]
|
39
|
+
:'api/v2/snapshots' => [:destroy],
|
40
40
|
}, :resource_type => 'Host'
|
41
41
|
|
42
42
|
permission :revert_snapshots, {
|
43
43
|
:'foreman_snapshot_management/snapshots' => [:revert],
|
44
|
-
:'api/v2/snapshots' => [:revert]
|
44
|
+
:'api/v2/snapshots' => [:revert],
|
45
45
|
}, :resource_type => 'Host'
|
46
46
|
end
|
47
47
|
|
48
48
|
# Adds roles if they do not exist
|
49
49
|
role 'Snapshot Viewer',
|
50
|
-
|
51
|
-
|
50
|
+
[:view_snapshots],
|
51
|
+
'Role granting permission only to view snapshots for hosts'
|
52
52
|
role 'Snapshot Manager',
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
53
|
+
[
|
54
|
+
:view_snapshots,
|
55
|
+
:create_snapshots,
|
56
|
+
:edit_snapshots,
|
57
|
+
:destroy_snapshots,
|
58
|
+
:revert_snapshots,
|
59
|
+
],
|
60
|
+
'Role granting permission to manage snapshots for hosts'
|
61
61
|
|
62
62
|
extend_page('hosts/show') do |context|
|
63
63
|
context.add_pagelet :main_tabs,
|
64
|
-
|
65
|
-
|
66
|
-
|
64
|
+
:name => N_('Snapshots'),
|
65
|
+
:partial => 'hosts/snapshots_tab',
|
66
|
+
:onlyif => proc { |host| host&.uuid.present? && host&.compute_resource&.capable?(:snapshots) }
|
67
|
+
end
|
68
|
+
|
69
|
+
describe_host do
|
70
|
+
multiple_actions_provider :snapshot_multiple_actions
|
67
71
|
end
|
68
72
|
end
|
69
73
|
end
|
@@ -86,9 +90,6 @@ module ForemanSnapshotManagement
|
|
86
90
|
|
87
91
|
# Include concerns in this config.to_prepare block
|
88
92
|
config.to_prepare do
|
89
|
-
# Load Foreman extensions
|
90
|
-
::HostsHelper.prepend ForemanSnapshotManagement::HostsHelperExtension
|
91
|
-
|
92
93
|
begin
|
93
94
|
::ForemanFogProxmox::Proxmox.prepend ForemanSnapshotManagement::ProxmoxExtensions
|
94
95
|
|
@@ -118,12 +119,6 @@ module ForemanSnapshotManagement
|
|
118
119
|
ForemanSnapshotManagement::Engine.load_seed
|
119
120
|
end
|
120
121
|
end
|
121
|
-
|
122
|
-
initializer 'foreman_snapshot_management.register_gettext', after: :load_config_initializers do |_app|
|
123
|
-
locale_dir = File.join(File.expand_path('../..', __dir__), 'locale')
|
124
|
-
locale_domain = 'foreman_snapshot_management'
|
125
|
-
Foreman::Gettext::Support.add_text_domain locale_domain, locale_dir
|
126
|
-
end
|
127
122
|
end
|
128
123
|
|
129
124
|
def self.fog_vsphere_namespace
|
data/locale/Makefile
CHANGED
@@ -6,14 +6,15 @@
|
|
6
6
|
# make tx-update - download and merge translations from Transifex
|
7
7
|
# make clean - clean everything
|
8
8
|
#
|
9
|
-
DOMAIN =
|
10
|
-
VERSION = $(shell ruby -e '
|
9
|
+
DOMAIN = $(shell ruby -rrubygems -e 'puts Gem::Specification::load(Dir.glob("../*.gemspec")[0]).name')
|
10
|
+
VERSION = $(shell ruby -rrubygems -e 'puts Gem::Specification::load(Dir.glob("../*.gemspec")[0]).version')
|
11
11
|
POTFILE = $(DOMAIN).pot
|
12
12
|
MOFILE = $(DOMAIN).mo
|
13
13
|
POFILES = $(shell find . -name '$(DOMAIN).po')
|
14
14
|
MOFILES = $(patsubst %.po,%.mo,$(POFILES))
|
15
15
|
POXFILES = $(patsubst %.po,%.pox,$(POFILES))
|
16
16
|
EDITFILES = $(patsubst %.po,%.edit.po,$(POFILES))
|
17
|
+
JSFILES = $(shell find ../app/assets/javascripts/*/locale -name '$(DOMAIN).js')
|
17
18
|
|
18
19
|
%.mo: %.po
|
19
20
|
mkdir -p $(shell dirname $@)/LC_MESSAGES
|
@@ -42,18 +43,20 @@ uniq-po:
|
|
42
43
|
done
|
43
44
|
|
44
45
|
tx-pull: $(EDITFILES)
|
45
|
-
tx pull -f
|
46
|
+
cd .. && tx pull -f --all
|
46
47
|
for f in $(EDITFILES) ; do \
|
47
48
|
sed -i 's/^\("Project-Id-Version: \).*$$/\1$(DOMAIN) $(VERSION)\\n"/' $$f; \
|
48
49
|
done
|
49
50
|
|
50
51
|
tx-update: tx-pull
|
51
52
|
@echo
|
52
|
-
@echo Run rake plugin:gettext[$(DOMAIN)] from the Foreman installation
|
53
|
+
@echo Run rake plugin:gettext[$(DOMAIN)] from the Foreman installation
|
54
|
+
@echo then run rake plugin:po_to_json[$(DOMAIN)] from the Foreman installation
|
55
|
+
@echo then run make -C locale mo-files to finish
|
53
56
|
@echo
|
54
57
|
|
55
58
|
mo-files: $(MOFILES)
|
56
|
-
git add $(POFILES) $(POTFILE) ../locale/*/LC_MESSAGES
|
59
|
+
git add $(POFILES) $(POTFILE) $(JSFILES) ../locale/*/LC_MESSAGES
|
57
60
|
git commit -m "i18n - pulling from tx"
|
58
61
|
@echo
|
59
62
|
@echo Changes commited!
|
Binary file
|
@@ -0,0 +1,203 @@
|
|
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_snapshot_management package.
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5
|
+
#
|
6
|
+
# Translators:
|
7
|
+
# Lukáš Zapletal, 2021
|
8
|
+
# Pavel Borecki <pavel.borecki@gmail.com>, 2021
|
9
|
+
#
|
10
|
+
msgid ""
|
11
|
+
msgstr ""
|
12
|
+
"Project-Id-Version: foreman_snapshot_management 2.0.2\n"
|
13
|
+
"Report-Msgid-Bugs-To: \n"
|
14
|
+
"PO-Revision-Date: 2019-10-22 11:54+0000\n"
|
15
|
+
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2021\n"
|
16
|
+
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/foreman/teams"
|
17
|
+
"/114/cs_CZ/)\n"
|
18
|
+
"MIME-Version: 1.0\n"
|
19
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
20
|
+
"Content-Transfer-Encoding: 8bit\n"
|
21
|
+
"Language: cs_CZ\n"
|
22
|
+
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= "
|
23
|
+
"4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
24
|
+
|
25
|
+
msgid "Action"
|
26
|
+
msgstr "Akce"
|
27
|
+
|
28
|
+
msgid "Create Snapshot"
|
29
|
+
msgstr "Pořídit zachycený stav"
|
30
|
+
|
31
|
+
msgid "Create Snapshot for %s"
|
32
|
+
msgstr ""
|
33
|
+
|
34
|
+
msgid "Create a snapshot"
|
35
|
+
msgstr "Pořídit zachycený stav"
|
36
|
+
|
37
|
+
msgid "Created %{snapshots} for %{num} %{hosts}"
|
38
|
+
msgstr "Vytvořeno %{snapshots} pro %{num} %{hosts}"
|
39
|
+
|
40
|
+
msgid "Delete"
|
41
|
+
msgstr "Smazat"
|
42
|
+
|
43
|
+
msgid "Delete Snapshot \"%s\"?"
|
44
|
+
msgstr ""
|
45
|
+
|
46
|
+
msgid "Delete a snapshot"
|
47
|
+
msgstr "Smazat zachycený stav"
|
48
|
+
|
49
|
+
msgid "Description"
|
50
|
+
msgstr "Popis"
|
51
|
+
|
52
|
+
msgid "Description of this snapshot"
|
53
|
+
msgstr ""
|
54
|
+
|
55
|
+
msgid "Error occurred while creating Snapshot for:%s"
|
56
|
+
msgstr ""
|
57
|
+
|
58
|
+
msgid "Error occurred while creating Snapshot: %s"
|
59
|
+
msgstr "Při pořizování zachyceného stavu došlo k chybě: %s"
|
60
|
+
|
61
|
+
msgid "Error occurred while removing Snapshot: %s"
|
62
|
+
msgstr "Při odebírání zachyceného stavu došlo k chybě: %s"
|
63
|
+
|
64
|
+
msgid "Error occurred while rolling back VM: %s"
|
65
|
+
msgstr ""
|
66
|
+
|
67
|
+
msgid "Error occurred while updating Snapshot: %s"
|
68
|
+
msgstr ""
|
69
|
+
|
70
|
+
msgid "Failed to load snapshot list"
|
71
|
+
msgstr ""
|
72
|
+
|
73
|
+
msgid "Failed to update Snapshot: %s"
|
74
|
+
msgstr "Zachycený stav se nepodařilo aktualizovat: %s"
|
75
|
+
|
76
|
+
msgid "Foreman-plugin to manage snapshots in a virtual-hardware environments."
|
77
|
+
msgstr "Zásuvný modul do Foreman pro správu zachycených stavů v prostředí virtuálního hardware."
|
78
|
+
|
79
|
+
msgid "List all snapshots"
|
80
|
+
msgstr "Vypsat všechny zachycené stavy"
|
81
|
+
|
82
|
+
msgid "Loading Snapshots information ..."
|
83
|
+
msgstr "Načítání informací o zachycených stavech…"
|
84
|
+
|
85
|
+
msgid "Memory"
|
86
|
+
msgstr ""
|
87
|
+
|
88
|
+
msgid "N/A"
|
89
|
+
msgstr "Není"
|
90
|
+
|
91
|
+
msgid "Name"
|
92
|
+
msgstr "Název"
|
93
|
+
|
94
|
+
msgid "Name must contain at least 2 characters starting with alphabet. Valid characters are A-Z a-z 0-9 _"
|
95
|
+
msgstr ""
|
96
|
+
|
97
|
+
msgid "Name of this snapshot"
|
98
|
+
msgstr "Název tohoto zachyceného stavu"
|
99
|
+
|
100
|
+
msgid "No capable hosts found."
|
101
|
+
msgstr "Nenalezeny žádné schopné stroje."
|
102
|
+
|
103
|
+
msgid "No capable hosts selected"
|
104
|
+
msgstr ""
|
105
|
+
|
106
|
+
msgid "No hosts were found with that id, name or query filter"
|
107
|
+
msgstr "Pro takový identifikátor, název nebo dotazovací filtr nebyly nalezeni žádní hostitelé"
|
108
|
+
|
109
|
+
msgid "Quiesce"
|
110
|
+
msgstr ""
|
111
|
+
|
112
|
+
msgid "Revert Host to a snapshot"
|
113
|
+
msgstr "Vrátit stroj do podoby ze zachyceného stavu"
|
114
|
+
|
115
|
+
msgid "Rollback"
|
116
|
+
msgstr ""
|
117
|
+
|
118
|
+
msgid "Rollback to \"%s\"?"
|
119
|
+
msgstr ""
|
120
|
+
|
121
|
+
msgid "Select Snapshot Mode between mutually exclusive options, 'Memory' (includes RAM) and 'Quiesce'."
|
122
|
+
msgstr ""
|
123
|
+
|
124
|
+
msgid "Snapshot"
|
125
|
+
msgid_plural "Snapshots"
|
126
|
+
msgstr[0] "Zachycený stav"
|
127
|
+
msgstr[1] "Zachycené stavy"
|
128
|
+
msgstr[2] "Zachycených stavů"
|
129
|
+
msgstr[3] "Zachycené stavy"
|
130
|
+
|
131
|
+
msgid "Snapshot Mode"
|
132
|
+
msgstr ""
|
133
|
+
|
134
|
+
msgid "Snapshot name cannot be changed"
|
135
|
+
msgstr "Název zachyceného stavu není možné změnit"
|
136
|
+
|
137
|
+
msgid "Snapshot successfully created!"
|
138
|
+
msgstr ""
|
139
|
+
|
140
|
+
msgid "Snapshots"
|
141
|
+
msgstr "Zachycené stavy"
|
142
|
+
|
143
|
+
msgid "Something went wrong while selecting hosts - %s"
|
144
|
+
msgstr "Při vybírání strojů se něco pokazilo – %s"
|
145
|
+
|
146
|
+
msgid "Successfully removed Snapshot \"%s\" from host %s"
|
147
|
+
msgstr ""
|
148
|
+
|
149
|
+
msgid "Successfully rolled back Snapshot \"%s\" on host %s"
|
150
|
+
msgstr ""
|
151
|
+
|
152
|
+
msgid "Successfully updated Snapshot \"%s\""
|
153
|
+
msgstr ""
|
154
|
+
|
155
|
+
msgid "Unable to create Proxmox Snapshot"
|
156
|
+
msgstr "Nedaří se pořídit Proxmox zachycený stav"
|
157
|
+
|
158
|
+
msgid "Unable to create VMWare Snapshot"
|
159
|
+
msgstr "Nedaří se pořídit VMWare zachycený stav"
|
160
|
+
|
161
|
+
msgid "Unable to create VMWare Snapshot with Quiesce. Check Power and VMWare Tools status."
|
162
|
+
msgstr ""
|
163
|
+
|
164
|
+
msgid "Unable to create VMWare Snapshot. Cannot set both Memory and Quiesce options."
|
165
|
+
msgstr ""
|
166
|
+
|
167
|
+
msgid "Unable to remove Proxmox Snapshot"
|
168
|
+
msgstr "Nedaří se odebrat Proxmox zachycený stav"
|
169
|
+
|
170
|
+
msgid "Unable to remove VMWare Snapshot"
|
171
|
+
msgstr "VMWare zachycený stav se nedaří odebrat"
|
172
|
+
|
173
|
+
msgid "Unable to revert Proxmox Snapshot"
|
174
|
+
msgstr "Nedaří se vrátit do podoby v Proxmox zachyceném stavu"
|
175
|
+
|
176
|
+
msgid "Unable to revert VMWare Snapshot"
|
177
|
+
msgstr ""
|
178
|
+
|
179
|
+
msgid "Unable to update Proxmox Snapshot"
|
180
|
+
msgstr "Nedaří se aktualizovat Proxmox zachycený stav"
|
181
|
+
|
182
|
+
msgid "Unable to update VMWare Snapshot"
|
183
|
+
msgstr "VMWare zachycený stav se nedaří zaktualizovat"
|
184
|
+
|
185
|
+
msgid "Update a snapshot"
|
186
|
+
msgstr "Aktualizovat zachycený stav"
|
187
|
+
|
188
|
+
msgid "VM successfully rolled back."
|
189
|
+
msgstr ""
|
190
|
+
|
191
|
+
msgid "Whether to include the Quiesce state in the snapshot"
|
192
|
+
msgstr ""
|
193
|
+
|
194
|
+
msgid "Whether to include the RAM state in the snapshot"
|
195
|
+
msgstr "Zda v zachyceném stavu uložit i obsah operační paměti"
|
196
|
+
|
197
|
+
msgid "edit entry"
|
198
|
+
msgstr ""
|
199
|
+
|
200
|
+
msgid "host"
|
201
|
+
msgid_plural "hosts"
|
202
|
+
msgstr[0] ""
|
203
|
+
msgstr[1] ""
|
Binary file
|
@@ -11,10 +11,9 @@
|
|
11
11
|
# Bryan Kearney <bryan.kearney@gmail.com>, 2021
|
12
12
|
# Markus Bucher <bucher@atix.de>, 2021
|
13
13
|
#
|
14
|
-
#, fuzzy
|
15
14
|
msgid ""
|
16
15
|
msgstr ""
|
17
|
-
"Project-Id-Version: foreman_snapshot_management
|
16
|
+
"Project-Id-Version: foreman_snapshot_management 2.0.2\n"
|
18
17
|
"Report-Msgid-Bugs-To: \n"
|
19
18
|
"PO-Revision-Date: 2019-10-22 11:54+0000\n"
|
20
19
|
"Last-Translator: Markus Bucher <bucher@atix.de>, 2021\n"
|
@@ -28,9 +27,6 @@ msgstr ""
|
|
28
27
|
msgid "Action"
|
29
28
|
msgstr "Aktion"
|
30
29
|
|
31
|
-
msgid "Action with sub plans"
|
32
|
-
msgstr "Aktion mit Unterplänen"
|
33
|
-
|
34
30
|
msgid "Create Snapshot"
|
35
31
|
msgstr "Snapshot erstellen"
|
36
32
|
|
@@ -82,21 +78,15 @@ msgstr "Das Aktualisieren des Snapshots ist fehlgeschlagen: %s"
|
|
82
78
|
msgid "Foreman-plugin to manage snapshots in a virtual-hardware environments."
|
83
79
|
msgstr "Ein Foremanplugin, welches Snapshots in Umgebungen mit virtueller Hardware nutzbar macht."
|
84
80
|
|
85
|
-
msgid "Import Puppet classes"
|
86
|
-
msgstr "Puppet-Klassen importieren"
|
87
|
-
|
88
|
-
msgid "Import facts"
|
89
|
-
msgstr "Fakten importieren"
|
90
|
-
|
91
|
-
msgid "Include RAM"
|
92
|
-
msgstr "RAM einbeziehen"
|
93
|
-
|
94
81
|
msgid "List all snapshots"
|
95
82
|
msgstr "Alle Snapshots auflisten"
|
96
83
|
|
97
84
|
msgid "Loading Snapshots information ..."
|
98
85
|
msgstr "Lade Snapshot Informationen ..."
|
99
86
|
|
87
|
+
msgid "Memory"
|
88
|
+
msgstr ""
|
89
|
+
|
100
90
|
msgid "N/A"
|
101
91
|
msgstr "N/A"
|
102
92
|
|
@@ -118,6 +108,9 @@ msgstr "Keine unterstützten Hosts ausgewählt"
|
|
118
108
|
msgid "No hosts were found with that id, name or query filter"
|
119
109
|
msgstr "Keine Hosts wurden mit dieser Kennung, Name oder Abfrage-Filter gefunden"
|
120
110
|
|
111
|
+
msgid "Quiesce"
|
112
|
+
msgstr ""
|
113
|
+
|
121
114
|
msgid "Revert Host to a snapshot"
|
122
115
|
msgstr "Host auf einen Snapshot zurücksetzen"
|
123
116
|
|
@@ -127,11 +120,17 @@ msgstr "Wiederherstellen"
|
|
127
120
|
msgid "Rollback to \"%s\"?"
|
128
121
|
msgstr "\"%s\" wirklich wiederherstellen?"
|
129
122
|
|
123
|
+
msgid "Select Snapshot Mode between mutually exclusive options, 'Memory' (includes RAM) and 'Quiesce'."
|
124
|
+
msgstr ""
|
125
|
+
|
130
126
|
msgid "Snapshot"
|
131
127
|
msgid_plural "Snapshots"
|
132
128
|
msgstr[0] "Snapshot"
|
133
129
|
msgstr[1] "Snapshots"
|
134
130
|
|
131
|
+
msgid "Snapshot Mode"
|
132
|
+
msgstr ""
|
133
|
+
|
135
134
|
msgid "Snapshot name cannot be changed"
|
136
135
|
msgstr "Der Name des Snapshots kann nicht geändert werden"
|
137
136
|
|
@@ -159,6 +158,12 @@ msgstr "Proxmox Snapshot konnte nicht erstellt werden"
|
|
159
158
|
msgid "Unable to create VMWare Snapshot"
|
160
159
|
msgstr "VMWare Snapshot konnte nicht erstellt werden"
|
161
160
|
|
161
|
+
msgid "Unable to create VMWare Snapshot with Quiesce. Check Power and VMWare Tools status."
|
162
|
+
msgstr ""
|
163
|
+
|
164
|
+
msgid "Unable to create VMWare Snapshot. Cannot set both Memory and Quiesce options."
|
165
|
+
msgstr ""
|
166
|
+
|
162
167
|
msgid "Unable to remove Proxmox Snapshot"
|
163
168
|
msgstr "Proxmox Snapshot konnte nicht gelöscht werden"
|
164
169
|
|
@@ -183,6 +188,9 @@ msgstr "Snapshot aktualisieren"
|
|
183
188
|
msgid "VM successfully rolled back."
|
184
189
|
msgstr "Die VM wurde erfolgreich zurückgesetzt."
|
185
190
|
|
191
|
+
msgid "Whether to include the Quiesce state in the snapshot"
|
192
|
+
msgstr ""
|
193
|
+
|
186
194
|
msgid "Whether to include the RAM state in the snapshot"
|
187
195
|
msgstr "Ob auch der aktuelle Hauptspeicherstand im Snapshot gespeichert werden soll"
|
188
196
|
|
Binary file
|