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.
- 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 +5 -4
- data/app/controllers/foreman_snapshot_management/snapshots_controller.rb +6 -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 +2 -1
- data/app/models/foreman_snapshot_management/snapshot.rb +11 -10
- 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 +7 -8
- data/locale/cs_CZ/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/cs_CZ/foreman_snapshot_management.po +12 -4
- data/locale/de/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/de/foreman_snapshot_management.po +12 -4
- data/locale/el/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/el/foreman_snapshot_management.po +12 -4
- data/locale/fr/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/fr/foreman_snapshot_management.po +12 -4
- data/locale/ja/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/ja/foreman_snapshot_management.po +12 -4
- data/locale/ka/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/ka/foreman_snapshot_management.po +12 -4
- data/locale/zh_CN/LC_MESSAGES/foreman_snapshot_management.mo +0 -0
- data/locale/zh_CN/foreman_snapshot_management.po +12 -4
- data/package.json +1 -1
- data/test/controllers/api/v2/snapshots_test.rb +1 -1
- data/test/controllers/foreman_snapshot_management/snapshots_controller_test.rb +1 -1
- data/webpack/components/SnapshotManagementCard/SnapshotManagementCard.js +12 -9
- data/webpack/components/SnapshotManagementCard/__tests__/SnapshotManagementCard.test.js +1 -0
- data/webpack/components/SnapshotManagementCard/__tests__/__snapshots__/SnapshotManagementCard.test.js.snap +1 -16
- metadata +16 -8
- data/app/helpers/concerns/foreman_snapshot_management/hosts_helper_extension.rb +0 -9
data/app/assets/javascripts/foreman_snapshot_management/locale/en/foreman_snapshot_management.js
ADDED
@@ -0,0 +1,198 @@
|
|
1
|
+
locales['foreman_snapshot_management'] = locales['foreman_snapshot_management'] || {}; locales['foreman_snapshot_management']['en'] = {
|
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": "2020-03-02 10:27+0000",
|
9
|
+
"Last-Translator": "FULL NAME <EMAIL@ADDRESS>",
|
10
|
+
"Language-Team": "English",
|
11
|
+
"Language": "en",
|
12
|
+
"MIME-Version": "1.0",
|
13
|
+
"Content-Type": "text/plain; charset=UTF-8",
|
14
|
+
"Content-Transfer-Encoding": "8bit",
|
15
|
+
"Plural-Forms": "nplurals=2; plural=n != 1;",
|
16
|
+
"lang": "en",
|
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
|
+
""
|
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
|
+
""
|
49
|
+
],
|
50
|
+
"Error occurred while removing Snapshot: %s": [
|
51
|
+
""
|
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
|
+
""
|
61
|
+
],
|
62
|
+
"Error occurred while creating Snapshot for:%s": [
|
63
|
+
""
|
64
|
+
],
|
65
|
+
"Created %{snapshots} for %{num} %{hosts}": [
|
66
|
+
""
|
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
|
+
""
|
114
|
+
],
|
115
|
+
"Unable to remove VMWare Snapshot": [
|
116
|
+
""
|
117
|
+
],
|
118
|
+
"Unable to revert VMWare Snapshot": [
|
119
|
+
""
|
120
|
+
],
|
121
|
+
"Unable to update VMWare Snapshot": [
|
122
|
+
""
|
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
|
+
}
|
197
|
+
}
|
198
|
+
};
|
data/app/assets/javascripts/foreman_snapshot_management/locale/fr/foreman_snapshot_management.js
ADDED
@@ -0,0 +1,203 @@
|
|
1
|
+
locales['foreman_snapshot_management'] = locales['foreman_snapshot_management'] || {}; locales['foreman_snapshot_management']['fr'] = {
|
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": "Amit Upadhye <aupadhye@redhat.com>, 2022",
|
10
|
+
"Language-Team": "French (https://www.transifex.com/foreman/teams/114/fr/)",
|
11
|
+
"MIME-Version": "1.0",
|
12
|
+
"Content-Type": "text/plain; charset=UTF-8",
|
13
|
+
"Content-Transfer-Encoding": "8bit",
|
14
|
+
"Language": "fr",
|
15
|
+
"Plural-Forms": "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;",
|
16
|
+
"lang": "fr",
|
17
|
+
"domain": "foreman_snapshot_management",
|
18
|
+
"plural_forms": "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
19
|
+
},
|
20
|
+
"List all snapshots": [
|
21
|
+
"Liste de tous les instantanés"
|
22
|
+
],
|
23
|
+
"Name of this snapshot": [
|
24
|
+
"Nom de cet instantané"
|
25
|
+
],
|
26
|
+
"Description of this snapshot": [
|
27
|
+
"Description de cet instantané"
|
28
|
+
],
|
29
|
+
"Create a snapshot": [
|
30
|
+
"Créer un instantané"
|
31
|
+
],
|
32
|
+
"Whether to include the RAM state in the snapshot": [
|
33
|
+
"Inclure ou non l'état de la RAM dans l'instantané"
|
34
|
+
],
|
35
|
+
"Whether to include the Quiesce state in the snapshot": [
|
36
|
+
"Si l'état de repos doit être inclus dans l'instantané."
|
37
|
+
],
|
38
|
+
"Update a snapshot": [
|
39
|
+
"Mise à jour d'un instantané"
|
40
|
+
],
|
41
|
+
"Delete a snapshot": [
|
42
|
+
"Supprimer un instantané"
|
43
|
+
],
|
44
|
+
"Revert Host to a snapshot": [
|
45
|
+
"Revenir à un instantané de l'hôte"
|
46
|
+
],
|
47
|
+
"Error occurred while creating Snapshot: %s": [
|
48
|
+
"Une erreur s'est produite lors de la création de l’instantané : %s"
|
49
|
+
],
|
50
|
+
"Error occurred while removing Snapshot: %s": [
|
51
|
+
"Une erreur s'est produite lors de la suppression de l’instantané : %s"
|
52
|
+
],
|
53
|
+
"VM successfully rolled back.": [
|
54
|
+
"La VM a été reprise avec succès."
|
55
|
+
],
|
56
|
+
"Error occurred while rolling back VM: %s": [
|
57
|
+
"Une erreur s'est produite lors de la reprise de la VM : %s"
|
58
|
+
],
|
59
|
+
"Failed to update Snapshot: %s": [
|
60
|
+
"Échec de la mise à jour de l’instantané : %s"
|
61
|
+
],
|
62
|
+
"Error occurred while creating Snapshot for:%s": [
|
63
|
+
"Une erreur s'est produite lors de la création de l’instantané : %s"
|
64
|
+
],
|
65
|
+
"Created %{snapshots} for %{num} %{hosts}": [
|
66
|
+
"Créé %{snapshots} pour %{num} %{hosts}"
|
67
|
+
],
|
68
|
+
"Snapshot": [
|
69
|
+
"Instantané",
|
70
|
+
"Instantanés",
|
71
|
+
"Instantanés"
|
72
|
+
],
|
73
|
+
"host": [
|
74
|
+
"hôte",
|
75
|
+
"hôtes",
|
76
|
+
"hôtes"
|
77
|
+
],
|
78
|
+
"No hosts were found with that id, name or query filter": [
|
79
|
+
"Aucun hôte trouvé avec cet ID, ce nom ou filtre de requête"
|
80
|
+
],
|
81
|
+
"Something went wrong while selecting hosts - %s": [
|
82
|
+
"Une erreur s'est produite lors de la sélection des hôtes - %s"
|
83
|
+
],
|
84
|
+
"No capable hosts found.": [
|
85
|
+
"Aucun hôte capable n'a été trouvé."
|
86
|
+
],
|
87
|
+
"Create Snapshot": [
|
88
|
+
"Créer un instantané"
|
89
|
+
],
|
90
|
+
"Name must contain at least 2 characters starting with alphabet. Valid characters are A-Z a-z 0-9 _": [
|
91
|
+
"Le nom doit contenir au moins 2 caractères commençant par l'alphabet. Les caractères valides sont A-Z a-z 0-9 _"
|
92
|
+
],
|
93
|
+
"Unable to create Proxmox Snapshot": [
|
94
|
+
"Impossible de créer un instantané de Proxmox"
|
95
|
+
],
|
96
|
+
"Unable to remove Proxmox Snapshot": [
|
97
|
+
"Impossible de supprimer l’instantané de Proxmox"
|
98
|
+
],
|
99
|
+
"Unable to revert Proxmox Snapshot": [
|
100
|
+
"Impossible de rétablir l’instantané de Proxmox"
|
101
|
+
],
|
102
|
+
"Snapshot name cannot be changed": [
|
103
|
+
"Le nom de l’instantané ne peut pas être modifié"
|
104
|
+
],
|
105
|
+
"Unable to update Proxmox Snapshot": [
|
106
|
+
"Impossible de mettre à jour l’instantané de Proxmox"
|
107
|
+
],
|
108
|
+
"Unable to create VMWare Snapshot with Quiesce. Check Power and VMWare Tools status.": [
|
109
|
+
"Impossible de créer un instantané VMWare avec Quiesce. Vérifiez l'état de l'alimentation et des outils VMWare."
|
110
|
+
],
|
111
|
+
"Unable to create VMWare Snapshot. Cannot set both Memory and Quiesce options.": [
|
112
|
+
"Impossible de créer un instantané VMWare. Impossible de définir les options Mémoire et Quiesce."
|
113
|
+
],
|
114
|
+
"Unable to create VMWare Snapshot": [
|
115
|
+
"Impossible de créer un instantané VMWare"
|
116
|
+
],
|
117
|
+
"Unable to remove VMWare Snapshot": [
|
118
|
+
"Impossible de supprimer l’instantané VMWare"
|
119
|
+
],
|
120
|
+
"Unable to revert VMWare Snapshot": [
|
121
|
+
"Impossible de rétablir l’instantané VMWare"
|
122
|
+
],
|
123
|
+
"Unable to update VMWare Snapshot": [
|
124
|
+
"Impossible de mettre à jour l’instantané VMWare"
|
125
|
+
],
|
126
|
+
"No capable hosts selected": [
|
127
|
+
"Aucun hôte capable sélectionné"
|
128
|
+
],
|
129
|
+
"Description": [
|
130
|
+
"Description"
|
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
|
+
"Chargement des informations sur les instantanés ..."
|
140
|
+
],
|
141
|
+
"Snapshots": [
|
142
|
+
"Instantanés"
|
143
|
+
],
|
144
|
+
"Successfully removed Snapshot \\\"%s\\\" from host %s": [
|
145
|
+
"L’instantané \\\"%s\\\" a été supprimé de l'hôte. %s"
|
146
|
+
],
|
147
|
+
"Successfully updated Snapshot \\\"%s\\\"": [
|
148
|
+
"La mise à jour de l’instantané \\\"%s\\\" a réussi."
|
149
|
+
],
|
150
|
+
"Error occurred while updating Snapshot: %s": [
|
151
|
+
"Une erreur s'est produite lors de la mise à jour de l’instantané : %s"
|
152
|
+
],
|
153
|
+
"Successfully rolled back Snapshot \\\"%s\\\" on host %s": [
|
154
|
+
"L’instantané \\\"%s\\\" sur l'hôte %s a été retiré avec succès. "
|
155
|
+
],
|
156
|
+
"Memory": [
|
157
|
+
""
|
158
|
+
],
|
159
|
+
"Quiesce": [
|
160
|
+
""
|
161
|
+
],
|
162
|
+
"Snapshot successfully created!": [
|
163
|
+
"L’instantané a été créé avec succès."
|
164
|
+
],
|
165
|
+
"Name": [
|
166
|
+
"Nom"
|
167
|
+
],
|
168
|
+
"Create Snapshot for %s": [
|
169
|
+
"Créer un instantané pour %s"
|
170
|
+
],
|
171
|
+
"N/A": [
|
172
|
+
"Sans objet"
|
173
|
+
],
|
174
|
+
"Action": [
|
175
|
+
"Action"
|
176
|
+
],
|
177
|
+
"Failed to load snapshot list": [
|
178
|
+
"Échec du chargement de la liste des instantanés"
|
179
|
+
],
|
180
|
+
"edit entry": [
|
181
|
+
"Modifier la saisie"
|
182
|
+
],
|
183
|
+
"Rollback to \\\"%s\\\"?": [
|
184
|
+
"Retour à \\\"%s\\\" ?"
|
185
|
+
],
|
186
|
+
"Rollback": [
|
187
|
+
"Rollback"
|
188
|
+
],
|
189
|
+
"Delete Snapshot \\\"%s\\\"?": [
|
190
|
+
"Supprimer l'instantané \\\"%s\\\" ?"
|
191
|
+
],
|
192
|
+
"Delete": [
|
193
|
+
"Supprimer"
|
194
|
+
],
|
195
|
+
"Foreman-plugin to manage snapshots in a virtual-hardware environments.": [
|
196
|
+
"Plugin Foreman pour gérer les instantanés dans un environnement de matériel virtuel."
|
197
|
+
],
|
198
|
+
"Include RAM": [
|
199
|
+
"Inclure la RAM"
|
200
|
+
]
|
201
|
+
}
|
202
|
+
}
|
203
|
+
};
|
data/app/assets/javascripts/foreman_snapshot_management/locale/ja/foreman_snapshot_management.js
ADDED
@@ -0,0 +1,199 @@
|
|
1
|
+
locales['foreman_snapshot_management'] = locales['foreman_snapshot_management'] || {}; locales['foreman_snapshot_management']['ja'] = {
|
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": "Amit Upadhye <aupadhye@redhat.com>, 2022",
|
10
|
+
"Language-Team": "Japanese (https://www.transifex.com/foreman/teams/114/ja/)",
|
11
|
+
"MIME-Version": "1.0",
|
12
|
+
"Content-Type": "text/plain; charset=UTF-8",
|
13
|
+
"Content-Transfer-Encoding": "8bit",
|
14
|
+
"Language": "ja",
|
15
|
+
"Plural-Forms": "nplurals=1; plural=0;",
|
16
|
+
"lang": "ja",
|
17
|
+
"domain": "foreman_snapshot_management",
|
18
|
+
"plural_forms": "nplurals=1; plural=0;"
|
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
|
+
"スナップショットに Quiesce 状態を含めるかどうか。"
|
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
|
+
"%{num} 個の %{hosts} に対して %{snapshots} を作成済み"
|
67
|
+
],
|
68
|
+
"Snapshot": [
|
69
|
+
"スナップショット"
|
70
|
+
],
|
71
|
+
"host": [
|
72
|
+
"ホスト"
|
73
|
+
],
|
74
|
+
"No hosts were found with that id, name or query filter": [
|
75
|
+
"その ID、名前またはクエリーフィルターを使ってホストを見つけることができませんでした"
|
76
|
+
],
|
77
|
+
"Something went wrong while selecting hosts - %s": [
|
78
|
+
"ホストの選択中に問題が発生しました: %s"
|
79
|
+
],
|
80
|
+
"No capable hosts found.": [
|
81
|
+
"機能するホストが見つかりませんでした。"
|
82
|
+
],
|
83
|
+
"Create Snapshot": [
|
84
|
+
"スナップショットの作成"
|
85
|
+
],
|
86
|
+
"Name must contain at least 2 characters starting with alphabet. Valid characters are A-Z a-z 0-9 _": [
|
87
|
+
"名前には、アルファベットが少なくとも 2 文字含まれている必要があります。使用できる文字は A-Z a-z 0-9 _ です。"
|
88
|
+
],
|
89
|
+
"Unable to create Proxmox Snapshot": [
|
90
|
+
"Proxmox スナップショットを作成できません"
|
91
|
+
],
|
92
|
+
"Unable to remove Proxmox Snapshot": [
|
93
|
+
"Proxmox スナップショットを削除できません"
|
94
|
+
],
|
95
|
+
"Unable to revert Proxmox Snapshot": [
|
96
|
+
"Proxmox スナップショットを元に戻すことができません"
|
97
|
+
],
|
98
|
+
"Snapshot name cannot be changed": [
|
99
|
+
"スナップショット名は変更できません"
|
100
|
+
],
|
101
|
+
"Unable to update Proxmox Snapshot": [
|
102
|
+
"Proxmox スナップショットを更新できません"
|
103
|
+
],
|
104
|
+
"Unable to create VMWare Snapshot with Quiesce. Check Power and VMWare Tools status.": [
|
105
|
+
"Quiesce で VMWare スナップショットを作成できません。Power and VMWare Tools のステータスを確認してください。"
|
106
|
+
],
|
107
|
+
"Unable to create VMWare Snapshot. Cannot set both Memory and Quiesce options.": [
|
108
|
+
"VMWare スナップショットの作成ができません。Memory オプションと Quiesce オプションの両方を設定できません。"
|
109
|
+
],
|
110
|
+
"Unable to create VMWare Snapshot": [
|
111
|
+
"VMWare スナップショットを作成できません"
|
112
|
+
],
|
113
|
+
"Unable to remove VMWare Snapshot": [
|
114
|
+
"VMWare スナップショットを削除できません"
|
115
|
+
],
|
116
|
+
"Unable to revert VMWare Snapshot": [
|
117
|
+
"VMWare スナップショットを元に戻すことができません"
|
118
|
+
],
|
119
|
+
"Unable to update VMWare Snapshot": [
|
120
|
+
"VMWare スナップショットを更新できません"
|
121
|
+
],
|
122
|
+
"No capable hosts selected": [
|
123
|
+
"有効にできるホストが選択されていません"
|
124
|
+
],
|
125
|
+
"Description": [
|
126
|
+
"説明"
|
127
|
+
],
|
128
|
+
"Snapshot Mode": [
|
129
|
+
""
|
130
|
+
],
|
131
|
+
"Select Snapshot Mode between mutually exclusive options, 'Memory' (includes RAM) and 'Quiesce'.": [
|
132
|
+
""
|
133
|
+
],
|
134
|
+
"Loading Snapshots information ...": [
|
135
|
+
"スナップショット情報の読み込み中 ..."
|
136
|
+
],
|
137
|
+
"Snapshots": [
|
138
|
+
"スナップショット"
|
139
|
+
],
|
140
|
+
"Successfully removed Snapshot \\\"%s\\\" from host %s": [
|
141
|
+
"ホスト %s からスナップショット \\\"%s\\\" を正常に削除しました"
|
142
|
+
],
|
143
|
+
"Successfully updated Snapshot \\\"%s\\\"": [
|
144
|
+
"スナップショット \\\"%s\\\" を正常に更新しました。"
|
145
|
+
],
|
146
|
+
"Error occurred while updating Snapshot: %s": [
|
147
|
+
"スナップショットの更新中にエラーが発生しました: %s"
|
148
|
+
],
|
149
|
+
"Successfully rolled back Snapshot \\\"%s\\\" on host %s": [
|
150
|
+
"ホスト %s でスナップショット \\\"%s\\\" が正常にロールバックされました"
|
151
|
+
],
|
152
|
+
"Memory": [
|
153
|
+
""
|
154
|
+
],
|
155
|
+
"Quiesce": [
|
156
|
+
""
|
157
|
+
],
|
158
|
+
"Snapshot successfully created!": [
|
159
|
+
"スナップショットが正常に作成されました!"
|
160
|
+
],
|
161
|
+
"Name": [
|
162
|
+
"名前"
|
163
|
+
],
|
164
|
+
"Create Snapshot for %s": [
|
165
|
+
"%s のスナップショットの作成"
|
166
|
+
],
|
167
|
+
"N/A": [
|
168
|
+
"N/A"
|
169
|
+
],
|
170
|
+
"Action": [
|
171
|
+
"アクション"
|
172
|
+
],
|
173
|
+
"Failed to load snapshot list": [
|
174
|
+
"スナップショットリストの読み込みに失敗しました"
|
175
|
+
],
|
176
|
+
"edit entry": [
|
177
|
+
"エントリーの編集"
|
178
|
+
],
|
179
|
+
"Rollback to \\\"%s\\\"?": [
|
180
|
+
"\\\"%s\\\" へロールバックしますか ?"
|
181
|
+
],
|
182
|
+
"Rollback": [
|
183
|
+
"ロールバック"
|
184
|
+
],
|
185
|
+
"Delete Snapshot \\\"%s\\\"?": [
|
186
|
+
"スナップショット \\\"%s\\\" を削除しますか ?"
|
187
|
+
],
|
188
|
+
"Delete": [
|
189
|
+
"削除"
|
190
|
+
],
|
191
|
+
"Foreman-plugin to manage snapshots in a virtual-hardware environments.": [
|
192
|
+
"仮想ハードウェア環境でスナップショットを管理する Foreman-plugin。"
|
193
|
+
],
|
194
|
+
"Include RAM": [
|
195
|
+
"メモリーの追加"
|
196
|
+
]
|
197
|
+
}
|
198
|
+
}
|
199
|
+
};
|