diff options
author | Joar Wandborg <git@wandborg.com> | 2011-08-08 03:48:27 +0200 |
---|---|---|
committer | Joar Wandborg <git@wandborg.com> | 2011-08-08 03:48:27 +0200 |
commit | 537afbb6db849b5efcff9cf9b824ce464f8e129d (patch) | |
tree | 45c908ce4e09e15ae5a0ebedd5df60d229554571 /mediagoblin | |
parent | 9188f3afe24a52fff3262360a0896cc521546fa8 (diff) | |
parent | 3965f0f5fae2fdd3d1242a31806f8fe305d69273 (diff) | |
download | mediagoblin-537afbb6db849b5efcff9cf9b824ce464f8e129d.tar.lz mediagoblin-537afbb6db849b5efcff9cf9b824ce464f8e129d.tar.xz mediagoblin-537afbb6db849b5efcff9cf9b824ce464f8e129d.zip |
Merge branch 'master' of git://gitorious.org/mediagoblin/mediagoblin into f298_create_envball
Diffstat (limited to 'mediagoblin')
-rw-r--r-- | mediagoblin/i18n/de/LC_MESSAGES/mediagoblin.mo | bin | 0 -> 602 bytes | |||
-rw-r--r-- | mediagoblin/i18n/de/LC_MESSAGES/mediagoblin.po | 25 | ||||
-rw-r--r-- | mediagoblin/i18n/en/LC_MESSAGES/mediagoblin.po | 35 | ||||
-rw-r--r-- | mediagoblin/util.py | 2 |
4 files changed, 61 insertions, 1 deletions
diff --git a/mediagoblin/i18n/de/LC_MESSAGES/mediagoblin.mo b/mediagoblin/i18n/de/LC_MESSAGES/mediagoblin.mo Binary files differnew file mode 100644 index 00000000..ba625623 --- /dev/null +++ b/mediagoblin/i18n/de/LC_MESSAGES/mediagoblin.mo diff --git a/mediagoblin/i18n/de/LC_MESSAGES/mediagoblin.po b/mediagoblin/i18n/de/LC_MESSAGES/mediagoblin.po new file mode 100644 index 00000000..715757fb --- /dev/null +++ b/mediagoblin/i18n/de/LC_MESSAGES/mediagoblin.po @@ -0,0 +1,25 @@ +# Translations template for PROJECT. +# Copyright (C) 2011 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# +# <cwebber@dustycloud.org>, 2011. +msgid "" +msgstr "" +"Project-Id-Version: GNU MediaGoblin\n" +"Report-Msgid-Bugs-To: http://bugs.foocorp.net/projects/mediagoblin/issues\n" +"POT-Creation-Date: 2011-08-06 23:01-0500\n" +"PO-Revision-Date: 2011-08-07 14:06+0000\n" +"Last-Translator: cwebber <cwebber@dustycloud.org>\n" +"Language-Team: German (http://www.transifex.net/projects/p/mediagoblin/team/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 0.9.6\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: mediagoblin/templates/mediagoblin/root.html:21 +msgid "Welcome to GNU MediaGoblin!" +msgstr "Willkommen bei GNU MediaGoblin!" + + diff --git a/mediagoblin/i18n/en/LC_MESSAGES/mediagoblin.po b/mediagoblin/i18n/en/LC_MESSAGES/mediagoblin.po new file mode 100644 index 00000000..67830c2e --- /dev/null +++ b/mediagoblin/i18n/en/LC_MESSAGES/mediagoblin.po @@ -0,0 +1,35 @@ +# Translations template for GNU MediaGoblin. +# +# GNU MediaGoblin -- federated, autonomous media hosting +# Copyright (C) 2011 Free Software Foundation, Inc +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: GNU MediaGoblin\n" +"POT-Creation-Date: 2011-08-06 23:01-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 0.9.6\n" + +#: mediagoblin/templates/mediagoblin/root.html:21 +msgid "Welcome to GNU MediaGoblin!" +msgstr "" + diff --git a/mediagoblin/util.py b/mediagoblin/util.py index 5880f856..c9f4a0ac 100644 --- a/mediagoblin/util.py +++ b/mediagoblin/util.py @@ -300,7 +300,7 @@ def send_email(from_addr, to_addrs, subject, message_body): TRANSLATIONS_PATH = pkg_resources.resource_filename( - 'mediagoblin', 'translations') + 'mediagoblin', 'i18n') def locale_to_lower_upper(locale): |