Module: wine
Branch: master
Commit: 63e9c1ee09dff4886a6310f3c8fc684455b84992
URL: http://source.winehq.org/git/wine.git/?a=commit;h=63e9c1ee09dff4886a6310f3c…
Author: Rico Schüller <kgbricola(a)web.de>
Date: Wed Jun 4 21:28:37 2008 +0200
net: Add German translation.
---
programs/net/De.rc | 44 ++++++++++++++++++++++++++++++++++++++++++++
programs/net/rsrc.rc | 1 +
2 files changed, 45 insertions(+), 0 deletions(-)
diff --git a/programs/net/De.rc b/programs/net/De.rc
new file mode 100644
index 0000000..f57a42e
--- /dev/null
+++ b/programs/net/De.rc
@@ -0,0 +1,44 @@
+/*
+ * NET.EXE - Wine-compatible net program
+ * German language support
+ *
+ * Copyright (C) 2008 Rico Schüller
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
+
+STRINGTABLE
+{
+ STRING_USAGE, "Die Syntax von diesem Befehl ist:\n\nNET [ HELP | START | STOP | USE]\n"
+ STRING_START_USAGE, "Gib den zu startenden Dienst an.\n"
+ STRING_STOP_USAGE, "Gib den zu stoppenden Dienst an.\n"
+ STRING_STOP_DEP, "Stoppe den abbhängigen Dienst: %s\n"
+ STRING_CANT_STOP, "Konnte den Dienst nicht stoppen %s\n"
+ STRING_NO_SCM, "Konnte den Zeiger von der Dienststeuerung nicht bekommen.\n"
+ STRING_NO_SVCHANDLE, "Konnte den Zeiger zum Dienst nicht bekommen.\n"
+ STRING_START_SVC, "Der %s Dienst startet.\n"
+ STRING_START_SVC_SUCCESS, "Der %s Dienst wurde erfolgreich gestartet.\n"
+ STRING_START_SVC_FAIL, "Der Start des %s Dienstes ist fehlgeschlagen.\n"
+ STRING_STOP_SVC, "Der %s Dienst wird gestoppt.\n"
+ STRING_STOP_SVC_SUCCESS, "Der %s Dienst wurde erfolgreich beendet.\n"
+ STRING_STOP_SVC_FAIL, "Der %s Dienst konnte nicht beendet werden.\n"
+ STRING_HELP_USAGE, "Die Syntax von diesem Befehl ist:\n\nNET HELP Befehl\n -or-\nNET Befehl /HELP\n\n"\
+ " Mögliche Befehle:\n NET HELP NET START NET STOP NET USE\n"
+ STRING_NO_ENTRIES, "Es sind keine Einträge in der Liste.\n"
+ STRING_USE_HEADER, "\nStatus Lokal Entfernt\n---------------------------------------------------------------\n"
+ STRING_USE_ENTRY, "%s %S %S Offene Ressourcen: %lu\n"
+}
diff --git a/programs/net/rsrc.rc b/programs/net/rsrc.rc
index 2d79cf1..b6a6237 100644
--- a/programs/net/rsrc.rc
+++ b/programs/net/rsrc.rc
@@ -23,6 +23,7 @@
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
#include "Da.rc"
+#include "De.rc"
#include "En.rc"
#include "Fr.rc"
#include "Ko.rc"
Module: tools
Branch: master
Commit: 33bcff22147ad09bb7c9ca0d19dd9e9e723ae5e8
URL: http://source.winehq.org/git/tools.git/?a=commit;h=33bcff22147ad09bb7c9ca0d…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Jun 4 14:45:06 2008 +0200
winetest: Removed support for version 3 files.
---
winetest/dissect | 32 +++++++-------------------------
1 files changed, 7 insertions(+), 25 deletions(-)
diff --git a/winetest/dissect b/winetest/dissect
index 8ad85aa..3c99362 100755
--- a/winetest/dissect
+++ b/winetest/dissect
@@ -34,8 +34,8 @@ require "winetest.conf";
my $name0=$0;
$name0 =~ s+^.*/++;
-# We support reports version 3 and up
-my $minimum_report_version=3;
+# We support reports version 4 and up
+my $minimum_report_version=4;
# And we generate summary files version 4
my $summary_version=4;
@@ -151,15 +151,12 @@ if ($wine) {
$version = "wine";
}
-# Dll information is only available in new type reports
my %dllinfo;
-chomp;
-if (/^Dll info:\r?$/) {
- while ($_ = <IN>) {
- chomp;
- last if (!/^\s+([^ =]+)=(.*)\r?$/);
- $dllinfo{$1}=$2;
- }
+/^Dll info:\r?$/ or mydie "no Dll info header: $_";
+while ($_ = <IN>) {
+ chomp;
+ last if (!/^\s+([^ =]+)=(.*)\r?$/);
+ $dllinfo{$1}=$2;
}
/^Test output:/ or mydie "no test header: $_";
@@ -183,21 +180,6 @@ while (<IN>) {
$failed += $4;
$skipped += $5;
print OUT;
- } elsif (/^(.*$unit.*: (\d+) tests executed, (\d+) marked as todo, (\d+) failures?\.)\r?$/) {
- # We find these lines in report version 3 files
- $lines++;
- $total += $2;
- $todo += $3;
- $failed += $4;
- print OUT;
- } elsif (/^.*$unit.*: Tests skipped: (?:$dll(?:\.dll)? cannot be loaded|$dll(?:\.dll)? not found|Could not load $dll(?:\.dll)?)\r?$/) {
- # We find these lines in report version 3 files
- $dllinfo{$dll}="dll is missing";
- print OUT;
- } elsif (/^.*$unit.*:Could not load $dll/) {
- # We find these lines in report version 3 files
- $dllinfo{$dll}="dll is missing";
- print OUT;
} elsif (/$dll:$unit done \((-?\d+)\)\r?$/) {
chomp; # current test ended
if ($lines==0) {