electron-forge-maker-innosetup 0.2.9
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.
- package/LICENSE +21 -0
- package/README.md +360 -0
- package/dist/MakerInnosetup.d.ts +63 -0
- package/dist/MakerInnosetup.js +424 -0
- package/dist/generator.d.ts +82 -0
- package/dist/generator.js +495 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +29 -0
- package/dist/parser.d.ts +83 -0
- package/dist/parser.js +494 -0
- package/dist/types.d.ts +607 -0
- package/dist/types.js +5 -0
- package/package.json +50 -0
- package/vendor/.gitkeep +2 -0
- package/vendor/innosetup/Default.isl +384 -0
- package/vendor/innosetup/ISCC.exe +0 -0
- package/vendor/innosetup/ISCmplr.dll +0 -0
- package/vendor/innosetup/ISPPBuiltins.iss +323 -0
- package/vendor/innosetup/Languages/Armenian.isl +376 -0
- package/vendor/innosetup/Languages/BrazilianPortuguese.isl +384 -0
- package/vendor/innosetup/Languages/Bulgarian.isl +382 -0
- package/vendor/innosetup/Languages/Catalan.isl +371 -0
- package/vendor/innosetup/Languages/ChineseSimplified.isl +420 -0
- package/vendor/innosetup/Languages/Corsican.isl +399 -0
- package/vendor/innosetup/Languages/Czech.isl +378 -0
- package/vendor/innosetup/Languages/Danish.isl +379 -0
- package/vendor/innosetup/Languages/Dutch.isl +359 -0
- package/vendor/innosetup/Languages/Finnish.isl +359 -0
- package/vendor/innosetup/Languages/French.isl +404 -0
- package/vendor/innosetup/Languages/German.isl +406 -0
- package/vendor/innosetup/Languages/Hebrew.isl +377 -0
- package/vendor/innosetup/Languages/Icelandic.isl +361 -0
- package/vendor/innosetup/Languages/Italian.isl +390 -0
- package/vendor/innosetup/Languages/Japanese.isl +367 -0
- package/vendor/innosetup/Languages/Norwegian.isl +378 -0
- package/vendor/innosetup/Languages/Polish.isl +377 -0
- package/vendor/innosetup/Languages/Portuguese.isl +366 -0
- package/vendor/innosetup/Languages/Russian.isl +370 -0
- package/vendor/innosetup/Languages/Slovak.isl +385 -0
- package/vendor/innosetup/Languages/Slovenian.isl +370 -0
- package/vendor/innosetup/Languages/Spanish.isl +383 -0
- package/vendor/innosetup/Languages/Turkish.isl +384 -0
- package/vendor/innosetup/Languages/Ukrainian.isl +385 -0
- package/vendor/innosetup/WizClassicImage-IS.bmp +0 -0
- package/vendor/innosetup/WizClassicImage.bmp +0 -0
- package/vendor/innosetup/WizClassicSmallImage-IS.bmp +0 -0
- package/vendor/innosetup/WizClassicSmallImage.bmp +0 -0
- package/vendor/innosetup/isbunzip.dll +0 -0
- package/vendor/innosetup/isbzip.dll +0 -0
- package/vendor/innosetup/islzma.dll +0 -0
- package/vendor/innosetup/islzma32.exe +0 -0
- package/vendor/innosetup/islzma64.exe +0 -0
- package/vendor/innosetup/isscint.dll +0 -0
- package/vendor/innosetup/isunzlib.dll +0 -0
- package/vendor/innosetup/iszlib.dll +0 -0
|
@@ -0,0 +1,385 @@
|
|
|
1
|
+
; *** Inno Setup version 6.1.0+ Ukrainian messages ***
|
|
2
|
+
; Author: Dmytro Onyshchuk
|
|
3
|
+
; E-Mail: mrlols3@gmail.com
|
|
4
|
+
; Please report all spelling/grammar errors, and observations.
|
|
5
|
+
; Version 2020.08.04
|
|
6
|
+
|
|
7
|
+
; *** ���������� �������� Inno Setup ��� ���� 6.1.0 �� ����***
|
|
8
|
+
; ����� ���������: ������ ������
|
|
9
|
+
; E-Mail: mrlols3@gmail.com
|
|
10
|
+
; ���� �����, ����������� ��� �� �������� ������� �� ����������.
|
|
11
|
+
; ����� ��������� 2020.08.04
|
|
12
|
+
|
|
13
|
+
[LangOptions]
|
|
14
|
+
; The following three entries are very important. Be sure to read and
|
|
15
|
+
; understand the '[LangOptions] section' topic in the help file.
|
|
16
|
+
LanguageName=<0423><043A><0440><0430><0457><043D><0441><044C><043A><0430>
|
|
17
|
+
LanguageID=$0422
|
|
18
|
+
LanguageCodePage=1251
|
|
19
|
+
; If the language you are translating to requires special font faces or
|
|
20
|
+
; sizes, uncomment any of the following entries and change them accordingly.
|
|
21
|
+
;DialogFontName=
|
|
22
|
+
;DialogFontSize=8
|
|
23
|
+
;WelcomeFontName=Verdana
|
|
24
|
+
;WelcomeFontSize=12
|
|
25
|
+
;TitleFontName=Arial
|
|
26
|
+
;TitleFontSize=29
|
|
27
|
+
;CopyrightFontName=Arial
|
|
28
|
+
;CopyrightFontSize=8
|
|
29
|
+
|
|
30
|
+
[Messages]
|
|
31
|
+
|
|
32
|
+
; *** ��������� ��������
|
|
33
|
+
SetupAppTitle=������������
|
|
34
|
+
SetupWindowTitle=������������ � %1
|
|
35
|
+
UninstallAppTitle=���������
|
|
36
|
+
UninstallAppFullTitle=��������� � %1
|
|
37
|
+
|
|
38
|
+
; *** Misc. common
|
|
39
|
+
InformationTitle=����������
|
|
40
|
+
ConfirmTitle=ϳ�����������
|
|
41
|
+
ErrorTitle=�������
|
|
42
|
+
|
|
43
|
+
; *** SetupLdr messages
|
|
44
|
+
SetupLdrStartupMessage=�� �������� ���������� %1 �� ��� ����'����, ������ ����������?
|
|
45
|
+
LdrCannotCreateTemp=��������� �������� ���������� ����. ������������ ���������
|
|
46
|
+
LdrCannotExecTemp=��������� �������� ���� � ��������� �����. ������������ ���������
|
|
47
|
+
HelpTextNote=
|
|
48
|
+
|
|
49
|
+
; *** Startup error messages
|
|
50
|
+
LastErrorMessage=%1.%n%n������� %2: %3
|
|
51
|
+
SetupFileMissing=���� %1 �������� � ����� ������������. ���� �����, �������� �� ������� ��� ��������� ���� ���� ��������.
|
|
52
|
+
SetupFileCorrupt=����� ������������ ����������. ���� �����, ��������� ���� ���� ��������.
|
|
53
|
+
SetupFileCorruptOrWrongVer=����� ������������ ���������� ��� �������� � ���� ����� �������� ������������. ���� �����, �������� �� ������� ��� ��������� ���� ���� ��������.
|
|
54
|
+
InvalidParameter=��������� ����� ������ ������������ ��������:%n%n%1
|
|
55
|
+
SetupAlreadyRunning=�������� ������������ ��� ��������.
|
|
56
|
+
WindowsVersionNotSupported=�� �������� �� ������� ����� Windows, ����������� �� ����� ����'����.
|
|
57
|
+
WindowsServicePackRequired=�� �������� ������ %1 Service Pack %2 ��� ���� ���� �����.
|
|
58
|
+
NotOnThisPlatform=�� �������� �� ���� ��������� �� %1.
|
|
59
|
+
OnlyOnThisPlatform=�� �������� ������� ���� ������� �� %1.
|
|
60
|
+
OnlyOnTheseArchitectures=�� �������� ���� ���� ����������� ���� �� ����'������ �� ���������� Windows ��� ��������� ���������� ���������:%n%n%1
|
|
61
|
+
WinVersionTooLowError=�� �������� ������ %1 ���� %2 ��� ���� ���� �����.
|
|
62
|
+
WinVersionTooHighError=�� �������� �� ���� ���� ����������� �� %1 ���� %2 ��� ���� ���� �����.
|
|
63
|
+
AdminPrivilegesRequired=��� ���������� �� �������� �� ������� ����� �� ������� �� ������������.
|
|
64
|
+
PowerUserPrivilegesRequired=��� ���������� �� �������� �� ������� ����� �� ������� �� ������������ ��� �� ���� ����� ���������� ������������.
|
|
65
|
+
SetupAppRunningError=��������, �� %1 ��� �������.%n%n���� �����, �������� �� ��ﳿ �������� �� ��������� �OK� ��� �����������, ��� ���������� ��� ������.
|
|
66
|
+
UninstallAppRunningError=��������, �� %1 ��� �������.%n%n���� �����, �������� �� ��ﳿ �������� �� ��������� �OK� ��� �����������, ��� ���������� ��� ������.
|
|
67
|
+
|
|
68
|
+
; *** Startup questions
|
|
69
|
+
PrivilegesRequiredOverrideTitle=���� ������ ������������
|
|
70
|
+
PrivilegesRequiredOverrideInstruction=������� ����� ������������
|
|
71
|
+
PrivilegesRequiredOverrideText1=%1 ���� ���� ����������� ��� ��� ������������ (������� ����� �������������), ��� ����� ��� ���.
|
|
72
|
+
PrivilegesRequiredOverrideText2=%1 ���� ���� ����������� ����� ��� ���, ��� ��� ��� ������������ (������� ����� �������������).
|
|
73
|
+
PrivilegesRequiredOverrideAllUsers=���������� ��� &��� ������������
|
|
74
|
+
PrivilegesRequiredOverrideAllUsersRecommended=���������� ��� &��� ������������ (�������������)
|
|
75
|
+
PrivilegesRequiredOverrideCurrentUser=���������� ����� ��� ����
|
|
76
|
+
PrivilegesRequiredOverrideCurrentUserRecommended=���������� ����� ��� &���� (�������������)
|
|
77
|
+
|
|
78
|
+
; *** �� �������
|
|
79
|
+
ErrorCreatingDir=������� ������������ �� ������� �������� ����� "%1"
|
|
80
|
+
ErrorTooManyFilesInDir=������� ������������ �� ������� �������� ���� � ����� "%1", ���� �� � ����� ������� ������ �����
|
|
81
|
+
|
|
82
|
+
; *** ������ ����������� ��������
|
|
83
|
+
ExitSetupTitle=����� � �������� ������������
|
|
84
|
+
ExitSetupMessage=������������ �� ���������. ���� �� ������� �����, �������� �� ���� �����������.%n%n�� ������ ������� �������� ������������ � ����� �����.%n%n����� � �������� ������������?
|
|
85
|
+
AboutSetupMenuItem=&��� �������� ������������...
|
|
86
|
+
AboutSetupTitle=��� �������� ������������
|
|
87
|
+
AboutSetupMessage=%1 ����� %2%n%3%n%n%1 ������� �������:%n%4
|
|
88
|
+
AboutSetupNote=
|
|
89
|
+
TranslatorNote=Ukrainian translation by Dmytro Onyshchuk
|
|
90
|
+
|
|
91
|
+
; *** ������
|
|
92
|
+
ButtonBack=< &�����
|
|
93
|
+
ButtonNext=&��� >
|
|
94
|
+
ButtonInstall=&����������
|
|
95
|
+
ButtonOK=OK
|
|
96
|
+
ButtonCancel=���������
|
|
97
|
+
ButtonYes=&���
|
|
98
|
+
ButtonYesToAll=��� ��� &���
|
|
99
|
+
ButtonNo=&ͳ
|
|
100
|
+
ButtonNoToAll=�&� ��� ���
|
|
101
|
+
ButtonFinish=&������
|
|
102
|
+
ButtonBrowse=&�����...
|
|
103
|
+
ButtonWizardBrowse=�&����...
|
|
104
|
+
ButtonNewFolder=&�������� �����
|
|
105
|
+
|
|
106
|
+
; *** ij������� ����������� "���� ����"
|
|
107
|
+
SelectLanguageTitle=������� ���� ������������
|
|
108
|
+
SelectLanguageLabel=������� ����, ��� ���� ����������������� �� ��� ������������.
|
|
109
|
+
|
|
110
|
+
; *** ������� ���� ��������
|
|
111
|
+
ClickNext=��������� ���볻, ��� ����������, ��� ���������� ��� ������ � �������� ������������.
|
|
112
|
+
BeveledLabel=
|
|
113
|
+
BrowseDialogTitle=����� �����
|
|
114
|
+
BrowseDialogLabel=������� ����� � ������ �� ��������� ��ʻ.
|
|
115
|
+
NewFolderName=���� �����
|
|
116
|
+
|
|
117
|
+
; *** ������� "���������"
|
|
118
|
+
WelcomeLabel1=������� ������� �� �������� ������������ [name].
|
|
119
|
+
WelcomeLabel2=�� �������� ���������� [name/ver] �� ��� ��������.%n%n������������� ������� �� ���� �������� ����� ������������.
|
|
120
|
+
|
|
121
|
+
; *** ������� "������"
|
|
122
|
+
WizardPassword=������
|
|
123
|
+
PasswordLabel1=�� �������� ������������ �������� �������.
|
|
124
|
+
PasswordLabel3=���� �����, ������ ������ �� ��������� ���볻, ��� ����������. ������ �������� �� �������.
|
|
125
|
+
PasswordEditLabel=&������:
|
|
126
|
+
IncorrectPassword=�� ����� ������������ ������. ���� �����, ��������� �� ���.
|
|
127
|
+
|
|
128
|
+
; *** ������� "˳������� �����"
|
|
129
|
+
WizardLicense=˳������� �����
|
|
130
|
+
LicenseLabel=���� �����, ���������� �������� �����.
|
|
131
|
+
LicenseLabel3=���� �����, ���������� �������� �����. �� ������� �������� ����� ���� �����, ���� ��� ���������� ������������.
|
|
132
|
+
LicenseAccepted=� &������� ����� �����
|
|
133
|
+
LicenseNotAccepted=� &�� ������� ����� �����
|
|
134
|
+
|
|
135
|
+
; *** ������� "����������"
|
|
136
|
+
WizardInfoBefore=����������
|
|
137
|
+
InfoBeforeLabel=���� �����, ���������� �������� ������� ����������, ���� ��� ����������.
|
|
138
|
+
InfoBeforeClickLabel=���� �� ����� ���������� ������������, ��������� ���볻.
|
|
139
|
+
WizardInfoAfter=����������
|
|
140
|
+
InfoAfterLabel=���� �����, ���������� �������� ������� ����������, ���� ��� ����������.
|
|
141
|
+
InfoAfterClickLabel=���� �� ����� ���������� ������������, ��������� ���볻.
|
|
142
|
+
|
|
143
|
+
; *** ������� "���������� ��� �����������"
|
|
144
|
+
WizardUserInfo=���������� ��� �����������
|
|
145
|
+
UserInfoDesc=���� �����, ������ ���� ��� ����.
|
|
146
|
+
UserInfoName=&��� �����������:
|
|
147
|
+
UserInfoOrg=&�����������:
|
|
148
|
+
UserInfoSerial=&������� �����:
|
|
149
|
+
UserInfoNameRequired=�� ������� ������ ��'�.
|
|
150
|
+
|
|
151
|
+
; *** ������� "���� ����� ������������"
|
|
152
|
+
WizardSelectDir=���� ����� ������������
|
|
153
|
+
SelectDirDesc=���� �� ������ ���������� [name]?
|
|
154
|
+
SelectDirLabel3=�������� ���������� [name] � �������� �����.
|
|
155
|
+
SelectDirBrowseLabel=��������� ���볻, ��� ����������. ���� �� ������ ������� ���� �����, ��������� ������.
|
|
156
|
+
DiskSpaceGBLabel=��������� �� ������ [gb] �� ������� ��������� ��������.
|
|
157
|
+
DiskSpaceMBLabel=��������� �� ������ [mb] M� ������� ��������� ��������.
|
|
158
|
+
CannotInstallToNetworkDrive=������������ �� ���� ����������� �� ��������� ����.
|
|
159
|
+
CannotInstallToUNCPath=������������ �� ���� ����������� �� ���������� �����.
|
|
160
|
+
InvalidPath=�� ������� ������� ������ ���� � ������ �����, ���������:%n%nC:\APP%n%n��� � ������ UNC:%n%n\\������\������
|
|
161
|
+
InvalidDrive=������� ���� ���� �� ��������� ���� �� ����, ��� �� ���������. ���� �����, ������� �����.
|
|
162
|
+
DiskSpaceWarningTitle=����������� ��������� ��������
|
|
163
|
+
DiskSpaceWarning=��� ������������ ��������� �� ������ %1 �� ������� ��������, � �� ��������� ����� �������� ���� %2 ��.%n%n�� ��� ���� ������ ����������?
|
|
164
|
+
DirNameTooLong=��'� ����� ��� ���� �� �� ����������� ��������� �������.
|
|
165
|
+
InvalidDirName=������� ��� ����� �����������.
|
|
166
|
+
BadDirName32=��'� ����� �� ���� �������� �������� �������:%n%n%1
|
|
167
|
+
DirExistsTitle=����� ����
|
|
168
|
+
DirExists=�����:%n%n%1%n%n��� ����. �� ��� ���� ������ ���������� � �� �����?
|
|
169
|
+
DirDoesntExistTitle=����� �� ����
|
|
170
|
+
DirDoesntExist=�����:%n%n%1%n%n�� ����. �� ������ �������� ��?
|
|
171
|
+
|
|
172
|
+
; *** ������� "���� ����������"
|
|
173
|
+
WizardSelectComponents=���� ����������
|
|
174
|
+
SelectComponentsDesc=�� ���������� �� ������ ����������?
|
|
175
|
+
SelectComponentsLabel2=������� ���������� �� �� ������ ����������; ������ ������ � ���������� �� �� �� ������ �������������. ��������� ���볻, ��� ����������.
|
|
176
|
+
FullInstallation=����� ������������
|
|
177
|
+
; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
|
|
178
|
+
CompactInstallation=��������� ������������
|
|
179
|
+
CustomInstallation=�������� ������������
|
|
180
|
+
NoUninstallWarningTitle=���������� �������
|
|
181
|
+
NoUninstallWarning=��������, �� �������� ���������� ��� ������������ �� ������ ��������:%n%n%1%n%n³���� ������ ��� ���������� �� �������� ��.%n%n�� ������ ����������?
|
|
182
|
+
ComponentSize1=%1 K�
|
|
183
|
+
ComponentSize2=%1 M�
|
|
184
|
+
ComponentsDiskSpaceGBLabel=����� ���� ������ �� ������ [gb] �� ��������� ��������.
|
|
185
|
+
ComponentsDiskSpaceMBLabel=����� ���� ������ �� ������ [mb] M� ��������� ��������.
|
|
186
|
+
|
|
187
|
+
; *** ������� "���� ���������� �������"
|
|
188
|
+
WizardSelectTasks=���� ���������� �������
|
|
189
|
+
SelectTasksDesc=�� �������� �������� �� ������ ��������?
|
|
190
|
+
SelectTasksLabel2=������� �������� �������� �� �������� ������������ [name] ������� ��������, ���� ��������� ���볻.
|
|
191
|
+
|
|
192
|
+
; *** ������� "���� ����� � ���� �����"
|
|
193
|
+
WizardSelectProgramGroup=���� ����� � ���� �����
|
|
194
|
+
SelectStartMenuFolderDesc=�� �� ������ �������� ������?
|
|
195
|
+
SelectStartMenuFolderLabel3=�������� ������������ �������� ������ � ��������� ����� ���� �����.
|
|
196
|
+
SelectStartMenuFolderBrowseLabel=��������� ���볻, ��� ����������. ���� �� ������ ������� ���� �����, ��������� ������.
|
|
197
|
+
MustEnterGroupName=�� ������� ������ ��'� �����.
|
|
198
|
+
GroupNameTooLong=��� ����� ��� ���� �� �� ����������� ��������� �������.
|
|
199
|
+
InvalidGroupName=������� ��� ����� �����������.
|
|
200
|
+
BadGroupName=��'� ����� �� ���� �������� �������� �������:%n%n%1
|
|
201
|
+
NoProgramGroupCheck2=&�� ���������� ����� � ���� �����
|
|
202
|
+
|
|
203
|
+
; *** ������� "��� ������ �� ������������"
|
|
204
|
+
WizardReady=��� ������ �� ������������
|
|
205
|
+
ReadyLabel1=�������� ������ ��������� ������������ [name] �� ��� ��������.
|
|
206
|
+
ReadyLabel2a=��������� ����������� ��� ����������� ������������, ��� ������, ���� �� ������ ����������� ��� ������ ������������ ������������.
|
|
207
|
+
ReadyLabel2b=��������� ����������� ��� �����������.
|
|
208
|
+
ReadyMemoUserInfo=���� ��� �����������:
|
|
209
|
+
ReadyMemoDir=���� ������������:
|
|
210
|
+
ReadyMemoType=��� ������������:
|
|
211
|
+
ReadyMemoComponents=������� ����������:
|
|
212
|
+
ReadyMemoGroup=����� � ���� �����:
|
|
213
|
+
ReadyMemoTasks=�������� ��������:
|
|
214
|
+
|
|
215
|
+
; *** TDownloadWizardPage wizard page and DownloadTemporaryFile
|
|
216
|
+
DownloadingLabel=������������ ���������� �����...
|
|
217
|
+
ButtonStopDownload=&��������� ������������
|
|
218
|
+
StopDownload=�� ����� ������ ��������� ������������?
|
|
219
|
+
ErrorDownloadAborted=������������ ���������
|
|
220
|
+
ErrorDownloadFailed=������� ������������: %1 %2
|
|
221
|
+
ErrorDownloadSizeFailed=������� ��������� ������: %1 %2
|
|
222
|
+
ErrorFileHash1=������� ���� �����: %1
|
|
223
|
+
ErrorFileHash2=������� ��� �����: ���������� %1, ��������� %2
|
|
224
|
+
ErrorProgress=������� ���������: %1 � %2
|
|
225
|
+
ErrorFileSize=������� ����� �����: ���������� %1, ��������� %2
|
|
226
|
+
|
|
227
|
+
; *** ������� "ϳ�������� �� ������������"
|
|
228
|
+
WizardPreparing=ϳ�������� �� ������������
|
|
229
|
+
PreparingDesc=�������� ������������ �������� �� ������������ [name] �� ��� ��������.
|
|
230
|
+
PreviousInstallNotCompleted=������������ ��� ��������� ���������� �������� �� ���� ���������. ��� ������� ��������������� ��� �������� ��� ���������� �������� ������������.%n%nϳ��� ���������������� �������� �������� ������������ �����, ��� ��������� ������������ [name].
|
|
231
|
+
CannotContinue=������������ ��������� ����������. ���� �����, ��������� ���������� ��� ������.
|
|
232
|
+
ApplicationsFound=�������� �������� �������������� �����, �� ������� ���� �������� ��������� ������������. ������������� ��������� ������� ������������ ����������� ������� �� ��������.
|
|
233
|
+
ApplicationsFound2=�������� �������� �������������� �����, �� ������� ���� �������� ��������� ������������. ������������� ��������� ������� ������������ ����������� ������� �� ��������. ϳ��� ���������� ������������, �������� ������������ ������ ����� ��������� ��.
|
|
234
|
+
CloseApplications=&����������� ������� ��������
|
|
235
|
+
DontCloseApplications=&�� ��������� ��������
|
|
236
|
+
ErrorCloseApplications=�������� ������������ �� ���� ����������� ������� �� ��������. ������������� ������� �� ��������, �� �������������� �����, �� ������� ���� �������� ��������� ������������, ���� ��� ����������.
|
|
237
|
+
PrepareToInstallNeedsRestart=������� ������������ ��������� ��������������� ��� ��. ϳ��� ���������������� ��, �������� ������������ ����� ��� ���������� ������������ [name]%n%n�� ������ ��������������� �����?
|
|
238
|
+
|
|
239
|
+
; *** ������� "������������"
|
|
240
|
+
WizardInstalling=������������
|
|
241
|
+
InstallingLabel=���� �����, ���������, ���� [name] ������������ �� ��� ����'����.
|
|
242
|
+
|
|
243
|
+
; *** ������� "������������ ���������"
|
|
244
|
+
FinishedHeadingLabel=���������� ������������ [name]
|
|
245
|
+
FinishedLabelNoIcons=������������ [name] �� ��� �������� ���������.
|
|
246
|
+
FinishedLabel=������������ [name] �� ��� �������� ���������. ����������� �������� ����� ������� �� ��������� ��������� ������.
|
|
247
|
+
ClickFinish=��������� ������� ��� ������ � �������� ������������.
|
|
248
|
+
FinishedRestartLabel=��� ���������� ������������ [name] ��������� ��������������� ��� ��������. ��������������� �������� �����?
|
|
249
|
+
FinishedRestartMessage=��� ���������� ������������ [name] ��������� ��������������� ��� ��������.%n%n��������������� �������� �����?
|
|
250
|
+
ShowReadmeCheck=���, � ���� ����������� ���� README
|
|
251
|
+
YesRadio=&���, ��������������� �������� �����
|
|
252
|
+
NoRadio=&ͳ, � ������������� �������� ������
|
|
253
|
+
; used for example as 'Run MyProg.exe'
|
|
254
|
+
RunEntryExec=³������ %1
|
|
255
|
+
; used for example as 'View Readme.txt'
|
|
256
|
+
RunEntryShellExec=����������� %1
|
|
257
|
+
|
|
258
|
+
; *** "Setup Needs the Next Disk" stuff
|
|
259
|
+
ChangeDiskTitle=��������� �������� ��������� ����
|
|
260
|
+
SelectDiskLabel2=���� �����, ������� ���� %1 � ��������� �OK�.%n%n���� ������� ����� ������ ����������� � ����� �����, �� ����� �� ������� �����, ������ ���������� ���� ��� ��������� ������.
|
|
261
|
+
PathLabel=&����:
|
|
262
|
+
FileNotInDir2=���� "%1" �� ��������� � "%2". ���� �����, ������� �������� ���� ��� ������ ���� �����.
|
|
263
|
+
SelectDirectoryLabel=���� �����, ������ ���� �� ���������� �����.
|
|
264
|
+
|
|
265
|
+
; *** Installation phase messages
|
|
266
|
+
SetupAborted=������������ �� ���������.%n%n���� �����, ������� �������� � �������� �������� ������������ �����.
|
|
267
|
+
AbortRetryIgnoreSelectAction=������� ��
|
|
268
|
+
AbortRetryIgnoreRetry=&���������� �����
|
|
269
|
+
AbortRetryIgnoreIgnore=&���������� ������� �� ����������
|
|
270
|
+
AbortRetryIgnoreCancel=³������ ������������
|
|
271
|
+
|
|
272
|
+
; *** ����������� ����� ������������
|
|
273
|
+
StatusClosingApplications=�������� �������...
|
|
274
|
+
StatusCreateDirs=��������� �����...
|
|
275
|
+
StatusExtractFiles=������������ �����...
|
|
276
|
+
StatusCreateIcons=��������� ������...
|
|
277
|
+
StatusCreateIniEntries=��������� INI ������...
|
|
278
|
+
StatusCreateRegistryEntries=��������� ������ ������...
|
|
279
|
+
StatusRegisterFiles=��������� �����...
|
|
280
|
+
StatusSavingUninstall=���������� ���������� ��� ���������...
|
|
281
|
+
StatusRunProgram=���������� ������������...
|
|
282
|
+
StatusRestartingApplications=���������� �������...
|
|
283
|
+
StatusRollback=���������� ���...
|
|
284
|
+
|
|
285
|
+
; *** �� �������
|
|
286
|
+
ErrorInternal2=�������� �������: %1
|
|
287
|
+
ErrorFunctionFailedNoCode=%1 ���
|
|
288
|
+
ErrorFunctionFailed=%1 ���; ��� %2
|
|
289
|
+
ErrorFunctionFailedWithMessage=%1 ���; ��� %2.%n%3
|
|
290
|
+
ErrorExecutingProgram=��������� �������� ����:%n%1
|
|
291
|
+
|
|
292
|
+
; *** ������� ������
|
|
293
|
+
ErrorRegOpenKey=������� �������� ����� ������:%n%1\%2
|
|
294
|
+
ErrorRegCreateKey=������� ��������� ����� ������:%n%1\%2
|
|
295
|
+
ErrorRegWriteKey=������� ������ � ���� ������:%n%1\%2
|
|
296
|
+
|
|
297
|
+
; *** ������� INI
|
|
298
|
+
ErrorIniEntry=������� ��� ��������� ������ � INI-���� "%1".
|
|
299
|
+
|
|
300
|
+
; *** ������� ��������� �����
|
|
301
|
+
FileAbortRetryIgnoreSkipNotRecommended=&���������� ���� (�� �������������)
|
|
302
|
+
FileAbortRetryIgnoreIgnoreNotRecommended=&���������� ������� �� ���������� (�� �������������)
|
|
303
|
+
SourceIsCorrupted=�������� ���� �����������
|
|
304
|
+
SourceDoesntExist=�������� ���� "%1" �� ����
|
|
305
|
+
ExistingFileReadOnly2=��������� ������� �������� ����, ������� �� ���������� ���� ��� �������.
|
|
306
|
+
ExistingFileReadOnlyRetry=&�������� ������� "���� �������" �� ���������� �����
|
|
307
|
+
ExistingFileReadOnlyKeepExisting=&�������� �������� ����
|
|
308
|
+
ErrorReadingExistingDest=������� ������� ��� ����� ������� ��������� �����:
|
|
309
|
+
FileExistsSelectAction=������� ��
|
|
310
|
+
FileExists2=���� ��� ����.
|
|
311
|
+
FileExistsOverwriteExisting=&������� �������� ����
|
|
312
|
+
FileExistsKeepExisting=&�������� �������� ����
|
|
313
|
+
FileExistsOverwriteOrKeepAll=&��������� �� ��� ��� ��������� ��������
|
|
314
|
+
ExistingFileNewerSelectAction=������� ��
|
|
315
|
+
ExistingFileNewer2=�������� ���� ������, ��� ��������������.
|
|
316
|
+
ExistingFileNewerOverwriteExisting=&������� �������� ����
|
|
317
|
+
ExistingFileNewerKeepExisting=&�������� �������� ���� (�������������)
|
|
318
|
+
ExistingFileNewerOverwriteOrKeepAll=&��������� �� ��� ��� ��������� ��������
|
|
319
|
+
ErrorChangingAttr=������� ������� ��� ����� ���� �������� ��������� �����:
|
|
320
|
+
ErrorCreatingTemp=������� ������� ��� ����� ��������� ����� � ����� ������������:
|
|
321
|
+
ErrorReadingSource=������� ������� ��� ����� ������� ��������� �����:
|
|
322
|
+
ErrorCopying=������� ������� ��� ����� ��������� �����:
|
|
323
|
+
ErrorReplacingExistingFile=������� ������� ��� ����� ����� ��������� �����:
|
|
324
|
+
ErrorRestartReplace=������� RestartReplace:
|
|
325
|
+
ErrorRenamingTemp=������� ������� ��� ����� �������������� ����� � ����� ������������:
|
|
326
|
+
ErrorRegisterServer=��������� ������������ DLL/OCX: %1
|
|
327
|
+
ErrorRegSvr32Failed=������� ��� ��������� RegSvr32, ��� ���������� %1
|
|
328
|
+
ErrorRegisterTypeLib=��������� ������������ �������� ����: %1
|
|
329
|
+
|
|
330
|
+
; *** Uninstall display name markings
|
|
331
|
+
UninstallDisplayNameMark=%1 (%2)
|
|
332
|
+
UninstallDisplayNameMarks=%1 (%2, %3)
|
|
333
|
+
UninstallDisplayNameMark32Bit=32-��
|
|
334
|
+
UninstallDisplayNameMark64Bit=64-��
|
|
335
|
+
UninstallDisplayNameMarkAllUsers=�� �����������
|
|
336
|
+
UninstallDisplayNameMarkCurrentUser=�������� ����������
|
|
337
|
+
|
|
338
|
+
; *** Post-installation errors
|
|
339
|
+
ErrorOpeningReadme=������� ������� ��� ����� �������� ����� README.
|
|
340
|
+
ErrorRestartingComputer=������� ������������ �� ������� ��������������� ����'����. ���� �����, ��������� �� ���������.
|
|
341
|
+
|
|
342
|
+
; *** ����������� ���������
|
|
343
|
+
UninstallNotFound=���� "%1" �� ����, ��������� ���������.
|
|
344
|
+
UninstallOpenError=��������� ������� ���� "%1". ��������� ���������
|
|
345
|
+
UninstallUnsupportedVer=���� ��������� ��� ��������� "%1" �� ���������� ����� ����� �������� ���������. ��������� ���������
|
|
346
|
+
UninstallUnknownEntry=�������� ����� (%1) � ���� ��������� ��� ���������
|
|
347
|
+
ConfirmUninstall=�� ��������, �� ������ �������� %1 � �� ���� ����������?
|
|
348
|
+
UninstallOnlyOnWin64=�� �������� ������� �������� ���� � ���������� 64-���� ���� Windows.
|
|
349
|
+
OnlyAdminCanUninstall=�� �������� ���� ���� �������� ���� ������������ � ������� �������������.
|
|
350
|
+
UninstallStatusLabel=���� �����, ���������, ���� %1 ���������� � ������ ����'�����.
|
|
351
|
+
UninstalledAll=%1 ������ �������� � ������ ����'�����.
|
|
352
|
+
UninstalledMost=��������� %1 ���������.%n%n���� ������� ��������� ��������. �� ������ �������� �� ������.
|
|
353
|
+
UninstalledAndNeedsRestart=��� ���������� ��������� %1 ��������� ��������������� ��� ��������.%n%n��������������� �������� �����?
|
|
354
|
+
UninstallDataCorrupted=���� "%1" �����������. ��������� ���������
|
|
355
|
+
|
|
356
|
+
; *** Uninstallation phase messages
|
|
357
|
+
ConfirmDeleteSharedFileTitle=�������� �������� �����?
|
|
358
|
+
ConfirmDeleteSharedFile2=������� �������, �� ��������� ������� ���� ����� �� ��������������� ������ ����������. �� ������ �������� ��� ������� ����?%n%n���� ���� �������� ��� �� �������������� ��� ���� � �� ����������, �� �� �������� ������ ������������� �����������. ���� �� �� ��������, ������� �ͳ�. ��������� ���� �� ��������� ����� ������.
|
|
359
|
+
SharedFileNameLabel=��'� �����:
|
|
360
|
+
SharedFileLocationLabel=���������:
|
|
361
|
+
WizardUninstalling=���� ���������
|
|
362
|
+
StatusUninstalling=��������� %1...
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
; *** ������� ���������� ���������
|
|
366
|
+
ShutdownBlockReasonInstallingApp=������������ %1.
|
|
367
|
+
ShutdownBlockReasonUninstallingApp=��������� %1.
|
|
368
|
+
|
|
369
|
+
; The custom messages below aren't used by Setup itself, but if you make
|
|
370
|
+
; use of them in your scripts, you'll want to translate them.
|
|
371
|
+
|
|
372
|
+
[CustomMessages]
|
|
373
|
+
|
|
374
|
+
NameAndVersion=%1, ����� %2
|
|
375
|
+
AdditionalIcons=�������� ������:
|
|
376
|
+
CreateDesktopIcon=�������� ������ �� &�������� ����
|
|
377
|
+
CreateQuickLaunchIcon=�������� ������ �� &����� �������� �������
|
|
378
|
+
ProgramOnTheWeb=���� %1 � ��������
|
|
379
|
+
UninstallProgram=�������� %1
|
|
380
|
+
LaunchProgram=³������ %1
|
|
381
|
+
AssocFileExtension=&���������� %1 � ����������� ����� %2
|
|
382
|
+
AssocingFileExtension=����������� %1 � ����������� ����� %2...
|
|
383
|
+
AutoStartProgramGroupDescription=����������������:
|
|
384
|
+
AutoStartProgram=����������� ������������� %1
|
|
385
|
+
AddonHostProgramNotFound=%1 �� ��������� � �������� ���� �����%n%n�� ��� ���� ������ ����������?
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|