Module: website
Branch: master
Commit: 2826a753aa4fc03dbb671fcc2ee21d28981b1c23
URL: http://source.winehq.org/git/website.git/?a=commit;h=2826a753aa4fc03dbb671f…
Author: Paul Vriens <paul.vriens.wine(a)gmail.com>
Date: Thu Dec 11 17:55:38 2008 +0100
Acknowledge the work in the correct year
Hi,
Or maybe they intend to start working in 20002 again?
Changelog
Acknowledge the work in the correct year
--
Cheers,
Paul.
>From 9158107d84062bae8b537886b91ce3bb099cb4c9 Mon Sep 17 00:00:00 2001
From: Paul Vriens <Paul.Vriens.Wine(a)gmail.com>
Date: Thu, 11 Dec 2008 17:54:36 +0100
Subject: [PATCH] Acknowledge the work in the correct year
---
templates/de/acknowledgement.template | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/templates/de/acknowledgement.template b/templates/de/acknowledgement.template
index 5a1c937..34f36f3 100644
--- a/templates/de/acknowledgement.template
+++ b/templates/de/acknowledgement.template
@@ -49,7 +49,7 @@ haben, die schwierige Probleme angehen... wir schon.</p>
verbessern. Das ReactOS-Team verantwortet außerdem die Tools Regedit und
Task Manager.</dd>
<dt class="bold underline"><a href="http://www.transgaming.com">TransGaming</a></dt>
- <dd>TransGamings Entwicklungsaufwand, hauptsächlich in 20002, hat mehrere
+ <dd>TransGamings Entwicklungsaufwand, hauptsächlich in 2002, hat mehrere
kritische Bereiche von Wine verbessert. Änderungen an DCOM, DirectDraw und
2D Grafikunterstützung erlaubten das Installieren neuer Arten von
Anwendungen. Später wurde das Tool widl als Ersatz für MIDL
Module: website
Branch: master
Commit: bdc8e941c28a5fad947d919619fbd95caa516336
URL: http://source.winehq.org/git/website.git/?a=commit;h=bdc8e941c28a5fad947d91…
Author: Jeremy Newman <jnewman(a)codeweavers.com>
Date: Thu Dec 11 10:24:46 2008 -0600
adding German (de) to available languages config
---
include/winehq.conf.sample | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/winehq.conf.sample b/include/winehq.conf.sample
index 64e6722..06b9c3e 100644
--- a/include/winehq.conf.sample
+++ b/include/winehq.conf.sample
@@ -16,7 +16,7 @@ theme: winehq
lang: en
# available languages
-@languages: en, es
+@languages: en, de, es
# default base URLS (if you run the site, in a subdir, set base_root)
base_root:
Module: website
Branch: master
Commit: 20075e4820d30b1832a2ba589c98177a6dcc11fd
URL: http://source.winehq.org/git/website.git/?a=commit;h=20075e4820d30b1832a2ba…
Author: Jeremy Newman <jnewman(a)codeweavers.com>
Date: Thu Dec 11 10:23:18 2008 -0600
add some debug messages about language detection
---
include/html.php | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/include/html.php b/include/html.php
index f56348f..27c2162 100644
--- a/include/html.php
+++ b/include/html.php
@@ -246,6 +246,7 @@ class html
if (isset($_COOKIE['lang']) and in_array($_COOKIE['lang'], $GLOBALS['config']->languages))
{
// load language from URL or cookie
+ debug("global", "lang from cookie: {$_COOKIE['lang']}");
$lang = $_COOKIE['lang'];
}
else if (isset($_SERVER["HTTP_ACCEPT_LANGUAGE"]))
@@ -259,7 +260,10 @@ class html
$avail[0] = substr($avail[0], 0, 2);
// check to make sure lang is defined in our config
if (in_array($avail[0], $GLOBALS['config']->languages))
+ {
+ debug("global", "lang from browser: {$avail[0]}");
$lang = $avail[0];
+ }
}
unset($avail);
}
Module: website
Branch: master
Commit: 744861af39961533ee837f5d4c41396493b4ddf8
URL: http://source.winehq.org/git/website.git/?a=commit;h=744861af39961533ee837f…
Author: Maik Schulz <maik.schulz(a)gmail.com>
Date: Thu Dec 11 08:51:35 2008 +0100
German translation for winehq.org
Hi,
please find attached a patch for the beginning of a German translation
of the new winehq.org. More patches to follow as I go through the
remaining templates.
Cheers,
-Maik
>From 8f3cad44a4889822c8dccad587713e66f499ce89 Mon Sep 17 00:00:00 2001
From: Maik Schulz <maik.schulz(a)gmail.com>
Date: Thu, 11 Dec 2008 08:41:41 +0100
Subject: German translation
---
templates/de/about.template | 55 +++++++++
templates/de/acknowledgement.template | 216 +++++++++++++++++++++++++++++++++
templates/de/announce.template | 7 +
templates/de/home.template | 90 ++++++++++++++
4 files changed, 368 insertions(+), 0 deletions(-)
Diff: http://source.winehq.org/git/website.git/?a=commitdiff;h=744861af39961533ee…