msi: Use the Error table for more messages.

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2017-07-23 15:50:54 -05:00 committed by Alexandre Julliard
parent 77e3d3372f
commit 4ccc82a88a
50 changed files with 944 additions and 936 deletions

View File

@ -175,14 +175,14 @@ static void ui_actioninfo(MSIPACKAGE *package, LPCWSTR action, BOOL start,
INT rc) INT rc)
{ {
MSIRECORD *row; MSIRECORD *row;
WCHAR template[1024]; WCHAR *template;
static const WCHAR format[] = static const WCHAR format[] =
{'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0}; {'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0};
WCHAR message[1024]; WCHAR message[1024];
WCHAR timet[0x100]; WCHAR timet[0x100];
GetTimeFormatW(LOCALE_USER_DEFAULT, 0, NULL, format, timet, 0x100); GetTimeFormatW(LOCALE_USER_DEFAULT, 0, NULL, format, timet, 0x100);
LoadStringW(msi_hInstance, start ? IDS_INFO_ACTIONSTART : IDS_INFO_ACTIONENDED, template, 1024); template = msi_get_error_message(package->db, start ? MSIERR_INFO_ACTIONSTART : MSIERR_INFO_ACTIONENDED);
sprintfW(message, template, timet); sprintfW(message, template, timet);
row = MSI_CreateRecord(2); row = MSI_CreateRecord(2);
@ -192,6 +192,7 @@ static void ui_actioninfo(MSIPACKAGE *package, LPCWSTR action, BOOL start,
MSI_RecordSetInteger(row, 2, start ? package->LastActionResult : rc); MSI_RecordSetInteger(row, 2, start ? package->LastActionResult : rc);
MSI_ProcessMessage(package, INSTALLMESSAGE_INFO, row); MSI_ProcessMessage(package, INSTALLMESSAGE_INFO, row);
msiobj_release(&row->hdr); msiobj_release(&row->hdr);
msi_free(template);
if (!start) package->LastActionResult = rc; if (!start) package->LastActionResult = rc;
} }

View File

@ -1053,6 +1053,7 @@ extern WCHAR *msi_get_assembly_path(MSIPACKAGE *, const WCHAR *) DECLSPEC_HIDDEN
extern WCHAR *msi_font_version_from_file(const WCHAR *) DECLSPEC_HIDDEN; extern WCHAR *msi_font_version_from_file(const WCHAR *) DECLSPEC_HIDDEN;
extern WCHAR **msi_split_string(const WCHAR *, WCHAR) DECLSPEC_HIDDEN; extern WCHAR **msi_split_string(const WCHAR *, WCHAR) DECLSPEC_HIDDEN;
extern UINT msi_set_original_database_property(MSIDATABASE *, const WCHAR *) DECLSPEC_HIDDEN; extern UINT msi_set_original_database_property(MSIDATABASE *, const WCHAR *) DECLSPEC_HIDDEN;
extern WCHAR *msi_get_error_message(MSIDATABASE *, int) DECLSPEC_HIDDEN;
/* media */ /* media */

View File

@ -1482,7 +1482,8 @@ UINT MSI_OpenPackageW(LPCWSTR szPackage, MSIPACKAGE **pPackage)
{'M','/','d','/','y','y','y','y',0}; {'M','/','d','/','y','y','y','y',0};
static const WCHAR time_format[] = static const WCHAR time_format[] =
{'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0}; {'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0};
WCHAR timet[100], datet[100], info_template[1024], info_message[1024]; WCHAR timet[100], datet[100], info_message[1024];
WCHAR *info_template;
TRACE("%s %p\n", debugstr_w(szPackage), pPackage); TRACE("%s %p\n", debugstr_w(szPackage), pPackage);
@ -1637,9 +1638,10 @@ UINT MSI_OpenPackageW(LPCWSTR szPackage, MSIPACKAGE **pPackage)
} }
GetTimeFormatW(LOCALE_USER_DEFAULT, 0, NULL, time_format, timet, 100); GetTimeFormatW(LOCALE_USER_DEFAULT, 0, NULL, time_format, timet, 100);
GetDateFormatW(LOCALE_USER_DEFAULT, 0, NULL, date_format, datet, 100); GetDateFormatW(LOCALE_USER_DEFAULT, 0, NULL, date_format, datet, 100);
LoadStringW(msi_hInstance, IDS_INFO_LOGGINGSTART, info_template, 1024); info_template = msi_get_error_message(package->db, MSIERR_INFO_LOGGINGSTART);
sprintfW(info_message, info_template, datet, timet); sprintfW(info_message, info_template, datet, timet);
MSI_RecordSetStringW(info_row, 0, info_message); MSI_RecordSetStringW(info_row, 0, info_message);
msi_free(info_template);
MSI_ProcessMessage(package, INSTALLMESSAGE_INFO|MB_ICONHAND, info_row); MSI_ProcessMessage(package, INSTALLMESSAGE_INFO|MB_ICONHAND, info_row);
MSI_ProcessMessage(package, INSTALLMESSAGE_COMMONDATA, data_row); MSI_ProcessMessage(package, INSTALLMESSAGE_COMMONDATA, data_row);
@ -1877,7 +1879,7 @@ static LPCWSTR get_internal_error_message(int error)
} }
/* Returned string must be freed */ /* Returned string must be freed */
static LPWSTR msi_get_error_message(MSIDATABASE *db, int error) LPWSTR msi_get_error_message(MSIDATABASE *db, int error)
{ {
static const WCHAR query[] = static const WCHAR query[] =
{'S','E','L','E','C','T',' ','`','M','e','s','s','a','g','e','`',' ', {'S','E','L','E','C','T',' ','`','M','e','s','s','a','g','e','`',' ',
@ -2069,15 +2071,16 @@ INT MSI_ProcessMessage( MSIPACKAGE *package, INSTALLMESSAGE eMessageType, MSIREC
break; break;
case INSTALLMESSAGE_ACTIONSTART: case INSTALLMESSAGE_ACTIONSTART:
{ {
WCHAR template_s[1024]; WCHAR *template_s;
static const WCHAR time_format[] = static const WCHAR time_format[] =
{'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0}; {'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0};
WCHAR timet[100], template[1024]; WCHAR timet[100], template[1024];
LoadStringW(msi_hInstance, IDS_ACTIONSTART, template_s, 1024); template_s = msi_get_error_message(package->db, MSIERR_ACTIONSTART);
GetTimeFormatW(LOCALE_USER_DEFAULT, 0, NULL, time_format, timet, 100); GetTimeFormatW(LOCALE_USER_DEFAULT, 0, NULL, time_format, timet, 100);
sprintfW(template, template_s, timet); sprintfW(template, template_s, timet);
MSI_RecordSetStringW(record, 0, template); MSI_RecordSetStringW(record, 0, template);
msi_free(template);
msi_free(package->LastAction); msi_free(package->LastAction);
msi_free(package->LastActionTemplate); msi_free(package->LastActionTemplate);
@ -2102,9 +2105,9 @@ INT MSI_ProcessMessage( MSIPACKAGE *package, INSTALLMESSAGE eMessageType, MSIREC
break; break;
case INSTALLMESSAGE_COMMONDATA: case INSTALLMESSAGE_COMMONDATA:
{ {
WCHAR template[1024]; WCHAR *template = msi_get_error_message(package->db, MSIERR_COMMONDATA);
LoadStringW(msi_hInstance, IDS_COMMONDATA, template, 1024);
MSI_RecordSetStringW(record, 0, template); MSI_RecordSetStringW(record, 0, template);
msi_free(template);
} }
break; break;
} }

View File

@ -17,6 +17,11 @@
*/ */
#define MSIERR_INSTALLERROR 5 #define MSIERR_INSTALLERROR 5
#define MSIERR_ACTIONSTART 8
#define MSIERR_COMMONDATA 11
#define MSIERR_INFO_LOGGINGSTART 12
#define MSIERR_INFO_ACTIONSTART 14
#define MSIERR_INFO_ACTIONENDED 15
#define MSIERR_INSERTDISK 1302 #define MSIERR_INSERTDISK 1302
#define MSIERR_CABNOTFOUND 1311 #define MSIERR_CABNOTFOUND 1311
@ -29,17 +34,15 @@
#define IDS_INFO (IDS_ERROR_BASE + 4) #define IDS_INFO (IDS_ERROR_BASE + 4)
#define IDS_INSTALLERROR (IDS_ERROR_BASE + MSIERR_INSTALLERROR) #define IDS_INSTALLERROR (IDS_ERROR_BASE + MSIERR_INSTALLERROR)
#define IDS_OUTOFDISKSPACE (IDS_ERROR_BASE + 7) #define IDS_OUTOFDISKSPACE (IDS_ERROR_BASE + 7)
#define IDS_ACTIONSTART (IDS_ERROR_BASE + MSIERR_ACTIONSTART)
#define IDS_COMMONDATA (IDS_ERROR_BASE + MSIERR_COMMONDATA)
#define IDS_INFO_LOGGINGSTART (IDS_ERROR_BASE + MSIERR_INFO_LOGGINGSTART)
#define IDS_INFO_ACTIONSTART (IDS_ERROR_BASE + MSIERR_INFO_ACTIONSTART)
#define IDS_INFO_ACTIONENDED (IDS_ERROR_BASE + MSIERR_INFO_ACTIONENDED)
#define IDS_ERR_INSERTDISK (IDS_ERROR_BASE + MSIERR_INSERTDISK) #define IDS_ERR_INSERTDISK (IDS_ERROR_BASE + MSIERR_INSERTDISK)
#define IDS_ERR_CABNOTFOUND (IDS_ERROR_BASE + MSIERR_CABNOTFOUND) #define IDS_ERR_CABNOTFOUND (IDS_ERROR_BASE + MSIERR_CABNOTFOUND)
#define IDS_ACTIONSTART 1008
#define IDS_COMMONDATA 1011
#define IDS_INFO_ACTIONSTART 1050
#define IDS_INFO_ACTIONENDED 1051
#define IDS_INFO_LOGGINGSTART 1052
#define IDS_DESC_ALLOCATEREGISTRYSPACE 1100 #define IDS_DESC_ALLOCATEREGISTRYSPACE 1100
#define IDS_DESC_APPSEARCH 1101 #define IDS_DESC_APPSEARCH 1101
#define IDS_DESC_BINDIMAGE 1102 #define IDS_DESC_BINDIMAGE 1102

View File

@ -6890,26 +6890,6 @@ msgstr "الميزة من:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "اختر المجلد الحاوي على %s" msgstr "اختر المجلد الحاوي على %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "No registry log space.\n" #| msgid "No registry log space.\n"
@ -7385,6 +7365,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "القرص ممتلئ.\n" msgstr "القرص ممتلئ.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -7000,26 +7000,6 @@ msgstr "функционалност от:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "изберете папката, която съдържа %s" msgstr "изберете папката, която съдържа %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
msgid "Allocating registry space" msgid "Allocating registry space"
@ -7450,6 +7430,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6906,26 +6906,6 @@ msgstr "característica de:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "trieu quina carpeta conté %s" msgstr "trieu quina carpeta conté %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "No registry log space.\n" #| msgid "No registry log space.\n"
@ -7403,6 +7383,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "El disc està ple.\n" msgstr "El disc està ple.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6819,26 +6819,6 @@ msgstr ""
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "Zvolte, která složka obsahuje %s" msgstr "Zvolte, která složka obsahuje %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "Application Workspace" #| msgid "Application Workspace"
@ -7312,6 +7292,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "Disk je plný.\n" msgstr "Disk je plný.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6964,26 +6964,6 @@ msgstr "Udvidelse fra:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "Vælg mappen som indeholder '%s'" msgstr "Vælg mappen som indeholder '%s'"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "No registry log space.\n" #| msgid "No registry log space.\n"
@ -7461,6 +7441,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "Diskens plads er opbrugt.\n" msgstr "Diskens plads er opbrugt.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6896,26 +6896,6 @@ msgstr "Feature von:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "Wählen Sie das Verzeichnis aus, das %s enthält" msgstr "Wählen Sie das Verzeichnis aus, das %s enthält"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Aktion %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Nachrichtentyp: [1], Argument: [2]{, [3]}"
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Beginn der Aktion %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Ende der Aktion %s: [1]. Rückgabewert [2]."
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Logging gestartet: %s %s ==="
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "Reservierung von Registrierungsspeicher" msgstr "Reservierung von Registrierungsspeicher"
@ -7314,6 +7294,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "{{Datenträger voll: }}" msgstr "{{Datenträger voll: }}"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Aktion %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Nachrichtentyp: [1], Argument: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Logging gestartet: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Beginn der Aktion %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Ende der Aktion %s: [1]. Rückgabewert [2]."
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6883,26 +6883,6 @@ msgstr ""
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
msgid "Allocating registry space" msgid "Allocating registry space"
@ -7318,6 +7298,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6884,26 +6884,6 @@ msgstr "feature from:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "choose which folder contains %s" msgstr "choose which folder contains %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Action %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Message type: [1], Argument: [2]{, [3]}"
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Action start %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Action ended %s: [1]. Return value [2]."
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Logging started: %s %s ==="
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "Allocating registry space" msgstr "Allocating registry space"
@ -7302,6 +7282,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "{{Disk full: }}" msgstr "{{Disk full: }}"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Action %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Message type: [1], Argument: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Logging started: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Action start %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Action ended %s: [1]. Return value [2]."
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "Please insert the disk: [2]" msgstr "Please insert the disk: [2]"

View File

@ -6884,26 +6884,6 @@ msgstr "feature from:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "choose which folder contains %s" msgstr "choose which folder contains %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Action %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Message type: [1], Argument: [2]{, [3]}"
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Action start %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Action ended %s: [1]. Return value [2]."
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Logging started: %s %s ==="
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "Allocating registry space" msgstr "Allocating registry space"
@ -7302,6 +7282,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "{{Disk full: }}" msgstr "{{Disk full: }}"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Action %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Message type: [1], Argument: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Logging started: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Action start %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Action ended %s: [1]. Return value [2]."
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "Please insert the disk: [2]" msgstr "Please insert the disk: [2]"

View File

@ -6784,26 +6784,6 @@ msgstr "taŭgeco el:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "elekti la dosierujo kiu enhavas %s" msgstr "elekti la dosierujo kiu enhavas %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "Application Workspace" #| msgid "Application Workspace"
@ -7253,6 +7233,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6974,26 +6974,6 @@ msgstr "característica de:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "elija qué carpeta contiene %s" msgstr "elija qué carpeta contiene %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "No registry log space.\n" #| msgid "No registry log space.\n"
@ -7471,6 +7451,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "Disco lleno.\n" msgstr "Disco lleno.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6870,26 +6870,6 @@ msgstr ""
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "" msgstr ""
@ -7298,6 +7278,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6880,26 +6880,6 @@ msgstr "ominaisuus lähteestä:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "valitse kansio, jossa on %s" msgstr "valitse kansio, jossa on %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Toiminto %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Viestin tyyppi: [1], Argumentti: [2]{, [3]}"
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Toiminto alkoi %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Toiminto loppui %s: [1]. Paluuarvo [2]."
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Loki aloitettu: %s %s ==="
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "Varataan rekisteristä tilaa" msgstr "Varataan rekisteristä tilaa"
@ -7299,6 +7279,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "{{Levy täynnä: }}" msgstr "{{Levy täynnä: }}"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Toiminto %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Viestin tyyppi: [1], Argumentti: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Loki aloitettu: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Toiminto alkoi %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Toiminto loppui %s: [1]. Paluuarvo [2]."
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6918,26 +6918,6 @@ msgstr "fonctionnalité depuis :"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "sélectionnez le dossier contenant %s" msgstr "sélectionnez le dossier contenant %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "No registry log space.\n" #| msgid "No registry log space.\n"
@ -7415,6 +7395,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "Disque plein.\n" msgstr "Disque plein.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -7130,26 +7130,6 @@ msgstr ""
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
msgid "Allocating registry space" msgid "Allocating registry space"
@ -7598,6 +7578,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6764,26 +6764,6 @@ msgstr ""
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "" msgstr ""
@ -7187,6 +7167,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6895,26 +6895,6 @@ msgstr "mogućnost od:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "izaberite koja mapa sadrži %s" msgstr "izaberite koja mapa sadrži %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "No registry log space.\n" #| msgid "No registry log space.\n"
@ -7386,6 +7366,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "Disk pun.\n" msgstr "Disk pun.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6922,26 +6922,6 @@ msgstr "tulajdonság innen:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "válassza ki, melyik mappa tartalmazza ezt: %s" msgstr "válassza ki, melyik mappa tartalmazza ezt: %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "No registry log space.\n" #| msgid "No registry log space.\n"
@ -7419,6 +7399,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "Lemez betelt.\n" msgstr "Lemez betelt.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6991,26 +6991,6 @@ msgstr "funzionalità da:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "selezionare la cartella che contiene %s" msgstr "selezionare la cartella che contiene %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "No registry log space.\n" #| msgid "No registry log space.\n"
@ -7488,6 +7468,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "Disco pieno.\n" msgstr "Disco pieno.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6880,26 +6880,6 @@ msgstr "機能の導入元:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "%s を含むフォルダを選択" msgstr "%s を含むフォルダを選択"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "アクション %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "メッセージ種別: [1], 引数: [2]{, [3]}"
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "アクション開始 %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "アクション終了 %s: [1]. 戻り値 [2]."
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== ログの開始: %s %s ==="
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "レジストリ領域を割り当てています" msgstr "レジストリ領域を割り当てています"
@ -7300,6 +7280,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "ディスクがいっぱいです。\n" msgstr "ディスクがいっぱいです。\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "アクション %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "メッセージ種別: [1], 引数: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== ログの開始: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "アクション開始 %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "アクション終了 %s: [1]. 戻り値 [2]."
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6896,26 +6896,6 @@ msgstr "부분(feature)에서:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "%s를 포함하는 폴더 선택" msgstr "%s를 포함하는 폴더 선택"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "No registry log space.\n" #| msgid "No registry log space.\n"
@ -7393,6 +7373,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "디스크가 꽉 찼습니다.\n" msgstr "디스크가 꽉 찼습니다.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6891,26 +6891,6 @@ msgstr "komponentas iš:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "parinkite aplanką, kuris turi %s" msgstr "parinkite aplanką, kuris turi %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Veiksmas %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Pranešimo tipas: [1], Argumentai: [2]{, [3]}"
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Veiksmo pradžia %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Veiksmas baigtas %s: [1]. Grąžinta reikšmė [2]."
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Registravimas pradėtas: %s %s ==="
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "Išskiriama vieta registrui" msgstr "Išskiriama vieta registrui"
@ -7308,6 +7288,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "{{Diskas pilnas: }}" msgstr "{{Diskas pilnas: }}"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Veiksmas %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Pranešimo tipas: [1], Argumentai: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Registravimas pradėtas: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Veiksmo pradžia %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Veiksmas baigtas %s: [1]. Grąžinta reikšmė [2]."
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6764,26 +6764,6 @@ msgstr ""
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "" msgstr ""
@ -7187,6 +7167,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6890,26 +6890,6 @@ msgstr "Egenskap fra:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "Velg katalogen som inneholder %s" msgstr "Velg katalogen som inneholder %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "Tildeler registerplass" msgstr "Tildeler registerplass"
@ -7309,6 +7289,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "{{Disken er full: }}" msgstr "{{Disken er full: }}"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6964,26 +6964,6 @@ msgstr "Feature van:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "Kies de map die %s bevat" msgstr "Kies de map die %s bevat"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "No registry log space.\n" #| msgid "No registry log space.\n"
@ -7461,6 +7441,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "Schijf vol.\n" msgstr "Schijf vol.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6764,26 +6764,6 @@ msgstr ""
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "" msgstr ""
@ -7187,6 +7167,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6764,26 +6764,6 @@ msgstr ""
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "" msgstr ""
@ -7187,6 +7167,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6905,26 +6905,6 @@ msgstr "funkcja z:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "wybierz folder zawierający '%s'" msgstr "wybierz folder zawierający '%s'"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Działanie %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Rodzaj wiadomości: [1], Argument: [2]{, [3]}"
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Rozpoczęcie działania %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Zakończono działanie %s: [1]. Zwrócona wartość [2]."
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Rozpoczęcie zbierania logów: %s %s ==="
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "Lokowanie przestrzeni w rejestrze" msgstr "Lokowanie przestrzeni w rejestrze"
@ -7324,6 +7304,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "Dysk pełen.\n" msgstr "Dysk pełen.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Działanie %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Rodzaj wiadomości: [1], Argument: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Rozpoczęcie zbierania logów: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Rozpoczęcie działania %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Zakończono działanie %s: [1]. Zwrócona wartość [2]."
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6900,26 +6900,6 @@ msgstr "origem da funcionalidade:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "escolha a pasta que contém %s" msgstr "escolha a pasta que contém %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "No registry log space.\n" #| msgid "No registry log space.\n"
@ -7397,6 +7377,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "Disco cheio.\n" msgstr "Disco cheio.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6867,26 +6867,6 @@ msgstr "opção de:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "indique que pasta contém %s" msgstr "indique que pasta contém %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "No registry log space.\n" #| msgid "No registry log space.\n"
@ -7364,6 +7344,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "Disco cheio.\n" msgstr "Disco cheio.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6814,26 +6814,6 @@ msgstr ""
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "" msgstr ""
@ -7243,6 +7223,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6922,26 +6922,6 @@ msgstr "caracteristică de la:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "selectați fișierul care conține %s" msgstr "selectați fișierul care conține %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "Application Workspace" #| msgid "Application Workspace"
@ -7416,6 +7396,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "Disc plin.\n" msgstr "Disc plin.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6893,26 +6893,6 @@ msgstr "функции из:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "выберите каталог, содержащий %s" msgstr "выберите каталог, содержащий %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Действие %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Тип сообщения: [1], Аргумент: [2]{, [3]}"
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Запуск действия %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Действие завершилось %s: [1]. Код возврата [2]."
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Протоколирование запущено: %s %s ==="
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "Выделение места под данные реестра" msgstr "Выделение места под данные реестра"
@ -7310,6 +7290,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "{{Диск полон: }}" msgstr "{{Диск полон: }}"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Действие %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Тип сообщения: [1], Аргумент: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Протоколирование запущено: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Запуск действия %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Действие завершилось %s: [1]. Код возврата [2]."
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6872,26 +6872,6 @@ msgstr ""
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "" msgstr ""
@ -7335,6 +7315,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6983,26 +6983,6 @@ msgstr "zmožnost z:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "izberite mapo, ki vsebuje %s" msgstr "izberite mapo, ki vsebuje %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "No registry log space.\n" #| msgid "No registry log space.\n"
@ -7480,6 +7460,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "Disk je poln.\n" msgstr "Disk je poln.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -7175,26 +7175,6 @@ msgstr "могућност од:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "изаберите која фасцикла садржи %s" msgstr "изаберите која фасцикла садржи %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
msgid "Allocating registry space" msgid "Allocating registry space"
@ -7631,6 +7611,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -7268,26 +7268,6 @@ msgstr "mogućnost od:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "izaberite koja fascikla sadrži %s" msgstr "izaberite koja fascikla sadrži %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "Application Workspace" #| msgid "Application Workspace"
@ -7739,6 +7719,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6883,26 +6883,6 @@ msgstr "funktion från:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "välj den mapp som innehåller %s" msgstr "välj den mapp som innehåller %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "No registry log space.\n" #| msgid "No registry log space.\n"
@ -7380,6 +7360,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "Disken är full.\n" msgstr "Disken är full.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6764,26 +6764,6 @@ msgstr ""
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "" msgstr ""
@ -7187,6 +7167,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6896,26 +6896,6 @@ msgstr ""
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "" msgstr ""
@ -7332,6 +7312,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6887,26 +6887,6 @@ msgstr "özellik buradan:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "%s öğesini içeren dizini seçin" msgstr "%s öğesini içeren dizini seçin"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "%s eylemi: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "İleti türü: [1], Değişken: [2]{, [3]}"
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "%s eylem başlangıcı: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "%s eylem bitişi: [1]. Dönüş değeri [2]."
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Günlük başlangıcı: %s %s ==="
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "Kayıt günlük boşluğu ayarlanıyor" msgstr "Kayıt günlük boşluğu ayarlanıyor"
@ -7306,6 +7286,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "{{Disk dolu: }}" msgstr "{{Disk dolu: }}"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "%s eylemi: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "İleti türü: [1], Değişken: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Günlük başlangıcı: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "%s eylem başlangıcı: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "%s eylem bitişi: [1]. Dönüş değeri [2]."
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6928,26 +6928,6 @@ msgstr "можливість з:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "виберіть теку, що містить %s" msgstr "виберіть теку, що містить %s"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Дія %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Тип повідомлення: [1], Аргумент: [2]{, [3]}"
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Запуск дії %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Дія завершилася %s: [1]. Повернене значення [2]."
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Журналювання розпочалося: %s %s ==="
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "Виділення простору реєстру" msgstr "Виділення простору реєстру"
@ -7347,6 +7327,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "Диск заповнений.\n" msgstr "Диск заповнений.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Дія %s: [1]. [2]"
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Тип повідомлення: [1], Аргумент: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr "=== Журналювання розпочалося: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Запуск дії %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Дія завершилася %s: [1]. Повернене значення [2]."
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6846,26 +6846,6 @@ msgstr ""
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "" msgstr ""
@ -7278,6 +7258,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6723,26 +6723,6 @@ msgstr ""
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
msgid "Allocating registry space" msgid "Allocating registry space"
msgstr "" msgstr ""
@ -7138,6 +7118,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "" msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6828,26 +6828,6 @@ msgstr "功能来自:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "选择包含 %s 的文件夹" msgstr "选择包含 %s 的文件夹"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "No registry log space.\n" #| msgid "No registry log space.\n"
@ -7325,6 +7305,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "磁盘满。\n" msgstr "磁盘满。\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""

View File

@ -6858,26 +6858,6 @@ msgstr "功能來自:"
msgid "choose which folder contains %s" msgid "choose which folder contains %s"
msgstr "選擇包含 %s 的檔案夾" msgstr "選擇包含 %s 的檔案夾"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:90 #: msi.rc:90
#, fuzzy #, fuzzy
#| msgid "No registry log space.\n" #| msgid "No registry log space.\n"
@ -7355,6 +7335,26 @@ msgstr ""
msgid "{{Disk full: }}" msgid "{{Disk full: }}"
msgstr "磁碟已滿。\n" msgstr "磁碟已滿。\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr ""
#: msi.rc:78
msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr ""
#: msi.rc:83 #: msi.rc:83
msgid "Please insert the disk: [2]" msgid "Please insert the disk: [2]"
msgstr "" msgstr ""