Module: wine
Branch: master
Commit: c91eb084ce3f927d9163f6511a6a256c9c5dee65
URL: http://source.winehq.org/git/wine.git/?a=commit;h=c91eb084ce3f927d9163f6511…
Author: Frans Kool <Frans.Kool(a)gmail.com>
Date: Sun Jul 20 09:01:34 2008 +0200
wordpad: Added missing Dutch translations.
---
programs/wordpad/Nl.rc | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/programs/wordpad/Nl.rc b/programs/wordpad/Nl.rc
index d491b21..73da63f 100644
--- a/programs/wordpad/Nl.rc
+++ b/programs/wordpad/Nl.rc
@@ -237,4 +237,6 @@ BEGIN
STRING_OLE_STORAGE_NOT_SUPPORTED, "OLE storage documenten zijn niet ondersteund"
STRING_WRITE_FAILED, "Bestand kon niet opgeslagen worden."
STRING_WRITE_ACCESS_DENIED, "Onvoldoende rechten om het bestand op te slaan."
+ STRING_OPEN_FAILED, "Bestand kon niet geopend worden."
+ STRING_OPEN_ACCESS_DENIED, "Onvoldoende rechten om het bestand te openen."
END
Module: wine
Branch: master
Commit: d18cd895674dc7cac1a5155f2c4b65752818743f
URL: http://source.winehq.org/git/wine.git/?a=commit;h=d18cd895674dc7cac1a5155f2…
Author: Dan Kegel <dank(a)kegel.com>
Date: Fri Jul 18 16:31:43 2008 -0700
tools: Allow running tests with valgrind.
---
tools/runtest | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/tools/runtest b/tools/runtest
index 43f513f..a3c9331 100755
--- a/tools/runtest
+++ b/tools/runtest
@@ -118,4 +118,10 @@ fi
WINETEST_PLATFORM=${platform:-wine}
export WINETEST_PLATFORM WINETEST_DEBUG
-exec "$topobjdir/wine" "$program" "$infile" "$@"
+# WINETEST_WRAPPER is normally empty, but can be set by caller, e.g.
+# WINETEST_WRAPPER=time
+# would give data about how long each test takes, and
+# WINETEST_WRAPPER=valgrind
+# would run the tests under valgrind to look for memory errors.
+
+exec $WINETEST_WRAPPER "$topobjdir/wine" "$program" "$infile" "$@"