msi: Return the current date and time.

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:55 -05:00 committed by Alexandre Julliard
parent 4ccc82a88a
commit a3dd99c9a3
49 changed files with 299 additions and 239 deletions

View File

@ -176,18 +176,12 @@ static void ui_actioninfo(MSIPACKAGE *package, LPCWSTR action, BOOL start,
{
MSIRECORD *row;
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);
template = msi_get_error_message(package->db, start ? MSIERR_INFO_ACTIONSTART : MSIERR_INFO_ACTIONENDED);
sprintfW(message, template, timet);
row = MSI_CreateRecord(2);
if (!row) return;
MSI_RecordSetStringW(row, 0, message);
MSI_RecordSetStringW(row, 0, template);
MSI_RecordSetStringW(row, 1, action);
MSI_RecordSetInteger(row, 2, start ? package->LastActionResult : rc);
MSI_ProcessMessage(package, INSTALLMESSAGE_INFO, row);

View File

@ -73,11 +73,11 @@ STRINGTABLE
IDS_INFO "Info [1]."
IDS_INSTALLERROR "The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is [1]. {{The arguments are: [2], [3], [4]}}"
IDS_OUTOFDISKSPACE "{{Disk full: }}"
IDS_ACTIONSTART "Action %s: [1]. [2]"
IDS_ACTIONSTART "Action [Time]: [1]. [2]"
IDS_COMMONDATA "Message type: [1], Argument: [2]{, [3]}"
IDS_INFO_ACTIONSTART "Action start %s: [1]."
IDS_INFO_ACTIONENDED "Action ended %s: [1]. Return value [2]."
IDS_INFO_LOGGINGSTART "=== Logging started: %s %s ==="
IDS_INFO_ACTIONSTART "Action start [Time]: [1]."
IDS_INFO_ACTIONENDED "Action ended [Time]: [1]. Return value [2]."
IDS_INFO_LOGGINGSTART "=== Logging started: [Date] [Time] ==="
IDS_ERR_INSERTDISK "Please insert the disk: [2]"
IDS_ERR_CABNOTFOUND "Source file not found{{(cabinet)}}: [2]. Verify that the file exists and that you can access it."

View File

@ -674,7 +674,6 @@ static VOID set_installer_properties(MSIPACKAGE *package)
HKEY hkey;
LPWSTR username, companyname;
SYSTEM_INFO sys_info;
SYSTEMTIME systemtime;
LANGID langid;
static const WCHAR szCommonFilesFolder[] = {'C','o','m','m','o','n','F','i','l','e','s','F','o','l','d','e','r',0};
@ -736,8 +735,6 @@ static VOID set_installer_properties(MSIPACKAGE *package)
};
static const WCHAR szUSERNAME[] = {'U','S','E','R','N','A','M','E',0};
static const WCHAR szCOMPANYNAME[] = {'C','O','M','P','A','N','Y','N','A','M','E',0};
static const WCHAR szDate[] = {'D','a','t','e',0};
static const WCHAR szTime[] = {'T','i','m','e',0};
static const WCHAR szUserLanguageID[] = {'U','s','e','r','L','a','n','g','u','a','g','e','I','D',0};
static const WCHAR szSystemLangID[] = {'S','y','s','t','e','m','L','a','n','g','u','a','g','e','I','D',0};
static const WCHAR szProductState[] = {'P','r','o','d','u','c','t','S','t','a','t','e',0};
@ -966,22 +963,6 @@ static VOID set_installer_properties(MSIPACKAGE *package)
if ( set_user_sid_prop( package ) != ERROR_SUCCESS)
ERR("Failed to set the UserSID property\n");
/* Date and time properties */
GetSystemTime( &systemtime );
if (GetDateFormatW( LOCALE_USER_DEFAULT, DATE_SHORTDATE, &systemtime,
NULL, bufstr, sizeof(bufstr)/sizeof(bufstr[0]) ))
msi_set_property( package->db, szDate, bufstr, -1 );
else
ERR("Couldn't set Date property: GetDateFormat failed with error %d\n", GetLastError());
if (GetTimeFormatW( LOCALE_USER_DEFAULT,
TIME_FORCE24HOURFORMAT | TIME_NOTIMEMARKER,
&systemtime, NULL, bufstr,
sizeof(bufstr)/sizeof(bufstr[0]) ))
msi_set_property( package->db, szTime, bufstr, -1 );
else
ERR("Couldn't set Time property: GetTimeFormat failed with error %d\n", GetLastError());
set_msi_assembly_prop( package );
langid = GetUserDefaultLangID();
@ -1478,11 +1459,6 @@ UINT MSI_OpenPackageW(LPCWSTR szPackage, MSIPACKAGE **pPackage)
MSISUMMARYINFO *si;
BOOL delete_on_close = FALSE;
LPWSTR productname;
static const WCHAR date_format[] =
{'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_message[1024];
WCHAR *info_template;
TRACE("%s %p\n", debugstr_w(szPackage), pPackage);
@ -1636,11 +1612,8 @@ UINT MSI_OpenPackageW(LPCWSTR szPackage, MSIPACKAGE **pPackage)
msiobj_release(&data_row->hdr);
return ERROR_OUTOFMEMORY;
}
GetTimeFormatW(LOCALE_USER_DEFAULT, 0, NULL, time_format, timet, 100);
GetDateFormatW(LOCALE_USER_DEFAULT, 0, NULL, date_format, datet, 100);
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_RecordSetStringW(info_row, 0, info_template);
msi_free(info_template);
MSI_ProcessMessage(package, INSTALLMESSAGE_INFO|MB_ICONHAND, info_row);
@ -2071,14 +2044,7 @@ INT MSI_ProcessMessage( MSIPACKAGE *package, INSTALLMESSAGE eMessageType, MSIREC
break;
case INSTALLMESSAGE_ACTIONSTART:
{
WCHAR *template_s;
static const WCHAR time_format[] =
{'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0};
WCHAR timet[100], template[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);
WCHAR *template = msi_get_error_message(package->db, MSIERR_ACTIONSTART);
MSI_RecordSetStringW(record, 0, template);
msi_free(template);
@ -2335,9 +2301,45 @@ static MSIRECORD *msi_get_property_row( MSIDATABASE *db, LPCWSTR name )
MSIQUERY *view;
UINT r;
static const WCHAR szDate[] = {'D','a','t','e',0};
static const WCHAR szTime[] = {'T','i','m','e',0};
WCHAR *buffer;
int length;
if (!name || !*name)
return NULL;
if (!strcmpW(name, szDate))
{
length = GetDateFormatW(LOCALE_USER_DEFAULT, DATE_SHORTDATE, NULL, NULL, NULL, 0);
if (!length)
return NULL;
buffer = msi_alloc(length * sizeof(WCHAR));
GetDateFormatW(LOCALE_USER_DEFAULT, DATE_SHORTDATE, NULL, NULL, buffer, sizeof(WCHAR));
row = MSI_CreateRecord(1);
if (!row)
return NULL;
MSI_RecordSetStringW(row, 1, buffer);
msi_free(buffer);
return row;
}
else if (!strcmpW(name, szTime))
{
length = GetTimeFormatW(LOCALE_USER_DEFAULT, TIME_NOTIMEMARKER, NULL, NULL, NULL, 0);
if (!length)
return NULL;
buffer = msi_alloc(length * sizeof(WCHAR));
GetTimeFormatW(LOCALE_USER_DEFAULT, TIME_NOTIMEMARKER, NULL, NULL, buffer, sizeof(WCHAR));
row = MSI_CreateRecord(1);
if (!row)
return NULL;
MSI_RecordSetStringW(row, 1, buffer);
msi_free(buffer);
return row;
}
rec = MSI_CreateRecord(1);
if (!rec)
return NULL;

View File

@ -7366,7 +7366,7 @@ msgid "{{Disk full: }}"
msgstr "القرص ممتلئ.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7374,15 +7374,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7431,7 +7431,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7439,15 +7439,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7384,7 +7384,7 @@ msgid "{{Disk full: }}"
msgstr "El disc està ple.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7392,15 +7392,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7293,7 +7293,7 @@ msgid "{{Disk full: }}"
msgstr "Disk je plný.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7301,15 +7301,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7442,7 +7442,7 @@ msgid "{{Disk full: }}"
msgstr "Diskens plads er opbrugt.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7450,15 +7450,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7295,7 +7295,9 @@ msgid "{{Disk full: }}"
msgstr "{{Datenträger voll: }}"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
#, fuzzy
#| msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr "Aktion %s: [1]. [2]"
#: msi.rc:78
@ -7303,15 +7305,21 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Nachrichtentyp: [1], Argument: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
#, fuzzy
#| msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr "=== Logging gestartet: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
#, fuzzy
#| msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr "Beginn der Aktion %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
#, fuzzy
#| msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr "Ende der Aktion %s: [1]. Rückgabewert [2]."
#: msi.rc:83

View File

@ -7299,7 +7299,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7307,15 +7307,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7283,24 +7283,24 @@ msgid "{{Disk full: }}"
msgstr "{{Disk full: }}"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr "Action [Time]: [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 ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr "=== Logging started: [Date] [Time] ==="
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr "Action start [Time]: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr "Action ended [Time]: [1]. Return value [2]."
#: msi.rc:83
msgid "Please insert the disk: [2]"

View File

@ -7283,24 +7283,24 @@ msgid "{{Disk full: }}"
msgstr "{{Disk full: }}"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgstr "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr "Action [Time]: [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 ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr "=== Logging started: [Date] [Time] ==="
#: msi.rc:79
msgid "Action start %s: [1]."
msgstr "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr "Action start [Time]: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgstr "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr "Action ended [Time]: [1]. Return value [2]."
#: msi.rc:83
msgid "Please insert the disk: [2]"

View File

@ -7234,7 +7234,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7242,15 +7242,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7452,7 +7452,7 @@ msgid "{{Disk full: }}"
msgstr "Disco lleno.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7460,15 +7460,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7279,7 +7279,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7287,15 +7287,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7280,7 +7280,9 @@ msgid "{{Disk full: }}"
msgstr "{{Levy täynnä: }}"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
#, fuzzy
#| msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr "Toiminto %s: [1]. [2]"
#: msi.rc:78
@ -7288,15 +7290,21 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Viestin tyyppi: [1], Argumentti: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
#, fuzzy
#| msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr "=== Loki aloitettu: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
#, fuzzy
#| msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr "Toiminto alkoi %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
#, fuzzy
#| msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr "Toiminto loppui %s: [1]. Paluuarvo [2]."
#: msi.rc:83

View File

@ -7396,7 +7396,7 @@ msgid "{{Disk full: }}"
msgstr "Disque plein.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7404,15 +7404,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7579,7 +7579,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7587,15 +7587,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7168,7 +7168,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7176,15 +7176,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7367,7 +7367,7 @@ msgid "{{Disk full: }}"
msgstr "Disk pun.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7375,15 +7375,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7400,7 +7400,7 @@ msgid "{{Disk full: }}"
msgstr "Lemez betelt.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7408,15 +7408,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7469,7 +7469,7 @@ msgid "{{Disk full: }}"
msgstr "Disco pieno.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7477,15 +7477,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7281,7 +7281,9 @@ msgid "{{Disk full: }}"
msgstr "ディスクがいっぱいです。\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
#, fuzzy
#| msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr "アクション %s: [1]. [2]"
#: msi.rc:78
@ -7289,15 +7291,21 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "メッセージ種別: [1], 引数: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
#, fuzzy
#| msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr "=== ログの開始: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
#, fuzzy
#| msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr "アクション開始 %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
#, fuzzy
#| msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr "アクション終了 %s: [1]. 戻り値 [2]."
#: msi.rc:83

View File

@ -7374,7 +7374,7 @@ msgid "{{Disk full: }}"
msgstr "디스크가 꽉 찼습니다.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7382,15 +7382,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7289,7 +7289,9 @@ msgid "{{Disk full: }}"
msgstr "{{Diskas pilnas: }}"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
#, fuzzy
#| msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr "Veiksmas %s: [1]. [2]"
#: msi.rc:78
@ -7297,15 +7299,21 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Pranešimo tipas: [1], Argumentai: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
#, fuzzy
#| msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr "=== Registravimas pradėtas: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
#, fuzzy
#| msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr "Veiksmo pradžia %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
#, fuzzy
#| msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr "Veiksmas baigtas %s: [1]. Grąžinta reikšmė [2]."
#: msi.rc:83

View File

@ -7168,7 +7168,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7176,15 +7176,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7290,7 +7290,7 @@ msgid "{{Disk full: }}"
msgstr "{{Disken er full: }}"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7298,15 +7298,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7442,7 +7442,7 @@ msgid "{{Disk full: }}"
msgstr "Schijf vol.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7450,15 +7450,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7168,7 +7168,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7176,15 +7176,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7168,7 +7168,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7176,15 +7176,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7305,7 +7305,9 @@ msgid "{{Disk full: }}"
msgstr "Dysk pełen.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
#, fuzzy
#| msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr "Działanie %s: [1]. [2]"
#: msi.rc:78
@ -7313,15 +7315,21 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Rodzaj wiadomości: [1], Argument: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
#, fuzzy
#| msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr "=== Rozpoczęcie zbierania logów: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
#, fuzzy
#| msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr "Rozpoczęcie działania %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
#, fuzzy
#| msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr "Zakończono działanie %s: [1]. Zwrócona wartość [2]."
#: msi.rc:83

View File

@ -7378,7 +7378,7 @@ msgid "{{Disk full: }}"
msgstr "Disco cheio.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7386,15 +7386,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7345,7 +7345,7 @@ msgid "{{Disk full: }}"
msgstr "Disco cheio.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7353,15 +7353,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7224,7 +7224,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7232,15 +7232,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7397,7 +7397,7 @@ msgid "{{Disk full: }}"
msgstr "Disc plin.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7405,15 +7405,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7291,7 +7291,9 @@ msgid "{{Disk full: }}"
msgstr "{{Диск полон: }}"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
#, fuzzy
#| msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr "Действие %s: [1]. [2]"
#: msi.rc:78
@ -7299,15 +7301,21 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Тип сообщения: [1], Аргумент: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
#, fuzzy
#| msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr "=== Протоколирование запущено: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
#, fuzzy
#| msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr "Запуск действия %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
#, fuzzy
#| msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr "Действие завершилось %s: [1]. Код возврата [2]."
#: msi.rc:83

View File

@ -7316,7 +7316,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7324,15 +7324,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7461,7 +7461,7 @@ msgid "{{Disk full: }}"
msgstr "Disk je poln.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7469,15 +7469,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7612,7 +7612,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7620,15 +7620,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7720,7 +7720,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7728,15 +7728,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7361,7 +7361,7 @@ msgid "{{Disk full: }}"
msgstr "Disken är full.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7369,15 +7369,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7168,7 +7168,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7176,15 +7176,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7313,7 +7313,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7321,15 +7321,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7287,7 +7287,9 @@ msgid "{{Disk full: }}"
msgstr "{{Disk dolu: }}"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
#, fuzzy
#| msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr "%s eylemi: [1]. [2]"
#: msi.rc:78
@ -7295,15 +7297,21 @@ 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 ==="
#, fuzzy
#| msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr "=== Günlük başlangıcı: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
#, fuzzy
#| msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr "%s eylem başlangıcı: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
#, fuzzy
#| msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr "%s eylem bitişi: [1]. Dönüş değeri [2]."
#: msi.rc:83

View File

@ -7328,7 +7328,9 @@ msgid "{{Disk full: }}"
msgstr "Диск заповнений.\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
#, fuzzy
#| msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr "Дія %s: [1]. [2]"
#: msi.rc:78
@ -7336,15 +7338,21 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr "Тип повідомлення: [1], Аргумент: [2]{, [3]}"
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
#, fuzzy
#| msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr "=== Журналювання розпочалося: %s %s ==="
#: msi.rc:79
msgid "Action start %s: [1]."
#, fuzzy
#| msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr "Запуск дії %s: [1]."
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
#, fuzzy
#| msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr "Дія завершилася %s: [1]. Повернене значення [2]."
#: msi.rc:83

View File

@ -7259,7 +7259,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7267,15 +7267,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7119,7 +7119,7 @@ msgid "{{Disk full: }}"
msgstr ""
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7127,15 +7127,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7306,7 +7306,7 @@ msgid "{{Disk full: }}"
msgstr "磁盘满。\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7314,15 +7314,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83

View File

@ -7336,7 +7336,7 @@ msgid "{{Disk full: }}"
msgstr "磁碟已滿。\n"
#: msi.rc:77
msgid "Action %s: [1]. [2]"
msgid "Action [Time]: [1]. [2]"
msgstr ""
#: msi.rc:78
@ -7344,15 +7344,15 @@ msgid "Message type: [1], Argument: [2]{, [3]}"
msgstr ""
#: msi.rc:81
msgid "=== Logging started: %s %s ==="
msgid "=== Logging started: [Date] [Time] ==="
msgstr ""
#: msi.rc:79
msgid "Action start %s: [1]."
msgid "Action start [Time]: [1]."
msgstr ""
#: msi.rc:80
msgid "Action ended %s: [1]. Return value [2]."
msgid "Action ended [Time]: [1]. Return value [2]."
msgstr ""
#: msi.rc:83