foreman_snapshot_management 2.0.3 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -4
  3. data/Rakefile +1 -1
  4. data/app/assets/javascripts/foreman_snapshot_management/locale/cs_CZ/foreman_snapshot_management.js +203 -0
  5. data/app/assets/javascripts/foreman_snapshot_management/locale/de/foreman_snapshot_management.js +201 -0
  6. data/app/assets/javascripts/foreman_snapshot_management/locale/el/foreman_snapshot_management.js +201 -0
  7. data/app/assets/javascripts/foreman_snapshot_management/locale/en/foreman_snapshot_management.js +198 -0
  8. data/app/assets/javascripts/foreman_snapshot_management/locale/fr/foreman_snapshot_management.js +203 -0
  9. data/app/assets/javascripts/foreman_snapshot_management/locale/ja/foreman_snapshot_management.js +199 -0
  10. data/app/assets/javascripts/foreman_snapshot_management/locale/ka/foreman_snapshot_management.js +201 -0
  11. data/app/assets/javascripts/foreman_snapshot_management/locale/zh_CN/foreman_snapshot_management.js +199 -0
  12. data/app/controllers/api/v2/snapshots_controller.rb +5 -4
  13. data/app/controllers/foreman_snapshot_management/snapshots_controller.rb +6 -4
  14. data/app/helpers/foreman_snapshot_management/hosts_helper.rb +16 -0
  15. data/app/models/concerns/fog_extensions/proxmox/snapshots/mock.rb +1 -1
  16. data/app/models/concerns/fog_extensions/vsphere/snapshots/mock.rb +2 -2
  17. data/app/models/concerns/fog_extensions/vsphere/snapshots/real.rb +1 -1
  18. data/app/models/foreman_snapshot_management/proxmox_extensions.rb +2 -1
  19. data/app/models/foreman_snapshot_management/snapshot.rb +11 -10
  20. data/config/routes.rb +1 -1
  21. data/lib/foreman_snapshot_management/engine.rb +24 -29
  22. data/lib/foreman_snapshot_management/version.rb +1 -1
  23. data/lib/tasks/foreman_snapshot_management_tasks.rake +1 -1
  24. data/locale/Makefile +7 -8
  25. data/locale/cs_CZ/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
  26. data/locale/cs_CZ/foreman_snapshot_management.po +12 -4
  27. data/locale/de/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
  28. data/locale/de/foreman_snapshot_management.po +12 -4
  29. data/locale/el/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
  30. data/locale/el/foreman_snapshot_management.po +12 -4
  31. data/locale/fr/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
  32. data/locale/fr/foreman_snapshot_management.po +12 -4
  33. data/locale/ja/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
  34. data/locale/ja/foreman_snapshot_management.po +12 -4
  35. data/locale/ka/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
  36. data/locale/ka/foreman_snapshot_management.po +12 -4
  37. data/locale/zh_CN/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
  38. data/locale/zh_CN/foreman_snapshot_management.po +12 -4
  39. data/package.json +1 -1
  40. data/test/controllers/api/v2/snapshots_test.rb +1 -1
  41. data/test/controllers/foreman_snapshot_management/snapshots_controller_test.rb +1 -1
  42. data/webpack/components/SnapshotManagementCard/SnapshotManagementCard.js +12 -9
  43. data/webpack/components/SnapshotManagementCard/__tests__/SnapshotManagementCard.test.js +1 -0
  44. data/webpack/components/SnapshotManagementCard/__tests__/__snapshots__/SnapshotManagementCard.test.js.snap +1 -16
  45. metadata +16 -8
  46. data/app/helpers/concerns/foreman_snapshot_management/hosts_helper_extension.rb +0 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a72d5258122e53aa172e3d7050fcc297cbd243d051399d607d2fb7f6b60e10a6
4
- data.tar.gz: 0fe77d3ae45c6529bad97d6581751e6c2b1c123207a106e25d25262b187cb05d
3
+ metadata.gz: 5cf81dcdc36e425e53f5588c22eff58f31af53e0f992e247290daeeef01411ad
4
+ data.tar.gz: 8fff3100d36c0d7d949a81414508ffbcb2621b6d7089bbe0f1c7aa5ea20f8b5f
5
5
  SHA512:
