Module: wine
Branch: master
Commit: 8dca13df5dce6667729c0704aec65c09e7dbc20e
URL: http://source.winehq.org/git/wine.git/?a=commit;h=8dca13df5dce6667729c0704a…
Author: Julian Rüger <jr98(a)gmx.net>
Date: Wed Jul 3 22:17:14 2013 +0200
server: Update German translation of manpage.
---
server/wineserver.de.man.in | 20 +++++++++-----------
1 files changed, 9 insertions(+), 11 deletions(-)
diff --git a/server/wineserver.de.man.in b/server/wineserver.de.man.in
index 0a89890..26d0deb 100644
--- a/server/wineserver.de.man.in
+++ b/server/wineserver.de.man.in
@@ -1,4 +1,3 @@
-.\" -*- nroff -*-
.TH WINESERVER 1 "Oktober 2005" "@PACKAGE_STRING@" "Windows on Unix"
.SH NAME
wineserver \- der Wine Server
@@ -24,8 +23,8 @@ detaillierte Ausgabe. Wenn
.I n
nicht angegeben wird, ist 1 der Standardwert. Die Debugausgabe wird
an stderr geleitet. \fBwine\fR(1) wird beim Start von \fBwineserver\fR
-automatisch das Debuglevel setzen, wenn +server in der Umgebungsvariable
-WINEDEBUG angegeben ist.
+automatisch das Debuglevel auf normal setzen, wenn +server in der
+Umgebungsvariable WINEDEBUG angegeben ist.
.TP
.BR \-f ", " --foreground
Lässt den Server zur vereinfachten Fehlersuche im Vordergrund laufen,
@@ -36,7 +35,7 @@ Zeigt den Hilfetext an.
.TP
\fB\-k\fI[n]\fR, \fB--kill\fI[=n]
Beendet den momentan laufenden
-.B wineserver ,
+.BR wineserver ,
optional mit Signal \fIn\fR. Wenn kein Signal angegeben wurde, wird
SIGINT, gefolgt von einem SIGKILL gesendet. Die zu beendende Instanz von
\fBwineserver\fR wird durch die Umgebungsvariable WINEPREFIX bestimmt.
@@ -98,16 +97,15 @@ Der ursprüngliche Autor von
ist Alexandre Julliard. Viele andere Personen haben neue Funktionen hinzugefügt
und Fehler behoben. Details finden Sie in der Datei Changelog.
.SH FEHLER
-Wenn Sie einen Fehler finden, melden Sie ihn bitte unter
+Wenn Sie einen Fehler finden, melden Sie ihn bitte im
.UR http://bugs.winehq.org
-.BR http://bugs.winehq.org .
-.UE
+.B Wine Bugtracker
+.UE .
.SH VERFÜGBARKEIT
.B wineserver
-ist Teil der Wine-Distribution, verfügbar im WineHQ, dem Hauptquartier der
-Wine-Entwicklung, unter
+ist Teil der Wine-Distribution, verfügbar im WineHQ, dem
.UR http://www.winehq.org/
-.BR http://www.winehq.org/ .
-.UE
+.B Hauptquartier der Wine-Entwicklung
+.UE .
.SH "SIEHE AUCH"
.BR wine (1).
Module: wine
Branch: master
Commit: 653354ab254e70eb846aa920ff43de75bb30773d
URL: http://source.winehq.org/git/wine.git/?a=commit;h=653354ab254e70eb846aa920f…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Wed Jul 3 12:11:13 2013 +0200
Assorted spelling fixes.
---
dlls/shell32/iconcache.c | 6 +++---
dlls/shell32/tests/shelllink.c | 6 ++++--
dlls/user32/tests/edit.c | 2 +-
3 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/dlls/shell32/iconcache.c b/dlls/shell32/iconcache.c
index 91f0eb5..e2300f1 100644
--- a/dlls/shell32/iconcache.c
+++ b/dlls/shell32/iconcache.c
@@ -880,11 +880,11 @@ INT WINAPI SHGetIconOverlayIndexW(LPCWSTR pszIconPath, INT iIconIndex)
/****************************************************************************
* SHGetStockIconInfo [SHELL32.@]
*
- * Receive informations for builtin icons
+ * Receive information for builtin icons
*
* PARAMS
- * id [I] selected icon-id to get informations
- * flags [I] select informations to receive
+ * id [I] selected icon-id to get information for
+ * flags [I] selects the information to receive
* sii [IO] SHSTOCKICONINFO structure to fill
*
* RETURNS
diff --git a/dlls/shell32/tests/shelllink.c b/dlls/shell32/tests/shelllink.c
index a3301d8..7dc4379 100644
--- a/dlls/shell32/tests/shelllink.c
+++ b/dlls/shell32/tests/shelllink.c
@@ -1042,8 +1042,10 @@ static void test_SHGetStockIconInfo(void)
if (atleast_win7 && (i == (SIID_MAX_ICONS - 1)) && broken(hr == E_INVALIDARG))
{
- /* off by one windows bug: there are SIID_MAX_ICONS icons from 0 upto
- SIID_MAX_ICONS-1 on win8, but the last one is missing on win7 */
+ /* Off by one windows bug: there are SIID_MAX_ICONS icons from 0
+ * up to SIID_MAX_ICONS-1 on Windows 8, but the last one is missing
+ * on Windows 7.
+ */
trace("%3d: got E_INVALIDARG (windows bug: off by one)\n", i);
}
else if (atleast_win7 && (i < (SIID_MAX_ICONS)))
diff --git a/dlls/user32/tests/edit.c b/dlls/user32/tests/edit.c
index 700dfb0..fb4a8b3 100644
--- a/dlls/user32/tests/edit.c
+++ b/dlls/user32/tests/edit.c
@@ -2628,7 +2628,7 @@ static void test_EM_GETHANDLE(void)
len = SendMessageA(hEdit, WM_GETTEXTLENGTH, 0, 0);
ok((r == 1) && (len == lstrlenA(str1)), "got %d and %d (expected 1 and %d)\n", r, len, lstrlenA(str1));
- /* everything is normal upto EM_GETHANDLE */
+ /* everything is normal up to EM_GETHANDLE */
hmem = (HGLOBAL) SendMessage(hEdit, EM_GETHANDLE, 0, 0);
/* Some messages still work while other messages fail.
After LocalFree the memory handle, messages can crash the app */