From 4ccc82a88ae371151a07d148717540317c2c4cf1 Mon Sep 17 00:00:00 2001 From: Zebediah Figura Date: Sun, 23 Jul 2017 15:50:54 -0500 Subject: [PATCH] msi: Use the Error table for more messages. Signed-off-by: Zebediah Figura Signed-off-by: Hans Leidekker Signed-off-by: Alexandre Julliard --- dlls/msi/action.c | 5 +++-- dlls/msi/msipriv.h | 1 + dlls/msi/package.c | 17 ++++++++++------- dlls/msi/resource.h | 17 ++++++++++------- po/ar.po | 40 ++++++++++++++++++++-------------------- po/bg.po | 40 ++++++++++++++++++++-------------------- po/ca.po | 40 ++++++++++++++++++++-------------------- po/cs.po | 40 ++++++++++++++++++++-------------------- po/da.po | 40 ++++++++++++++++++++-------------------- po/de.po | 40 ++++++++++++++++++++-------------------- po/el.po | 40 ++++++++++++++++++++-------------------- po/en.po | 40 ++++++++++++++++++++-------------------- po/en_US.po | 40 ++++++++++++++++++++-------------------- po/eo.po | 40 ++++++++++++++++++++-------------------- po/es.po | 40 ++++++++++++++++++++-------------------- po/fa.po | 40 ++++++++++++++++++++-------------------- po/fi.po | 40 ++++++++++++++++++++-------------------- po/fr.po | 40 ++++++++++++++++++++-------------------- po/he.po | 40 ++++++++++++++++++++-------------------- po/hi.po | 40 ++++++++++++++++++++-------------------- po/hr.po | 40 ++++++++++++++++++++-------------------- po/hu.po | 40 ++++++++++++++++++++-------------------- po/it.po | 40 ++++++++++++++++++++-------------------- po/ja.po | 40 ++++++++++++++++++++-------------------- po/ko.po | 40 ++++++++++++++++++++-------------------- po/lt.po | 40 ++++++++++++++++++++-------------------- po/ml.po | 40 ++++++++++++++++++++-------------------- po/nb_NO.po | 40 ++++++++++++++++++++-------------------- po/nl.po | 40 ++++++++++++++++++++-------------------- po/or.po | 40 ++++++++++++++++++++-------------------- po/pa.po | 40 ++++++++++++++++++++-------------------- po/pl.po | 40 ++++++++++++++++++++-------------------- po/pt_BR.po | 40 ++++++++++++++++++++-------------------- po/pt_PT.po | 40 ++++++++++++++++++++-------------------- po/rm.po | 40 ++++++++++++++++++++-------------------- po/ro.po | 40 ++++++++++++++++++++-------------------- po/ru.po | 40 ++++++++++++++++++++-------------------- po/sk.po | 40 ++++++++++++++++++++-------------------- po/sl.po | 40 ++++++++++++++++++++-------------------- po/sr_RS@cyrillic.po | 40 ++++++++++++++++++++-------------------- po/sr_RS@latin.po | 40 ++++++++++++++++++++-------------------- po/sv.po | 40 ++++++++++++++++++++-------------------- po/te.po | 40 ++++++++++++++++++++-------------------- po/th.po | 40 ++++++++++++++++++++-------------------- po/tr.po | 40 ++++++++++++++++++++-------------------- po/uk.po | 40 ++++++++++++++++++++-------------------- po/wa.po | 40 ++++++++++++++++++++-------------------- po/wine.pot | 40 ++++++++++++++++++++-------------------- po/zh_CN.po | 40 ++++++++++++++++++++-------------------- po/zh_TW.po | 40 ++++++++++++++++++++-------------------- 50 files changed, 944 insertions(+), 936 deletions(-) diff --git a/dlls/msi/action.c b/dlls/msi/action.c index 55a16d9760a..59c4610c5a9 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -175,14 +175,14 @@ static void ui_actioninfo(MSIPACKAGE *package, LPCWSTR action, BOOL start, INT rc) { MSIRECORD *row; - WCHAR template[1024]; + WCHAR *template; static const WCHAR format[] = {'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0}; WCHAR message[1024]; WCHAR 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); 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_ProcessMessage(package, INSTALLMESSAGE_INFO, row); msiobj_release(&row->hdr); + msi_free(template); if (!start) package->LastActionResult = rc; } diff --git a/dlls/msi/msipriv.h b/dlls/msi/msipriv.h index 91c614eaed8..14006037504 100644 --- a/dlls/msi/msipriv.h +++ b/dlls/msi/msipriv.h @@ -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_split_string(const WCHAR *, 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 */ diff --git a/dlls/msi/package.c b/dlls/msi/package.c index d8ece2a9ba9..c2dde1b9328 100644 --- a/dlls/msi/package.c +++ b/dlls/msi/package.c @@ -1482,7 +1482,8 @@ UINT MSI_OpenPackageW(LPCWSTR szPackage, MSIPACKAGE **pPackage) {'M','/','d','/','y','y','y','y',0}; static const WCHAR time_format[] = {'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); @@ -1637,9 +1638,10 @@ UINT MSI_OpenPackageW(LPCWSTR szPackage, MSIPACKAGE **pPackage) } GetTimeFormatW(LOCALE_USER_DEFAULT, 0, NULL, time_format, timet, 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); MSI_RecordSetStringW(info_row, 0, info_message); + msi_free(info_template); MSI_ProcessMessage(package, INSTALLMESSAGE_INFO|MB_ICONHAND, info_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 */ -static LPWSTR msi_get_error_message(MSIDATABASE *db, int error) +LPWSTR msi_get_error_message(MSIDATABASE *db, int error) { static const WCHAR query[] = {'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; case INSTALLMESSAGE_ACTIONSTART: { - WCHAR template_s[1024]; + WCHAR *template_s; static const WCHAR time_format[] = {'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0}; 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); sprintfW(template, template_s, timet); MSI_RecordSetStringW(record, 0, template); + msi_free(template); msi_free(package->LastAction); msi_free(package->LastActionTemplate); @@ -2102,9 +2105,9 @@ INT MSI_ProcessMessage( MSIPACKAGE *package, INSTALLMESSAGE eMessageType, MSIREC break; case INSTALLMESSAGE_COMMONDATA: { - WCHAR template[1024]; - LoadStringW(msi_hInstance, IDS_COMMONDATA, template, 1024); + WCHAR *template = msi_get_error_message(package->db, MSIERR_COMMONDATA); MSI_RecordSetStringW(record, 0, template); + msi_free(template); } break; } diff --git a/dlls/msi/resource.h b/dlls/msi/resource.h index 88d4e3e7af6..045aa209c96 100644 --- a/dlls/msi/resource.h +++ b/dlls/msi/resource.h @@ -17,6 +17,11 @@ */ #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_CABNOTFOUND 1311 @@ -29,17 +34,15 @@ #define IDS_INFO (IDS_ERROR_BASE + 4) #define IDS_INSTALLERROR (IDS_ERROR_BASE + MSIERR_INSTALLERROR) #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_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_APPSEARCH 1101 #define IDS_DESC_BINDIMAGE 1102 diff --git a/po/ar.po b/po/ar.po index 84f4f759b3c..eb85570422a 100644 --- a/po/ar.po +++ b/po/ar.po @@ -6890,26 +6890,6 @@ msgstr "الميزة من:" msgid "choose which folder contains %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 #, fuzzy #| msgid "No registry log space.\n" @@ -7385,6 +7365,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/bg.po b/po/bg.po index e60b35d5b34..133b075d7e9 100644 --- a/po/bg.po +++ b/po/bg.po @@ -7000,26 +7000,6 @@ msgstr "функционалност от:" msgid "choose which folder contains %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 #, fuzzy msgid "Allocating registry space" @@ -7450,6 +7430,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/ca.po b/po/ca.po index 487c37b4b87..1dfb9fe5749 100644 --- a/po/ca.po +++ b/po/ca.po @@ -6906,26 +6906,6 @@ msgstr "característica de:" msgid "choose which folder contains %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 #, fuzzy #| msgid "No registry log space.\n" @@ -7403,6 +7383,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/cs.po b/po/cs.po index 1d42ae593c1..8f4e0a0d44d 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6819,26 +6819,6 @@ msgstr "" msgid "choose which folder contains %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 #, fuzzy #| msgid "Application Workspace" @@ -7312,6 +7292,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/da.po b/po/da.po index 35b576ecb66..b432a6e13d9 100644 --- a/po/da.po +++ b/po/da.po @@ -6964,26 +6964,6 @@ msgstr "Udvidelse fra:" msgid "choose which folder contains %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 #, fuzzy #| msgid "No registry log space.\n" @@ -7461,6 +7441,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/de.po b/po/de.po index dce28b1c24a..c4a3f5dca57 100644 --- a/po/de.po +++ b/po/de.po @@ -6896,26 +6896,6 @@ msgstr "Feature von:" msgid "choose which folder contains %s" 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 msgid "Allocating registry space" msgstr "Reservierung von Registrierungsspeicher" @@ -7314,6 +7294,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/el.po b/po/el.po index 98dfd2a6d91..d31a99b52a4 100644 --- a/po/el.po +++ b/po/el.po @@ -6883,26 +6883,6 @@ msgstr "" msgid "choose which folder contains %s" 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 #, fuzzy msgid "Allocating registry space" @@ -7318,6 +7298,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/en.po b/po/en.po index 4e0b503312b..ff943b7ec7e 100644 --- a/po/en.po +++ b/po/en.po @@ -6884,26 +6884,6 @@ msgstr "feature from:" msgid "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 msgid "Allocating registry space" msgstr "Allocating registry space" @@ -7302,6 +7282,26 @@ msgstr "" msgid "{{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 msgid "Please insert the disk: [2]" msgstr "Please insert the disk: [2]" diff --git a/po/en_US.po b/po/en_US.po index a7164f02981..5e4e06c65e6 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -6884,26 +6884,6 @@ msgstr "feature from:" msgid "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 msgid "Allocating registry space" msgstr "Allocating registry space" @@ -7302,6 +7282,26 @@ msgstr "" msgid "{{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 msgid "Please insert the disk: [2]" msgstr "Please insert the disk: [2]" diff --git a/po/eo.po b/po/eo.po index 752937ea66f..67b51821aa2 100644 --- a/po/eo.po +++ b/po/eo.po @@ -6784,26 +6784,6 @@ msgstr "taŭgeco el:" msgid "choose which folder contains %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 #, fuzzy #| msgid "Application Workspace" @@ -7253,6 +7233,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/es.po b/po/es.po index abc046f3be0..7a2c5419c84 100644 --- a/po/es.po +++ b/po/es.po @@ -6974,26 +6974,6 @@ msgstr "característica de:" msgid "choose which folder contains %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 #, fuzzy #| msgid "No registry log space.\n" @@ -7471,6 +7451,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/fa.po b/po/fa.po index 6a4f7909732..69704cb76fd 100644 --- a/po/fa.po +++ b/po/fa.po @@ -6870,26 +6870,6 @@ msgstr "" msgid "choose which folder contains %s" 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 msgid "Allocating registry space" msgstr "" @@ -7298,6 +7278,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/fi.po b/po/fi.po index e94c5550100..96bfcd733ce 100644 --- a/po/fi.po +++ b/po/fi.po @@ -6880,26 +6880,6 @@ msgstr "ominaisuus lähteestä:" msgid "choose which folder contains %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 msgid "Allocating registry space" msgstr "Varataan rekisteristä tilaa" @@ -7299,6 +7279,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/fr.po b/po/fr.po index 30d5d2ef34b..5f8aca2bfdb 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6918,26 +6918,6 @@ msgstr "fonctionnalité depuis :" msgid "choose which folder contains %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 #, fuzzy #| msgid "No registry log space.\n" @@ -7415,6 +7395,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/he.po b/po/he.po index aba38c19e06..6c655ad83b9 100644 --- a/po/he.po +++ b/po/he.po @@ -7130,26 +7130,6 @@ msgstr "" msgid "choose which folder contains %s" 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 #, fuzzy msgid "Allocating registry space" @@ -7598,6 +7578,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/hi.po b/po/hi.po index a9e75833336..020635fda65 100644 --- a/po/hi.po +++ b/po/hi.po @@ -6764,26 +6764,6 @@ msgstr "" msgid "choose which folder contains %s" 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 msgid "Allocating registry space" msgstr "" @@ -7187,6 +7167,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/hr.po b/po/hr.po index 6a79fed7c96..70b8abaf280 100644 --- a/po/hr.po +++ b/po/hr.po @@ -6895,26 +6895,6 @@ msgstr "mogućnost od:" msgid "choose which folder contains %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 #, fuzzy #| msgid "No registry log space.\n" @@ -7386,6 +7366,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/hu.po b/po/hu.po index 2affd63f69e..a611bf2f2d1 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6922,26 +6922,6 @@ msgstr "tulajdonság innen:" msgid "choose which folder contains %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 #, fuzzy #| msgid "No registry log space.\n" @@ -7419,6 +7399,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/it.po b/po/it.po index b43de8cb274..f63944b24b8 100644 --- a/po/it.po +++ b/po/it.po @@ -6991,26 +6991,6 @@ msgstr "funzionalità da:" msgid "choose which folder contains %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 #, fuzzy #| msgid "No registry log space.\n" @@ -7488,6 +7468,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/ja.po b/po/ja.po index ec02469b5f6..defc2ce795c 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6880,26 +6880,6 @@ msgstr "機能の導入元:" msgid "choose which folder contains %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 msgid "Allocating registry space" msgstr "レジストリ領域を割り当てています" @@ -7300,6 +7280,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/ko.po b/po/ko.po index 77b3cf7fea5..b736a3242d0 100644 --- a/po/ko.po +++ b/po/ko.po @@ -6896,26 +6896,6 @@ msgstr "부분(feature)에서:" msgid "choose which folder contains %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 #, fuzzy #| msgid "No registry log space.\n" @@ -7393,6 +7373,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/lt.po b/po/lt.po index 885782fdb1f..726ea2adc7c 100644 --- a/po/lt.po +++ b/po/lt.po @@ -6891,26 +6891,6 @@ msgstr "komponentas iš:" msgid "choose which folder contains %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 msgid "Allocating registry space" msgstr "Išskiriama vieta registrui" @@ -7308,6 +7288,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/ml.po b/po/ml.po index e909843b761..366cf207150 100644 --- a/po/ml.po +++ b/po/ml.po @@ -6764,26 +6764,6 @@ msgstr "" msgid "choose which folder contains %s" 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 msgid "Allocating registry space" msgstr "" @@ -7187,6 +7167,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index ef93b9d6175..87f7988481f 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -6890,26 +6890,6 @@ msgstr "Egenskap fra:" msgid "choose which folder contains %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 msgid "Allocating registry space" msgstr "Tildeler registerplass" @@ -7309,6 +7289,26 @@ msgstr "" msgid "{{Disk 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/nl.po b/po/nl.po index ce788302cbd..72af2758cfe 100644 --- a/po/nl.po +++ b/po/nl.po @@ -6964,26 +6964,6 @@ msgstr "Feature van:" msgid "choose which folder contains %s" 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 #, fuzzy #| msgid "No registry log space.\n" @@ -7461,6 +7441,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/or.po b/po/or.po index 01548717f23..9e7bd517177 100644 --- a/po/or.po +++ b/po/or.po @@ -6764,26 +6764,6 @@ msgstr "" msgid "choose which folder contains %s" 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 msgid "Allocating registry space" msgstr "" @@ -7187,6 +7167,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/pa.po b/po/pa.po index ddbb794ca0d..479a5d3128b 100644 --- a/po/pa.po +++ b/po/pa.po @@ -6764,26 +6764,6 @@ msgstr "" msgid "choose which folder contains %s" 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 msgid "Allocating registry space" msgstr "" @@ -7187,6 +7167,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/pl.po b/po/pl.po index d3cfffa3887..42b8f1b402a 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6905,26 +6905,6 @@ msgstr "funkcja z:" msgid "choose which folder contains %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 msgid "Allocating registry space" msgstr "Lokowanie przestrzeni w rejestrze" @@ -7324,6 +7304,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 0f5612972b7..2200bb46188 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -6900,26 +6900,6 @@ msgstr "origem da funcionalidade:" msgid "choose which folder contains %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 #, fuzzy #| msgid "No registry log space.\n" @@ -7397,6 +7377,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/pt_PT.po b/po/pt_PT.po index c0abdc57c7d..9a1f97626ef 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -6867,26 +6867,6 @@ msgstr "opção de:" msgid "choose which folder contains %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 #, fuzzy #| msgid "No registry log space.\n" @@ -7364,6 +7344,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/rm.po b/po/rm.po index 3c5db6d7628..2b1498a8e7b 100644 --- a/po/rm.po +++ b/po/rm.po @@ -6814,26 +6814,6 @@ msgstr "" msgid "choose which folder contains %s" 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 msgid "Allocating registry space" msgstr "" @@ -7243,6 +7223,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/ro.po b/po/ro.po index f079904dcde..70ef1b7450b 100644 --- a/po/ro.po +++ b/po/ro.po @@ -6922,26 +6922,6 @@ msgstr "caracteristică de la:" msgid "choose which folder contains %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 #, fuzzy #| msgid "Application Workspace" @@ -7416,6 +7396,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/ru.po b/po/ru.po index 5fdec5b5d6d..8382e8544d3 100644 --- a/po/ru.po +++ b/po/ru.po @@ -6893,26 +6893,6 @@ msgstr "функции из:" msgid "choose which folder contains %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 msgid "Allocating registry space" msgstr "Выделение места под данные реестра" @@ -7310,6 +7290,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/sk.po b/po/sk.po index 6ce2ff02109..ccca80fbec9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6872,26 +6872,6 @@ msgstr "" msgid "choose which folder contains %s" 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 msgid "Allocating registry space" msgstr "" @@ -7335,6 +7315,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/sl.po b/po/sl.po index b4ed352a13c..7b39ed43960 100644 --- a/po/sl.po +++ b/po/sl.po @@ -6983,26 +6983,6 @@ msgstr "zmožnost z:" msgid "choose which folder contains %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 #, fuzzy #| msgid "No registry log space.\n" @@ -7480,6 +7460,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/sr_RS@cyrillic.po b/po/sr_RS@cyrillic.po index 13ed9c50035..8707f36badd 100644 --- a/po/sr_RS@cyrillic.po +++ b/po/sr_RS@cyrillic.po @@ -7175,26 +7175,6 @@ msgstr "могућност од:" msgid "choose which folder contains %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 #, fuzzy msgid "Allocating registry space" @@ -7631,6 +7611,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index 27f7b8152bb..8d1d540a7b5 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.po @@ -7268,26 +7268,6 @@ msgstr "mogućnost od:" msgid "choose which folder contains %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 #, fuzzy #| msgid "Application Workspace" @@ -7739,6 +7719,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/sv.po b/po/sv.po index 654b86e6e96..d42fe801a2f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -6883,26 +6883,6 @@ msgstr "funktion från:" msgid "choose which folder contains %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 #, fuzzy #| msgid "No registry log space.\n" @@ -7380,6 +7360,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/te.po b/po/te.po index 6380d5349f3..34ee5401f5b 100644 --- a/po/te.po +++ b/po/te.po @@ -6764,26 +6764,6 @@ msgstr "" msgid "choose which folder contains %s" 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 msgid "Allocating registry space" msgstr "" @@ -7187,6 +7167,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/th.po b/po/th.po index 3a7f5e90b4c..b36dcc0b5d1 100644 --- a/po/th.po +++ b/po/th.po @@ -6896,26 +6896,6 @@ msgstr "" msgid "choose which folder contains %s" 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 msgid "Allocating registry space" msgstr "" @@ -7332,6 +7312,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/tr.po b/po/tr.po index 53e6d244d62..5d1fc4d2980 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6887,26 +6887,6 @@ msgstr "özellik buradan:" msgid "choose which folder contains %s" 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 msgid "Allocating registry space" msgstr "Kayıt günlük boşluğu ayarlanıyor" @@ -7306,6 +7286,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/uk.po b/po/uk.po index ace981c5f9d..f61ddfd53f7 100644 --- a/po/uk.po +++ b/po/uk.po @@ -6928,26 +6928,6 @@ msgstr "можливість з:" msgid "choose which folder contains %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 msgid "Allocating registry space" msgstr "Виділення простору реєстру" @@ -7347,6 +7327,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/wa.po b/po/wa.po index 1676c90bfc1..52b445f2688 100644 --- a/po/wa.po +++ b/po/wa.po @@ -6846,26 +6846,6 @@ msgstr "" msgid "choose which folder contains %s" 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 msgid "Allocating registry space" msgstr "" @@ -7278,6 +7258,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/wine.pot b/po/wine.pot index 022fbd8f93e..ff64ae30de0 100644 --- a/po/wine.pot +++ b/po/wine.pot @@ -6723,26 +6723,6 @@ msgstr "" msgid "choose which folder contains %s" 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 msgid "Allocating registry space" msgstr "" @@ -7138,6 +7118,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index b0dc7a71ceb..8b895d86ef9 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -6828,26 +6828,6 @@ msgstr "功能来自:" msgid "choose which folder contains %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 #, fuzzy #| msgid "No registry log space.\n" @@ -7325,6 +7305,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 3fdf4e0f102..1db344830c4 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6858,26 +6858,6 @@ msgstr "功能來自:" msgid "choose which folder contains %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 #, fuzzy #| msgid "No registry log space.\n" @@ -7355,6 +7335,26 @@ msgstr "" msgid "{{Disk full: }}" 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 msgid "Please insert the disk: [2]" msgstr ""