6
- metadata.gz: cc29170c56484db47968e7116bec4a09cd4ef47414b957edd7dcc43ca7d8db2de50d72c846565a57d966dc858c4bcf3410c29bb32ceca7e49af28d7d00b095fa
7
- data.tar.gz: a31ad508279a04c186e4b79fe9d2be68c0136d473e2a535805d9f50fdee0afee173fecf9547b8ff8766614ee40b64cde848609e56fcc843433d8760140dfc685
6
+ metadata.gz: 198b9a0693f28b8668a950fb454a29973c841b7bce99d9db7a08532ca6a91cbc3c4b313ddb8f65916ff4b8dcb1ab1bf50944fa36fe469799633f24bbe346d5a6
7
+ data.tar.gz: ef525654f7ec90c291d178dce101ea85d27619affd25c13747a37f4f8dc7058c895d197a1ef4344f5224ff47aa4f5c97cee220eb349f2bad170b4ef30fe3fbd8
data/README.md CHANGED
@@ -12,18 +12,20 @@ As Hypervisor the following systems are supported:
12
12
 
13
13
  - List existing snapshots of a virtual machine.
14
14
  - Create a snapshot of a virtual machine.
15
- - Revert existing virtual machine to a previously created snapshot.
15
+ - Revert existing virtual machines to a previously created snapshot.
16
16
  - Remove existing snapshots of a virtual machine.
17
17
 
18
18
  ## Installation
19
19
 
