foreman_azure_rm 3.0.1 → 3.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/foreman_azure_rm/locale/ca/foreman_azure_rm.js +1 -13
- data/app/assets/javascripts/foreman_azure_rm/locale/cs_CZ/foreman_azure_rm.js +1 -13
- data/app/assets/javascripts/foreman_azure_rm/locale/de/foreman_azure_rm.js +1 -13
- data/app/assets/javascripts/foreman_azure_rm/locale/en/foreman_azure_rm.js +189 -2
- data/app/assets/javascripts/foreman_azure_rm/locale/en_GB/foreman_azure_rm.js +1 -13
- data/app/assets/javascripts/foreman_azure_rm/locale/es/foreman_azure_rm.js +1 -13
- data/app/assets/javascripts/foreman_azure_rm/locale/fr/foreman_azure_rm.js +3 -15
- data/app/assets/javascripts/foreman_azure_rm/locale/gl/foreman_azure_rm.js +1 -13
- data/app/assets/javascripts/foreman_azure_rm/locale/it/foreman_azure_rm.js +1 -13
- data/app/assets/javascripts/foreman_azure_rm/locale/ja/foreman_azure_rm.js +3 -15
- data/app/assets/javascripts/foreman_azure_rm/locale/ka/foreman_azure_rm.js +1 -13
- data/app/assets/javascripts/foreman_azure_rm/locale/ko/foreman_azure_rm.js +47 -59
- data/app/assets/javascripts/foreman_azure_rm/locale/nl_NL/foreman_azure_rm.js +1 -13
- data/app/assets/javascripts/foreman_azure_rm/locale/pl/foreman_azure_rm.js +1 -13
- data/app/assets/javascripts/foreman_azure_rm/locale/pt_BR/foreman_azure_rm.js +1 -13
- data/app/assets/javascripts/foreman_azure_rm/locale/ru/foreman_azure_rm.js +1 -13
- data/app/assets/javascripts/foreman_azure_rm/locale/sv_SE/foreman_azure_rm.js +1 -13
- data/app/assets/javascripts/foreman_azure_rm/locale/zh_CN/foreman_azure_rm.js +3 -15
- data/app/assets/javascripts/foreman_azure_rm/locale/zh_TW/foreman_azure_rm.js +1 -13
- data/{lib → app/lib}/foreman_azure_rm/azure_sdk_adapter.rb +24 -25
- data/lib/foreman_azure_rm/engine.rb +13 -19
- data/lib/foreman_azure_rm/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/ca/foreman_azure_rm.po +1 -14
- data/locale/cs_CZ/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/cs_CZ/foreman_azure_rm.po +1 -14
- data/locale/de/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/de/foreman_azure_rm.po +1 -14
- data/locale/en/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/en/foreman_azure_rm.po +195 -0
- data/locale/en_GB/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/en_GB/foreman_azure_rm.po +1 -14
- data/locale/es/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/es/foreman_azure_rm.po +1 -14
- data/locale/foreman_azure_rm.pot +2 -18
- data/locale/fr/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/fr/foreman_azure_rm.po +4 -17
- data/locale/gl/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/gl/foreman_azure_rm.po +1 -14
- data/locale/it/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/it/foreman_azure_rm.po +1 -14
- data/locale/ja/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/ja/foreman_azure_rm.po +4 -17
- data/locale/ka/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/ka/foreman_azure_rm.po +1 -14
- data/locale/ko/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/ko/foreman_azure_rm.po +49 -60
- data/locale/nl_NL/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/nl_NL/foreman_azure_rm.po +1 -14
- data/locale/pl/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/pl/foreman_azure_rm.po +1 -14
- data/locale/pt_BR/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/pt_BR/foreman_azure_rm.po +1 -14
- data/locale/ru/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/ru/foreman_azure_rm.po +1 -14
- data/locale/sv_SE/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/sv_SE/foreman_azure_rm.po +1 -14
- data/locale/zh_CN/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/zh_CN/foreman_azure_rm.po +4 -17
- data/locale/zh_TW/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/zh_TW/foreman_azure_rm.po +1 -14
- metadata +4 -4
@@ -2,17 +2,19 @@ module ForemanAzureRm
|
|
2
2
|
class Engine < ::Rails::Engine
|
3
3
|
engine_name 'foreman_azure_rm'
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
config.
|
8
|
-
config.eager_load_paths
|
9
|
-
|
10
|
-
initializer 'foreman_azure_rm.register_plugin', :before => :finisher_hook do
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
5
|
+
lib = config.root.join('app', 'lib')
|
6
|
+
|
7
|
+
config.autoload_paths << lib
|
8
|
+
config.eager_load_paths << lib
|
9
|
+
|
10
|
+
initializer 'foreman_azure_rm.register_plugin', :before => :finisher_hook do |app|
|
11
|
+
app.reloader.to_prepare do
|
12
|
+
Foreman::Plugin.register :foreman_azure_rm do
|
13
|
+
requires_foreman '>= 3.13'
|
14
|
+
register_gettext
|
15
|
+
compute_resource ForemanAzureRm::AzureRm
|
16
|
+
parameter_filter ComputeResource, :azure_vm, :tenant, :app_ident, :secret_key, :sub_id, :region, :cloud
|
17
|
+
end
|
16
18
|
end
|
17
19
|
end
|
18
20
|
|
@@ -29,14 +31,6 @@ module ForemanAzureRm
|
|
29
31
|
end
|
30
32
|
end
|
31
33
|
|
32
|
-
initializer "foreman_azure_rm.zeitwerk" do
|
33
|
-
Rails.autoloaders.each do |loader|
|
34
|
-
loader.ignore(
|
35
|
-
ForemanAzureRm::Engine.root.join('lib/foreman_azure_rm/version.rb')
|
36
|
-
)
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
34
|
config.to_prepare do
|
41
35
|
require 'azure_mgmt_resources'
|
42
36
|
require 'azure_mgmt_network'
|
Binary file
|
@@ -6,10 +6,9 @@
|
|
6
6
|
# Translators:
|
7
7
|
# Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2020
|
8
8
|
#
|
9
|
-
#, fuzzy
|
10
9
|
msgid ""
|
11
10
|
msgstr ""
|
12
|
-
"Project-Id-Version: foreman_azure_rm 3.0.
|
11
|
+
"Project-Id-Version: foreman_azure_rm 3.0.2\n"
|
13
12
|
"Report-Msgid-Bugs-To: \n"
|
14
13
|
"PO-Revision-Date: 2020-04-21 13:58+0000\n"
|
15
14
|
"Last-Translator: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2020\n"
|
@@ -23,9 +22,6 @@ msgstr ""
|
|
23
22
|
msgid "%{vm_size} VM Size"
|
24
23
|
msgstr ""
|
25
24
|
|
26
|
-
msgid "Action with sub plans"
|
27
|
-
msgstr ""
|
28
|
-
|
29
25
|
msgid "Actions"
|
30
26
|
msgstr "Accions"
|
31
27
|
|
@@ -92,12 +88,6 @@ msgstr ""
|
|
92
88
|
msgid "Image"
|
93
89
|
msgstr "Imatge"
|
94
90
|
|
95
|
-
msgid "Import Puppet classes"
|
96
|
-
msgstr ""
|
97
|
-
|
98
|
-
msgid "Import facts"
|
99
|
-
msgstr ""
|
100
|
-
|
101
91
|
msgid "Leave empty to use default image size"
|
102
92
|
msgstr ""
|
103
93
|
|
@@ -149,9 +139,6 @@ msgstr "Regió"
|
|
149
139
|
msgid "Reload Images, Sizes, vNets"
|
150
140
|
msgstr ""
|
151
141
|
|
152
|
-
msgid "Remote action:"
|
153
|
-
msgstr ""
|
154
|
-
|
155
142
|
msgid "Resource Group"
|
156
143
|
msgstr ""
|
157
144
|
|
Binary file
|
@@ -8,10 +8,9 @@
|
|
8
8
|
# mhulan <mhulan@redhat.com>, 2020
|
9
9
|
# Pavel Borecki <pavel.borecki@gmail.com>, 2020
|
10
10
|
#
|
11
|
-
#, fuzzy
|
12
11
|
msgid ""
|
13
12
|
msgstr ""
|
14
|
-
"Project-Id-Version: foreman_azure_rm 3.0.
|
13
|
+
"Project-Id-Version: foreman_azure_rm 3.0.2\n"
|
15
14
|
"Report-Msgid-Bugs-To: \n"
|
16
15
|
"PO-Revision-Date: 2020-04-21 13:58+0000\n"
|
17
16
|
"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2020\n"
|
@@ -27,9 +26,6 @@ msgstr ""
|
|
27
26
|
msgid "%{vm_size} VM Size"
|
28
27
|
msgstr ""
|
29
28
|
|
30
|
-
msgid "Action with sub plans"
|
31
|
-
msgstr "Akce s dílčími plány"
|
32
|
-
|
33
29
|
msgid "Actions"
|
34
30
|
msgstr "Akce"
|
35
31
|
|
@@ -96,12 +92,6 @@ msgstr ""
|
|
96
92
|
msgid "Image"
|
97
93
|
msgstr "Obraz"
|
98
94
|
|
99
|
-
msgid "Import Puppet classes"
|
100
|
-
msgstr "Importovat Puppet třídy"
|
101
|
-
|
102
|
-
msgid "Import facts"
|
103
|
-
msgstr "Importovat fakta"
|
104
|
-
|
105
95
|
msgid "Leave empty to use default image size"
|
106
96
|
msgstr ""
|
107
97
|
|
@@ -153,9 +143,6 @@ msgstr "Oblast"
|
|
153
143
|
msgid "Reload Images, Sizes, vNets"
|
154
144
|
msgstr ""
|
155
145
|
|
156
|
-
msgid "Remote action:"
|
157
|
-
msgstr "Akce na protějšku:"
|
158
|
-
|
159
146
|
msgid "Resource Group"
|
160
147
|
msgstr ""
|
161
148
|
|
Binary file
|
@@ -14,10 +14,9 @@
|
|
14
14
|
# Crited <Alexander.Stoll@netways.de>, 2020
|
15
15
|
# pdolinic, 2021
|
16
16
|
#
|
17
|
-
#, fuzzy
|
18
17
|
msgid ""
|
19
18
|
msgstr ""
|
20
|
-
"Project-Id-Version: foreman_azure_rm 3.0.
|
19
|
+
"Project-Id-Version: foreman_azure_rm 3.0.2\n"
|
21
20
|
"Report-Msgid-Bugs-To: \n"
|
22
21
|
"PO-Revision-Date: 2020-04-21 13:58+0000\n"
|
23
22
|
"Last-Translator: pdolinic, 2021\n"
|
@@ -31,9 +30,6 @@ msgstr ""
|
|
31
30
|
msgid "%{vm_size} VM Size"
|
32
31
|
msgstr "%{vm_size} VM-Größe"
|
33
32
|
|
34
|
-
msgid "Action with sub plans"
|
35
|
-
msgstr "Aktion mit Unterplänen"
|
36
|
-
|
37
33
|
msgid "Actions"
|
38
34
|
msgstr "Aktionen"
|
39
35
|
|
@@ -100,12 +96,6 @@ msgstr "Verwenden Sie für benutzerdefinierte oder freigegebene Galeriebilder da
|
|
100
96
|
msgid "Image"
|
101
97
|
msgstr "Image"
|
102
98
|
|
103
|
-
msgid "Import Puppet classes"
|
104
|
-
msgstr "Puppet-Klassen importieren"
|
105
|
-
|
106
|
-
msgid "Import facts"
|
107
|
-
msgstr "Fakten importieren"
|
108
|
-
|
109
99
|
msgid "Leave empty to use default image size"
|
110
100
|
msgstr "Leer lassen, um die Standardbildgröße zu verwenden"
|
111
101
|
|
@@ -157,9 +147,6 @@ msgstr "Region"
|
|
157
147
|
msgid "Reload Images, Sizes, vNets"
|
158
148
|
msgstr "Bilder, Größen, vNets neu laden"
|
159
149
|
|
160
|
-
msgid "Remote action:"
|
161
|
-
msgstr "Entfernte Aktion:"
|
162
|
-
|
163
150
|
msgid "Resource Group"
|
164
151
|
msgstr "Ressourcengruppe"
|
165
152
|
|
Binary file
|
@@ -0,0 +1,195 @@
|
|
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_azure_rm package.
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5
|
+
#
|
6
|
+
#, fuzzy
|
7
|
+
msgid ""
|
8
|
+
msgstr ""
|
9
|
+
"Project-Id-Version: foreman_azure_rm 1.0.0\n"
|
10
|
+
"Report-Msgid-Bugs-To: \n"
|
11
|
+
"PO-Revision-Date: 2025-02-20 10:10+0100\n"
|
12
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14
|
+
"Language: \n"
|
15
|
+
"MIME-Version: 1.0\n"
|
16
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
17
|
+
"Content-Transfer-Encoding: 8bit\n"
|
18
|
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
19
|
+
|
20
|
+
msgid "%{vm_size} VM Size"
|
21
|
+
msgstr ""
|
22
|
+
|
23
|
+
msgid "Actions"
|
24
|
+
msgstr ""
|
25
|
+
|
26
|
+
msgid "Additional number of disks can be added based on VM Size. For more details, please refer to Microsoft Azure's documentation"
|
27
|
+
msgstr ""
|
28
|
+
|
29
|
+
msgid "Azure Image Name"
|
30
|
+
msgstr ""
|
31
|
+
|
32
|
+
msgid "Azure Region"
|
33
|
+
msgstr ""
|
34
|
+
|
35
|
+
msgid "Azure Resource Manager as a compute resource for Foreman"
|
36
|
+
msgstr ""
|
37
|
+
|
38
|
+
msgid "Azure Subnet"
|
39
|
+
msgstr ""
|
40
|
+
|
41
|
+
msgid "Azure Tags"
|
42
|
+
msgstr ""
|
43
|
+
|
44
|
+
msgid "Azure's Default"
|
45
|
+
msgstr ""
|
46
|
+
|
47
|
+
msgid "Client ID"
|
48
|
+
msgstr ""
|
49
|
+
|
50
|
+
msgid "Client ID for AzureRm"
|
51
|
+
msgstr ""
|
52
|
+
|
53
|
+
msgid "Client Secret"
|
54
|
+
msgstr ""
|
55
|
+
|
56
|
+
msgid "Client Secret for AzureRm"
|
57
|
+
msgstr ""
|
58
|
+
|
59
|
+
msgid "Cloud"
|
60
|
+
msgstr ""
|
61
|
+
|
62
|
+
msgid "Comma seperated file URIs"
|
63
|
+
msgstr ""
|
64
|
+
|
65
|
+
msgid "Comma seperated list of name=value pairs for tags on this VM in Azure"
|
66
|
+
msgstr ""
|
67
|
+
|
68
|
+
msgid "Custom Script Command"
|
69
|
+
msgstr ""
|
70
|
+
|
71
|
+
msgid "Data Disk Caching"
|
72
|
+
msgstr ""
|
73
|
+
|
74
|
+
msgid "Default ReadWrite"
|
75
|
+
msgstr ""
|
76
|
+
|
77
|
+
msgid "Deploy NVIDIA GPU driver and CUDA (Azure Extension Microsoft.HpcCompute/NvidiaGpuDriver{Linux,Windows}/1.3)"
|
78
|
+
msgstr ""
|
79
|
+
|
80
|
+
msgid "Does this image support user data input?"
|
81
|
+
msgstr ""
|
82
|
+
|
83
|
+
msgid "For custom or shared gallery image, use prefix 'custom://' or 'gallery://'. For public and RHEL-byos images, prefix the uuid with 'marketplace://'. (e.g. 'marketplace://OpenLogic:CentOS:7.5:latest' or 'custom://image-name')"
|
84
|
+
msgstr ""
|
85
|
+
|
86
|
+
msgid "Image"
|
87
|
+
msgstr ""
|
88
|
+
|
89
|
+
msgid "Leave empty to use default image size"
|
90
|
+
msgstr ""
|
91
|
+
|
92
|
+
msgid "Load Regions"
|
93
|
+
msgstr ""
|
94
|
+
|
95
|
+
msgid "NVIDIA driver / CUDA"
|
96
|
+
msgstr ""
|
97
|
+
|
98
|
+
msgid "Name"
|
99
|
+
msgstr ""
|
100
|
+
|
101
|
+
msgid "OS Disk Caching"
|
102
|
+
msgstr ""
|
103
|
+
|
104
|
+
msgid "Override OS Disk Size (GB)"
|
105
|
+
msgstr ""
|
106
|
+
|
107
|
+
msgid "Password"
|
108
|
+
msgstr ""
|
109
|
+
|
110
|
+
msgid "Password to authenticate with - used for SSH finish step."
|
111
|
+
msgstr ""
|
112
|
+
|
113
|
+
msgid "Platform"
|
114
|
+
msgstr ""
|
115
|
+
|
116
|
+
msgid "Please select a Resource Group"
|
117
|
+
msgstr ""
|
118
|
+
|
119
|
+
msgid "Please select a VM Size"
|
120
|
+
msgstr ""
|
121
|
+
|
122
|
+
msgid "Please select an image"
|
123
|
+
msgstr ""
|
124
|
+
|
125
|
+
msgid "Premium OS Disk"
|
126
|
+
msgstr ""
|
127
|
+
|
128
|
+
msgid "Properties"
|
129
|
+
msgstr ""
|
130
|
+
|
131
|
+
msgid "Public IP"
|
132
|
+
msgstr ""
|
133
|
+
|
134
|
+
msgid "Region"
|
135
|
+
msgstr ""
|
136
|
+
|
137
|
+
msgid "Reload Images, Sizes, vNets"
|
138
|
+
msgstr ""
|
139
|
+
|
140
|
+
msgid "Resource Group"
|
141
|
+
msgstr ""
|
142
|
+
|
143
|
+
msgid "SSH Key"
|
144
|
+
msgstr ""
|
145
|
+
|
146
|
+
msgid "Select"
|
147
|
+
msgstr ""
|
148
|
+
|
149
|
+
msgid "Size"
|
150
|
+
msgstr ""
|
151
|
+
|
152
|
+
msgid "Size (GB)"
|
153
|
+
msgstr ""
|
154
|
+
|
155
|
+
msgid "State"
|
156
|
+
msgstr ""
|
157
|
+
|
158
|
+
msgid "Static Private IP"
|
159
|
+
msgstr ""
|
160
|
+
|
161
|
+
msgid "Subscription ID"
|
162
|
+
msgstr ""
|
163
|
+
|
164
|
+
msgid "Subscription ID for AzureRm"
|
165
|
+
msgstr ""
|
166
|
+
|
167
|
+
msgid "Tenant ID"
|
168
|
+
msgstr ""
|
169
|
+
|
170
|
+
msgid "The region you selected has no sizes associated with it"
|
171
|
+
msgstr ""
|
172
|
+
|
173
|
+
msgid "The selected image has no associated compute resource"
|
174
|
+
msgstr ""
|
175
|
+
|
176
|
+
msgid "The selected region has no subnets"
|
177
|
+
msgstr ""
|
178
|
+
|
179
|
+
msgid "The user that will be used to SSH into the VM for completion"
|
180
|
+
msgstr ""
|
181
|
+
|
182
|
+
msgid "To perform commands as root, prefix it with 'sudo'"
|
183
|
+
msgstr ""
|
184
|
+
|
185
|
+
msgid "Username"
|
186
|
+
msgstr ""
|
187
|
+
|
188
|
+
msgid "VM Size"
|
189
|
+
msgstr ""
|
190
|
+
|
191
|
+
msgid "is not valid, must be lowercase eg. 'eastus'. No special characters allowed."
|
192
|
+
msgstr ""
|
193
|
+
|
194
|
+
msgid "is not valid. Valid choices are %s."
|
195
|
+
msgstr ""
|
Binary file
|
@@ -7,10 +7,9 @@
|
|
7
7
|
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2020
|
8
8
|
# Andi Chandler <andi@gowling.com>, 2023
|
9
9
|
#
|
10
|
-
#, fuzzy
|
11
10
|
msgid ""
|
12
11
|
msgstr ""
|
13
|
-
"Project-Id-Version: foreman_azure_rm 3.0.
|
12
|
+
"Project-Id-Version: foreman_azure_rm 3.0.2\n"
|
14
13
|
"Report-Msgid-Bugs-To: \n"
|
15
14
|
"PO-Revision-Date: 2020-04-21 13:58+0000\n"
|
16
15
|
"Last-Translator: Andi Chandler <andi@gowling.com>, 2023\n"
|
@@ -25,9 +24,6 @@ msgstr ""
|
|
25
24
|
msgid "%{vm_size} VM Size"
|
26
25
|
msgstr ""
|
27
26
|
|
28
|
-
msgid "Action with sub plans"
|
29
|
-
msgstr "Action with sub plans"
|
30
|
-
|
31
27
|
msgid "Actions"
|
32
28
|
msgstr "Actions"
|
33
29
|
|
@@ -94,12 +90,6 @@ msgstr ""
|
|
94
90
|
msgid "Image"
|
95
91
|
msgstr "Image"
|
96
92
|
|
97
|
-
msgid "Import Puppet classes"
|
98
|
-
msgstr "Import Puppet classes"
|
99
|
-
|
100
|
-
msgid "Import facts"
|
101
|
-
msgstr "Import facts"
|
102
|
-
|
103
93
|
msgid "Leave empty to use default image size"
|
104
94
|
msgstr ""
|
105
95
|
|
@@ -151,9 +141,6 @@ msgstr ""
|
|
151
141
|
msgid "Reload Images, Sizes, vNets"
|
152
142
|
msgstr ""
|
153
143
|
|
154
|
-
msgid "Remote action:"
|
155
|
-
msgstr "Remote action:"
|
156
|
-
|
157
144
|
msgid "Resource Group"
|
158
145
|
msgstr ""
|
159
146
|
|
Binary file
|
@@ -12,10 +12,9 @@
|
|
12
12
|
# francis <hackgo@gmail.com>, 2020
|
13
13
|
# Amit Upadhye <aupadhye@redhat.com>, 2022
|
14
14
|
#
|
15
|
-
#, fuzzy
|
16
15
|
msgid ""
|
17
16
|
msgstr ""
|
18
|
-
"Project-Id-Version: foreman_azure_rm 3.0.
|
17
|
+
"Project-Id-Version: foreman_azure_rm 3.0.2\n"
|
19
18
|
"Report-Msgid-Bugs-To: \n"
|
20
19
|
"PO-Revision-Date: 2020-04-21 13:58+0000\n"
|
21
20
|
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2022\n"
|
@@ -30,9 +29,6 @@ msgstr ""
|
|
30
29
|
msgid "%{vm_size} VM Size"
|
31
30
|
msgstr "%{vm_size} Tamaño de la máquina virtual"
|
32
31
|
|
33
|
-
msgid "Action with sub plans"
|
34
|
-
msgstr "Acción con subplanes"
|
35
|
-
|
36
32
|
msgid "Actions"
|
37
33
|
msgstr "Acciones"
|
38
34
|
|
@@ -99,12 +95,6 @@ msgstr "Para imágenes de galería personalizadas o compartidas, utilice el pref
|
|
99
95
|
msgid "Image"
|
100
96
|
msgstr "Imagen"
|
101
97
|
|
102
|
-
msgid "Import Puppet classes"
|
103
|
-
msgstr "Importar clases Puppet"
|
104
|
-
|
105
|
-
msgid "Import facts"
|
106
|
-
msgstr "Importar datos"
|
107
|
-
|
108
98
|
msgid "Leave empty to use default image size"
|
109
99
|
msgstr "Dejar vacío para utilizar el tamaño de imagen por defecto"
|
110
100
|
|
@@ -156,9 +146,6 @@ msgstr "Región"
|
|
156
146
|
msgid "Reload Images, Sizes, vNets"
|
157
147
|
msgstr "Recargar imágenes, tamaños, vNets"
|
158
148
|
|
159
|
-
msgid "Remote action:"
|
160
|
-
msgstr "Acción remota:"
|
161
|
-
|
162
149
|
msgid "Resource Group"
|
163
150
|
msgstr "Grupo de recursos"
|
164
151
|
|
data/locale/foreman_azure_rm.pot
CHANGED
@@ -8,8 +8,8 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: foreman_azure_rm 1.0.0\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"POT-Creation-Date:
|
12
|
-
"PO-Revision-Date:
|
11
|
+
"POT-Creation-Date: 2025-02-20 10:10+0100\n"
|
12
|
+
"PO-Revision-Date: 2025-02-20 10:10+0100\n"
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15
15
|
"Language: \n"
|
@@ -267,22 +267,6 @@ msgstr ""
|
|
267
267
|
msgid "Does this image support user data input?"
|
268
268
|
msgstr ""
|
269
269
|
|
270
|
-
#: action_names.rb:2
|
271
|
-
msgid "Action with sub plans"
|
272
|
-
msgstr ""
|
273
|
-
|
274
|
-
#: action_names.rb:3
|
275
|
-
msgid "Import facts"
|
276
|
-
msgstr ""
|
277
|
-
|
278
|
-
#: action_names.rb:4
|
279
|
-
msgid "Import Puppet classes"
|
280
|
-
msgstr ""
|
281
|
-
|
282
|
-
#: action_names.rb:5
|
283
|
-
msgid "Remote action:"
|
284
|
-
msgstr ""
|
285
|
-
|
286
270
|
#: gemspec.rb:2
|
287
271
|
msgid "Azure Resource Manager as a compute resource for Foreman"
|
288
272
|
msgstr ""
|
Binary file
|
@@ -9,16 +9,15 @@
|
|
9
9
|
# Claer <transiblu@claer.hammock.fr>, 2020
|
10
10
|
# Bryan Kearney <bryan.kearney@gmail.com>, 2020
|
11
11
|
# Amit Upadhye <aupadhye@redhat.com>, 2022
|
12
|
-
# Ewoud Kohl van Wijngaarden <ewoud+transifex@kohlvanwijngaarden.nl>,
|
12
|
+
# Ewoud Kohl van Wijngaarden <ewoud+transifex@kohlvanwijngaarden.nl>, 2025
|
13
13
|
#
|
14
|
-
#, fuzzy
|
15
14
|
msgid ""
|
16
15
|
msgstr ""
|
17
|
-
"Project-Id-Version: foreman_azure_rm 3.0.
|
16
|
+
"Project-Id-Version: foreman_azure_rm 3.0.2\n"
|
18
17
|
"Report-Msgid-Bugs-To: \n"
|
19
18
|
"PO-Revision-Date: 2020-04-21 13:58+0000\n"
|
20
19
|
"Last-Translator: Ewoud Kohl van Wijngaarden <ewoud+transifex@kohlvanwijngaarde"
|
21
|
-
"n.nl>,
|
20
|
+
"n.nl>, 2025\n"
|
22
21
|
"Language-Team: French (https://app.transifex.com/foreman/teams/114/fr/)\n"
|
23
22
|
"MIME-Version: 1.0\n"
|
24
23
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -28,10 +27,7 @@ msgstr ""
|
|
28
27
|
"0 == 0 ? 1 : 2;\n"
|
29
28
|
|
30
29
|
msgid "%{vm_size} VM Size"
|
31
|
-
msgstr "Taille de la VM"
|
32
|
-
|
33
|
-
msgid "Action with sub plans"
|
34
|
-
msgstr "Action avec sous-plans"
|
30
|
+
msgstr "Taille de la VM %{vm_size}"
|
35
31
|
|
36
32
|
msgid "Actions"
|
37
33
|
msgstr "Actions"
|
@@ -99,12 +95,6 @@ msgstr "Pour une image de galerie personnalisée ou partagée, utilisez le préf
|
|
99
95
|
msgid "Image"
|
100
96
|
msgstr "Image"
|
101
97
|
|
102
|
-
msgid "Import Puppet classes"
|
103
|
-
msgstr "Importer des classes Puppet"
|
104
|
-
|
105
|
-
msgid "Import facts"
|
106
|
-
msgstr "Importer des faits"
|
107
|
-
|
108
98
|
msgid "Leave empty to use default image size"
|
109
99
|
msgstr "Laissez vide pour utiliser la taille d'image par défaut"
|
110
100
|
|
@@ -156,9 +146,6 @@ msgstr "Région"
|
|
156
146
|
msgid "Reload Images, Sizes, vNets"
|
157
147
|
msgstr "Recharger les images, les tailles, les vNets"
|
158
148
|
|
159
|
-
msgid "Remote action:"
|
160
|
-
msgstr "Action distante :"
|
161
|
-
|
162
149
|
msgid "Resource Group"
|
163
150
|
msgstr "Groupe de ressources"
|
164
151
|
|
Binary file
|
@@ -6,10 +6,9 @@
|
|
6
6
|
# Translators:
|
7
7
|
# Carmela Rubiños <carmela.rubinos@gmail.com>, 2020
|
8
8
|
#
|
9
|
-
#, fuzzy
|
10
9
|
msgid ""
|
11
10
|
msgstr ""
|
12
|
-
"Project-Id-Version: foreman_azure_rm 3.0.
|
11
|
+
"Project-Id-Version: foreman_azure_rm 3.0.2\n"
|
13
12
|
"Report-Msgid-Bugs-To: \n"
|
14
13
|
"PO-Revision-Date: 2020-04-21 13:58+0000\n"
|
15
14
|
"Last-Translator: Carmela Rubiños <carmela.rubinos@gmail.com>, 2020\n"
|
@@ -23,9 +22,6 @@ msgstr ""
|
|
23
22
|
msgid "%{vm_size} VM Size"
|
24
23
|
msgstr ""
|
25
24
|
|
26
|
-
msgid "Action with sub plans"
|
27
|
-
msgstr ""
|
28
|
-
|
29
25
|
msgid "Actions"
|
30
26
|
msgstr "Accións"
|
31
27
|
|
@@ -92,12 +88,6 @@ msgstr ""
|
|
92
88
|
msgid "Image"
|
93
89
|
msgstr "Imaxe"
|
94
90
|
|
95
|
-
msgid "Import Puppet classes"
|
96
|
-
msgstr ""
|
97
|
-
|
98
|
-
msgid "Import facts"
|
99
|
-
msgstr ""
|
100
|
-
|
101
91
|
msgid "Leave empty to use default image size"
|
102
92
|
msgstr ""
|
103
93
|
|
@@ -149,9 +139,6 @@ msgstr "Rexión"
|
|
149
139
|
msgid "Reload Images, Sizes, vNets"
|
150
140
|
msgstr ""
|
151
141
|
|
152
|
-
msgid "Remote action:"
|
153
|
-
msgstr ""
|
154
|
-
|
155
142
|
msgid "Resource Group"
|
156
143
|
msgstr ""
|
157
144
|
|
Binary file
|
@@ -9,10 +9,9 @@
|
|
9
9
|
# Bryan Kearney <bryan.kearney@gmail.com>, 2020
|
10
10
|
# Andrea Perotti, 2020
|
11
11
|
#
|
12
|
-
#, fuzzy
|
13
12
|
msgid ""
|
14
13
|
msgstr ""
|
15
|
-
"Project-Id-Version: foreman_azure_rm 3.0.
|
14
|
+
"Project-Id-Version: foreman_azure_rm 3.0.2\n"
|
16
15
|
"Report-Msgid-Bugs-To: \n"
|
17
16
|
"PO-Revision-Date: 2020-04-21 13:58+0000\n"
|
18
17
|
"Last-Translator: Andrea Perotti, 2020\n"
|
@@ -27,9 +26,6 @@ msgstr ""
|
|
27
26
|
msgid "%{vm_size} VM Size"
|
28
27
|
msgstr ""
|
29
28
|
|
30
|
-
msgid "Action with sub plans"
|
31
|
-
msgstr ""
|
32
|
-
|
33
29
|
msgid "Actions"
|
34
30
|
msgstr "Azioni"
|
35
31
|
|
@@ -96,12 +92,6 @@ msgstr ""
|
|
96
92
|
msgid "Image"
|
97
93
|
msgstr "Immagine"
|
98
94
|
|
99
|
-
msgid "Import Puppet classes"
|
100
|
-
msgstr "Importa classi Puppet"
|
101
|
-
|
102
|
-
msgid "Import facts"
|
103
|
-
msgstr "Importa gli eventi"
|
104
|
-
|
105
95
|
msgid "Leave empty to use default image size"
|
106
96
|
msgstr ""
|
107
97
|
|
@@ -153,9 +143,6 @@ msgstr "Regione"
|
|
153
143
|
msgid "Reload Images, Sizes, vNets"
|
154
144
|
msgstr ""
|
155
145
|
|
156
|
-
msgid "Remote action:"
|
157
|
-
msgstr "Azione remota:"
|
158
|
-
|
159
146
|
msgid "Resource Group"
|
160
147
|
msgstr ""
|
161
148
|
|
Binary file
|