Author: dgorbachev
Date: Wed Dec 9 22:51:19 2009
New Revision: 44496
URL: http://svn.reactos.org/svn/reactos?rev=44496&view=rev
Log:
Update log2lines to the latest version. Jan Roeloffzen, bug #4342.
Modified:
trunk/reactos/tools/rsym/log2lines.c
Modified: trunk/reactos/tools/rsym/log2lines.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/rsym/log2lines.c?rev…
==============================================================================
--- trunk/reactos/tools/rsym/log2lines.c [iso-8859-1] (original)
+++ trunk/reactos/tools/rsym/log2lines.c [iso-8859-1] Wed Dec 9 22:51:19 2009
@@ -10,8 +10,10 @@
#include "rsym.h"
-#define LOG2LINES_VERSION "1.7"
-
+#define LOG2LINES_VERSION "1.8"
+
+/* Assume if an offset > ABS_TRESHOLD, then it must be absolute */
+#define ABS_TRESHOLD 0x00400000L
#define INVALID_BASE 0xFFFFFFFFL
#define DEF_OPT_DIR "output-i386"
@@ -366,7 +368,7 @@
static size_t
fixup_offset(size_t ImageBase, size_t offset)
{
- if (offset >= ImageBase)
+ if (offset > ABS_TRESHOLD)
offset -= ImageBase;
return offset;
}
@@ -953,11 +955,6 @@
int res = 0;
char *path, *dpath;
- /* First get the ImageBase of the File. If its smaller than the given
- * Parameter, everything is ok, because it was already added onto the
- * adress and can be given directly to process_file. If not, add it and
- * give the result to process_file.
- */
dpath = path = convert_path(cpath);
if (!path)
return 1;
@@ -985,7 +982,6 @@
if (!res)
{
- offset = (base < offset) ? offset : base + offset;
res = process_file(path, offset, toString);
}
Author: dreimer
Date: Wed Dec 9 22:30:05 2009
New Revision: 44494
URL: http://svn.reactos.org/svn/reactos?rev=44494&view=rev
Log:
Make the text box a bit bigger for languages which are less short than English :-P
Add a German Translation by me and a Polish one by niski.
Modified:
trunk/reactos/dll/cpl/sysdm/lang/bg-BG.rc
trunk/reactos/dll/cpl/sysdm/lang/cs-CZ.rc
trunk/reactos/dll/cpl/sysdm/lang/de-DE.rc
trunk/reactos/dll/cpl/sysdm/lang/el-GR.rc
trunk/reactos/dll/cpl/sysdm/lang/en-US.rc
trunk/reactos/dll/cpl/sysdm/lang/es-ES.rc
trunk/reactos/dll/cpl/sysdm/lang/fr-FR.rc
trunk/reactos/dll/cpl/sysdm/lang/id-ID.rc
trunk/reactos/dll/cpl/sysdm/lang/it-IT.rc
trunk/reactos/dll/cpl/sysdm/lang/ja-JP.rc
trunk/reactos/dll/cpl/sysdm/lang/no-NO.rc
trunk/reactos/dll/cpl/sysdm/lang/pl-PL.rc
trunk/reactos/dll/cpl/sysdm/lang/ro-RO.rc
trunk/reactos/dll/cpl/sysdm/lang/ru-RU.rc
trunk/reactos/dll/cpl/sysdm/lang/sk-SK.rc
trunk/reactos/dll/cpl/sysdm/lang/sv-SE.rc
trunk/reactos/dll/cpl/sysdm/lang/uk-UA.rc
trunk/reactos/dll/cpl/sysdm/lang/zh-CN.rc
Modified: trunk/reactos/dll/cpl/sysdm/lang/bg-BG.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/bg-BG.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/bg-BG.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/bg-BG.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -72,10 +72,10 @@
CAPTION "System Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Version Info",IDC_STATIC,6,3,210,73
+ CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,88,10
+ LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
Modified: trunk/reactos/dll/cpl/sysdm/lang/cs-CZ.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/cs-CZ.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/cs-CZ.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/cs-CZ.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -53,10 +53,10 @@
CAPTION "System Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Version Info",IDC_STATIC,6,3,210,73
+ CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,88,10
+ LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
Modified: trunk/reactos/dll/cpl/sysdm/lang/de-DE.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/de-DE.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/de-DE.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/de-DE.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -53,13 +53,13 @@
IDD_SYSSETTINGS DIALOGEX 0, 0, 221, 106
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION
-CAPTION "System Settings"
+CAPTION "System Einstellungen"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Versions Info",IDC_STATIC,6,3,210,73
+ CONTROL "Als Workstation identifizieren",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,110,10
+ LTEXT "ReactOS ist als Server OS konzipiert und identifiziert sich auch als solches. Diese Einstellung ändert das Verhalten für Anwendungen.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
Modified: trunk/reactos/dll/cpl/sysdm/lang/el-GR.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/el-GR.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/el-GR.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/el-GR.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -48,10 +48,10 @@
CAPTION "System Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Version Info",IDC_STATIC,6,3,210,73
+ CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,88,10
+ LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
IDD_PROPPAGEADVANCED DIALOGEX 0, 0, 256, 218
Modified: trunk/reactos/dll/cpl/sysdm/lang/en-US.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/en-US.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/en-US.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/en-US.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -72,10 +72,10 @@
CAPTION "System Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Version Info",IDC_STATIC,6,3,210,73
+ CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,88,10
+ LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
Modified: trunk/reactos/dll/cpl/sysdm/lang/es-ES.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/es-ES.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/es-ES.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/es-ES.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -53,10 +53,10 @@
CAPTION "System Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Version Info",IDC_STATIC,6,3,210,73
+ CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,88,10
+ LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
IDD_PROPPAGEADVANCED DIALOGEX 0, 0, 256, 218
Modified: trunk/reactos/dll/cpl/sysdm/lang/fr-FR.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/fr-FR.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/fr-FR.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/fr-FR.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -51,10 +51,10 @@
CAPTION "System Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Version Info",IDC_STATIC,6,3,210,73
+ CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,88,10
+ LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
IDD_PROPPAGEADVANCED DIALOGEX 0, 0, 256, 218
Modified: trunk/reactos/dll/cpl/sysdm/lang/id-ID.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/id-ID.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/id-ID.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/id-ID.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -48,10 +48,10 @@
CAPTION "System Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Version Info",IDC_STATIC,6,3,210,73
+ CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,88,10
+ LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
IDD_PROPPAGEADVANCED DIALOGEX 0, 0, 256, 218
Modified: trunk/reactos/dll/cpl/sysdm/lang/it-IT.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/it-IT.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/it-IT.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/it-IT.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -48,10 +48,10 @@
CAPTION "System Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Version Info",IDC_STATIC,6,3,210,73
+ CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,88,10
+ LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
IDD_PROPPAGEADVANCED DIALOGEX 0, 0, 256, 218
Modified: trunk/reactos/dll/cpl/sysdm/lang/ja-JP.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/ja-JP.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/ja-JP.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/ja-JP.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -48,10 +48,10 @@
CAPTION "System Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Version Info",IDC_STATIC,6,3,210,73
+ CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,88,10
+ LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
IDD_PROPPAGEADVANCED DIALOGEX 0, 0, 256, 218
Modified: trunk/reactos/dll/cpl/sysdm/lang/no-NO.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/no-NO.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/no-NO.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/no-NO.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -49,10 +49,10 @@
CAPTION "System Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Version Info",IDC_STATIC,6,3,210,73
+ CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,88,10
+ LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
IDD_PROPPAGEADVANCED DIALOGEX 0, 0, 256, 218
Modified: trunk/reactos/dll/cpl/sysdm/lang/pl-PL.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/pl-PL.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/pl-PL.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/pl-PL.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -69,6 +69,17 @@
PUSHBUTTON "Z&mienne rodowiskowe", IDC_ENVVAR, 84, 192, 80, 14
PUSHBUTTON "&Raportowanie b³êdów", IDC_ERRORREPORT, 170, 192, 80, 14
+END
+
+IDD_SYSSETTINGS DIALOGEX 0, 0, 221, 106
+STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION
+CAPTION "Ustawienia systemowe"
+FONT 8, "MS Shell Dlg", 0, 0, 0x1
+BEGIN
+ GROUPBOX "Informowanie o wersji",IDC_STATIC,6,3,210,73
+ CONTROL "Zg³aszaj jako stacjê robocz¹",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,110,10
+ LTEXT "ReactOS jest zbudowany w oparciu o wersjê serwerow¹. Zaznacz pole, aby ReactOS zg³asza³ siê aplikacjom jako stacja robocza.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
Modified: trunk/reactos/dll/cpl/sysdm/lang/ro-RO.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/ro-RO.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/ro-RO.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/ro-RO.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -50,10 +50,10 @@
CAPTION "System Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Version Info",IDC_STATIC,6,3,210,73
+ CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,88,10
+ LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
IDD_PROPPAGEADVANCED DIALOGEX 0, 0, 256, 218
Modified: trunk/reactos/dll/cpl/sysdm/lang/ru-RU.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/ru-RU.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/ru-RU.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/ru-RU.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -48,10 +48,10 @@
CAPTION "System Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Version Info",IDC_STATIC,6,3,210,73
+ CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,88,10
+ LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
IDD_PROPPAGEADVANCED DIALOGEX 0, 0, 256, 218
Modified: trunk/reactos/dll/cpl/sysdm/lang/sk-SK.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/sk-SK.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/sk-SK.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/sk-SK.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -56,10 +56,10 @@
CAPTION "System Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Version Info",IDC_STATIC,6,3,210,73
+ CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,88,10
+ LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
IDD_PROPPAGEADVANCED DIALOGEX 0, 0, 256, 218
Modified: trunk/reactos/dll/cpl/sysdm/lang/sv-SE.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/sv-SE.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/sv-SE.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/sv-SE.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -50,10 +50,10 @@
CAPTION "System Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Version Info",IDC_STATIC,6,3,210,73
+ CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,88,10
+ LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
IDD_PROPPAGEADVANCED DIALOGEX 0, 0, 256, 218
Modified: trunk/reactos/dll/cpl/sysdm/lang/uk-UA.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/uk-UA.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/uk-UA.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/uk-UA.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -56,10 +56,10 @@
CAPTION "System Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Version Info",IDC_STATIC,6,3,210,73
+ CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,88,10
+ LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
IDD_PROPPAGEADVANCED DIALOGEX 0, 0, 256, 218
Modified: trunk/reactos/dll/cpl/sysdm/lang/zh-CN.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/sysdm/lang/zh-CN.r…
==============================================================================
--- trunk/reactos/dll/cpl/sysdm/lang/zh-CN.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/sysdm/lang/zh-CN.rc [iso-8859-1] Wed Dec 9 22:30:05 2009
@@ -76,10 +76,10 @@
CAPTION "System Settings"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Version Info",IDC_STATIC,6,3,210,53
- CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,37,88,10
- LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,21
- PUSHBUTTON "OK",IDOK,166,63,50,14
+ GROUPBOX "Version Info",IDC_STATIC,6,3,210,73
+ CONTROL "Report as Workstation",IDC_REPORTASWORKSTATION,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,16,57,88,10
+ LTEXT "ReactOS is built as a server OS and reports as such. Check this box to change this for applications only.",IDC_STATIC,15,15,183,41
+ PUSHBUTTON "OK",IDOK,166,83,50,14
END
IDD_HARDWAREPROFILES DIALOGEX 6, 18, 254, 234