Module: wine
Branch: master
Commit: 79307e596ee0c0e1cf9cbd9e0b1f11f80ad39f50
URL: http://source.winehq.org/git/wine.git/?a=commit;h=79307e596ee0c0e1cf9cbd9e0…
Author: André Hentschel <nerv(a)dawncrow.de>
Date: Fri Nov 13 22:27:23 2009 +0100
mshtml: Update German Gecko installer dialog.
---
dlls/mshtml/De.rc | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/dlls/mshtml/De.rc b/dlls/mshtml/De.rc
index 2b58b41..50d519d 100644
--- a/dlls/mshtml/De.rc
+++ b/dlls/mshtml/De.rc
@@ -37,9 +37,11 @@ STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMEN
CAPTION "Wine-Gecko-Installation"
FONT 8, "MS Shell Dlg"
{
- LTEXT "Wine could not find a Gecko package which is needed for applications embedding HTML " \
- "to work correctly. Wine can automatically download and install it for you.\n\n" \
- "Note: it's recommended to use distro packages instead. See http://wiki.winehq.org/Gecko for details.",
+ LTEXT "Wine kann das Gecko-Paket nicht finden. Es wird von Programmen mit eingebettetem HTML benötigt, " \
+ "damit diese richtig funktionieren.\n" \
+ "Wine kann das Paket für Sie herunterladen und installieren.\n\n" \
+ "Hinweis: Es wird empfohlen das Paket ihrer Distribution zu verwenden. " \
+ "Weitere Hinweise finden Sie unter http://wiki.winehq.org/Gecko",
ID_DWL_STATUS, 10, 10, 240, 50, SS_LEFT
CONTROL "Fortschritt", ID_DWL_PROGRESS, PROGRESS_CLASSA, WS_BORDER|PBS_SMOOTH, 10, 50, 240, 12
DEFPUSHBUTTON "&Installieren", ID_DWL_INSTALL, 200, 70, 50, 15, WS_GROUP | WS_TABSTOP
Module: wine
Branch: master
Commit: f6c482467593ed936996706ddc18a6d4f0737312
URL: http://source.winehq.org/git/wine.git/?a=commit;h=f6c482467593ed936996706dd…
Author: Juan Lang <juan.lang(a)gmail.com>
Date: Fri Nov 13 08:33:34 2009 -0800
crypt32: Update a comment.
---
dlls/crypt32/chain.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/crypt32/chain.c b/dlls/crypt32/chain.c
index 17471d5..c508c25 100644
--- a/dlls/crypt32/chain.c
+++ b/dlls/crypt32/chain.c
@@ -2382,8 +2382,8 @@ static BOOL match_dns_to_subject_alt_name(PCERT_EXTENSION ext,
* in section 4.2.1.6:
* "Multiple name forms, and multiple instances of each name form,
* MAY be included."
- * It doesn't specify the behavior in such cases, but common usage is
- * to accept a certificate if any name matches.
+ * It doesn't specify the behavior in such cases, but both RFC 2818
+ * and RFC 2595 explicitly accept a certificate if any name matches.
*/
for (i = 0; !matches && i < subjectName->cAltEntry; i++)
{