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
@@ -0,0 +1,211 @@
|
|
1
|
+
locales['foreman_templates'] = locales['foreman_templates'] || {}; locales['foreman_templates']['ko'] = {
|
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": "Korean (https://www.transifex.com/foreman/teams/114/ko/)",
|
11
|
+
"MIME-Version": "1.0",
|
12
|
+
"Content-Type": "text/plain; charset=UTF-8",
|
13
|
+
"Content-Transfer-Encoding": "8bit",
|
14
|
+
"Language": "ko",
|
15
|
+
"Plural-Forms": "nplurals=1; plural=0;",
|
16
|
+
"lang": "ko",
|
17
|
+
"domain": "foreman_templates",
|
18
|
+
"plural_forms": "nplurals=1; plural=0;"
|
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
|
+
"이 작업을 수행할 권한이 없습니다."
|
187
|
+
],
|
188
|
+
"Please request one of the required permissions listed below from a Foreman administrator:": [
|
189
|
+
"Foreman 관리자에게 아래에 나열된 필수 권한 중 하나를 요청하십시오."
|
190
|
+
],
|
191
|
+
"Permission Denied": [
|
192
|
+
""
|
193
|
+
],
|
194
|
+
"Back to sync form": [
|
195
|
+
""
|
196
|
+
],
|
197
|
+
"Remote action:": [
|
198
|
+
"원격 작업:"
|
199
|
+
],
|
200
|
+
"Import facts": [
|
201
|
+
"팩트 불러오기"
|
202
|
+
],
|
203
|
+
"Action with sub plans": [
|
204
|
+
"하위 계획이 있는 작업"
|
205
|
+
],
|
206
|
+
"Import Puppet classes": [
|
207
|
+
"Puppet 클래스 가져오기"
|
208
|
+
]
|
209
|
+
}
|
210
|
+
}
|
211
|
+
};
|
@@ -0,0 +1,211 @@
|
|
1
|
+
locales['foreman_templates'] = locales['foreman_templates'] || {}; locales['foreman_templates']['pt_BR'] = {
|
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": "Amit Upadhye <aupadhye@redhat.com>, 2022",
|
10
|
+
"Language-Team": "Portuguese (Brazil) (https://www.transifex.com/foreman/teams/114/pt_BR/)",
|
11
|
+
"MIME-Version": "1.0",
|
12
|
+
"Content-Type": "text/plain; charset=UTF-8",
|
13
|
+
"Content-Transfer-Encoding": "8bit",
|
14
|
+
"Language": "pt_BR",
|
15
|
+
"Plural-Forms": "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;",
|
16
|
+
"lang": "pt_BR",
|
17
|
+
"domain": "foreman_templates",
|
18
|
+
"plural_forms": "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
19
|
+
},
|
20
|
+
"Branch in Git repo.": [
|
21
|
+
"Ramo em Git repo."
|
22
|
+
],
|
23
|
+
"Override the default repo from settings.": [
|
24
|
+
"Anular o reporte padrão das configurações."
|
25
|
+
],
|
26
|
+
"Export templates with names matching this regex (case-insensitive; snippets are not filtered).": [
|
27
|
+
"Modelos de exportação com nomes correspondentes a este regex (não sensível a maiúsculas e minúsculas; os trechos não são filtrados)."
|
28
|
+
],
|
29
|
+
"Negate the prefix (for purging).": [
|
30
|
+
"Negar o prefixo (para purga)."
|
31
|
+
],
|
32
|
+
"The directory within Git repo containing the templates": [
|
33
|
+
"O diretório dentro do Git repo contendo os gabaritos"
|
34
|
+
],
|
35
|
+
"Initiate Import": [
|
36
|
+
"Iniciar a importação"
|
37
|
+
],
|
38
|
+
"The string all imported templates should begin with.": [
|
39
|
+
"O fio deve começar com todos os modelos importados."
|
40
|
+
],
|
41
|
+
"Associate to OS's, Locations & Organizations. Options are: always, new or never.": [
|
42
|
+
"Associado a OS's, Locais e Organizações. As opções são: sempre, novo ou nunca."
|
43
|
+
],
|
44
|
+
"Update templates that are locked": [
|
45
|
+
"Modelos de atualização que são bloqueados"
|
46
|
+
],
|
47
|
+
"Lock imported templates": [
|
48
|
+
"Travar modelos importados"
|
49
|
+
],
|
50
|
+
"Show template diff in response": [
|
51
|
+
"Mostrar modelo dif em resposta"
|
52
|
+
],
|
53
|
+
"Initiate Export": [
|
54
|
+
"Iniciar a exportação"
|
55
|
+
],
|
56
|
+
"Specify how to handle metadata": [
|
57
|
+
"Especificar como lidar com metadados"
|
58
|
+
],
|
59
|
+
"Custom commit message for templates export": [
|
60
|
+
""
|
61
|
+
],
|
62
|
+
"Using file-based synchronization, but couldn't access %s. ": [
|
63
|
+
"Usando a sincronização baseada em arquivos, mas não foi possível acessar %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
|
+
"Sempre"
|
70
|
+
],
|
71
|
+
"New": [
|
72
|
+
"Novo"
|
73
|
+
],
|
74
|
+
"Never": [
|
75
|
+
"Nunca"
|
76
|
+
],
|
77
|
+
"Lock": [
|
78
|
+
"Bloqueio"
|
79
|
+
],
|
80
|
+
"Keep, lock new": [
|
81
|
+
""
|
82
|
+
],
|
83
|
+
"Keep, do not lock new": [
|
84
|
+
""
|
85
|
+
],
|
86
|
+
"Unlock": [
|
87
|
+
"Desbloquear"
|
88
|
+
],
|
89
|
+
"Refresh": [
|
90
|
+
"Atualizar"
|
91
|
+
],
|
92
|
+
"Keep": [
|
93
|
+
"Guarde"
|
94
|
+
],
|
95
|
+
"Remove": [
|
96
|
+
"Remover"
|
97
|
+
],
|
98
|
+
"Template Sync": [
|
99
|
+
""
|
100
|
+
],
|
101
|
+
"Choose verbosity for Rake task importing templates": [
|
102
|
+
"Escolha a verbosidade para os modelos de importação da tarefa Rake"
|
103
|
+
],
|
104
|
+
"Verbosity": [
|
105
|
+
"Verbosidade"
|
106
|
+
],
|
107
|
+
"Associate templates to OS, organization and location": [
|
108
|
+
"Associar modelos ao sistema operacional, organização e localização"
|
109
|
+
],
|
110
|
+
"Associate": [
|
111
|
+
"Associado"
|
112
|
+
],
|
113
|
+
"The string that will be added as prefix to imported templates": [
|
114
|
+
""
|
115
|
+
],
|
116
|
+
"Prefix": [
|
117
|
+
"Prefixo"
|
118
|
+
],
|
119
|
+
"The directory within the Git repo containing the templates": [
|
120
|
+
"O diretório dentro do Git repo contendo os modelos"
|
121
|
+
],
|
122
|
+
"Dirname": [
|
123
|
+
"Dirname"
|
124
|
+
],
|
125
|
+
"Import/export names matching this regex (case-insensitive; snippets are not filtered)": [
|
126
|
+
""
|
127
|
+
],
|
128
|
+
"Filter": [
|
129
|
+
"Flitro"
|
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
|
+
"Repo"
|
136
|
+
],
|
137
|
+
"Negate the filter for import/export": [
|
138
|
+
""
|
139
|
+
],
|
140
|
+
"Negate": [
|
141
|
+
"Negue"
|
142
|
+
],
|
143
|
+
"Default branch in Git repo": [
|
144
|
+
"Ramo padrão em Git repo"
|
145
|
+
],
|
146
|
+
"Branch": [
|
147
|
+
"Ramo"
|
148
|
+
],
|
149
|
+
"Default metadata export mode, refresh re-renders metadata, keep will keep existing metadata, remove exports template without metadata": [
|
150
|
+
"Modo de exportação de metadados padrão, atualiza os metadados de revenda, mantém manterá os metadados existentes, removerá o modelo de exportação sem metadados"
|
151
|
+
],
|
152
|
+
"Metadata export mode": [
|
153
|
+
"Modo de exportação de metadados"
|
154
|
+
],
|
155
|
+
"Should importing overwrite locked templates?": [
|
156
|
+
"A importação deve sobregravar modelos bloqueados?"
|
157
|
+
],
|
158
|
+
"Force import": [
|
159
|
+
"Forçar a importação"
|
160
|
+
],
|
161
|
+
"How to handle lock for imported templates?": [
|
162
|
+
""
|
163
|
+
],
|
164
|
+
"Lock templates": [
|
165
|
+
"Modelos de fechaduras"
|
166
|
+
],
|
167
|
+
"Commit message": [
|
168
|
+
""
|
169
|
+
],
|
170
|
+
"Sync Templates": [
|
171
|
+
"Modelos de Sincronização"
|
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
|
+
"Você não está autorizado a executar essa ação."
|
187
|
+
],
|
188
|
+
"Please request one of the required permissions listed below from a Foreman administrator:": [
|
189
|
+
"Por favor, solicite uma das permissões necessárias listadas abaixo através de um administrador Foreman:"
|
190
|
+
],
|
191
|
+
"Permission Denied": [
|
192
|
+
"Permissão negada"
|
193
|
+
],
|
194
|
+
"Back to sync form": [
|
195
|
+
""
|
196
|
+
],
|
197
|
+
"Remote action:": [
|
198
|
+
"Ação remota:"
|
199
|
+
],
|
200
|
+
"Import facts": [
|
201
|
+
"Importar fatos"
|
202
|
+
],
|
203
|
+
"Action with sub plans": [
|
204
|
+
"Ação com subplanos "
|
205
|
+
],
|
206
|
+
"Import Puppet classes": [
|
207
|
+
"Importar classes de Puppet"
|
208
|
+
]
|
209
|
+
}
|
210
|
+
}
|
211
|
+
};
|
@@ -0,0 +1,211 @@
|
|
1
|
+
locales['foreman_templates'] = locales['foreman_templates'] || {}; locales['foreman_templates']['ru'] = {
|
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": "Russian (https://www.transifex.com/foreman/teams/114/ru/)",
|
11
|
+
"MIME-Version": "1.0",
|
12
|
+
"Content-Type": "text/plain; charset=UTF-8",
|
13
|
+
"Content-Transfer-Encoding": "8bit",
|
14
|
+
"Language": "ru",
|
15
|
+
"Plural-Forms": "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);",
|
16
|
+
"lang": "ru",
|
17
|
+
"domain": "foreman_templates",
|
18
|
+
"plural_forms": "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"
|
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
|
+
"Недостаточно полномочий для выполнения операции"
|
187
|
+
],
|
188
|
+
"Please request one of the required permissions listed below from a Foreman administrator:": [
|
189
|
+
"Для получения необходимых разрешений обратитесь к администратору Foreman:"
|
190
|
+
],
|
191
|
+
"Permission Denied": [
|
192
|
+
""
|
193
|
+
],
|
194
|
+
"Back to sync form": [
|
195
|
+
""
|
196
|
+
],
|
197
|
+
"Remote action:": [
|
198
|
+
"Удаленное действие:"
|
199
|
+
],
|
200
|
+
"Import facts": [
|
201
|
+
"Импорт фактов"
|
202
|
+
],
|
203
|
+
"Action with sub plans": [
|
204
|
+
"Действия с подпланами"
|
205
|
+
],
|
206
|
+
"Import Puppet classes": [
|
207
|
+
"Импорт классов Puppet"
|
208
|
+
]
|
209
|
+
}
|
210
|
+
}
|
211
|
+
};
|