foreman_templates 9.2.0 → 9.4.0
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_templates/locale/cs_CZ/foreman_templates.js +211 -0
- data/app/assets/javascripts/foreman_templates/locale/de/foreman_templates.js +211 -0
- data/app/assets/javascripts/foreman_templates/locale/en_GB/foreman_templates.js +211 -0
- data/app/assets/javascripts/foreman_templates/locale/es/foreman_templates.js +211 -0
- data/app/assets/javascripts/foreman_templates/locale/fr/foreman_templates.js +211 -0
- data/app/assets/javascripts/foreman_templates/locale/gl/foreman_templates.js +211 -0
- data/app/assets/javascripts/foreman_templates/locale/it/foreman_templates.js +211 -0
- data/app/assets/javascripts/foreman_templates/locale/ja/foreman_templates.js +211 -0
- data/app/assets/javascripts/foreman_templates/locale/ka/foreman_templates.js +211 -0
- data/app/assets/javascripts/foreman_templates/locale/ko/foreman_templates.js +211 -0
- data/app/assets/javascripts/foreman_templates/locale/pt_BR/foreman_templates.js +211 -0
- data/app/assets/javascripts/foreman_templates/locale/ru/foreman_templates.js +211 -0
- data/app/assets/javascripts/foreman_templates/locale/sv_SE/foreman_templates.js +211 -0
- data/app/assets/javascripts/foreman_templates/locale/zh_CN/foreman_templates.js +211 -0
- data/app/assets/javascripts/foreman_templates/locale/zh_TW/foreman_templates.js +211 -0
- data/app/services/foreman_templates/template_exporter.rb +9 -2
- data/db/migrate/20211122154929_templates_settings_category_to_dsl.rb +1 -1
- data/lib/foreman_templates/engine.rb +2 -1
- data/lib/foreman_templates/version.rb +1 -1
- data/locale/cs_CZ/LC_MESSAGES/foreman_templates.mo +0 -0
- data/locale/cs_CZ/foreman_templates.po +211 -0
- data/locale/de/LC_MESSAGES/foreman_templates.mo +0 -0
- data/locale/de/foreman_templates.po +215 -0
- data/locale/en_GB/LC_MESSAGES/foreman_templates.mo +0 -0
- data/locale/en_GB/foreman_templates.po +211 -0
- data/locale/es/LC_MESSAGES/foreman_templates.mo +0 -0
- data/locale/es/foreman_templates.po +211 -0
- data/locale/fr/LC_MESSAGES/foreman_templates.mo +0 -0
- data/locale/fr/foreman_templates.po +214 -0
- data/locale/gl/LC_MESSAGES/foreman_templates.mo +0 -0
- data/locale/gl/foreman_templates.po +209 -0
- data/locale/it/LC_MESSAGES/foreman_templates.mo +0 -0
- data/locale/it/foreman_templates.po +212 -0
- data/locale/ja/LC_MESSAGES/foreman_templates.mo +0 -0
- data/locale/ja/foreman_templates.po +212 -0
- data/locale/ka/LC_MESSAGES/foreman_templates.mo +0 -0
- data/locale/ka/foreman_templates.po +209 -0
- data/locale/ko/LC_MESSAGES/foreman_templates.mo +0 -0
- data/locale/ko/foreman_templates.po +210 -0
- data/locale/pt_BR/LC_MESSAGES/foreman_templates.mo +0 -0
- data/locale/pt_BR/foreman_templates.po +213 -0
- data/locale/ru/LC_MESSAGES/foreman_templates.mo +0 -0
- data/locale/ru/foreman_templates.po +214 -0
- data/locale/sv_SE/LC_MESSAGES/foreman_templates.mo +0 -0
- data/locale/sv_SE/foreman_templates.po +210 -0
- data/locale/zh_CN/LC_MESSAGES/foreman_templates.mo +0 -0
- data/locale/zh_CN/foreman_templates.po +212 -0
- data/locale/zh_TW/LC_MESSAGES/foreman_templates.mo +0 -0
- data/locale/zh_TW/foreman_templates.po +211 -0
- data/package.json +10 -36
- data/webpack/__mocks__/foremanReact/common/I18n.js +1 -0
- data/webpack/__tests__/helpers.test.js +1 -1
- data/webpack/components/NewTemplateSync/NewTemplateSync.js +2 -1
- data/webpack/components/NewTemplateSync/__tests__/NewTemplateSync.test.js +1 -1
- data/webpack/components/NewTemplateSync/__tests__/NewTemplateSyncReducer.test.js +1 -1
- data/webpack/components/NewTemplateSync/__tests__/NewTemplateSyncSelectors.test.js +1 -1
- data/webpack/components/NewTemplateSync/components/ButtonTooltip.js +8 -14
- data/webpack/components/NewTemplateSync/components/NewTemplateSyncForm/NewTemplateSyncForm.js +4 -3
- data/webpack/components/NewTemplateSync/components/NewTemplateSyncForm/__tests__/NewTemplateSyncFormSelectors.test.js +1 -1
- data/webpack/components/NewTemplateSync/components/SyncSettingField.js +3 -2
- data/webpack/components/NewTemplateSync/components/__tests__/SyncSettingField.test.js +1 -1
- data/webpack/components/NewTemplateSync/components/__tests__/SyncSettingFields.test.js +1 -1
- data/webpack/components/NewTemplateSync/components/__tests__/SyncTypeRadios.test.js +1 -1
- data/webpack/components/NewTemplateSync/components/__tests__/TextButtonField.test.js +1 -1
- data/webpack/components/PageNotFound.js +1 -0
- data/webpack/components/PermissionDenied.js +1 -0
- data/webpack/components/TemplateSyncResult/__tests__/TemplateSyncResult.test.js +1 -1
- data/webpack/components/TemplateSyncResult/__tests__/TemplateSyncResultReducer.test.js +1 -1
- data/webpack/components/TemplateSyncResult/components/FinishedSyncResult.js +3 -2
- data/webpack/components/TemplateSyncResult/components/SyncedTemplate/InfoItem.js +4 -8
- data/webpack/components/TemplateSyncResult/components/SyncedTemplate/StringInfoItem.js +2 -15
- data/webpack/components/TemplateSyncResult/components/SyncedTemplate/helpers.js +0 -1
- data/webpack/components/TemplateSyncResult/components/SyncedTemplate/helpers.test.js +1 -1
- data/webpack/components/TemplateSyncResult/components/__tests__/SyncResultList.test.js +1 -1
- data/webpack/components/TemplateSyncResult/components/__tests__/SyncedTemplate.test.js +1 -1
- data/webpack/components/TemplateSyncResult/components/__tests__/__snapshots__/SyncedTemplate.test.js.snap +0 -8
- data/webpack/testSetup.js +1 -1
- metadata +63 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d10fb879246dde2d84d92c427192de0f2afcf8c30963f96f3566622845e19c3
|
4
|
+
data.tar.gz: 938c120b19c1d8154c6f8f8b0d336d0a82964ac2f716934842a864b97d9f568f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73e571efba80da0c016d08f364b0c8a6c78f2d238e48818fc1269c92c720c6dda27b4d6048fce0e50d81c738c4551c5e62124f661a7761ecd5a8af69256b1de1
|
7
|
+
data.tar.gz: b209a6dcdbc1b7bc1a486bc43f06821310864e685f7c5884e84fe86c708d6b1b8bbf5b7fc9fa0fec59a21ab85a513ab10e3ee00de702e06b54a9897aefe38882
|
@@ -0,0 +1,211 @@
|
|
1
|
+
locales['foreman_templates'] = locales['foreman_templates'] || {}; locales['foreman_templates']['cs_CZ'] = {
|
2
|
+
"domain": "foreman_templates",
|
3
|
+
"locale_data": {
|
4
|
+
"foreman_templates": {
|
5
|
+
"": {
|
6
|
+
"Project-Id-Version": "foreman_templates 9.3.0",
|
7
|
+
"Report-Msgid-Bugs-To": "",
|
8
|
+
"PO-Revision-Date": "2019-10-14 12:27+0000",
|
9
|
+
"Last-Translator": "Pavel Borecki <pavel.borecki@gmail.com>, 2022",
|
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_templates",
|
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
|
+
"Branch in Git repo.": [
|
21
|
+
"Větev v Git repozitáři."
|
22
|
+
],
|
23
|
+
"Override the default repo from settings.": [
|
24
|
+
""
|
25
|
+
],
|
26
|
+
"Export templates with names matching this regex (case-insensitive; snippets are not filtered).": [
|
27
|
+
""
|
28
|
+
],
|
29
|
+
"Negate the prefix (for purging).": [
|
30
|
+
""
|
31
|
+
],
|
32
|
+
"The directory within Git repo containing the templates": [
|
33
|
+
""
|
34
|
+
],
|
35
|
+
"Initiate Import": [
|
36
|
+
"Zahájit import"
|
37
|
+
],
|
38
|
+
"The string all imported templates should begin with.": [
|
39
|
+
"Řetězec všech importovaných šablon by měl začínat na."
|
40
|
+
],
|
41
|
+
"Associate to OS's, Locations & Organizations. Options are: always, new or never.": [
|
42
|
+
""
|
43
|
+
],
|
44
|
+
"Update templates that are locked": [
|
45
|
+
"Aktualizovat šablony, které jsou uzamčeny"
|
46
|
+
],
|
47
|
+
"Lock imported templates": [
|
48
|
+
"Uzamknout naimportované šablony"
|
49
|
+
],
|
50
|
+
"Show template diff in response": [
|
51
|
+
""
|
52
|
+
],
|
53
|
+
"Initiate Export": [
|
54
|
+
"Zahájit export"
|
55
|
+
],
|
56
|
+
"Specify how to handle metadata": [
|
57
|
+
"Zadat jak zacházet s metadaty"
|
58
|
+
],
|
59
|
+
"Custom commit message for templates export": [
|
60
|
+
""
|
61
|
+
],
|
62
|
+
"Using file-based synchronization, but couldn't access %s. ": [
|
63
|
+
""
|
64
|
+
],
|
65
|
+
"Please check the access permissions/SELinux and make sure it is readable/writable for the web application user account, typically '%s'.": [
|
66
|
+
""
|
67
|
+
],
|
68
|
+
"Always": [
|
69
|
+
"Vždy"
|
70
|
+
],
|
71
|
+
"New": [
|
72
|
+
"Nové"
|
73
|
+
],
|
74
|
+
"Never": [
|
75
|
+
"Nikdy"
|
76
|
+
],
|
77
|
+
"Lock": [
|
78
|
+
"Zamknout"
|
79
|
+
],
|
80
|
+
"Keep, lock new": [
|
81
|
+
""
|
82
|
+
],
|
83
|
+
"Keep, do not lock new": [
|
84
|
+
""
|
85
|
+
],
|
86
|
+
"Unlock": [
|
87
|
+
"Odemknout"
|
88
|
+
],
|
89
|
+
"Refresh": [
|
90
|
+
"Načíst znovu"
|
91
|
+
],
|
92
|
+
"Keep": [
|
93
|
+
"Ponechat"
|
94
|
+
],
|
95
|
+
"Remove": [
|
96
|
+
"Odebrat"
|
97
|
+
],
|
98
|
+
"Template Sync": [
|
99
|
+
""
|
100
|
+
],
|
101
|
+
"Choose verbosity for Rake task importing templates": [
|
102
|
+
""
|
103
|
+
],
|
104
|
+
"Verbosity": [
|
105
|
+
"Stupeň podrobnosti"
|
106
|
+
],
|
107
|
+
"Associate templates to OS, organization and location": [
|
108
|
+
""
|
109
|
+
],
|
110
|
+
"Associate": [
|
111
|
+
""
|
112
|
+
],
|
113
|
+
"The string that will be added as prefix to imported templates": [
|
114
|
+
""
|
115
|
+
],
|
116
|
+
"Prefix": [
|
117
|
+
"Předpona"
|
118
|
+
],
|
119
|
+
"The directory within the Git repo containing the templates": [
|
120
|
+
""
|
121
|
+
],
|
122
|
+
"Dirname": [
|
123
|
+
""
|
124
|
+
],
|
125
|
+
"Import/export names matching this regex (case-insensitive; snippets are not filtered)": [
|
126
|
+
""
|
127
|
+
],
|
128
|
+
"Filter": [
|
129
|
+
""
|
130
|
+
],
|
131
|
+
"Target path to import/export. Different protocols can be used, for example /tmp/dir, git://example.com, https://example.com, ssh://example.com. When exporting to /tmp, note that production deployments may be configured to use private tmp.": [
|
132
|
+
""
|
133
|
+
],
|
134
|
+
"Repo": [
|
135
|
+
"Repozitář"
|
136
|
+
],
|
137
|
+
"Negate the filter for import/export": [
|
138
|
+
""
|
139
|
+
],
|
140
|
+
"Negate": [
|
141
|
+
"Negovat"
|
142
|
+
],
|
143
|
+
"Default branch in Git repo": [
|
144
|
+
"Výchozí větev v Git repozitáři"
|
145
|
+
],
|
146
|
+
"Branch": [
|
147
|
+
"Větev"
|
148
|
+
],
|
149
|
+
"Default metadata export mode, refresh re-renders metadata, keep will keep existing metadata, remove exports template without metadata": [
|
150
|
+
""
|
151
|
+
],
|
152
|
+
"Metadata export mode": [
|
153
|
+
""
|
154
|
+
],
|
155
|
+
"Should importing overwrite locked templates?": [
|
156
|
+
""
|
157
|
+
],
|
158
|
+
"Force import": [
|
159
|
+
"Vynutit import"
|
160
|
+
],
|
161
|
+
"How to handle lock for imported templates?": [
|
162
|
+
""
|
163
|
+
],
|
164
|
+
"Lock templates": [
|
165
|
+
"Uzamknout šablony"
|
166
|
+
],
|
167
|
+
"Commit message": [
|
168
|
+
""
|
169
|
+
],
|
170
|
+
"Sync Templates": [
|
171
|
+
"Synchronizovat šablony"
|
172
|
+
],
|
173
|
+
"Import or Export Templates": [
|
174
|
+
""
|
175
|
+
],
|
176
|
+
"Use default value from settings": [
|
177
|
+
""
|
178
|
+
],
|
179
|
+
"Page Not Found": [
|
180
|
+
""
|
181
|
+
],
|
182
|
+
"The page you are looking for does not exist": [
|
183
|
+
""
|
184
|
+
],
|
185
|
+
"You are not authorized to perform this action.": [
|
186
|
+
""
|
187
|
+
],
|
188
|
+
"Please request one of the required permissions listed below from a Foreman administrator:": [
|
189
|
+
""
|
190
|
+
],
|
191
|
+
"Permission Denied": [
|
192
|
+
""
|
193
|
+
],
|
194
|
+
"Back to sync form": [
|
195
|
+
""
|
196
|
+
],
|
197
|
+
"Remote action:": [
|
198
|
+
"Akce na protějšku:"
|
199
|
+
],
|
200
|
+
"Import facts": [
|
201
|
+
"Importovat fakta"
|
202
|
+
],
|
203
|
+
"Action with sub plans": [
|
204
|
+
"Akce s dílčími plány"
|
205
|
+
],
|
206
|
+
"Import Puppet classes": [
|
207
|
+
"Importovat Puppet třídy"
|
208
|
+
]
|
209
|
+
}
|
210
|
+
}
|
211
|
+
};
|
@@ -0,0 +1,211 @@
|
|
1
|
+
locales['foreman_templates'] = locales['foreman_templates'] || {}; locales['foreman_templates']['de'] = {
|
2
|
+
"domain": "foreman_templates",
|
3
|
+
"locale_data": {
|
4
|
+
"foreman_templates": {
|
5
|
+
"": {
|
6
|
+
"Project-Id-Version": "foreman_templates 9.3.0",
|
7
|
+
"Report-Msgid-Bugs-To": "",
|
8
|
+
"PO-Revision-Date": "2019-10-14 12:27+0000",
|
9
|
+
"Last-Translator": "Bryan Kearney <bryan.kearney@gmail.com>, 2022",
|
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_templates",
|
18
|
+
"plural_forms": "nplurals=2; plural=(n != 1);"
|
19
|
+
},
|
20
|
+
"Branch in Git repo.": [
|
21
|
+
"Branch im Git-Repo."
|
22
|
+
],
|
23
|
+
"Override the default repo from settings.": [
|
24
|
+
"Überschreiben Sie das Standard-Repository aus den Einstellungen."
|
25
|
+
],
|
26
|
+
"Export templates with names matching this regex (case-insensitive; snippets are not filtered).": [
|
27
|
+
"Exportieren Sie Vorlagen mit Namen, die dieser Regex entsprechen (Groß-/Kleinschreibung wird nicht beachtet; Snippets werden nicht gefiltert)."
|
28
|
+
],
|
29
|
+
"Negate the prefix (for purging).": [
|
30
|
+
"Negieren Sie das Präfix (zum Bereinigen)."
|
31
|
+
],
|
32
|
+
"The directory within Git repo containing the templates": [
|
33
|
+
"Das Verzeichnis im Git-Repository, das die Vorlagen enthält"
|
34
|
+
],
|
35
|
+
"Initiate Import": [
|
36
|
+
"Import einleiten"
|
37
|
+
],
|
38
|
+
"The string all imported templates should begin with.": [
|
39
|
+
"Die Zeichenfolge, mit der alle importierten Vorlagen beginnen sollten."
|
40
|
+
],
|
41
|
+
"Associate to OS's, Locations & Organizations. Options are: always, new or never.": [
|
42
|
+
"Assoziieren mit Betriebssystemen, Standorten und Organisationen. Optionen sind: immer, neu oder nie."
|
43
|
+
],
|
44
|
+
"Update templates that are locked": [
|
45
|
+
"Gesperrte Vorlagen aktualisieren"
|
46
|
+
],
|
47
|
+
"Lock imported templates": [
|
48
|
+
"Importierte Vorlagen sperren"
|
49
|
+
],
|
50
|
+
"Show template diff in response": [
|
51
|
+
"Vorlagenunterschied in Antwort anzeigen"
|
52
|
+
],
|
53
|
+
"Initiate Export": [
|
54
|
+
"Export initiieren"
|
55
|
+
],
|
56
|
+
"Specify how to handle metadata": [
|
57
|
+
"Geben Sie an, wie mit Metadaten umgegangen werden soll"
|
58
|
+
],
|
59
|
+
"Custom commit message for templates export": [
|
60
|
+
""
|
61
|
+
],
|
62
|
+
"Using file-based synchronization, but couldn't access %s. ": [
|
63
|
+
"Using file-based synchronization, but couldn't access %s . "
|
64
|
+
],
|
65
|
+
"Please check the access permissions/SELinux and make sure it is readable/writable for the web application user account, typically '%s'.": [
|
66
|
+
""
|
67
|
+
],
|
68
|
+
"Always": [
|
69
|
+
"Immer"
|
70
|
+
],
|
71
|
+
"New": [
|
72
|
+
"Neu"
|
73
|
+
],
|
74
|
+
"Never": [
|
75
|
+
"Nie"
|
76
|
+
],
|
77
|
+
"Lock": [
|
78
|
+
"Sperren"
|
79
|
+
],
|
80
|
+
"Keep, lock new": [
|
81
|
+
""
|
82
|
+
],
|
83
|
+
"Keep, do not lock new": [
|
84
|
+
""
|
85
|
+
],
|
86
|
+
"Unlock": [
|
87
|
+
"Entsperren"
|
88
|
+
],
|
89
|
+
"Refresh": [
|
90
|
+
"Aktualisieren"
|
91
|
+
],
|
92
|
+
"Keep": [
|
93
|
+
"Behalten"
|
94
|
+
],
|
95
|
+
"Remove": [
|
96
|
+
"Entfernen"
|
97
|
+
],
|
98
|
+
"Template Sync": [
|
99
|
+
""
|
100
|
+
],
|
101
|
+
"Choose verbosity for Rake task importing templates": [
|
102
|
+
"Wählen Sie die Ausführlichkeit für Importvorlagen für Rake-Tasks"
|
103
|
+
],
|
104
|
+
"Verbosity": [
|
105
|
+
"Ausführlichkeit"
|
106
|
+
],
|
107
|
+
"Associate templates to OS, organization and location": [
|
108
|
+
"Verknüpfen Sie Vorlagen mit Betriebssystem, Organisation und Standort"
|
109
|
+
],
|
110
|
+
"Associate": [
|
111
|
+
"Assoziieren"
|
112
|
+
],
|
113
|
+
"The string that will be added as prefix to imported templates": [
|
114
|
+
""
|
115
|
+
],
|
116
|
+
"Prefix": [
|
117
|
+
"Präfix"
|
118
|
+
],
|
119
|
+
"The directory within the Git repo containing the templates": [
|
120
|
+
"Das Verzeichnis im Git-Repository, das die Vorlagen enthält"
|
121
|
+
],
|
122
|
+
"Dirname": [
|
123
|
+
"Dirname"
|
124
|
+
],
|
125
|
+
"Import/export names matching this regex (case-insensitive; snippets are not filtered)": [
|
126
|
+
""
|
127
|
+
],
|
128
|
+
"Filter": [
|
129
|
+
"Filter"
|
130
|
+
],
|
131
|
+
"Target path to import/export. Different protocols can be used, for example /tmp/dir, git://example.com, https://example.com, ssh://example.com. When exporting to /tmp, note that production deployments may be configured to use private tmp.": [
|
132
|
+
""
|
133
|
+
],
|
134
|
+
"Repo": [
|
135
|
+
"Repository"
|
136
|
+
],
|
137
|
+
"Negate the filter for import/export": [
|
138
|
+
""
|
139
|
+
],
|
140
|
+
"Negate": [
|
141
|
+
"Negieren"
|
142
|
+
],
|
143
|
+
"Default branch in Git repo": [
|
144
|
+
"Standard-Branch im Git-Repository"
|
145
|
+
],
|
146
|
+
"Branch": [
|
147
|
+
"Zweig"
|
148
|
+
],
|
149
|
+
"Default metadata export mode, refresh re-renders metadata, keep will keep existing metadata, remove exports template without metadata": [
|
150
|
+
"Standard-Metadaten-Exportmodus, Aktualisieren, rendert Metadaten neu, behält vorhandene Metadaten bei, entfernt Exportvorlagen ohne Metadaten"
|
151
|
+
],
|
152
|
+
"Metadata export mode": [
|
153
|
+
"Metadaten-Exportmodus"
|
154
|
+
],
|
155
|
+
"Should importing overwrite locked templates?": [
|
156
|
+
"Sollen beim Importieren gesperrte Vorlagen überschrieben werden?"
|
157
|
+
],
|
158
|
+
"Force import": [
|
159
|
+
"Import erzwingen"
|
160
|
+
],
|
161
|
+
"How to handle lock for imported templates?": [
|
162
|
+
""
|
163
|
+
],
|
164
|
+
"Lock templates": [
|
165
|
+
"Vorlagen sperren"
|
166
|
+
],
|
167
|
+
"Commit message": [
|
168
|
+
""
|
169
|
+
],
|
170
|
+
"Sync Templates": [
|
171
|
+
"Sync Templates"
|
172
|
+
],
|
173
|
+
"Import or Export Templates": [
|
174
|
+
""
|
175
|
+
],
|
176
|
+
"Use default value from settings": [
|
177
|
+
""
|
178
|
+
],
|
179
|
+
"Page Not Found": [
|
180
|
+
""
|
181
|
+
],
|
182
|
+
"The page you are looking for does not exist": [
|
183
|
+
""
|
184
|
+
],
|
185
|
+
"You are not authorized to perform this action.": [
|
186
|
+
"Sie sind nicht berechtigt, diese Aktion durchzuführen."
|
187
|
+
],
|
188
|
+
"Please request one of the required permissions listed below from a Foreman administrator:": [
|
189
|
+
"Bitte fordern Sie eine der erforderlichen Berechtigungen unterhalb bei einem Foreman-Administrator an:"
|
190
|
+
],
|
191
|
+
"Permission Denied": [
|
192
|
+
""
|
193
|
+
],
|
194
|
+
"Back to sync form": [
|
195
|
+
""
|
196
|
+
],
|
197
|
+
"Remote action:": [
|
198
|
+
"Entfernte Aktion:"
|
199
|
+
],
|
200
|
+
"Import facts": [
|
201
|
+
"Fakten importieren"
|
202
|
+
],
|
203
|
+
"Action with sub plans": [
|
204
|
+
"Aktion mit Unterplänen"
|
205
|
+
],
|
206
|
+
"Import Puppet classes": [
|
207
|
+
"Puppet-Klassen importieren"
|
208
|
+
]
|
209
|
+
}
|
210
|
+
}
|
211
|
+
};
|
@@ -0,0 +1,211 @@
|
|
1
|
+
locales['foreman_templates'] = locales['foreman_templates'] || {}; locales['foreman_templates']['en_GB'] = {
|
2
|
+
"domain": "foreman_templates",
|
3
|
+
"locale_data": {
|
4
|
+
"foreman_templates": {
|
5
|
+
"": {
|
6
|
+
"Project-Id-Version": "foreman_templates 9.3.0",
|
7
|
+
"Report-Msgid-Bugs-To": "",
|
8
|
+
"PO-Revision-Date": "2019-10-14 12:27+0000",
|
9
|
+
"Last-Translator": "Andi Chandler <andi@gowling.com>, 2022",
|
10
|
+
"Language-Team": "English (United Kingdom) (https://www.transifex.com/foreman/teams/114/en_GB/)",
|
11
|
+
"MIME-Version": "1.0",
|
12
|
+
"Content-Type": "text/plain; charset=UTF-8",
|
13
|
+
"Content-Transfer-Encoding": "8bit",
|
14
|
+
"Language": "en_GB",
|
15
|
+
"Plural-Forms": "nplurals=2; plural=(n != 1);",
|
16
|
+
"lang": "en_GB",
|
17
|
+
"domain": "foreman_templates",
|
18
|
+
"plural_forms": "nplurals=2; plural=(n != 1);"
|
19
|
+
},
|
20
|
+
"Branch in Git repo.": [
|
21
|
+
""
|
22
|
+
],
|
23
|
+
"Override the default repo from settings.": [
|
24
|
+
""
|
25
|
+
],
|
26
|
+
"Export templates with names matching this regex (case-insensitive; snippets are not filtered).": [
|
27
|
+
""
|
28
|
+
],
|
29
|
+
"Negate the prefix (for purging).": [
|
30
|
+
""
|
31
|
+
],
|
32
|
+
"The directory within Git repo containing the templates": [
|
33
|
+
""
|
34
|
+
],
|
35
|
+
"Initiate Import": [
|
36
|
+
""
|
37
|
+
],
|
38
|
+
"The string all imported templates should begin with.": [
|
39
|
+
""
|
40
|
+
],
|
41
|
+
"Associate to OS's, Locations & Organizations. Options are: always, new or never.": [
|
42
|
+
""
|
43
|
+
],
|
44
|
+
"Update templates that are locked": [
|
45
|
+
""
|
46
|
+
],
|
47
|
+
"Lock imported templates": [
|
48
|
+
""
|
49
|
+
],
|
50
|
+
"Show template diff in response": [
|
51
|
+
""
|
52
|
+
],
|
53
|
+
"Initiate Export": [
|
54
|
+
""
|
55
|
+
],
|
56
|
+
"Specify how to handle metadata": [
|
57
|
+
""
|
58
|
+
],
|
59
|
+
"Custom commit message for templates export": [
|
60
|
+
""
|
61
|
+
],
|
62
|
+
"Using file-based synchronization, but couldn't access %s. ": [
|
63
|
+
""
|
64
|
+
],
|
65
|
+
"Please check the access permissions/SELinux and make sure it is readable/writable for the web application user account, typically '%s'.": [
|
66
|
+
""
|
67
|
+
],
|
68
|
+
"Always": [
|
69
|
+
""
|
70
|
+
],
|
71
|
+
"New": [
|
72
|
+
""
|
73
|
+
],
|
74
|
+
"Never": [
|
75
|
+
""
|
76
|
+
],
|
77
|
+
"Lock": [
|
78
|
+
""
|
79
|
+
],
|
80
|
+
"Keep, lock new": [
|
81
|
+
""
|
82
|
+
],
|
83
|
+
"Keep, do not lock new": [
|
84
|
+
""
|
85
|
+
],
|
86
|
+
"Unlock": [
|
87
|
+
""
|
88
|
+
],
|
89
|
+
"Refresh": [
|
90
|
+
""
|
91
|
+
],
|
92
|
+
"Keep": [
|
93
|
+
""
|
94
|
+
],
|
95
|
+
"Remove": [
|
96
|
+
""
|
97
|
+
],
|
98
|
+
"Template Sync": [
|
99
|
+
""
|
100
|
+
],
|
101
|
+
"Choose verbosity for Rake task importing templates": [
|
102
|
+
""
|
103
|
+
],
|
104
|
+
"Verbosity": [
|
105
|
+
""
|
106
|
+
],
|
107
|
+
"Associate templates to OS, organization and location": [
|
108
|
+
""
|
109
|
+
],
|
110
|
+
"Associate": [
|
111
|
+
""
|
112
|
+
],
|
113
|
+
"The string that will be added as prefix to imported templates": [
|
114
|
+
""
|
115
|
+
],
|
116
|
+
"Prefix": [
|
117
|
+
""
|
118
|
+
],
|
119
|
+
"The directory within the Git repo containing the templates": [
|
120
|
+
""
|
121
|
+
],
|
122
|
+
"Dirname": [
|
123
|
+
""
|
124
|
+
],
|
125
|
+
"Import/export names matching this regex (case-insensitive; snippets are not filtered)": [
|
126
|
+
""
|
127
|
+
],
|
128
|
+
"Filter": [
|
129
|
+
""
|
130
|
+
],
|
131
|
+
"Target path to import/export. Different protocols can be used, for example /tmp/dir, git://example.com, https://example.com, ssh://example.com. When exporting to /tmp, note that production deployments may be configured to use private tmp.": [
|
132
|
+
""
|
133
|
+
],
|
134
|
+
"Repo": [
|
135
|
+
""
|
136
|
+
],
|
137
|
+
"Negate the filter for import/export": [
|
138
|
+
""
|
139
|
+
],
|
140
|
+
"Negate": [
|
141
|
+
""
|
142
|
+
],
|
143
|
+
"Default branch in Git repo": [
|
144
|
+
""
|
145
|
+
],
|
146
|
+
"Branch": [
|
147
|
+
""
|
148
|
+
],
|
149
|
+
"Default metadata export mode, refresh re-renders metadata, keep will keep existing metadata, remove exports template without metadata": [
|
150
|
+
""
|
151
|
+
],
|
152
|
+
"Metadata export mode": [
|
153
|
+
""
|
154
|
+
],
|
155
|
+
"Should importing overwrite locked templates?": [
|
156
|
+
""
|
157
|
+
],
|
158
|
+
"Force import": [
|
159
|
+
""
|
160
|
+
],
|
161
|
+
"How to handle lock for imported templates?": [
|
162
|
+
""
|
163
|
+
],
|
164
|
+
"Lock templates": [
|
165
|
+
""
|
166
|
+
],
|
167
|
+
"Commit message": [
|
168
|
+
""
|
169
|
+
],
|
170
|
+
"Sync Templates": [
|
171
|
+
""
|
172
|
+
],
|
173
|
+
"Import or Export Templates": [
|
174
|
+
""
|
175
|
+
],
|
176
|
+
"Use default value from settings": [
|
177
|
+
""
|
178
|
+
],
|
179
|
+
"Page Not Found": [
|
180
|
+
""
|
181
|
+
],
|
182
|
+
"The page you are looking for does not exist": [
|
183
|
+
""
|
184
|
+
],
|
185
|
+
"You are not authorized to perform this action.": [
|
186
|
+
"You are not authorised to perform this action."
|
187
|
+
],
|
188
|
+
"Please request one of the required permissions listed below from a Foreman administrator:": [
|
189
|
+
""
|
190
|
+
],
|
191
|
+
"Permission Denied": [
|
192
|
+
""
|
193
|
+
],
|
194
|
+
"Back to sync form": [
|
195
|
+
""
|
196
|
+
],
|
197
|
+
"Remote action:": [
|
198
|
+
"Remote action:"
|
199
|
+
],
|
200
|
+
"Import facts": [
|
201
|
+
"Import facts"
|
202
|
+
],
|
203
|
+
"Action with sub plans": [
|
204
|
+
"Action with sub plans"
|
205
|
+
],
|
206
|
+
"Import Puppet classes": [
|
207
|
+
"Import Puppet classes"
|
208
|
+
]
|
209
|
+
}
|
210
|
+
}
|
211
|
+
};
|