Author: hbelusca
Date: Sat Jun 25 20:08:58 2016
New Revision: 71670
URL:
http://svn.reactos.org/svn/reactos?rev=71670&view=rev
Log:
[EVENTVWR]
- Remove a unused header.
- Start (re)working on the functions that retrieve strings associated to event categories
and messages.
- Just display the event category number if we are unable to retrieve its associated
string.
- If we cannot retrieve the event source for formatting purposes, use a default string and
append the event strings to it.
- Fix some problems related to the usage of 'lpComputerName': this global variable
stores the computer name on which the Event Viewer is running (or connected to) and view
the available logs. Don't overwrite it with computer names from the events.
- Modify some localized strings in the resource files. Translators, please review/fix
translations!
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] Sat Jun 25
20:08:58 2016
@@ -25,7 +25,6 @@
#include <stdio.h>
#include <stdlib.h>
-#include <ctype.h>
#include <windef.h>
#include <winbase.h>
#include <winuser.h>
@@ -80,8 +79,8 @@
DWORD g_TotalRecords = 0;
OPENFILENAMEW sfn;
+LPWSTR lpComputerName = NULL;
LPWSTR lpSourceLogName = NULL;
-LPWSTR lpComputerName = NULL;
DWORD dwNumLogs = 0;
LPWSTR* LogNames = NULL;
@@ -211,7 +210,7 @@
GetEventMessageFileDLL(IN LPCWSTR lpLogName,
IN LPCWSTR SourceName,
IN LPCWSTR EntryName,
- OUT PWCHAR ExpandedName)
+ OUT PWCHAR ExpandedName) // TODO: Add IN DWORD BufLen
{
DWORD dwSize;
WCHAR szModuleName[MAX_PATH];
@@ -270,7 +269,7 @@
GetEventCategory(IN LPCWSTR KeyName,
IN LPCWSTR SourceName,
IN EVENTLOGRECORD *pevlr,
- OUT PWCHAR CategoryName)
+ OUT PWCHAR CategoryName) // TODO: Add IN DWORD BufLen
{
BOOL Success = FALSE;
HMODULE hLibrary = NULL;
@@ -300,24 +299,25 @@
/* Copy the category name */
StringCchCopyW(CategoryName, MAX_PATH, lpMsgBuf);
- }
- else
- {
- LoadStringW(hInst, IDS_NONE, CategoryName, MAX_PATH);
+
+ /* The ID was found and the message was formatted */
+ Success = TRUE;
}
/* Free the buffer allocated by FormatMessage */
if (lpMsgBuf)
LocalFree(lpMsgBuf);
- if (hLibrary != NULL)
- FreeLibrary(hLibrary);
-
- Success = TRUE;
+ FreeLibrary(hLibrary);
Quit:
if (!Success)
- LoadStringW(hInst, IDS_NONE, CategoryName, MAX_PATH);
+ {
+ if (pevlr->EventCategory != 0)
+ StringCchPrintfW(CategoryName, MAX_PATH, L"(%lu)",
pevlr->EventCategory);
+ else
+ LoadStringW(hInst, IDS_NONE, CategoryName, MAX_PATH);
+ }
return Success;
}
@@ -327,7 +327,7 @@
GetEventMessage(IN LPCWSTR KeyName,
IN LPCWSTR SourceName,
IN EVENTLOGRECORD *pevlr,
- OUT PWCHAR EventText)
+ OUT PWCHAR EventText) // TODO: Add IN DWORD BufLen
{
BOOL Success = FALSE;
DWORD i;
@@ -336,39 +336,36 @@
WCHAR ParameterModuleName[1000];
BOOL IsParamModNameCached = FALSE;
LPWSTR lpMsgBuf = NULL;
- WCHAR szStringIDNotFound[MAX_LOADSTRING];
LPWSTR szDll;
- LPWSTR szMessage;
+ LPWSTR szStringArray, szMessage;
LPWSTR *szArguments;
+ /* Get the event string array */
+ szStringArray = (LPWSTR)((LPBYTE)pevlr + pevlr->StringOffset);
+
/* NOTE: GetEventMessageFileDLL can return a comma-separated list of DLLs */
-
if (!GetEventMessageFileDLL(KeyName, SourceName, EVENT_MESSAGE_FILE,
SourceModuleName))
- {
- // goto Quit;
- return FALSE;
- }
-
- /* Get the event message */
- szMessage = (LPWSTR)((LPBYTE)pevlr + pevlr->StringOffset);
+ goto Quit;
/* Allocate space for parameters */
szArguments = HeapAlloc(GetProcessHeap(), 0, pevlr->NumStrings * sizeof(LPVOID));
if (!szArguments)
- {
- // goto Quit;
- return FALSE;
- }
-
+ goto Quit;
+
+ szMessage = szStringArray;
for (i = 0; i < pevlr->NumStrings; i++)
{
if (wcsstr(szMessage, L"%%"))
{
- if (!IsParamModNameCached && GetEventMessageFileDLL(KeyName,
SourceName, EVENT_PARAMETER_MESSAGE_FILE, ParameterModuleName))
+ if (!IsParamModNameCached)
{
/* Now that the parameter file list is loaded, no need to reload it at
the next run! */
- IsParamModNameCached = TRUE;
-
+ IsParamModNameCached = GetEventMessageFileDLL(KeyName, SourceName,
EVENT_PARAMETER_MESSAGE_FILE, ParameterModuleName);
+ // FIXME: If the string loading failed the first time, no need to retry
it just after???
+ }
+
+ if (IsParamModNameCached)
+ {
/* Not yet support for reading messages from parameter message DLL */
}
}
@@ -379,7 +376,7 @@
/* Loop through the list of event message DLLs */
szDll = wcstok(SourceModuleName, EVENT_DLL_SEPARATOR);
- while ((szDll != NULL) && (!Success))
+ while ((szDll != NULL) && !Success)
{
hLibrary = LoadLibraryExW(szDll, NULL,
LOAD_LIBRARY_AS_IMAGE_RESOURCE |
LOAD_LIBRARY_AS_DATAFILE);
@@ -405,14 +402,14 @@
}
else if (lpMsgBuf)
{
- /* The ID was found and the message was formated */
- Success = TRUE;
-
/* Trim the string */
TrimNulls((LPWSTR)lpMsgBuf);
/* Copy the event text */
StringCchCopyW(EventText, EVENT_MESSAGE_EVENTTEXT_BUFFER, lpMsgBuf);
+
+ /* The ID was found and the message was formatted */
+ Success = TRUE;
}
/* Free the buffer allocated by FormatMessage */
@@ -424,11 +421,22 @@
HeapFree(GetProcessHeap(), 0, szArguments);
-// Quit:
+Quit:
if (!Success)
{
- LoadStringW(hInst, IDS_EVENTSTRINGIDNOTFOUND, szStringIDNotFound,
ARRAYSIZE(szStringIDNotFound));
- StringCchPrintfW(EventText, EVENT_MESSAGE_EVENTTEXT_BUFFER, szStringIDNotFound,
(pevlr->EventID & 0xFFFF), SourceName);
+ /* Get a read-only pointer to the "event-not-found" string */
+ lpMsgBuf = HeapAlloc(GetProcessHeap(), 0, EVENT_MESSAGE_EVENTTEXT_BUFFER *
sizeof(WCHAR));
+ LoadStringW(hInst, IDS_EVENTSTRINGIDNOTFOUND, lpMsgBuf,
EVENT_MESSAGE_EVENTTEXT_BUFFER);
+ StringCchPrintfW(EventText, EVENT_MESSAGE_EVENTTEXT_BUFFER, lpMsgBuf,
(pevlr->EventID & 0xFFFF), SourceName);
+
+ /* Append the strings */
+ szMessage = szStringArray;
+ for (i = 0; i < pevlr->NumStrings; i++)
+ {
+ StringCchCatW(EventText, EVENT_MESSAGE_EVENTTEXT_BUFFER, szMessage);
+ StringCchCatW(EventText, EVENT_MESSAGE_EVENTTEXT_BUFFER, L"\n");
+ szMessage += wcslen(szMessage) + 1;
+ }
}
return Success;
@@ -437,7 +445,7 @@
VOID
GetEventType(IN WORD dwEventType,
- OUT PWCHAR eventTypeText)
+ OUT PWCHAR eventTypeText) // TODO: Add IN DWORD BufLen
{
switch (dwEventType)
{
@@ -561,9 +569,9 @@
HANDLE hEventLog;
EVENTLOGRECORD *pevlr;
DWORD dwRead, dwNeeded, dwThisRecord, dwTotalRecords = 0, dwCurrentRecord = 0,
dwRecordsToRead = 0, dwFlags, dwMaxLength;
- size_t cchRemaining;
- LPWSTR lpSourceName;
- LPWSTR lpComputerName;
+ SIZE_T cchRemaining;
+ LPWSTR lpszSourceName;
+ LPWSTR lpszComputerName;
BOOL bResult = TRUE; /* Read succeeded */
WCHAR szWindowTitle[MAX_PATH];
@@ -590,8 +598,9 @@
return FALSE;
}
+ /* Save the current computer name and log name globally */
+ lpComputerName = lpMachineName;
lpSourceLogName = lpLogName;
- lpComputerName = lpMachineName;
/* Disable list view redraw */
SendMessageW(hwndListView, WM_SETREDRAW, FALSE, 0);
@@ -663,10 +672,10 @@
LoadStringW(hInst, IDS_NONE, szCategory, ARRAYSIZE(szCategory));
/* Get the event source name */
- lpSourceName = (LPWSTR)((LPBYTE)pevlr + sizeof(EVENTLOGRECORD));
+ lpszSourceName = (LPWSTR)((LPBYTE)pevlr + sizeof(EVENTLOGRECORD));
/* Get the computer name */
- lpComputerName = (LPWSTR)((LPBYTE)pevlr + sizeof(EVENTLOGRECORD) +
(wcslen(lpSourceName) + 1) * sizeof(WCHAR));
+ lpszComputerName = (LPWSTR)((LPBYTE)pevlr + sizeof(EVENTLOGRECORD) +
(wcslen(lpszSourceName) + 1) * sizeof(WCHAR));
/* Compute the event type */
EventTimeToSystemTime(pevlr->TimeWritten, &time);
@@ -678,7 +687,7 @@
GetTimeFormatW(LOCALE_USER_DEFAULT, 0, &time, NULL, szLocalTime,
ARRAYSIZE(szLocalTime));
GetEventType(pevlr->EventType, szEventTypeText);
- GetEventCategory(lpLogName, lpSourceName, pevlr, szCategory);
+ GetEventCategory(lpLogName, lpszSourceName, pevlr, szCategory);
StringCbPrintfW(szEventID, sizeof(szEventID), L"%u",
(pevlr->EventID & 0xFFFF));
StringCbPrintfW(szCategoryID, sizeof(szCategoryID), L"%u",
pevlr->EventCategory);
@@ -720,11 +729,11 @@
ListView_SetItemText(hwndListView, lviEventItem.iItem, 1, szLocalDate);
ListView_SetItemText(hwndListView, lviEventItem.iItem, 2, szLocalTime);
- ListView_SetItemText(hwndListView, lviEventItem.iItem, 3, lpSourceName);
+ ListView_SetItemText(hwndListView, lviEventItem.iItem, 3, lpszSourceName);
ListView_SetItemText(hwndListView, lviEventItem.iItem, 4, szCategory);
ListView_SetItemText(hwndListView, lviEventItem.iItem, 5, szEventID);
ListView_SetItemText(hwndListView, lviEventItem.iItem, 6, szUsername);
- ListView_SetItemText(hwndListView, lviEventItem.iItem, 7, lpComputerName);
+ ListView_SetItemText(hwndListView, lviEventItem.iItem, 7, lpszComputerName);
dwRead -= pevlr->Length;
pevlr = (EVENTLOGRECORD *)((LPBYTE) pevlr + pevlr->Length);
@@ -744,12 +753,11 @@
&cchRemaining,
0,
szTitleTemplate, szTitle, lpLogName); /* i = number of characters
written */
- /* lpComputerName can be NULL here if no records was read */
dwMaxLength = (DWORD)cchRemaining;
- if (!lpComputerName)
+ if (!lpMachineName)
GetComputerNameW(lpTitleTemplateEnd, &dwMaxLength);
else
- StringCchCopyW(lpTitleTemplateEnd, dwMaxLength, lpComputerName);
+ StringCchCopyW(lpTitleTemplateEnd, dwMaxLength, lpMachineName);
StringCbPrintfW(szStatusText, sizeof(szStatusText), szStatusBarTemplate, lpLogName,
dwTotalRecords);
@@ -862,8 +870,7 @@
VOID
Refresh(VOID)
{
- QueryEventMessages(lpComputerName,
- lpSourceLogName);
+ QueryEventMessages(lpComputerName, lpSourceLogName);
}
@@ -1087,7 +1094,7 @@
VOID
-FreeLogList(void)
+FreeLogList(VOID)
{
DWORD dwIndex;
@@ -1111,6 +1118,9 @@
HeapFree(GetProcessHeap(), 0, LogNames);
LogNames = NULL;
dwNumLogs = 0;
+
+ lpComputerName = NULL;
+ lpSourceLogName = NULL;
return;
}
@@ -1265,6 +1275,10 @@
ShowWindow(hwndMainWindow, nCmdShow);
UpdateWindow(hwndMainWindow);
+ /* Retrieve the available event logs on this computer */
+ // TODO: Implement connection to remote computer (lpComputerName)
+ // At the moment we only support the user local computer.
+ lpComputerName = NULL;
BuildLogList();
QueryEventMessages(lpComputerName, LogNames[0]);
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] Sat Jun
25 20:08:58 2016
@@ -92,7 +92,7 @@
IDS_APP_TITLE "ÐÑеглед на ÑÑбиÑиÑ"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "Ðе е намеÑено опиÑаниеÑо на
ÑÑбиÑие ( %lu ) в изÑоÑник ( %s ). ÐÑзможно е меÑÑиÑÑ
компÑÑÑÑ Ð´Ð° нÑма нÑжниÑе ÑÐ²ÐµÐ´ÐµÐ½Ð¸Ñ Ð² ÑегиÑÑÑÑа
или DLL ÑайловеÑ, нÑжни за показване на ÑÑобÑениÑ
Ð¾Ñ Ð¾ÑдалеÑен компÑÑÑÑ."
+ IDS_EVENTSTRINGIDNOTFOUND "Ðе е намеÑено опиÑаниеÑо на
ÑÑбиÑие ( %lu ) в изÑоÑник ( %s ). ÐÑзможно е меÑÑиÑÑ
компÑÑÑÑ Ð´Ð° нÑма нÑжниÑе ÑÐ²ÐµÐ´ÐµÐ½Ð¸Ñ Ð² ÑегиÑÑÑÑа
или DLL ÑайловеÑ, нÑжни за показване на ÑÑобÑениÑ
Ð¾Ñ Ð¾ÑдалеÑен компÑÑÑÑ.\n\nThe following information is part of the
event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "Error"
IDS_EVENTLOG_WARNING_TYPE "Warning"
IDS_EVENTLOG_INFORMATION_TYPE "Information"
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] Sat Jun
25 20:08:58 2016
@@ -92,7 +92,7 @@
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_EVENTSTRINGIDNOTFOUND "Popis ID události ( %lu ) zdroj ( %s ) nebyl
nalezen. MÃstnà poÄÃtaÄ neobsahuje potÅebné informace v registru nebo chybà DLL
soubory pro zobrazenà zpráv ze vzdáleného poÄÃtaÄe."
+ IDS_EVENTSTRINGIDNOTFOUND "Popis ID události ( %lu ) zdroj ( %s ) nebyl
nalezen. MÃstnà poÄÃtaÄ neobsahuje potÅebné informace v registru nebo chybà DLL
soubory pro zobrazenà zpráv ze vzdáleného poÄÃtaÄe.\n\nThe following information is
part of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "Chyba"
IDS_EVENTLOG_WARNING_TYPE "UpozornÄnÃ"
IDS_EVENTLOG_INFORMATION_TYPE "Informace"
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] Sat Jun
25 20:08:58 2016
@@ -94,7 +94,7 @@
IDS_APP_TITLE "Ereignisanzeige"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "Die Bezeichnung für die Ereignis-ID ( %lu ) in der
Quelle ( %s ) kann nicht gefunden werden. Es könnte sein, dass der Lokale Computer die
notwendigen Registry Einträge oder Nachrichten DLLs, um Nachrichten von Remoten Computern
anzuzeigen, nicht besitzt."
+ IDS_EVENTSTRINGIDNOTFOUND "Die Bezeichnung für die Ereignis-ID ( %lu ) in der
Quelle ( %s ) kann nicht gefunden werden. Es könnte sein, dass der Lokale Computer die
notwendigen Registry Einträge oder Nachrichten DLLs, um Nachrichten von Remoten Computern
anzuzeigen, nicht besitzt.\n\nThe following information is part of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "Fehler"
IDS_EVENTLOG_WARNING_TYPE "Warnung"
IDS_EVENTLOG_INFORMATION_TYPE "Informationen"
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] Sat Jun
25 20:08:58 2016
@@ -94,7 +94,7 @@
IDS_APP_TITLE "Event Viewer"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "The description for Event ID ( %lu ) in Source ( %s )
cannot be found. The local computer may not have the necessary registry information or
message DLL files to display messages from a remote computer."
+ IDS_EVENTSTRINGIDNOTFOUND "The description for Event ID ( %lu ) in Source ( %s )
cannot be found. The local computer may not have the necessary registry information or
message DLL files to display messages from a remote computer.\n\nThe following information
is part of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "ÎÏάλμα"
IDS_EVENTLOG_WARNING_TYPE "Î ÏοειδοÏοίηÏη"
IDS_EVENTLOG_INFORMATION_TYPE "ΠληÏοÏοÏία"
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] Sat Jun
25 20:08:58 2016
@@ -100,7 +100,7 @@
IDS_APP_TITLE "Event Viewer"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "The description for Event ID ( %lu ) in Source ( %s )
cannot be found. The local computer may not have the necessary registry information or
message DLL files to display messages from a remote computer."
+ IDS_EVENTSTRINGIDNOTFOUND "The description for Event ID ( %lu ) in Source ( %s )
cannot be found. The local computer may not have the necessary registry information or
message DLL files to display messages from a remote computer.\n\nThe following information
is part of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "Error"
IDS_EVENTLOG_WARNING_TYPE "Warning"
IDS_EVENTLOG_INFORMATION_TYPE "Information"
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] Sat Jun
25 20:08:58 2016
@@ -94,7 +94,7 @@
IDS_APP_TITLE "Visor de eventos"
IDS_APP_TITLE_EX "%s - Registro de %s en \\\\"
IDS_STATUS_MSG "%s tiene %lu evento(s)"
- IDS_EVENTSTRINGIDNOTFOUND "No se pudo recuperar la descripción para el evento
con ID (%lu) y origen (%s). El equipo local puede no tener la información necesaria en el
registro o las DLLs necesarias para mostrar los mensajes de un equipo remoto."
+ IDS_EVENTSTRINGIDNOTFOUND "No se pudo recuperar la descripción para el evento
con ID (%lu) y origen (%s). El equipo local puede no tener la información necesaria en el
registro o las DLLs necesarias para mostrar los mensajes de un equipo remoto.\n\nThe
following information is part of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "Error"
IDS_EVENTLOG_WARNING_TYPE "Advertencia"
IDS_EVENTLOG_INFORMATION_TYPE "Información"
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] Sat Jun
25 20:08:58 2016
@@ -92,9 +92,9 @@
STRINGTABLE
BEGIN
IDS_APP_TITLE "Visionneuse d'événements"
- IDS_APP_TITLE_EX "%s - %s Log on \\\\"
- IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "La description pour l'événement d'ID ( %lu
) dans la source ( %s ) ne peut être trouvée. L'ordinateur local pourrait ne pas
avoir les informations registres nécessaires ou les fichiers DLL de message pour afficher
les messages depuis un ordinateur distant."
+ IDS_APP_TITLE_EX "%s - Journal %s sur \\\\"
+ IDS_STATUS_MSG "%s contient %lu événement(s)"
+ IDS_EVENTSTRINGIDNOTFOUND "La description pour l'événement d'ID ( %lu
) dans la source ( %s ) ne peut être trouvée. L'ordinateur local pourrait ne pas
avoir les informations registres nécessaires ou les fichiers DLL de message pour afficher
les messages depuis un ordinateur distant.\n\nLes informations suivantes font partie de
l'événement :\n\n"
IDS_EVENTLOG_ERROR_TYPE "Erreur"
IDS_EVENTLOG_WARNING_TYPE "Avertissement"
IDS_EVENTLOG_INFORMATION_TYPE "Informations"
@@ -102,8 +102,8 @@
IDS_EVENTLOG_AUDIT_FAILURE "Ãchec de l'audit"
IDS_EVENTLOG_SUCCESS "Succès"
IDS_EVENTLOG_UNKNOWN_TYPE "Ãvénement Inconnu"
- IDS_CLEAREVENTS_MSG "Do you want to save this event log before clearing
it?"
- IDS_SAVE_FILTER "Event Log (*.evt)\0*.evt\0"
+ IDS_CLEAREVENTS_MSG "Voulez-vous enregistrer ce journal d'événements avant
de l'effacer ?"
+ IDS_SAVE_FILTER "Journal d'événements (*.evt)\0*.evt\0"
END
STRINGTABLE
@@ -133,6 +133,6 @@
STRINGTABLE
BEGIN
- IDS_NONE "None"
+ IDS_NONE "Aucun"
IDS_NOT_AVAILABLE "N/A"
END
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] Sat Jun
25 20:08:58 2016
@@ -94,7 +94,7 @@
IDS_APP_TITLE "×××× ×××ר××¢××"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "The description for Event ID ( %lu ) in Source ( %s )
cannot be found. The local computer may not have the necessary registry information or
message DLL files to display messages from a remote computer."
+ IDS_EVENTSTRINGIDNOTFOUND "The description for Event ID ( %lu ) in Source ( %s )
cannot be found. The local computer may not have the necessary registry information or
message DLL files to display messages from a remote computer.\n\nThe following information
is part of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "ש××××"
IDS_EVENTLOG_WARNING_TYPE "×××ר×"
IDS_EVENTLOG_INFORMATION_TYPE "××××¢"
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] Sat Jun
25 20:08:58 2016
@@ -94,7 +94,7 @@
IDS_APP_TITLE "Visualizzatore eventi"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "La descrizione per l'ID evento ( %lu )
proveniente da ( %s ) non può essere trovata. Il computer locale potrebbe non avere le
informazioni sul registry necessarie o i file DLL con i messaggi necessari per la
visualizzazione da un computer remoto."
+ IDS_EVENTSTRINGIDNOTFOUND "La descrizione per l'ID evento ( %lu )
proveniente da ( %s ) non può essere trovata. Il computer locale potrebbe non avere le
informazioni sul registry necessarie o i file DLL con i messaggi necessari per la
visualizzazione da un computer remoto.\n\nThe following information is part of the
event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "Errore"
IDS_EVENTLOG_WARNING_TYPE "Avviso"
IDS_EVENTLOG_INFORMATION_TYPE "Informazione"
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] Sat Jun
25 20:08:58 2016
@@ -94,7 +94,7 @@
IDS_APP_TITLE "ã¤ãã³ã ãã¥ã¼ã¢"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "ã¤ãã³ã ID (%lu) (ã½ã¼ã¹ %s å
) ã«é¢ãã説æãè¦ã¤ããã¾ããã§ããã ãªã¢ã¼ã
ã³ã³ãã¥ã¼ã¿ããã¡ãã»ã¼ã¸ã表示ããããã«å¿
è¦ãªã¬ã¸ã¹ããªæ
å ±ã¾ãã¯ã¡ãã»ã¼ã¸ DLL ãã¡ã¤ã«ããã¼ã«ã«
ã³ã³ãã¥ã¼ã¿ã«ãªãå¯è½æ§ãããã¾ãã"
+ IDS_EVENTSTRINGIDNOTFOUND "ã¤ãã³ã ID (%lu) (ã½ã¼ã¹ %s å
) ã«é¢ãã説æãè¦ã¤ããã¾ããã§ããã ãªã¢ã¼ã
ã³ã³ãã¥ã¼ã¿ããã¡ãã»ã¼ã¸ã表示ããããã«å¿
è¦ãªã¬ã¸ã¹ããªæ
å ±ã¾ãã¯ã¡ãã»ã¼ã¸ DLL ãã¡ã¤ã«ããã¼ã«ã«
ã³ã³ãã¥ã¼ã¿ã«ãªãå¯è½æ§ãããã¾ãã\n\nThe following information is
part of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "ã¨ã©ã¼"
IDS_EVENTLOG_WARNING_TYPE "è¦å"
IDS_EVENTLOG_INFORMATION_TYPE "æ
å ±"
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] Sat Jun
25 20:08:58 2016
@@ -94,7 +94,7 @@
IDS_APP_TITLE "ì´ë²¤í¸ ë·°ì´"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "( %s ) ì ì´ë²¤í¸ID ( %lu ) ì ëí ì¤ëª
ì ì°¾ì ì ììµëë¤. ë¡ì»¬ ì»´í¨í°ê° ì격 ì»´í¨í°ì ë©ì¸ì§ë¥¼
íìíëë° íìí ë ì§ì¤í¸ë¦¬ë DLL íì¼ì ê°ì§ì§ ìê³ ììì
ììµëë¤."
+ IDS_EVENTSTRINGIDNOTFOUND "( %s ) ì ì´ë²¤í¸ID ( %lu ) ì ëí ì¤ëª
ì ì°¾ì ì ììµëë¤. ë¡ì»¬ ì»´í¨í°ê° ì격 ì»´í¨í°ì ë©ì¸ì§ë¥¼
íìíëë° íìí ë ì§ì¤í¸ë¦¬ë DLL íì¼ì ê°ì§ì§ ìê³ ììì
ììµëë¤.\n\nThe following information is part of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "ìë¬"
IDS_EVENTLOG_WARNING_TYPE "ê²½ê³ "
IDS_EVENTLOG_INFORMATION_TYPE "ì ë³´"
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] Sat Jun
25 20:08:58 2016
@@ -92,7 +92,7 @@
IDS_APP_TITLE "Hendelseliste"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "Beskrivelsen for Hendelse ID ( %lu ) i kilden ( %s )
kan ikke bli finnet. Lokale datamaskinen har ikke nødvendige register informasjon eller
melding DLL filer for å vise melding fra en fjern datamaskin."
+ IDS_EVENTSTRINGIDNOTFOUND "Beskrivelsen for Hendelse ID ( %lu ) i kilden ( %s )
kan ikke bli finnet. Lokale datamaskinen har ikke nødvendige register informasjon eller
melding DLL filer for å vise melding fra en fjern datamaskin.\n\nThe following
information is part of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "Feil"
IDS_EVENTLOG_WARNING_TYPE "Advarseler"
IDS_EVENTLOG_INFORMATION_TYPE "Informasjon"
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] Sat Jun
25 20:08:58 2016
@@ -96,7 +96,7 @@
IDS_APP_TITLE "PodglÄ
d zdarzeÅ"
IDS_APP_TITLE_EX "%s - %s Log na \\\\"
IDS_STATUS_MSG "%s posiada %lu zdarzeÅ"
- IDS_EVENTSTRINGIDNOTFOUND "Opis zdarzenia dla danego numeru ID: ( %lu ) nie
zostaÅ odnaleziony w źródle: ( %s ). Ten komputer może nie miec wystarczajÄ
cych informacji w rejestrze, albo bibliotek DLL, aby wyÅwietliÄ wiadomoÅci z komputera
zdalnego."
+ IDS_EVENTSTRINGIDNOTFOUND "Opis zdarzenia dla danego numeru ID ( %lu ) nie
zostaÅ odnaleziony w źródle ( %s ). Ten komputer może nie miec wystarczajÄ
cych informacji w rejestrze, albo bibliotek DLL, aby wyÅwietliÄ wiadomoÅci z komputera
zdalnego.\n\nThe following information is part of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "BÅÄ
d"
IDS_EVENTLOG_WARNING_TYPE "Ostrzeżenie"
IDS_EVENTLOG_INFORMATION_TYPE "Informacja"
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] Sat Jun
25 20:08:58 2016
@@ -94,7 +94,7 @@
IDS_APP_TITLE "Visualizador de Eventos"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "A descrição para Event ID ( %lu ) em Fonte ( %s )
não foi encontrado. O computador local talvez não possua a informação de registro
necessária ou mensagem de arquivos DLL para exibir mensagens de um computador
remoto."
+ IDS_EVENTSTRINGIDNOTFOUND "A descrição para Event ID ( %lu ) em Fonte ( %s )
não foi encontrado. O computador local talvez não possua a informação de registro
necessária ou mensagem de arquivos DLL para exibir mensagens de um computador
remoto.\n\nThe following information is part of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "Erro"
IDS_EVENTLOG_WARNING_TYPE "Aviso"
IDS_EVENTLOG_INFORMATION_TYPE "Informação"
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] Sat Jun
25 20:08:58 2016
@@ -97,7 +97,7 @@
IDS_APP_TITLE "Observator de evenimente"
IDS_APP_TITLE_EX "%s - %s autentificat pe \\\\"
IDS_STATUS_MSG "%s are %lu eveniment(e)"
- IDS_EVENTSTRINGIDNOTFOUND "Nu se poate gÄsi descrierea evenimentului cu ID-ul (
%lu ) în sursa ( %s ). Este posibil ca în calculatorul local sÄ nu existe informaÈiile
de registru necesare sau fiÈierele dll de mesaje sÄ afiÈeze mesaje de la un calculator
din reÈea."
+ IDS_EVENTSTRINGIDNOTFOUND "Nu se poate gÄsi descrierea evenimentului cu ID-ul (
%lu ) în sursa ( %s ). Este posibil ca în calculatorul local sÄ nu existe informaÈiile
de registru necesare sau fiÈierele dll de mesaje sÄ afiÈeze mesaje de la un calculator
din reÈea.\n\nThe following information is part of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "Eroare"
IDS_EVENTLOG_WARNING_TYPE "Avertisment"
IDS_EVENTLOG_INFORMATION_TYPE "InformaÈie"
@@ -136,6 +136,6 @@
STRINGTABLE
BEGIN
- IDS_NONE "nespecificatÄ"
- IDS_NOT_AVAILABLE "nespecificat"
+ IDS_NONE "NespecificatÄ"
+ IDS_NOT_AVAILABLE "Nespecificat"
END
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] Sat Jun
25 20:08:58 2016
@@ -94,7 +94,7 @@
IDS_APP_TITLE "ÐÑоÑмоÑÑ ÑобÑÑий"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "Ðе найдено опиÑание длÑ
ÑобÑÑÐ¸Ñ Ñ ÐºÐ¾Ð´Ð¾Ð¼ ( %lu ) в иÑÑоÑнике ( %s ). Ðозможно, на
локалÑном компÑÑÑеÑе Ð½ÐµÑ Ð½ÑжнÑÑ
даннÑÑ
в ÑееÑÑÑе или Ñайлов DLL ÑообÑений длÑ
оÑобÑÐ°Ð¶ÐµÐ½Ð¸Ñ ÑообÑений Ñдаленного
компÑÑÑеÑа."
+ IDS_EVENTSTRINGIDNOTFOUND "Ðе найдено опиÑание длÑ
ÑобÑÑÐ¸Ñ Ñ ÐºÐ¾Ð´Ð¾Ð¼ ( %lu ) в иÑÑоÑнике ( %s ). Ðозможно, на
локалÑном компÑÑÑеÑе Ð½ÐµÑ Ð½ÑжнÑÑ
даннÑÑ
в ÑееÑÑÑе или Ñайлов DLL ÑообÑений длÑ
оÑобÑÐ°Ð¶ÐµÐ½Ð¸Ñ ÑообÑений Ñдаленного
компÑÑÑеÑа.\n\nThe following information is part of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "ÐÑибка"
IDS_EVENTLOG_WARNING_TYPE "ÐÑедÑпÑеждение"
IDS_EVENTLOG_INFORMATION_TYPE "Уведомление"
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] Sat Jun
25 20:08:58 2016
@@ -97,7 +97,7 @@
IDS_APP_TITLE "ZobrazovaÄ udalostÃ"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "Popis pre udalosť ID ( %lu ) zo zdroja ( %s ) nebol
nájdený. The local computer may not have the necessary registry information or message
DLL files to display messages from a remote computer."
+ IDS_EVENTSTRINGIDNOTFOUND "Popis pre udalosť ID ( %lu ) zo zdroja ( %s ) nebol
nájdený. The local computer may not have the necessary registry information or message
DLL files to display messages from a remote computer.\n\nThe following information is part
of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "Chyba"
IDS_EVENTLOG_WARNING_TYPE "Upozornenie"
IDS_EVENTLOG_INFORMATION_TYPE "Informácia"
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] Sat Jun
25 20:08:58 2016
@@ -100,7 +100,7 @@
IDS_APP_TITLE "Shikues ngjarjesh"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "Përshkrimi për ngjarjet ID ( %lu ) në burim ( %s )
nuk gjindet. Kompjuter vendas mund të mos ketë informacionin e regjistrit te nevojshem
ose mesazhin për dokumentat DLL për të shfaqur nga një kompjuter në distancë."
+ IDS_EVENTSTRINGIDNOTFOUND "Përshkrimi për ngjarjet ID ( %lu ) në burim ( %s )
nuk gjindet. Kompjuter vendas mund të mos ketë informacionin e regjistrit te nevojshem
ose mesazhin për dokumentat DLL për të shfaqur nga një kompjuter në distancë.\n\nThe
following information is part of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "Error"
IDS_EVENTLOG_WARNING_TYPE "Paralajmërim"
IDS_EVENTLOG_INFORMATION_TYPE "Informacion"
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] Sat Jun
25 20:08:58 2016
@@ -94,7 +94,7 @@
IDS_APP_TITLE "Händelselogg"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "Beskrivning av Händelse ID ( %lu ) i källan ( %s )
kan inte hittas. Lokal dator har inte nödvendig registerinformation eller meddelander DLL
filer for å vise meddelander från en fjärr dator."
+ IDS_EVENTSTRINGIDNOTFOUND "Beskrivning av Händelse ID ( %lu ) i källan ( %s )
kan inte hittas. Lokal dator har inte nödvendig registerinformation eller meddelander DLL
filer for å vise meddelander från en fjärr dator.\n\nThe following information is part
of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "Fel"
IDS_EVENTLOG_WARNING_TYPE "Varning"
IDS_EVENTLOG_INFORMATION_TYPE "Information"
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] Sat Jun
25 20:08:58 2016
@@ -100,7 +100,7 @@
IDS_APP_TITLE "Olay Görüntüleyicisi"
IDS_APP_TITLE_EX "%s - %s Oturum Aç \\\\"
IDS_STATUS_MSG "%s -> %lu olay var."
- IDS_EVENTSTRINGIDNOTFOUND "%s kaynaÄındaki %lu olay kimliÄi için açıklama
bulunamıyor. Yerli bilgisayarda, uzak bilgisayardan iletileri görüntülemesi için
gerekli DeÄer Defteri bilgisi veyâ ileti DLL kütükleri olmayabilir."
+ IDS_EVENTSTRINGIDNOTFOUND "( %s ) kaynaÄındaki ( %lu ) olay kimliÄi için
açıklama bulunamıyor. Yerli bilgisayarda, uzak bilgisayardan iletileri görüntülemesi
için gerekli DeÄer Defteri bilgisi veyâ ileti DLL kütükleri olmayabilir.\n\nThe
following information is part of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "YanlıÅlık"
IDS_EVENTLOG_WARNING_TYPE "Uyarı"
IDS_EVENTLOG_INFORMATION_TYPE "Bilgi"
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] Sat Jun
25 20:08:58 2016
@@ -94,7 +94,7 @@
IDS_APP_TITLE "ÐглÑÐ´Ð°Ñ Ð¿Ð¾Ð´Ñй"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "ÐÐ¿Ð¸Ñ Ð´Ð»Ñ ÐденÑиÑÑкаÑоÑа
подÑÑ( %lu ) за джеÑелом( %s ) не знайдено. ÐокалÑний
комп'ÑÑÐµÑ Ð¼Ð¾Ð¶Ðµ не маÑи необÑ
ÑÐ´Ð½Ð¾Ñ ÑнÑоÑмаÑÑÑ Ð² ÑеÑÑÑÑÑ Ñи DLL ÑайлÑв
повÑÐ´Ð¾Ð¼Ð»ÐµÐ½Ñ Ð´Ð»Ñ Ð²ÑдобÑÐ°Ð¶ÐµÐ½Ð½Ñ Ð¿Ð¾Ð²ÑдомленÑ, Ñо
надÑ
одÑÑÑ Ð²Ñд вÑддаленого комп'ÑÑеÑа."
+ IDS_EVENTSTRINGIDNOTFOUND "ÐÐ¿Ð¸Ñ Ð´Ð»Ñ ÐденÑиÑÑкаÑоÑа
подÑÑ( %lu ) за джеÑелом ( %s ) не знайдено. ÐокалÑний
комп'ÑÑÐµÑ Ð¼Ð¾Ð¶Ðµ не маÑи необÑ
ÑÐ´Ð½Ð¾Ñ ÑнÑоÑмаÑÑÑ Ð² ÑеÑÑÑÑÑ Ñи DLL ÑайлÑв
повÑÐ´Ð¾Ð¼Ð»ÐµÐ½Ñ Ð´Ð»Ñ Ð²ÑдобÑÐ°Ð¶ÐµÐ½Ð½Ñ Ð¿Ð¾Ð²ÑдомленÑ, Ñо
надÑ
одÑÑÑ Ð²Ñд вÑддаленого комп'ÑÑеÑа.\n\nThe following
information is part of the event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "Ðомилка"
IDS_EVENTLOG_WARNING_TYPE "ÐопеÑедженнÑ"
IDS_EVENTLOG_INFORMATION_TYPE "ÐовÑдомленнÑ"
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] Sat Jun
25 20:08:58 2016
@@ -94,7 +94,7 @@
IDS_APP_TITLE "äºä»¶æ¥çå¨"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "æ¥æº ( %s ) ä¸çäºä»¶ ID ( %lu )
çæè¿°æ æ³æ¾å°ãæ¬å°è®¡ç®æºå¯è½æ²¡ææ¾ç¤ºæ¥èªè¿ç¨è®¡ç®æºæ¶æ¯æå¿
éç注å表信æ¯ææ¶æ¯ DLL æ件ã"
+ IDS_EVENTSTRINGIDNOTFOUND "æ¥æº ( %s ) ä¸çäºä»¶ ID ( %lu )
çæè¿°æ æ³æ¾å°ãæ¬å°è®¡ç®æºå¯è½æ²¡ææ¾ç¤ºæ¥èªè¿ç¨è®¡ç®æºæ¶æ¯æå¿
éç注å表信æ¯ææ¶æ¯ DLL æ件ã\n\nThe following information is part of the
event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "é误"
IDS_EVENTLOG_WARNING_TYPE "è¦å"
IDS_EVENTLOG_INFORMATION_TYPE "ä¿¡æ¯"
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] Sat Jun
25 20:08:58 2016
@@ -94,7 +94,7 @@
IDS_APP_TITLE "äºä»¶æª¢è¦å¨"
IDS_APP_TITLE_EX "%s - %s Log on \\\\"
IDS_STATUS_MSG "%s has %lu event(s)"
- IDS_EVENTSTRINGIDNOTFOUND "ä¾æº ( %s ) ä¸çäºä»¶ ID ( %lu )
çæè¿°ç¡æ³æ¾å°ã æ¬å°é»è
¦å¯è½æ²æ顯示ä¾èªé 端é»è
¦æ¶æ¯æå¿
éç註å表è³è¨ææ¶æ¯ DLL æªã"
+ IDS_EVENTSTRINGIDNOTFOUND "ä¾æº ( %s ) ä¸çäºä»¶ ID ( %lu )
çæè¿°ç¡æ³æ¾å°ã æ¬å°é»è
¦å¯è½æ²æ顯示ä¾èªé 端é»è
¦æ¶æ¯æå¿
éç註å表è³è¨ææ¶æ¯ DLL æªã\n\nThe following information is part of the
event:\n\n"
IDS_EVENTLOG_ERROR_TYPE "é¯èª¤"
IDS_EVENTLOG_WARNING_TYPE "è¦å"
IDS_EVENTLOG_INFORMATION_TYPE "è³è¨"