20
- See [How_to_Install_a_Plugin](http://projects.theforeman.org/projects/foreman/wiki/How_to_Install_a_Plugin) for how to install Foreman plugins
20
+ You can install Foreman Snapshot Management plug-in using `foreman-installer`.
21
+ For more information, see [Installing the Snapshot Management Plug-in](https://docs.theforeman.org/nightly/Managing_Hosts/index-katello.html#Installing_the_Snapshot_Management_Plugin_managing-hosts) in _Foreman documentation_.
21
22
 
22
23
  ## Compatibility
23
24
 
24
25
  | Foreman Version | Plugin Version |
25
26
  | --------------- | -------------- |
26
- | 2.3 | >= 2.0.0 |
27
+ | >= 3.7 | >= 3.0.0 |
28
+ | >= 2.3 | >= 2.0.0 |
27
29
  | 1.24 | >= 1.7.0 |
28
30
  | 1.23 | >= 1.7.0 |
29
31
  | 1.22 | >= 1.6.0 |
@@ -227,7 +229,7 @@ curl -s -u "$AUTH" \
227
229
  Fork and send a Pull Request. Thanks!
228
230
 
229
231
  ## Copyright
230
- Copyright (c) 2017 ATIX AG - http://www.atix.de
232
+ Copyright (c) 2023 ATIX AG - http://www.atix.de
231
233
 
232
234
  This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
233
235
 
data/Rakefile CHANGED
@@ -18,7 +18,7 @@ begin
18
18
  require 'rubocop/rake_task'
19
19
  RuboCop::RakeTask.new
20
20
  rescue StandardError => _e
21
- puts 'Rubocop not loaded.'
21
+ # 'Rubocop not loaded.'
22
22
  end
23
23
 
24
24
  RDoc::Task.new(:rdoc) do |rdoc|
@@ -0,0 +1,203 @@
1
+ locales['foreman_snapshot_management'] = locales['foreman_snapshot_management'] || {}; locales['foreman_snapshot_management']['cs_CZ'] = {
2
+ "domain": "foreman_snapshot_management",
3
+ "locale_data": {
4
+ "foreman_snapshot_management": {
5
+ "": {
6
+ "Project-Id-Version": "foreman_snapshot_management 2.0.2",
7
+ "Report-Msgid-Bugs-To": "",
8
+ "PO-Revision-Date": "2019-10-22 11:54+0000",
9
+ "Last-Translator": "Pavel Borecki <pavel.borecki@gmail.com>, 2021",
10
+ "Language-Team": "Czech (Czech Republic) (https://www.transifex.com/foreman/teams/114/cs_CZ/)",
11
+ "MIME-Version": "1.0",
12
+ "Content-Type": "text/plain; charset=UTF-8",
13
+ "Content-Transfer-Encoding": "8bit",
14
+ "Language": "cs_CZ",
15
+ "Plural-Forms": "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;",
16
+ "lang": "cs_CZ",
17
+ "domain": "foreman_snapshot_management",
18
+ "plural_forms": "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
19
+ },
20
+ "List all snapshots": [
21
+ "Vypsat všechny zachycené stavy"
22
+ ],
23
+ "Name of this snapshot": [
24
+ "Název tohoto zachyceného stavu"
25
+ ],
26
+ "Description of this snapshot": [
27
+ ""
28
+ ],
29
+ "Create a snapshot": [
30
+ "Pořídit zachycený stav"
31
+ ],
32
+ "Whether to include the RAM state in the snapshot": [
33
+ "Zda v zachyceném stavu uložit i obsah operační paměti"
34
+ ],
35
+ "Whether to include the Quiesce state in the snapshot": [
36
+ ""
37
+ ],
38
+ "Update a snapshot": [
39
+ "Aktualizovat zachycený stav"
40
+ ],
41
+ "Delete a snapshot": [
42
+ "Smazat zachycený stav"
43
+ ],
44
+ "Revert Host to a snapshot": [
45
+ "Vrátit stroj do podoby ze zachyceného stavu"
46
+ ],
47
+ "Error occurred while creating Snapshot: %s": [
48
+ "Při pořizování zachyceného stavu došlo k chybě: %s"
49
+ ],
50
+ "Error occurred while removing Snapshot: %s": [
51
+ "Při odebírání zachyceného stavu došlo k chybě: %s"
52
+ ],
53
+ "VM successfully rolled back.": [
54
+ ""
55
+ ],
56
+ "Error occurred while rolling back VM: %s": [
57
+ ""
58
+ ],
59
+ "Failed to update Snapshot: %s": [
60
+ "Zachycený stav se nepodařilo aktualizovat: %s"
61
+ ],
62
+ "Error occurred while creating Snapshot for:%s": [
63
+ ""
64
+ ],
65
+ "Created %{snapshots} for %{num} %{hosts}": [
66
+ "Vytvořeno %{snapshots} pro %{num} %{hosts}"
67
+ ],
68
+ "Snapshot": [
69
+ "Zachycený stav",
70
+ "Zachycené stavy",
71
+ "Zachycených stavů",
72
+ "Zachycené stavy"
73
+ ],
74
+ "host": [
75
+ "",
76
+ ""
77
+ ],
78
+ "No hosts were found with that id, name or query filter": [
79
+ "Pro takový identifikátor, název nebo dotazovací filtr nebyly nalezeni žádní hostitelé"
80
+ ],
81
+ "Something went wrong while selecting hosts - %s": [
82
+ "Při vybírání strojů se něco pokazilo – %s"
83
+ ],
84
+ "No capable hosts found.": [
85
+ "Nenalezeny žádné schopné stroje."
86
+ ],
87
+ "Create Snapshot": [
88
+ "Pořídit zachycený stav"
89
+ ],
90
+ "Name must contain at least 2 characters starting with alphabet. Valid characters are A-Z a-z 0-9 _": [
91
+ ""
92
+ ],
93
+ "Unable to create Proxmox Snapshot": [
94
+ "Nedaří se pořídit Proxmox zachycený stav"
95
+ ],
96
+ "Unable to remove Proxmox Snapshot": [
97
+ "Nedaří se odebrat Proxmox zachycený stav"
98
+ ],
99
+ "Unable to revert Proxmox Snapshot": [
100
+ "Nedaří se vrátit do podoby v Proxmox zachyceném stavu"
101
+ ],
102
+ "Snapshot name cannot be changed": [
103
+ "Název zachyceného stavu není možné změnit"
104
+ ],
105
+ "Unable to update Proxmox Snapshot": [
106
+ "Nedaří se aktualizovat Proxmox zachycený stav"
107
+ ],
108
+ "Unable to create VMWare Snapshot with Quiesce. Check Power and VMWare Tools status.": [
109
+ ""
110
+ ],
111
+ "Unable to create VMWare Snapshot. Cannot set both Memory and Quiesce options.": [
112
+ ""
113
+ ],
114
+ "Unable to create VMWare Snapshot": [
115
+ "Nedaří se pořídit VMWare zachycený stav"
116
+ ],
117
+ "Unable to remove VMWare Snapshot": [
118
+ "VMWare zachycený stav se nedaří odebrat"
119
+ ],
120
+ "Unable to revert VMWare Snapshot": [
121
+ ""
122
+ ],
123
+ "Unable to update VMWare Snapshot": [
124
+ "VMWare zachycený stav se nedaří zaktualizovat"
125
+ ],
126
+ "No capable hosts selected": [
127
+ ""
128
+ ],
129
+ "Description": [
130
+ "Popis"
131
+ ],
132
+ "Snapshot Mode": [
133
+ ""
134
+ ],
135
+ "Select Snapshot Mode between mutually exclusive options, 'Memory' (includes RAM) and 'Quiesce'.": [
136
+ ""
137
+ ],
138
+ "Loading Snapshots information ...": [
139
+ "Načítání informací o zachycených stavech…"
140
+ ],
141
+ "Snapshots": [
142
+ "Zachycené stavy"
143
+ ],
144
+ "Successfully removed Snapshot \\\"%s\\\" from host %s": [
145
+ ""
146
+ ],
147
+ "Successfully updated Snapshot \\\"%s\\\"": [
148
+ ""
149
+ ],
150
+ "Error occurred while updating Snapshot: %s": [
151
+ ""
152
+ ],
153
+ "Successfully rolled back Snapshot \\\"%s\\\" on host %s": [
154
+ ""
155
+ ],
156
+ "Memory": [
157
+ ""
158
+ ],
159
+ "Quiesce": [
160
+ ""
161
+ ],
162
+ "Snapshot successfully created!": [
163
+ ""
164
+ ],
165
+ "Name": [
166
+ "Název"
167
+ ],
168
+ "Create Snapshot for %s": [
169
+ ""
170
+ ],
171
+ "N/A": [
172
+ "Není"
173
+ ],
174
+ "Action": [
175
+ "Akce"
176
+ ],
177
+ "Failed to load snapshot list": [
178
+ ""
179
+ ],
180
+ "edit entry": [
181
+ ""
182
+ ],
183
+ "Rollback to \\\"%s\\\"?": [
184
+ ""
185
+ ],
186
+ "Rollback": [
187
+ ""
188
+ ],
189
+ "Delete Snapshot \\\"%s\\\"?": [
190
+ ""
191
+ ],
192
+ "Delete": [
193
+ "Smazat"
194
+ ],
195
+ "Foreman-plugin to manage snapshots in a virtual-hardware environments.": [
196
+ "Zásuvný modul do Foreman pro správu zachycených stavů v prostředí virtuálního hardware."
197
+ ],
198
+ "Include RAM": [
199
+ "Včetně oper. paměti"
200
+ ]
201
+ }
202
+ }
203
+ };
@@ -0,0 +1,201 @@
1
+ locales['foreman_snapshot_management'] = locales['foreman_snapshot_management'] || {}; locales['foreman_snapshot_management']['de'] = {
2
+ "domain": "foreman_snapshot_management",
3
+ "locale_data": {
4
+ "foreman_snapshot_management": {
5
+ "": {
6
+ "Project-Id-Version": "foreman_snapshot_management 2.0.2",
7
+ "Report-Msgid-Bugs-To": "",
8
+ "PO-Revision-Date": "2019-10-22 11:54+0000",
9
+ "Last-Translator": "Markus Bucher <bucher@atix.de>, 2021",
10
+ "Language-Team": "German (https://www.transifex.com/foreman/teams/114/de/)",
11
+ "MIME-Version": "1.0",
12
+ "Content-Type": "text/plain; charset=UTF-8",
13
+ "Content-Transfer-Encoding": "8bit",
14
+ "Language": "de",
15
+ "Plural-Forms": "nplurals=2; plural=(n != 1);",
16
+ "lang": "de",
17
+ "domain": "foreman_snapshot_management",
18
+ "plural_forms": "nplurals=2; plural=(n != 1);"
19
+ },
20
+ "List all snapshots": [
21
+ "Alle Snapshots auflisten"
22
+ ],
23
+ "Name of this snapshot": [
24
+ "Name dieses Snapshots"
25
+ ],
26
+ "Description of this snapshot": [
27
+ "Beschreibung dieses Snapshots"
28
+ ],
29
+ "Create a snapshot": [
30
+ "Einen Snapshot erstellen"
31
+ ],
32
+ "Whether to include the RAM state in the snapshot": [
33
+ "Ob auch der aktuelle Hauptspeicherstand im Snapshot gespeichert werden soll"
34
+ ],
35
+ "Whether to include the Quiesce state in the snapshot": [
36
+ ""
37
+ ],
38
+ "Update a snapshot": [
39
+ "Snapshot aktualisieren"
40
+ ],
41
+ "Delete a snapshot": [
42
+ "Snapshot löschen"
43
+ ],
44
+ "Revert Host to a snapshot": [
45
+ "Host auf einen Snapshot zurücksetzen"
46
+ ],
47
+ "Error occurred while creating Snapshot: %s": [
48
+ "Beim Erzeugen des Snaphosts ist ein Fehler aufgetreten: %s"
49
+ ],
50
+ "Error occurred while removing Snapshot: %s": [
51
+ "Beim Löschen des Snapshots ist ein Fehler aufgetreten: %s"
52
+ ],
53
+ "VM successfully rolled back.": [
54
+ "Die VM wurde erfolgreich zurückgesetzt."
55
+ ],
56
+ "Error occurred while rolling back VM: %s": [
57
+ "Beim Zurücksetzen der VM ist ein Fehler aufgetreten: %s"
58
+ ],
59
+ "Failed to update Snapshot: %s": [
60
+ "Das Aktualisieren des Snapshots ist fehlgeschlagen: %s"
61
+ ],
62
+ "Error occurred while creating Snapshot for:%s": [
63
+ "Beim Erzeugen des Snapshots ist ein Fehler aufgetreten: %s"
64
+ ],
65
+ "Created %{snapshots} for %{num} %{hosts}": [
66
+ "%{snapshots} für %{num} %{hosts} erstellt"
67
+ ],
68
+ "Snapshot": [
69
+ "Snapshot",
70
+ "Snapshots"
71
+ ],
72
+ "host": [
73
+ "Host",
74
+ "Hosts"
75
+ ],
76
+ "No hosts were found with that id, name or query filter": [
77
+ "Keine Hosts wurden mit dieser Kennung, Name oder Abfrage-Filter gefunden"
78
+ ],
79
+ "Something went wrong while selecting hosts - %s": [
80
+ "Fehler beim Auswählen der Hosts – %s"
81
+ ],
82
+ "No capable hosts found.": [
83
+ "Kein unterstützter Host gefunden."
84
+ ],
85
+ "Create Snapshot": [
86
+ "Snapshot erstellen"
87
+ ],
88
+ "Name must contain at least 2 characters starting with alphabet. Valid characters are A-Z a-z 0-9 _": [
89
+ "Der Name muss aus mindestens 2 Zeichen bestehen und mit einem Buchstaben beginnen. Gültige Zeichen: A-Z a-z 0-9 _"
90
+ ],
91
+ "Unable to create Proxmox Snapshot": [
92
+ "Proxmox Snapshot konnte nicht erstellt werden"
93
+ ],
94
+ "Unable to remove Proxmox Snapshot": [
95
+ "Proxmox Snapshot konnte nicht gelöscht werden"
96
+ ],
97
+ "Unable to revert Proxmox Snapshot": [
98
+ "Proxmox Snapshot konnte nicht wiederhergestellt werden"
99
+ ],
100
+ "Snapshot name cannot be changed": [
101
+ "Der Name des Snapshots kann nicht geändert werden"
102
+ ],
103
+ "Unable to update Proxmox Snapshot": [
104
+ "Proxmox Snapshot konnte nicht aktualisiert werden"
105
+ ],
106
+ "Unable to create VMWare Snapshot with Quiesce. Check Power and VMWare Tools status.": [
107
+ ""
108
+ ],
109
+ "Unable to create VMWare Snapshot. Cannot set both Memory and Quiesce options.": [
110
+ ""
111
+ ],
112
+ "Unable to create VMWare Snapshot": [
113
+ "VMWare Snapshot konnte nicht erstellt werden"
114
+ ],
115
+ "Unable to remove VMWare Snapshot": [
116
+ "VMWare Snapshot konnte nicht gelöscht werden"
117
+ ],
118
+ "Unable to revert VMWare Snapshot": [
119
+ "VMWare Snapshot konnte nicht wiederhergestellt werden"
120
+ ],
121
+ "Unable to update VMWare Snapshot": [
122
+ "VMWare Snapshot konnte nicht aktualisiert werden"
123
+ ],
124
+ "No capable hosts selected": [
125
+ "Keine unterstützten Hosts ausgewählt"
126
+ ],
127
+ "Description": [
128
+ "Beschreibung"
129
+ ],
130
+ "Snapshot Mode": [
131
+ ""
132
+ ],
133
+ "Select Snapshot Mode between mutually exclusive options, 'Memory' (includes RAM) and 'Quiesce'.": [
134
+ ""
135
+ ],
136
+ "Loading Snapshots information ...": [
137
+ "Lade Snapshot Informationen ..."
138
+ ],
139
+ "Snapshots": [
140
+ "Snapshots"
141
+ ],
142
+ "Successfully removed Snapshot \\\"%s\\\" from host %s": [
143
+ "Snapshot \\\"%s\\\" erfolgreich von Host %s entfernt."
144
+ ],
145
+ "Successfully updated Snapshot \\\"%s\\\"": [
146
+ "Snapshot \\\"%s\\\" erfolgreich aktualisiert."
147
+ ],
148
+ "Error occurred while updating Snapshot: %s": [
149
+ "Fehler beim Aktualisieren des Snapshots: %s"
150
+ ],
151
+ "Successfully rolled back Snapshot \\\"%s\\\" on host %s": [
152
+ "Snapshot \\\"%s\\\" erfolgreich auf Host %s zurückgesetzt."
153
+ ],
154
+ "Memory": [
155
+ ""
156
+ ],
157
+ "Quiesce": [
158
+ ""
159
+ ],
160
+ "Snapshot successfully created!": [
161
+ "Snapshot erfolgreich erzeugt!"
162
+ ],
163
+ "Name": [
164
+ "Name"
165
+ ],
166
+ "Create Snapshot for %s": [
167
+ "Snapshot anlegen für %s"
168
+ ],
169
+ "N/A": [
170
+ "N/A"
171
+ ],
172
+ "Action": [
173
+ "Aktion"
174
+ ],
175
+ "Failed to load snapshot list": [
176
+ "Fehler beim Laden der Snapshotliste"
177
+ ],
178
+ "edit entry": [
179
+ "Eintrag bearbeiten"
180
+ ],
181
+ "Rollback to \\\"%s\\\"?": [
182
+ "\\\"%s\\\" wirklich wiederherstellen?"
183
+ ],
184
+ "Rollback": [
185
+ "Wiederherstellen"
186
+ ],
187
+ "Delete Snapshot \\\"%s\\\"?": [
188
+ "\\\"%s\\\" wirklich löschen?"
189
+ ],
190
+ "Delete": [
191
+ "Löschen"
192
+ ],
193
+ "Foreman-plugin to manage snapshots in a virtual-hardware environments.": [
194
+ "Ein Foremanplugin, welches Snapshots in Umgebungen mit virtueller Hardware nutzbar macht."
195
+ ],
196
+ "Include RAM": [
197
+ "RAM einbeziehen"
198
+ ]
199
+ }
200
+ }
201
+ };
@@ -0,0 +1,201 @@
1
+ locales['foreman_snapshot_management'] = locales['foreman_snapshot_management'] || {}; locales['foreman_snapshot_management']['el'] = {
2
+ "domain": "foreman_snapshot_management",
3
+ "locale_data": {
4
+ "foreman_snapshot_management": {
5
+ "": {
6
+ "Project-Id-Version": "foreman_snapshot_management 2.0.2",
7
+ "Report-Msgid-Bugs-To": "",
8
+ "PO-Revision-Date": "2019-10-22 11:54+0000",
9
+ "Last-Translator": "Efstathios Iosifidis <iefstathios@gmail.com>, 2021",
10
+ "Language-Team": "Greek (https://www.transifex.com/foreman/teams/114/el/)",
11
+ "MIME-Version": "1.0",
12
+ "Content-Type": "text/plain; charset=UTF-8",
13
+ "Content-Transfer-Encoding": "8bit",
14
+ "Language": "el",
15
+ "Plural-Forms": "nplurals=2; plural=(n != 1);",
16
+ "lang": "el",
17
+ "domain": "foreman_snapshot_management",
18
+ "plural_forms": "nplurals=2; plural=(n != 1);"
19
+ },
20
+ "List all snapshots": [
21
+ "Λίστα όλων των στιγμιοτύπων"
22
+ ],
23
+ "Name of this snapshot": [
24
+ "Όνομα αυτού του στιγμιότυπου"
25
+ ],
26
+ "Description of this snapshot": [
27
+ "Περιγραφή αυτού του στιγμιότυπου"
28
+ ],
29
+ "Create a snapshot": [
30
+ "Δημιουργία στιγμιότυπου"
31
+ ],
32
+ "Whether to include the RAM state in the snapshot": [
33
+ "Εάν θα συμπεριληφθεί η κατάσταση RAM στο στιγμιότυπο"
34
+ ],
35
+ "Whether to include the Quiesce state in the snapshot": [
36
+ ""
37
+ ],
38
+ "Update a snapshot": [
39
+ "Ενημέρωση στιγμιότυπου"
40
+ ],
41
+ "Delete a snapshot": [
42
+ "Διαγραφή στιγμιότυπου"
43
+ ],
44
+ "Revert Host to a snapshot": [
45
+ ""
46
+ ],
47
+ "Error occurred while creating Snapshot: %s": [
48
+ "Σφάλμα κατά την δημιουργία στιγμιότυπου: %s"
49
+ ],
50
+ "Error occurred while removing Snapshot: %s": [
51
+ "Σφάλμα κατά την αφαίρεση στιγμιότυπου: %s"
52
+ ],
53
+ "VM successfully rolled back.": [
54
+ "Επιτυχημένη επαναφορά VM."
55
+ ],
56
+ "Error occurred while rolling back VM: %s": [
57
+ "Σφάλμα κατά την επαναφορά στιγμιότυπου: %s"
58
+ ],
59
+ "Failed to update Snapshot: %s": [
60
+ "Αποτυχημένη ενημέρωση στιγμιότυπου: %s"
61
+ ],
62
+ "Error occurred while creating Snapshot for:%s": [
63
+ "Σφάλμα κατά την δημιουργία στιγμιότυπου για: %s"
64
+ ],
65
+ "Created %{snapshots} for %{num} %{hosts}": [
66
+ "Δημιουργήθηκαν %{snapshots} για %{num} %{hosts}"
67
+ ],
68
+ "Snapshot": [
69
+ "Στιγμιότυπο",
70
+ "Στιγμιότυπα"
71
+ ],
72
+ "host": [
73
+ "",
74
+ ""
75
+ ],
76
+ "No hosts were found with that id, name or query filter": [
77
+ ""
78
+ ],
79
+ "Something went wrong while selecting hosts - %s": [
80
+ ""
81
+ ],
82
+ "No capable hosts found.": [
83
+ ""
84
+ ],
85
+ "Create Snapshot": [
86
+ "Διμουργία στιγμιότυπου"
87
+ ],
88
+ "Name must contain at least 2 characters starting with alphabet. Valid characters are A-Z a-z 0-9 _": [
89
+ ""
90
+ ],
91
+ "Unable to create Proxmox Snapshot": [
92
+ ""
93
+ ],
94
+ "Unable to remove Proxmox Snapshot": [
95
+ ""
96
+ ],
97
+ "Unable to revert Proxmox Snapshot": [
98
+ ""
99
+ ],
100
+ "Snapshot name cannot be changed": [
101
+ ""
102
+ ],
103
+ "Unable to update Proxmox Snapshot": [
104
+ ""
105
+ ],
106
+ "Unable to create VMWare Snapshot with Quiesce. Check Power and VMWare Tools status.": [
107
+ ""
108
+ ],
109
+ "Unable to create VMWare Snapshot. Cannot set both Memory and Quiesce options.": [
110
+ ""
111
+ ],
112
+ "Unable to create VMWare Snapshot": [
113
+ "Αδυναμία δημιουργίας στιγμιότυπου VMWare"
114
+ ],
115
+ "Unable to remove VMWare Snapshot": [
116
+ "Αδυναμία αφαίρεσης στιγμιότυπου VMWare"
117
+ ],
118
+ "Unable to revert VMWare Snapshot": [
119
+ "Αδυναμία αντιστροφής στιγμιότυπου VMWare"
120
+ ],
121
+ "Unable to update VMWare Snapshot": [
122
+ "Αδυναμία ενημέρωσης στιγμιότυπου VMWare"
123
+ ],
124
+ "No capable hosts selected": [
125
+ ""
126
+ ],
127
+ "Description": [
128
+ "Περιγραφή"
129
+ ],
130
+ "Snapshot Mode": [
131
+ ""
132
+ ],
133
+ "Select Snapshot Mode between mutually exclusive options, 'Memory' (includes RAM) and 'Quiesce'.": [
134
+ ""
135
+ ],
136
+ "Loading Snapshots information ...": [
137
+ "Γίνεται φόρτωση πληροφοριών στιγμιοτύπων ..."
138
+ ],
139
+ "Snapshots": [
140
+ "Στιγμιότυπα"
141
+ ],
142
+ "Successfully removed Snapshot \\\"%s\\\" from host %s": [
143
+ ""
144
+ ],
145
+ "Successfully updated Snapshot \\\"%s\\\"": [
146
+ ""
147
+ ],
148
+ "Error occurred while updating Snapshot: %s": [
149
+ ""
150
+ ],
151
+ "Successfully rolled back Snapshot \\\"%s\\\" on host %s": [
152
+ ""
153
+ ],
154
+ "Memory": [
155
+ ""
156
+ ],
157
+ "Quiesce": [
158
+ ""
159
+ ],
160
+ "Snapshot successfully created!": [
161
+ ""
162
+ ],
163
+ "Name": [
164
+ "Όνομα"
165
+ ],
166
+ "Create Snapshot for %s": [
167
+ ""
168
+ ],
169
+ "N/A": [
170
+ "Δ/Υ"
171
+ ],
172
+ "Action": [
173
+ "Ενέργεια"
174
+ ],
175
+ "Failed to load snapshot list": [
176
+ ""
177
+ ],
178
+ "edit entry": [
179
+ ""
180
+ ],
181
+ "Rollback to \\\"%s\\\"?": [
182
+ ""
183
+ ],
184
+ "Rollback": [
185
+ "Επαναφορά"
186
+ ],
187
+ "Delete Snapshot \\\"%s\\\"?": [
188
+ ""
189
+ ],
190
+ "Delete": [
191
+ "Διαγραφή"
192
+ ],
193
+ "Foreman-plugin to manage snapshots in a virtual-hardware environments.": [
194
+ ""
195
+ ],
196
+ "Include RAM": [
197
+ "Συμπερίληψη RAM"
198
+ ]
199
+ }
200
+ }
201
+ };