Author: hbelusca
Date: Wed Oct 26 20:32:11 2016
New Revision: 73043
URL:
http://svn.reactos.org/svn/reactos?rev=73043&view=rev
Log:
[EVENTVWR]
- Fix FormatMessage flags sanitization.
- Use "LANG_USER_DEFAULT" instead of MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT)
(these are the same, but one is shorter than the other).
- In case LookupAccountSidW fails to retrieve the user name of an associated SID, use
ConvertSidToStringSidW to get the SID string directly and display it, instead of claiming
there is no associated user for a given event.
- In addition to display (in the status bar) the number of events in the selected log,
display the number of events actually listed. This can be useful when events filtering
will be completely implemented, and it can be also useful for detecting possible corrupted
logs where the number of enumerable events is different (less) than the total number of
events in the log...
==> To translators: please update the translations!
CORE-11637
Modified:
trunk/reactos/base/applications/mscutils/eventvwr/eventvwr.c
trunk/reactos/base/applications/mscutils/eventvwr/lang/bg-BG.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/cs-CZ.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/de-DE.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/el-GR.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/en-US.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/es-ES.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/fr-FR.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/he-IL.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/it-IT.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/ja-JP.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/ko-KR.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/no-NO.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/pl-PL.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/pt-BR.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/ro-RO.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/ru-RU.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/sk-SK.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/sq-AL.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/sv-SE.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/tr-TR.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/uk-UA.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/zh-CN.rc
trunk/reactos/base/applications/mscutils/eventvwr/lang/zh-TW.rc
Modified: trunk/reactos/base/applications/mscutils/eventvwr/eventvwr.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/eventvwr.c [iso-8859-1] (original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/eventvwr.c [iso-8859-1] Wed Oct 26
20:32:11 2016
@@ -29,9 +29,9 @@
#include "eventvwr.h"
#include "evtdetctl.h"
+#include <sddl.h> // For ConvertSidToStringSidW
#include <shellapi.h>
#include <shlwapi.h>
-#include <strsafe.h>
// #include "resource.h"
@@ -306,6 +306,10 @@
if (hLibrary == NULL)
return NULL;
+ /* Sanitize dwFlags */
+ dwFlags &= ~FORMAT_MESSAGE_FROM_STRING;
+ dwFlags |= FORMAT_MESSAGE_FROM_HMODULE;
+
_SEH2_TRY
{
/*
@@ -319,7 +323,7 @@
FORMAT_MESSAGE_IGNORE_INSERTS |
FORMAT_MESSAGE_MAX_WIDTH_MASK, */
hLibrary,
dwMessageId,
- MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
+ LANG_USER_DEFAULT,
(LPWSTR)&lpMsgBuf,
nSize,
Arguments);
@@ -350,10 +354,10 @@
dwLength = FormatMessageW(dwFlags,
hLibrary,
dwMessageId,
- MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
+ LANG_USER_DEFAULT,
(LPWSTR)&lpMsgBuf,
nSize,
- Arguments);
+ NULL /* Arguments */);
}
}
_SEH2_END;
@@ -409,7 +413,7 @@
szDll = wcstok(szMessageDllList, EVENT_DLL_SEPARATOR);
while ((szDll != NULL) && !Success)
{
- // Uses MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT)
+ // Uses LANG_USER_DEFAULT
lpMsgBuf = GetMessageStringFromDll(szDll,
dwFlags,
dwMessageId,
@@ -1261,7 +1265,8 @@
GetEventUserName(IN PEVENTLOGRECORD pelr,
OUT PWCHAR pszUser) // TODO: Add IN DWORD BufLen
{
- PSID lpSid;
+ PSID pSid;
+ PWSTR StringSid;
WCHAR szName[1024];
WCHAR szDomain[1024];
SID_NAME_USE peUse;
@@ -1269,13 +1274,19 @@
DWORD cchDomain = ARRAYSIZE(szDomain);
/* Point to the SID */
- lpSid = (PSID)((LPBYTE)pelr + pelr->UserSidOffset);
+ pSid = (PSID)((LPBYTE)pelr + pelr->UserSidOffset);
/* User SID */
if (pelr->UserSidLength > 0)
{
+ /*
+ * Try to retrieve the user account name and domain name corresponding
+ * to the SID. If it cannot be retrieved, try to convert the SID to a
+ * string-form. It should not be bigger than the user-provided buffer
+ * 'pszUser', otherwise we return an error.
+ */
if (LookupAccountSidW(NULL, // FIXME: Use computer name? From the particular
event?
- lpSid,
+ pSid,
szName,
&cchName,
szDomain,
@@ -1284,6 +1295,27 @@
{
StringCchCopyW(pszUser, MAX_PATH, szName);
return TRUE;
+ }
+ else if (ConvertSidToStringSidW(pSid, &StringSid))
+ {
+ BOOL Success;
+
+ /* Copy the string only if the user-provided buffer is small enough */
+ if (wcslen(StringSid) + 1 <= MAX_PATH) // + 1 for NULL-terminator
+ {
+ StringCchCopyW(pszUser, MAX_PATH, StringSid);
+ Success = TRUE;
+ }
+ else
+ {
+ SetLastError(ERROR_NOT_ENOUGH_MEMORY);
+ Success = FALSE;
+ }
+
+ /* Free the allocated buffer */
+ LocalFree(StringSid);
+
+ return Success;
}
}
@@ -1672,7 +1704,8 @@
sizeof(szStatusText),
szStatusBarTemplate,
EventLog->LogName,
- dwTotalRecords);
+ dwTotalRecords,
+ ListView_GetItemCount(hwndListView));
}
else
{
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/bg-BG.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/bg-BG.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/bg-BG.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -131,7 +131,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "ÐÑеглед на ÑÑбиÑиÑ"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
+ IDS_STATUS_MSG "%s has %lu event(s) (listed: %lu)"
IDS_LOADING_WAIT "ÐаÑеждане на ÑÑбиÑиÑÑа.
ÐоÑакайÑе..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/cs-CZ.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/cs-CZ.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/cs-CZ.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -131,7 +131,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "ProhlÞeÄ událostÃ"
IDS_APP_TITLE_EX "%s - Protkol %s na \\\\"
- IDS_STATUS_MSG "PoÄet událostà v protokolu %s: %lu"
+ IDS_STATUS_MSG "PoÄet událostà v protokolu %s: %lu (listed: %lu)"
IDS_LOADING_WAIT "NaÄÃtám protokol událostÃ. ProsÃm Äekejte..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/de-DE.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/de-DE.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/de-DE.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -133,7 +133,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "Ereignisanzeige"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
+ IDS_STATUS_MSG "%s has %lu event(s) (listed: %lu)"
IDS_LOADING_WAIT "Ereignis-Protokolle werden geladen. Bitte warten..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/el-GR.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/el-GR.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/el-GR.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -133,7 +133,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "Event Viewer"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
+ IDS_STATUS_MSG "%s has %lu event(s) (listed: %lu)"
IDS_LOADING_WAIT "ÎίνεÏαι ÏÏÏÏÏÏη ÏÏν Logs ÏÏ
μβάνÏÏν. ΠαÏÎ±ÎºÎ±Î»Ï ÏεÏιμÎνεÏε..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/en-US.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/en-US.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/en-US.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -139,7 +139,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "Event Viewer"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
+ IDS_STATUS_MSG "%s has %lu event(s) (listed: %lu)"
IDS_LOADING_WAIT "Loading Event Logs. Please wait..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/es-ES.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/es-ES.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/es-ES.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -133,7 +133,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "Visor de eventos"
IDS_APP_TITLE_EX "%s - Registro de %s en \\\\"
- IDS_STATUS_MSG "%s tiene %lu evento(s)"
+ IDS_STATUS_MSG "%s tiene %lu evento(s) (listed: %lu)"
IDS_LOADING_WAIT "Recuperando eventos. Espere un momento..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/fr-FR.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/fr-FR.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/fr-FR.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -133,7 +133,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "Visionneuse d'événements"
IDS_APP_TITLE_EX "%s - Journal %s sur \\\\"
- IDS_STATUS_MSG "%s contient %lu événement(s)"
+ IDS_STATUS_MSG "%s contient %lu événement(s) (listés : %lu)"
IDS_LOADING_WAIT "Chargement des journaux d'événements. Veuillez
patienter..."
IDS_NO_ITEMS "Aucun élément à afficher dans cet aperçu." // "No
events in this log."
IDS_EVENTLOG_SYSTEM "Journaux système"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/he-IL.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/he-IL.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/he-IL.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -133,7 +133,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "×××× ×××ר××¢××"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
+ IDS_STATUS_MSG "%s has %lu event(s) (listed: %lu)"
IDS_LOADING_WAIT "×××¢× ×××× × ××ר××¢××, × ×
×××ת××..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/it-IT.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/it-IT.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/it-IT.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -133,7 +133,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "Visualizzatore eventi"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
+ IDS_STATUS_MSG "%s has %lu event(s) (listed: %lu)"
IDS_LOADING_WAIT "Caricamento eventi in corso. Attendere..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/ja-JP.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/ja-JP.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/ja-JP.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -133,7 +133,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "ã¤ãã³ã ãã¥ã¼ã¢"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
+ IDS_STATUS_MSG "%s has %lu event(s) (listed: %lu)"
IDS_LOADING_WAIT "ã¤ãã³ã ãã°ãèªã¿è¾¼ãã§ãã¾ãã ãå¾
ã¡ãã ãã..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/ko-KR.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/ko-KR.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/ko-KR.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -133,7 +133,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "ì´ë²¤í¸ ë·°ì´"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
+ IDS_STATUS_MSG "%s has %lu event(s) (listed: %lu)"
IDS_LOADING_WAIT "ì´ë²¤í¸ ë¡ê·¸ ë¡ë©ì¤. 기ë¤ë ¤ì£¼ì¸ì..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/no-NO.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/no-NO.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/no-NO.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -131,7 +131,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "Hendelseliste"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
+ IDS_STATUS_MSG "%s has %lu event(s) (listed: %lu)"
IDS_LOADING_WAIT "Laster Hendelseliste. Venligst vent..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/pl-PL.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/pl-PL.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/pl-PL.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -135,7 +135,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "PodglÄ
d zdarzeÅ"
IDS_APP_TITLE_EX "%s - %s Log na \\\\"
- IDS_STATUS_MSG "%s posiada %lu zdarzeÅ"
+ IDS_STATUS_MSG "%s posiada %lu zdarzeÅ (listed: %lu)"
IDS_LOADING_WAIT "Åadowanie logów zdarzeÅ. ProszÄ czekaÄ..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/pt-BR.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/pt-BR.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/pt-BR.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -133,7 +133,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "Visualizador de Eventos"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
+ IDS_STATUS_MSG "%s has %lu event(s) (listed: %lu)"
IDS_LOADING_WAIT "Carregando Registros de Eventos. Por favor aguarde..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/ro-RO.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/ro-RO.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/ro-RO.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -136,7 +136,7 @@
IDS_COPYRIGHT "Drept de autor (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "Observator de evenimente"
IDS_APP_TITLE_EX "%s - %s autentificat pe \\\\"
- IDS_STATUS_MSG "%s are %lu eveniment(e)"
+ IDS_STATUS_MSG "%s are %lu eveniment(e) (listed: %lu)"
IDS_LOADING_WAIT "Se încarcÄ jurnalul de evenimentele. AÈteptaÈiâ¦"
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/ru-RU.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/ru-RU.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/ru-RU.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -133,7 +133,7 @@
IDS_COPYRIGHT "ÐвÑоÑÑкие пÑава (С) 2007 ÐаÑк ÐиÑлаÑÑ
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "ÐÑоÑмоÑÑ ÑобÑÑий"
IDS_APP_TITLE_EX "%s - %s жÑÑнал на \\\\"
- IDS_STATUS_MSG "%s ÑодеÑÐ¶Ð¸Ñ %lu ÑобÑÑие (ий)"
+ IDS_STATUS_MSG "%s ÑодеÑÐ¶Ð¸Ñ %lu ÑобÑÑие(ий) (listed:
%lu)"
IDS_LOADING_WAIT "ÐÐ´ÐµÑ Ð·Ð°Ð³ÑÑзка. ÐодождиÑе..."
IDS_NO_ITEMS "ÐÐµÑ ÑлеменÑов Ð´Ð»Ñ Ð¾ÑобÑÐ°Ð¶ÐµÐ½Ð¸Ñ Ð²
ÑÑом пÑедÑÑавлении." // "No events in this log."
IDS_EVENTLOG_SYSTEM "СиÑÑемнÑй жÑÑнал"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/sk-SK.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/sk-SK.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/sk-SK.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -136,7 +136,7 @@
IDS_COPYRIGHT "Autorské práva (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "ZobrazovaÄ udalostÃ"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
+ IDS_STATUS_MSG "%s has %lu event(s) (listed: %lu)"
IDS_LOADING_WAIT "Nahrávam záznamy s udalosÅ¥ami. PoÄkajte, prosÃm..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/sq-AL.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/sq-AL.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/sq-AL.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -139,7 +139,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "Shikues ngjarjesh"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
+ IDS_STATUS_MSG "%s has %lu event(s) (listed: %lu)"
IDS_LOADING_WAIT "Ngarkim loget e ngjarjeve. Ju lutem prisni..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/sv-SE.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/sv-SE.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/sv-SE.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -133,7 +133,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "Händelselogg"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
+ IDS_STATUS_MSG "%s has %lu event(s) (listed: %lu)"
IDS_LOADING_WAIT "Laddar in Händelseloggen. Vänligen vänta..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/tr-TR.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/tr-TR.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/tr-TR.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -139,7 +139,7 @@
IDS_COPYRIGHT "Telif Hakkı: 2007 - Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "Olay Görüntüleyicisi"
IDS_APP_TITLE_EX "%s - %s Oturum Aç \\\\"
- IDS_STATUS_MSG "%s -> %lu olay var."
+ IDS_STATUS_MSG "%s -> %lu olay var (listed: %lu)"
IDS_LOADING_WAIT "Olay kayıtları yükleniyor. Lütfen bekleyiniz..."
IDS_NO_ITEMS "Bu görünümde görüntülenecek bir öÄe bile yok." //
"No events in this log."
IDS_EVENTLOG_SYSTEM "Dizge Kayıtları"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/uk-UA.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/uk-UA.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/uk-UA.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -133,7 +133,7 @@
IDS_COPYRIGHT "Copyright (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "ÐглÑÐ´Ð°Ñ Ð¿Ð¾Ð´Ñй"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
+ IDS_STATUS_MSG "%s has %lu event(s) (listed: %lu)"
IDS_LOADING_WAIT "ÐаванÑÐ°Ð¶ÐµÐ½Ð½Ñ ÐвÑÑÑ Ð¿Ð¾Ð´Ñй. ÐÑдÑ
лаÑка, заÑекайÑе..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/zh-CN.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/zh-CN.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/zh-CN.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -133,7 +133,7 @@
IDS_COPYRIGHT "çæææ (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "äºä»¶æ¥çå¨"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
+ IDS_STATUS_MSG "%s has %lu event(s) (listed: %lu)"
IDS_LOADING_WAIT "æ£å¨è½½å
¥æ¥å¿ã请ç¨å..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"
Modified: trunk/reactos/base/applications/mscutils/eventvwr/lang/zh-TW.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils…
==============================================================================
--- trunk/reactos/base/applications/mscutils/eventvwr/lang/zh-TW.rc [iso-8859-1]
(original)
+++ trunk/reactos/base/applications/mscutils/eventvwr/lang/zh-TW.rc [iso-8859-1] Wed Oct
26 20:32:11 2016
@@ -133,7 +133,7 @@
IDS_COPYRIGHT "çæ¬ææ (C) 2007 Marc Piulachs
(marc.piulachs(a)codexchange.net)"
IDS_APP_TITLE "äºä»¶æª¢è¦å¨"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
+ IDS_STATUS_MSG "%s has %lu event(s) (listed: %lu)"
IDS_LOADING_WAIT "æ£å¨è¼å
¥æ¥èªã è«ç¨å..."
IDS_NO_ITEMS "There are no items to show in this view." // "No events
in this log."
IDS_EVENTLOG_SYSTEM "System Logs"