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/eventvwr/eventvwr.c?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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/eventvwr/lang/bg-BG.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/cs-CZ.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/de-DE.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/el-GR.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/en-US.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/es-ES.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/fr-FR.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/he-IL.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/it-IT.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/ja-JP.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/ko-KR.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/no-NO.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/pl-PL.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/pt-BR.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/ro-RO.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/ru-RU.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 Марк 
Пиулачс ([email protected])"
     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/eventvwr/lang/sk-SK.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/sq-AL.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/sv-SE.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/tr-TR.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/uk-UA.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/zh-CN.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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/eventvwr/lang/zh-TW.rc?rev=73043&r1=73042&r2=73043&view=diff
==============================================================================
--- 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 
([email protected])"
     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"


Reply via email to