hammer_cli_foreman_kubevirt 0.2.0 → 0.3.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/lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb +7 -5
- data/lib/hammer_cli_foreman_kubevirt/version.rb +3 -1
- data/lib/hammer_cli_foreman_kubevirt.rb +2 -0
- data/locale/de/LC_MESSAGES/hammer_cli_foreman_kubevirt.mo +0 -0
- data/locale/de/hammer_cli_foreman_kubevirt.po +4 -4
- data/locale/en/LC_MESSAGES/hammer_cli_foreman_kubevirt.mo +0 -0
- data/locale/en/hammer_cli_foreman_kubevirt.po +3 -3
- data/locale/en_GB/LC_MESSAGES/hammer_cli_foreman_kubevirt.mo +0 -0
- data/locale/en_GB/hammer_cli_foreman_kubevirt.po +3 -3
- data/locale/es/LC_MESSAGES/hammer_cli_foreman_kubevirt.mo +0 -0
- data/locale/es/hammer_cli_foreman_kubevirt.po +3 -3
- data/locale/fr/LC_MESSAGES/hammer_cli_foreman_kubevirt.mo +0 -0
- data/locale/fr/hammer_cli_foreman_kubevirt.po +3 -3
- data/locale/hammer_cli_foreman_kubevirt.pot +15 -15
- data/locale/ja/LC_MESSAGES/hammer_cli_foreman_kubevirt.mo +0 -0
- data/locale/ja/hammer_cli_foreman_kubevirt.po +3 -3
- data/locale/ka/LC_MESSAGES/hammer_cli_foreman_kubevirt.mo +0 -0
- data/locale/ka/hammer_cli_foreman_kubevirt.po +3 -3
- data/locale/ko/LC_MESSAGES/hammer_cli_foreman_kubevirt.mo +0 -0
- data/locale/ko/hammer_cli_foreman_kubevirt.po +61 -0
- data/locale/pt_BR/LC_MESSAGES/hammer_cli_foreman_kubevirt.mo +0 -0
- data/locale/pt_BR/hammer_cli_foreman_kubevirt.po +5 -5
- data/locale/zh_CN/LC_MESSAGES/hammer_cli_foreman_kubevirt.mo +0 -0
- data/locale/zh_CN/hammer_cli_foreman_kubevirt.po +7 -5
- metadata +61 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 86e69362083766812e27ec9519bb4a29576e59cc053aa33dabc6520e3e368c9a
|
|
4
|
+
data.tar.gz: a302c78a7d6af5598bdd7339e105bfbb1f0b076f99e985db1704c280fd002e96
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ecd831a4828811f9df629ab2834fcde9675fa0effd31916b0e23bed8280daf2e8147416755eb3b43ef21dfc6d632057be1abf72d827cf008204a861c09ac2e1
|
|
7
|
+
data.tar.gz: 7447a2d7fc87d580280d6da5c8cf7e628b2ef8d90bc1dbf75f3a4702aabbed4ca1d46ce12e585069ba598919bf0d2e4c6f6d106abfc248c91804059ceb7f1989
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
require 'hammer_cli_foreman/compute_resource/base'
|
|
2
4
|
|
|
3
5
|
module HammerCLIForemanKubevirt
|
|
@@ -10,20 +12,20 @@ module HammerCLIForemanKubevirt
|
|
|
10
12
|
def compute_attributes
|
|
11
13
|
[
|
|
12
14
|
['cpu_cores', _('number of cores, Integer value')],
|
|
13
|
-
['memory', _('Amount of memory, integer value in bytes')]
|
|
15
|
+
['memory', _('Amount of memory, integer value in bytes')],
|
|
14
16
|
]
|
|
15
17
|
end
|
|
16
18
|
|
|
17
19
|
def host_attributes
|
|
18
20
|
[
|
|
19
|
-
['start', _('Boolean (expressed as 0 or 1), whether to start the machine or not')]
|
|
21
|
+
['start', _('Boolean (expressed as 0 or 1), whether to start the machine or not')],
|
|
20
22
|
]
|
|
21
23
|
end
|
|
22
24
|
|
|
23
25
|
def interface_attributes
|
|
24
26
|
[
|
|
25
27
|
['compute_cni_provider', _('Container Network Interface Provider name')],
|
|
26
|
-
['compute_network', _('The network to connect the vm to')]
|
|
28
|
+
['compute_network', _('The network to connect the vm to')],
|
|
27
29
|
]
|
|
28
30
|
end
|
|
29
31
|
|
|
@@ -31,7 +33,7 @@ module HammerCLIForemanKubevirt
|
|
|
31
33
|
[
|
|
32
34
|
['capacity', _('Volume size in GB, integer value')],
|
|
33
35
|
['storage_class', _('Name of the storage class')],
|
|
34
|
-
['bootable', _('Boolean, only one volume can be bootable (overrides network interface boot)')]
|
|
36
|
+
['bootable', _('Boolean, only one volume can be bootable (overrides network interface boot)')],
|
|
35
37
|
]
|
|
36
38
|
end
|
|
37
39
|
|
|
@@ -39,7 +41,7 @@ module HammerCLIForemanKubevirt
|
|
|
39
41
|
[
|
|
40
42
|
Fields::Field.new(label: _('hostname'), path: [:hostname]),
|
|
41
43
|
Fields::Field.new(label: _('api_port'), path: [:api_port]),
|
|
42
|
-
Fields::Field.new(label: _('namespace'), path: [:namespace])
|
|
44
|
+
Fields::Field.new(label: _('namespace'), path: [:namespace]),
|
|
43
45
|
]
|
|
44
46
|
end
|
|
45
47
|
|
|
Binary file
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
-
# This file is distributed under the same license as the
|
|
3
|
+
# This file is distributed under the same license as the hammer_cli_foreman_kubevirt package.
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
5
|
#
|
|
6
6
|
# Translators:
|
|
7
7
|
# Ettore Atalan <atalanttore@googlemail.com>, 2020
|
|
8
|
-
#
|
|
8
|
+
# Alexander Stoll <Alexander.Stoll@netways.de>, 2020
|
|
9
9
|
# pdolinic, 2021
|
|
10
10
|
#
|
|
11
11
|
#, fuzzy
|
|
12
12
|
msgid ""
|
|
13
13
|
msgstr ""
|
|
14
|
-
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.
|
|
14
|
+
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.2.0\n"
|
|
15
15
|
"Report-Msgid-Bugs-To: \n"
|
|
16
|
-
"POT-Creation-Date:
|
|
16
|
+
"POT-Creation-Date: 2024-11-11 19:27+0100\n"
|
|
17
17
|
"PO-Revision-Date: 2020-05-26 08:08+0000\n"
|
|
18
18
|
"Last-Translator: pdolinic, 2021\n"
|
|
19
19
|
"Language-Team: German (https://app.transifex.com/foreman/teams/114/de/)\n"
|
|
Binary file
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
#
|
|
6
6
|
msgid ""
|
|
7
7
|
msgstr ""
|
|
8
|
-
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.
|
|
8
|
+
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.2.0\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
|
10
|
-
"POT-Creation-Date:
|
|
11
|
-
"PO-Revision-Date:
|
|
10
|
+
"POT-Creation-Date: 2024-11-11 19:27+0100\n"
|
|
11
|
+
"PO-Revision-Date: 2024-11-11 19:27+0100\n"
|
|
12
12
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
13
13
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
14
14
|
"Language: \n"
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
-
# This file is distributed under the same license as the
|
|
3
|
+
# This file is distributed under the same license as the hammer_cli_foreman_kubevirt package.
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
5
|
#
|
|
6
6
|
# Translators:
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
#, fuzzy
|
|
10
10
|
msgid ""
|
|
11
11
|
msgstr ""
|
|
12
|
-
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.
|
|
12
|
+
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.2.0\n"
|
|
13
13
|
"Report-Msgid-Bugs-To: \n"
|
|
14
|
-
"POT-Creation-Date:
|
|
14
|
+
"POT-Creation-Date: 2024-11-11 19:27+0100\n"
|
|
15
15
|
"PO-Revision-Date: 2020-05-26 08:08+0000\n"
|
|
16
16
|
"Last-Translator: Andi Chandler <andi@gowling.com>, 2023\n"
|
|
17
17
|
"Language-Team: English (United Kingdom) (https://app.transifex.com/foreman/"
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
-
# This file is distributed under the same license as the
|
|
3
|
+
# This file is distributed under the same license as the hammer_cli_foreman_kubevirt package.
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
5
|
#
|
|
6
6
|
# Translators:
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
#, fuzzy
|
|
11
11
|
msgid ""
|
|
12
12
|
msgstr ""
|
|
13
|
-
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.
|
|
13
|
+
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.2.0\n"
|
|
14
14
|
"Report-Msgid-Bugs-To: \n"
|
|
15
|
-
"POT-Creation-Date:
|
|
15
|
+
"POT-Creation-Date: 2024-11-11 19:27+0100\n"
|
|
16
16
|
"PO-Revision-Date: 2020-05-26 08:08+0000\n"
|
|
17
17
|
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2022\n"
|
|
18
18
|
"Language-Team: Spanish (https://app.transifex.com/foreman/teams/114/es/)\n"
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
-
# This file is distributed under the same license as the
|
|
3
|
+
# This file is distributed under the same license as the hammer_cli_foreman_kubevirt package.
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
5
|
#
|
|
6
6
|
# Translators:
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
#, fuzzy
|
|
11
11
|
msgid ""
|
|
12
12
|
msgstr ""
|
|
13
|
-
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.
|
|
13
|
+
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.2.0\n"
|
|
14
14
|
"Report-Msgid-Bugs-To: \n"
|
|
15
|
-
"POT-Creation-Date:
|
|
15
|
+
"POT-Creation-Date: 2024-11-11 19:27+0100\n"
|
|
16
16
|
"PO-Revision-Date: 2020-05-26 08:08+0000\n"
|
|
17
17
|
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2022\n"
|
|
18
18
|
"Language-Team: French (https://app.transifex.com/foreman/teams/114/fr/)\n"
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
#, fuzzy
|
|
7
7
|
msgid ""
|
|
8
8
|
msgstr ""
|
|
9
|
-
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.
|
|
9
|
+
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.2.0\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date:
|
|
12
|
-
"PO-Revision-Date:
|
|
11
|
+
"POT-Creation-Date: 2024-11-11 19:27+0100\n"
|
|
12
|
+
"PO-Revision-Date: 2024-11-11 19:27+0100\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
15
15
|
"Language: \n"
|
|
@@ -18,50 +18,50 @@ msgstr ""
|
|
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
|
19
19
|
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
|
20
20
|
|
|
21
|
-
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:
|
|
21
|
+
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:9
|
|
22
22
|
msgid "KubeVirt"
|
|
23
23
|
msgstr ""
|
|
24
24
|
|
|
25
|
-
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:
|
|
25
|
+
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:14
|
|
26
26
|
msgid "number of cores, Integer value"
|
|
27
27
|
msgstr ""
|
|
28
28
|
|
|
29
|
-
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:
|
|
29
|
+
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:15
|
|
30
30
|
msgid "Amount of memory, integer value in bytes"
|
|
31
31
|
msgstr ""
|
|
32
32
|
|
|
33
|
-
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:
|
|
33
|
+
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:21
|
|
34
34
|
msgid "Boolean (expressed as 0 or 1), whether to start the machine or not"
|
|
35
35
|
msgstr ""
|
|
36
36
|
|
|
37
|
-
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:
|
|
37
|
+
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:27
|
|
38
38
|
msgid "Container Network Interface Provider name"
|
|
39
39
|
msgstr ""
|
|
40
40
|
|
|
41
|
-
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:
|
|
41
|
+
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:28
|
|
42
42
|
msgid "The network to connect the vm to"
|
|
43
43
|
msgstr ""
|
|
44
44
|
|
|
45
|
-
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:
|
|
45
|
+
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:34
|
|
46
46
|
msgid "Volume size in GB, integer value"
|
|
47
47
|
msgstr ""
|
|
48
48
|
|
|
49
|
-
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:
|
|
49
|
+
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:35
|
|
50
50
|
msgid "Name of the storage class"
|
|
51
51
|
msgstr ""
|
|
52
52
|
|
|
53
|
-
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:
|
|
53
|
+
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:36
|
|
54
54
|
msgid "Boolean, only one volume can be bootable (overrides network interface boot)"
|
|
55
55
|
msgstr ""
|
|
56
56
|
|
|
57
|
-
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:
|
|
57
|
+
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:42
|
|
58
58
|
msgid "hostname"
|
|
59
59
|
msgstr ""
|
|
60
60
|
|
|
61
|
-
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:
|
|
61
|
+
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:43
|
|
62
62
|
msgid "api_port"
|
|
63
63
|
msgstr ""
|
|
64
64
|
|
|
65
|
-
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:
|
|
65
|
+
#: ../lib/hammer_cli_foreman_kubevirt/compute_resources/kubevirt.rb:44
|
|
66
66
|
msgid "namespace"
|
|
67
67
|
msgstr ""
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
-
# This file is distributed under the same license as the
|
|
3
|
+
# This file is distributed under the same license as the hammer_cli_foreman_kubevirt package.
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
5
|
#
|
|
6
6
|
# Translators:
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
#, fuzzy
|
|
11
11
|
msgid ""
|
|
12
12
|
msgstr ""
|
|
13
|
-
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.
|
|
13
|
+
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.2.0\n"
|
|
14
14
|
"Report-Msgid-Bugs-To: \n"
|
|
15
|
-
"POT-Creation-Date:
|
|
15
|
+
"POT-Creation-Date: 2024-11-11 19:27+0100\n"
|
|
16
16
|
"PO-Revision-Date: 2020-05-26 08:08+0000\n"
|
|
17
17
|
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2022\n"
|
|
18
18
|
"Language-Team: Japanese (https://app.transifex.com/foreman/teams/114/ja/)\n"
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
-
# This file is distributed under the same license as the
|
|
3
|
+
# This file is distributed under the same license as the hammer_cli_foreman_kubevirt package.
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
5
|
#
|
|
6
6
|
# Translators:
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
#, fuzzy
|
|
10
10
|
msgid ""
|
|
11
11
|
msgstr ""
|
|
12
|
-
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.
|
|
12
|
+
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.2.0\n"
|
|
13
13
|
"Report-Msgid-Bugs-To: \n"
|
|
14
|
-
"POT-Creation-Date:
|
|
14
|
+
"POT-Creation-Date: 2024-11-11 19:27+0100\n"
|
|
15
15
|
"PO-Revision-Date: 2020-05-26 08:08+0000\n"
|
|
16
16
|
"Last-Translator: Temuri Doghonadze <temuri.doghonadze@gmail.com>, 2022\n"
|
|
17
17
|
"Language-Team: Georgian (https://app.transifex.com/foreman/teams/114/ka/)\n"
|
|
Binary file
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
+
# This file is distributed under the same license as the hammer_cli_foreman_kubevirt package.
|
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
|
+
#
|
|
6
|
+
# Translators:
|
|
7
|
+
# Ewoud Kohl van Wijngaarden <ewoud+transifex@kohlvanwijngaarden.nl>, 2024
|
|
8
|
+
#
|
|
9
|
+
#, fuzzy
|
|
10
|
+
msgid ""
|
|
11
|
+
msgstr ""
|
|
12
|
+
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.2.0\n"
|
|
13
|
+
"Report-Msgid-Bugs-To: \n"
|
|
14
|
+
"POT-Creation-Date: 2024-11-11 19:27+0100\n"
|
|
15
|
+
"PO-Revision-Date: 2020-05-26 08:08+0000\n"
|
|
16
|
+
"Last-Translator: Ewoud Kohl van Wijngaarden "
|
|
17
|
+
"<ewoud+transifex@kohlvanwijngaarden.nl>, 2024\n"
|
|
18
|
+
"Language-Team: Korean (https://app.transifex.com/foreman/teams/114/ko/)\n"
|
|
19
|
+
"MIME-Version: 1.0\n"
|
|
20
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
21
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
22
|
+
"Language: ko\n"
|
|
23
|
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
24
|
+
|
|
25
|
+
msgid "KubeVirt"
|
|
26
|
+
msgstr "KubeVirt"
|
|
27
|
+
|
|
28
|
+
msgid "number of cores, Integer value"
|
|
29
|
+
msgstr "코어 수, 정수 값"
|
|
30
|
+
|
|
31
|
+
msgid "Amount of memory, integer value in bytes"
|
|
32
|
+
msgstr "메모리 양, 바이트 단위의 정수 값"
|
|
33
|
+
|
|
34
|
+
msgid "Boolean (expressed as 0 or 1), whether to start the machine or not"
|
|
35
|
+
msgstr "부울(0 또는 1로 표현), 머신을 시작할지 여부"
|
|
36
|
+
|
|
37
|
+
msgid "Container Network Interface Provider name"
|
|
38
|
+
msgstr "컨테이너 네트워크 인터페이스 공급자 이름"
|
|
39
|
+
|
|
40
|
+
msgid "The network to connect the vm to"
|
|
41
|
+
msgstr "vm을 연결할 네트워크"
|
|
42
|
+
|
|
43
|
+
msgid "Volume size in GB, integer value"
|
|
44
|
+
msgstr "볼륨 크기(GB), 정수 값"
|
|
45
|
+
|
|
46
|
+
msgid "Name of the storage class"
|
|
47
|
+
msgstr "스토리지 클래스의 이름"
|
|
48
|
+
|
|
49
|
+
msgid ""
|
|
50
|
+
"Boolean, only one volume can be bootable (overrides network interface boot)"
|
|
51
|
+
msgstr ""
|
|
52
|
+
"부울, 하나의 볼륨만 부팅 가능합니다(네트워크 인터페이스 부팅을 덮어쓰기함)"
|
|
53
|
+
|
|
54
|
+
msgid "hostname"
|
|
55
|
+
msgstr "호스트 이름"
|
|
56
|
+
|
|
57
|
+
msgid "api_port"
|
|
58
|
+
msgstr "api_port"
|
|
59
|
+
|
|
60
|
+
msgid "namespace"
|
|
61
|
+
msgstr "네임스페이스"
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
-
# This file is distributed under the same license as the
|
|
3
|
+
# This file is distributed under the same license as the hammer_cli_foreman_kubevirt package.
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
5
|
#
|
|
6
6
|
# Translators:
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
#, fuzzy
|
|
11
11
|
msgid ""
|
|
12
12
|
msgstr ""
|
|
13
|
-
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.
|
|
13
|
+
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.2.0\n"
|
|
14
14
|
"Report-Msgid-Bugs-To: \n"
|
|
15
|
-
"POT-Creation-Date:
|
|
15
|
+
"POT-Creation-Date: 2024-11-11 19:27+0100\n"
|
|
16
16
|
"PO-Revision-Date: 2020-05-26 08:08+0000\n"
|
|
17
17
|
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2022\n"
|
|
18
|
-
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/foreman/"
|
|
19
|
-
"
|
|
18
|
+
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/foreman/teams/"
|
|
19
|
+
"114/pt_BR/)\n"
|
|
20
20
|
"MIME-Version: 1.0\n"
|
|
21
21
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
22
22
|
"Content-Transfer-Encoding: 8bit\n"
|
|
Binary file
|
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
-
# This file is distributed under the same license as the
|
|
3
|
+
# This file is distributed under the same license as the hammer_cli_foreman_kubevirt package.
|
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
5
|
#
|
|
6
6
|
# Translators:
|
|
7
7
|
# Bryan Kearney <bryan.kearney@gmail.com>, 2020
|
|
8
8
|
# Amit Upadhye <aupadhye@redhat.com>, 2022
|
|
9
|
+
# Ewoud Kohl van Wijngaarden <ewoud+transifex@kohlvanwijngaarden.nl>, 2025
|
|
9
10
|
#
|
|
10
11
|
#, fuzzy
|
|
11
12
|
msgid ""
|
|
12
13
|
msgstr ""
|
|
13
|
-
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.
|
|
14
|
+
"Project-Id-Version: hammer_cli_foreman_kubevirt 0.2.0\n"
|
|
14
15
|
"Report-Msgid-Bugs-To: \n"
|
|
15
|
-
"POT-Creation-Date:
|
|
16
|
+
"POT-Creation-Date: 2024-11-11 19:27+0100\n"
|
|
16
17
|
"PO-Revision-Date: 2020-05-26 08:08+0000\n"
|
|
17
|
-
"Last-Translator:
|
|
18
|
+
"Last-Translator: Ewoud Kohl van Wijngaarden "
|
|
19
|
+
"<ewoud+transifex@kohlvanwijngaarden.nl>, 2025\n"
|
|
18
20
|
"Language-Team: Chinese (China) (https://app.transifex.com/foreman/teams/114/"
|
|
19
21
|
"zh_CN/)\n"
|
|
20
22
|
"MIME-Version: 1.0\n"
|
|
@@ -24,7 +26,7 @@ msgstr ""
|
|
|
24
26
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
25
27
|
|
|
26
28
|
msgid "KubeVirt"
|
|
27
|
-
msgstr "
|
|
29
|
+
msgstr "kubevirt"
|
|
28
30
|
|
|
29
31
|
msgid "number of cores, Integer value"
|
|
30
32
|
msgstr "内核数量,整数值"
|
metadata
CHANGED
|
@@ -1,31 +1,83 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hammer_cli_foreman_kubevirt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shira Maximov
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: hammer_cli_foreman
|
|
15
14
|
requirement: !ruby/object:Gem::Requirement
|
|
16
15
|
requirements:
|
|
17
|
-
- - "
|
|
16
|
+
- - ">="
|
|
18
17
|
- !ruby/object:Gem::Version
|
|
19
18
|
version: '3.10'
|
|
19
|
+
- - "<"
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '6.0'
|
|
20
22
|
type: :runtime
|
|
21
23
|
prerelease: false
|
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
25
|
requirements:
|
|
24
|
-
- - "
|
|
26
|
+
- - ">="
|
|
25
27
|
- !ruby/object:Gem::Version
|
|
26
28
|
version: '3.10'
|
|
29
|
+
- - "<"
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: '6.0'
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: gettext
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - ">="
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: 3.1.3
|
|
39
|
+
- - "<"
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: 4.0.0
|
|
42
|
+
type: :development
|
|
43
|
+
prerelease: false
|
|
44
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
45
|
+
requirements:
|
|
46
|
+
- - ">="
|
|
47
|
+
- !ruby/object:Gem::Version
|
|
48
|
+
version: 3.1.3
|
|
49
|
+
- - "<"
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: 4.0.0
|
|
52
|
+
- !ruby/object:Gem::Dependency
|
|
53
|
+
name: rake
|
|
54
|
+
requirement: !ruby/object:Gem::Requirement
|
|
55
|
+
requirements:
|
|
56
|
+
- - "~>"
|
|
57
|
+
- !ruby/object:Gem::Version
|
|
58
|
+
version: '12.3'
|
|
59
|
+
type: :development
|
|
60
|
+
prerelease: false
|
|
61
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
62
|
+
requirements:
|
|
63
|
+
- - "~>"
|
|
64
|
+
- !ruby/object:Gem::Version
|
|
65
|
+
version: '12.3'
|
|
66
|
+
- !ruby/object:Gem::Dependency
|
|
67
|
+
name: rdoc
|
|
68
|
+
requirement: !ruby/object:Gem::Requirement
|
|
69
|
+
requirements:
|
|
70
|
+
- - "~>"
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: '6.0'
|
|
73
|
+
type: :development
|
|
74
|
+
prerelease: false
|
|
75
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
76
|
+
requirements:
|
|
77
|
+
- - "~>"
|
|
78
|
+
- !ruby/object:Gem::Version
|
|
79
|
+
version: '6.0'
|
|
27
80
|
description: Foreman kubevirt commands for Hammer CLI.
|
|
28
|
-
email:
|
|
29
81
|
executables: []
|
|
30
82
|
extensions: []
|
|
31
83
|
extra_rdoc_files: []
|
|
@@ -53,6 +105,8 @@ files:
|
|
|
53
105
|
- locale/ja/hammer_cli_foreman_kubevirt.po
|
|
54
106
|
- locale/ka/LC_MESSAGES/hammer_cli_foreman_kubevirt.mo
|
|
55
107
|
- locale/ka/hammer_cli_foreman_kubevirt.po
|
|
108
|
+
- locale/ko/LC_MESSAGES/hammer_cli_foreman_kubevirt.mo
|
|
109
|
+
- locale/ko/hammer_cli_foreman_kubevirt.po
|
|
56
110
|
- locale/pt_BR/LC_MESSAGES/hammer_cli_foreman_kubevirt.mo
|
|
57
111
|
- locale/pt_BR/hammer_cli_foreman_kubevirt.po
|
|
58
112
|
- locale/zh_CN/LC_MESSAGES/hammer_cli_foreman_kubevirt.mo
|
|
@@ -61,7 +115,6 @@ homepage: https://github.com/theforeman/hammer-cli-foreman-kubevirt
|
|
|
61
115
|
licenses:
|
|
62
116
|
- GPL-3.0
|
|
63
117
|
metadata: {}
|
|
64
|
-
post_install_message:
|
|
65
118
|
rdoc_options: []
|
|
66
119
|
require_paths:
|
|
67
120
|
- lib
|
|
@@ -79,8 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
79
132
|
- !ruby/object:Gem::Version
|
|
80
133
|
version: '0'
|
|
81
134
|
requirements: []
|
|
82
|
-
rubygems_version:
|
|
83
|
-
signing_key:
|
|
135
|
+
rubygems_version: 4.0.10
|
|
84
136
|
specification_version: 4
|
|
85
137
|
summary: Foreman kubevirt commands for Hammer CLI
|
|
86
138
|
test_files: []
|