Author: akhaldi
Date: Sat Oct 29 20:41:45 2016
New Revision: 73073
URL:
http://svn.reactos.org/svn/reactos?rev=73073&view=rev
Log:
[0.4.3] * Merge eventvwr improvements by Hermès in r73043. CORE-11637
Modified:
branches/ros-branch-0_4_3/ (props changed)
branches/ros-branch-0_4_3/reactos/ (props changed)
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/eventvwr.c
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/bg-BG.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/cs-CZ.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/de-DE.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/el-GR.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/en-US.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/es-ES.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/fr-FR.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/he-IL.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/it-IT.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/ja-JP.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/ko-KR.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/no-NO.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/pl-PL.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/pt-BR.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/ro-RO.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/ru-RU.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/sk-SK.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/sq-AL.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/sv-SE.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/tr-TR.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/uk-UA.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/zh-CN.rc
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/zh-TW.rc
Propchange: branches/ros-branch-0_4_3/
------------------------------------------------------------------------------
svn:mergeinfo = /trunk:73043
Propchange: branches/ros-branch-0_4_3/reactos/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sat Oct 29 20:41:45 2016
@@ -21,3 +21,4 @@
/branches/usb-bringup:51335,51337,51341-51343,51348,51350,51353,51355,51365-51369,51372,51384-54388,54396-54398,54736-54737,54752-54754,54756-54760,54762,54764-54765,54767-54768,54772,54774-54777,54781,54787,54790-54792,54797-54798,54806,54808,54834-54838,54843,54850,54852,54856,54858-54859
/branches/usb-bringup-trunk:55019-55543,55548-55554,55556-55567
/branches/wlan-bringup:54809-54998
+/trunk/reactos:73043
Modified:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/eventvwr.c
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/eventvwr.c [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/eventvwr.c [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/bg-BG.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/bg-BG.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/bg-BG.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/cs-CZ.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/cs-CZ.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/cs-CZ.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/de-DE.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/de-DE.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/de-DE.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/el-GR.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/el-GR.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/el-GR.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/en-US.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/en-US.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/en-US.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/es-ES.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/es-ES.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/es-ES.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/fr-FR.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/fr-FR.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/fr-FR.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/he-IL.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/he-IL.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/he-IL.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/it-IT.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/it-IT.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/it-IT.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/ja-JP.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/ja-JP.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/ja-JP.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/ko-KR.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/ko-KR.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/ko-KR.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/no-NO.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/no-NO.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/no-NO.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/pl-PL.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/pl-PL.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/pl-PL.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/pt-BR.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/pt-BR.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/pt-BR.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/ro-RO.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/ro-RO.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/ro-RO.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/ru-RU.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/ru-RU.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/ru-RU.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/sk-SK.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/sk-SK.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/sk-SK.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/sq-AL.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/sq-AL.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/sq-AL.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/sv-SE.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/sv-SE.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/sv-SE.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/tr-TR.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/tr-TR.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/tr-TR.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/uk-UA.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/uk-UA.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/uk-UA.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/zh-CN.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/zh-CN.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/zh-CN.rc [iso-8859-1]
Sat Oct 29 20:41:45 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:
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/zh-TW.rc
URL:
http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/base/a…
==============================================================================
---
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/zh-TW.rc [iso-8859-1]
(original)
+++
branches/ros-branch-0_4_3/reactos/base/applications/mscutils/eventvwr/lang/zh-TW.rc [iso-8859-1]
Sat Oct 29 20:41:45 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"