From a3dd99c9a36c36cb372a2fe4a89881b73ba4d8d3 Mon Sep 17 00:00:00 2001 From: Zebediah Figura Date: Sun, 23 Jul 2017 15:50:55 -0500 Subject: [PATCH] msi: Return the current date and time. Signed-off-by: Zebediah Figura Signed-off-by: Hans Leidekker Signed-off-by: Alexandre Julliard --- dlls/msi/action.c | 8 +---- dlls/msi/msi.rc | 8 ++--- dlls/msi/package.c | 74 +++++++++++++++++++++++--------------------- po/ar.po | 8 ++--- po/bg.po | 8 ++--- po/ca.po | 8 ++--- po/cs.po | 8 ++--- po/da.po | 8 ++--- po/de.po | 16 +++++++--- po/el.po | 8 ++--- po/en.po | 16 +++++----- po/en_US.po | 16 +++++----- po/eo.po | 8 ++--- po/es.po | 8 ++--- po/fa.po | 8 ++--- po/fi.po | 16 +++++++--- po/fr.po | 8 ++--- po/he.po | 8 ++--- po/hi.po | 8 ++--- po/hr.po | 8 ++--- po/hu.po | 8 ++--- po/it.po | 8 ++--- po/ja.po | 16 +++++++--- po/ko.po | 8 ++--- po/lt.po | 16 +++++++--- po/ml.po | 8 ++--- po/nb_NO.po | 8 ++--- po/nl.po | 8 ++--- po/or.po | 8 ++--- po/pa.po | 8 ++--- po/pl.po | 16 +++++++--- po/pt_BR.po | 8 ++--- po/pt_PT.po | 8 ++--- po/rm.po | 8 ++--- po/ro.po | 8 ++--- po/ru.po | 16 +++++++--- po/sk.po | 8 ++--- po/sl.po | 8 ++--- po/sr_RS@cyrillic.po | 8 ++--- po/sr_RS@latin.po | 8 ++--- po/sv.po | 8 ++--- po/te.po | 8 ++--- po/th.po | 8 ++--- po/tr.po | 16 +++++++--- po/uk.po | 16 +++++++--- po/wa.po | 8 ++--- po/wine.pot | 8 ++--- po/zh_CN.po | 8 ++--- po/zh_TW.po | 8 ++--- 49 files changed, 299 insertions(+), 239 deletions(-) diff --git a/dlls/msi/action.c b/dlls/msi/action.c index 59c4610c5a9..18ec7c3ff77 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -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); diff --git a/dlls/msi/msi.rc b/dlls/msi/msi.rc index 357bc5a37d4..14f98667d57 100644 --- a/dlls/msi/msi.rc +++ b/dlls/msi/msi.rc @@ -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." diff --git a/dlls/msi/package.c b/dlls/msi/package.c index c2dde1b9328..cc3ee35a232 100644 --- a/dlls/msi/package.c +++ b/dlls/msi/package.c @@ -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; diff --git a/po/ar.po b/po/ar.po index eb85570422a..ddb572e459d 100644 --- a/po/ar.po +++ b/po/ar.po @@ -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 diff --git a/po/bg.po b/po/bg.po index 133b075d7e9..47b5a394b9f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -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 diff --git a/po/ca.po b/po/ca.po index 1dfb9fe5749..9a967b3253a 100644 --- a/po/ca.po +++ b/po/ca.po @@ -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 diff --git a/po/cs.po b/po/cs.po index 8f4e0a0d44d..dacaa787741 100644 --- a/po/cs.po +++ b/po/cs.po @@ -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 diff --git a/po/da.po b/po/da.po index b432a6e13d9..13ece10ca05 100644 --- a/po/da.po +++ b/po/da.po @@ -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 diff --git a/po/de.po b/po/de.po index c4a3f5dca57..4ac6bbcfacf 100644 --- a/po/de.po +++ b/po/de.po @@ -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 diff --git a/po/el.po b/po/el.po index d31a99b52a4..97889598115 100644 --- a/po/el.po +++ b/po/el.po @@ -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 diff --git a/po/en.po b/po/en.po index ff943b7ec7e..ceb788e9598 100644 --- a/po/en.po +++ b/po/en.po @@ -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]" diff --git a/po/en_US.po b/po/en_US.po index 5e4e06c65e6..def4c20ea6f 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -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]" diff --git a/po/eo.po b/po/eo.po index 67b51821aa2..4677788553b 100644 --- a/po/eo.po +++ b/po/eo.po @@ -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 diff --git a/po/es.po b/po/es.po index 7a2c5419c84..90197a30f44 100644 --- a/po/es.po +++ b/po/es.po @@ -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 diff --git a/po/fa.po b/po/fa.po index 69704cb76fd..0e1b0c5065d 100644 --- a/po/fa.po +++ b/po/fa.po @@ -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 diff --git a/po/fi.po b/po/fi.po index 96bfcd733ce..99371d05b49 100644 --- a/po/fi.po +++ b/po/fi.po @@ -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 diff --git a/po/fr.po b/po/fr.po index 5f8aca2bfdb..ddfe965fffb 100644 --- a/po/fr.po +++ b/po/fr.po @@ -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 diff --git a/po/he.po b/po/he.po index 6c655ad83b9..83927b001fd 100644 --- a/po/he.po +++ b/po/he.po @@ -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 diff --git a/po/hi.po b/po/hi.po index 020635fda65..540f36b9702 100644 --- a/po/hi.po +++ b/po/hi.po @@ -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 diff --git a/po/hr.po b/po/hr.po index 70b8abaf280..40f028ca30f 100644 --- a/po/hr.po +++ b/po/hr.po @@ -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 diff --git a/po/hu.po b/po/hu.po index a611bf2f2d1..74a506f0ef6 100644 --- a/po/hu.po +++ b/po/hu.po @@ -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 diff --git a/po/it.po b/po/it.po index f63944b24b8..efdf389e563 100644 --- a/po/it.po +++ b/po/it.po @@ -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 diff --git a/po/ja.po b/po/ja.po index defc2ce795c..fa4ec01bab3 100644 --- a/po/ja.po +++ b/po/ja.po @@ -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 diff --git a/po/ko.po b/po/ko.po index b736a3242d0..f607252697d 100644 --- a/po/ko.po +++ b/po/ko.po @@ -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 diff --git a/po/lt.po b/po/lt.po index 726ea2adc7c..055a965065b 100644 --- a/po/lt.po +++ b/po/lt.po @@ -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 diff --git a/po/ml.po b/po/ml.po index 366cf207150..5190643d2d6 100644 --- a/po/ml.po +++ b/po/ml.po @@ -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 diff --git a/po/nb_NO.po b/po/nb_NO.po index 87f7988481f..132b71cf005 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -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 diff --git a/po/nl.po b/po/nl.po index 72af2758cfe..a3b10c672b8 100644 --- a/po/nl.po +++ b/po/nl.po @@ -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 diff --git a/po/or.po b/po/or.po index 9e7bd517177..fddd611da09 100644 --- a/po/or.po +++ b/po/or.po @@ -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 diff --git a/po/pa.po b/po/pa.po index 479a5d3128b..42ce667aa20 100644 --- a/po/pa.po +++ b/po/pa.po @@ -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 diff --git a/po/pl.po b/po/pl.po index 42b8f1b402a..629189c94ec 100644 --- a/po/pl.po +++ b/po/pl.po @@ -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 diff --git a/po/pt_BR.po b/po/pt_BR.po index 2200bb46188..9847163ee7d 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -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 diff --git a/po/pt_PT.po b/po/pt_PT.po index 9a1f97626ef..c293825ec64 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -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 diff --git a/po/rm.po b/po/rm.po index 2b1498a8e7b..1124cda3164 100644 --- a/po/rm.po +++ b/po/rm.po @@ -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 diff --git a/po/ro.po b/po/ro.po index 70ef1b7450b..1e8dddcd945 100644 --- a/po/ro.po +++ b/po/ro.po @@ -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 diff --git a/po/ru.po b/po/ru.po index 8382e8544d3..aebd4ecf7b2 100644 --- a/po/ru.po +++ b/po/ru.po @@ -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 diff --git a/po/sk.po b/po/sk.po index ccca80fbec9..95bc2ddb791 100644 --- a/po/sk.po +++ b/po/sk.po @@ -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 diff --git a/po/sl.po b/po/sl.po index 7b39ed43960..97b81e893d7 100644 --- a/po/sl.po +++ b/po/sl.po @@ -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 diff --git a/po/sr_RS@cyrillic.po b/po/sr_RS@cyrillic.po index 8707f36badd..8a25a83d2ff 100644 --- a/po/sr_RS@cyrillic.po +++ b/po/sr_RS@cyrillic.po @@ -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 diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index 8d1d540a7b5..0b8ea45c395 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.po @@ -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 diff --git a/po/sv.po b/po/sv.po index d42fe801a2f..64d244877eb 100644 --- a/po/sv.po +++ b/po/sv.po @@ -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 diff --git a/po/te.po b/po/te.po index 34ee5401f5b..9ed1ace4e7d 100644 --- a/po/te.po +++ b/po/te.po @@ -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 diff --git a/po/th.po b/po/th.po index b36dcc0b5d1..7f9d5bb4a62 100644 --- a/po/th.po +++ b/po/th.po @@ -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 diff --git a/po/tr.po b/po/tr.po index 5d1fc4d2980..1282d7621ba 100644 --- a/po/tr.po +++ b/po/tr.po @@ -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 diff --git a/po/uk.po b/po/uk.po index f61ddfd53f7..81adf8de3f2 100644 --- a/po/uk.po +++ b/po/uk.po @@ -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 diff --git a/po/wa.po b/po/wa.po index 52b445f2688..1afcde92902 100644 --- a/po/wa.po +++ b/po/wa.po @@ -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 diff --git a/po/wine.pot b/po/wine.pot index ff64ae30de0..f6dc3bfa288 100644 --- a/po/wine.pot +++ b/po/wine.pot @@ -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 diff --git a/po/zh_CN.po b/po/zh_CN.po index 8b895d86ef9..3f403ed0d63 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -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 diff --git a/po/zh_TW.po b/po/zh_TW.po index 1db344830c4..32bb702b990 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -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