Module: wine
Branch: refs/heads/master
Commit: 08d55dbd62af8bcb0aa685a9be1ea764242047b3
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=08d55dbd62af8bcb0aa685a…
Author: Henning Gerhardt <henning.gerhardt(a)web.de>
Date: Mon Feb 6 11:26:01 2006 +0100
winecfg: Update German resource.
---
programs/winecfg/De.rc | 14 +++++++++++++-
1 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/programs/winecfg/De.rc b/programs/winecfg/De.rc
index 44d65fa..74c725c 100644
--- a/programs/winecfg/De.rc
+++ b/programs/winecfg/De.rc
@@ -2,7 +2,7 @@
* WineCfg resources
* German Language Support
*
- * Copyright 2005 Henning Gerhardt
+ * Copyright 2005, 2006 Henning Gerhardt
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -201,3 +201,15 @@ BEGIN
IDS_THEMEFILE_SELECT "Motiv-Datei ausw�hlen"
IDS_AUDIO_MISSING "Zur Zeit ist kein Audio Treiber in der Registry eingetragen.\n\nEin bevorzugter Treiber wurde f�r Sie ausgew�hlt.\nSie k�nnen diesen Treiber nutzen oder einen anderen ausw�hlen, sofern dieser vorhanden ist.\n\nSie m�ssen auf Anwenden klicken, damit die �nderung �bernommen wird."
END
+
+STRINGTABLE DISCARDABLE
+BEGIN
+ IDS_DLL_WARNING "Das �ndern der Ladereihenfolge dieser Bibltiothek wird nicht empfohlen.\nSind Sie sich sicher, dass Sie dies m�chten?"
+ IDS_DLL_WARNING_CAPTION "Achtung: Systembibliothek"
+ IDS_DLL_NATIVE "Native (Windows)"
+ IDS_DLL_BUILTIN "Builtin (Wine)"
+ IDS_DLL_NATIVE_BUILTIN "Native, Builtin"
+ IDS_DLL_BUILTIN_NATIVE "Builtin, Native"
+ IDS_DLL_DISABLED "ausgeschalten"
+END
+
ChangeSet ID: 22737
CVSROOT: /opt/cvs-commit
Module name: appdb
Changes by: wineowner(a)winehq.org 2006/02/05 14:46:10
Modified files:
. : account.php
Log message:
Chris Morgan <cmorgan(a)alum.wpi.edu>
Don't urlencode the users email address when displaying it back to the user, otherwise
we'll see stuff like blah%40yourdomain.com
Patch: http://cvs.winehq.org/patch.py?id=22737
Old revision New revision Changes Path
1.14 1.15 +1 -1 appdb/account.php
Index: appdb/account.php
diff -u -p appdb/account.php:1.14 appdb/account.php:1.15
--- appdb/account.php:1.14 5 Feb 2006 20:46:10 -0000
+++ appdb/account.php 5 Feb 2006 20:46:10 -0000
@@ -159,7 +159,7 @@ function cmd_send_passwd()
}
else
{
- addmsg("Sorry, that user (". urlencode($_POST['ext_email']) .") does not exist.<br><br>"
+ addmsg("Sorry, that user (".$_POST['ext_email'].") does not exist.<br><br>"
.$note, "red");
}
ChangeSet ID: 22736
CVSROOT: /opt/cvs-commit
Module name: appdb
Changes by: wineowner(a)winehq.org 2006/02/05 14:44:32
Modified files:
. : account.php
Log message:
Rafal Maj <rafal(a)raf256.com>
Clarify that appdb and bugzilla have separate accounts when a user is requesting
their password from the appdb.
Patch: http://cvs.winehq.org/patch.py?id=22736
Old revision New revision Changes Path
1.13 1.14 +6 -2 appdb/account.php
Index: appdb/account.php
diff -u -p appdb/account.php:1.13 appdb/account.php:1.14
--- appdb/account.php:1.13 5 Feb 2006 20:44:32 -0000
+++ appdb/account.php 5 Feb 2006 20:44:32 -0000
@@ -126,6 +126,9 @@ function cmd_do_new()
function cmd_send_passwd()
{
+ $note = '(<b>Note</b>: accounts for <b>appdb</b>.winehq.org and <b>bugs</b>.winehq.org '
+ .'are separated, so You might need to <b>create second</b> account for appdb.)';
+
$userid = user_exists($_POST['ext_email']);
$passwd = generate_passwd();
$user = new User($userid);
@@ -156,7 +159,8 @@ function cmd_send_passwd()
}
else
{
- addmsg("Sorry, that user (". urlencode($_POST['ext_email']) .") does not exist.", "red");
+ addmsg("Sorry, that user (". urlencode($_POST['ext_email']) .") does not exist.<br><br>"
+ .$note, "red");
}
redirect(apidb_fullurl("account.php?cmd=login"));
@@ -177,7 +181,7 @@ function cmd_do_login()
redirect(apidb_fullurl("index.php"));
} else
{
- retry("login","Login failed");
+ retry("login","Login failed ".$note);
$_SESSION['current'] = "";
}
}