1# German messages for gettext-examples. 2# Copyright © 2003, 2013 Yoyodyne, Inc. (msgids) 3# This file is distributed under the same license as the gettext package. 4# Bruno Haible <bruno@clisp.org>, 2003. 5# Karl Eichwalder <ke@gnu.franken.de>, 2003. 6# Jakob Kramer <jakob.kramer@gmx.de>, 2013. 7# Mario Blättermann <mario.blaettermann@gmail.com>, 2014. 8# Philipp Thomas <pth@suse.de>, 2015. 9# 10msgid "" 11msgstr "" 12"Project-Id-Version: gettext-examples 0.19.4.73\n" 13"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" 14"POT-Creation-Date: 2020-04-11 22:35+0200\n" 15"PO-Revision-Date: 2015-06-26 13:05+0200\n" 16"Last-Translator: Philipp Thomas <pth@suse.de>\n" 17"Language-Team: German <translation-team-de@lists.sourceforge.net>\n" 18"Language: de\n" 19"MIME-Version: 1.0\n" 20"Content-Type: text/plain; charset=UTF-8\n" 21"Content-Transfer-Encoding: 8bit\n" 22"X-Bugs: Report translation errors to the Language-Team address.\n" 23"Plural-Forms: nplurals=2; plural=(n != 1);\n" 24"X-Generator: Poedit 1.5.4\n" 25 26#: hello-c/hello.c:30 hello-c-gnome/hello.c:46 27#: hello-c-gnome3/hello.desktop.in.in:5 hello-c++/hello.cc:39 28#: hello-c++-qt/hello.cc:45 hello-c++-kde/hellowindow.cc:42 29#: hello-c++-gnome/hello.cc:50 hello-c++-wxwidgets/hello.cc:68 30#: hello-objc/hello.m:30 hello-objc-gnustep/Hello.m:49 31#: hello-objc-gnome/hello.m:47 hello-sh/hello.sh:14 hello-python/hello.py.in:12 32#: hello-clisp/hello.lisp.in:11 hello-librep/hello.jl.in:12 33#: hello-guile/hello.scm:15 hello-smalltalk/hello.st.in:31 34#: hello-java/Hello.java:14 hello-java-awt/Hello.java:23 35#: hello-java-swing/Hello.java:20 hello-java-qtjambi/Hello.java:27 36#: hello-csharp/hello.cs:14 hello-csharp-forms/hello.cs:29 37#: hello-gawk/hello.awk:11 hello-pascal/hello.hello_world 38#: hello-ycp/hello.ycp:15 hello-tcl/hello.tcl:11 hello-tcl-tk/hello.tcl:13 39#: hello-perl/hello-1.pl.in:17 hello-perl/hello-2.pl.in:12 40#: hello-php/hello.php:12 41msgid "Hello, world!" 42msgstr "Hallo Welt!" 43 44#: hello-c/hello.c:31 hello-c-gnome/hello.c:51 hello-c++/hello.cc:40 45#: hello-c++-gnome/hello.cc:55 hello-c++-wxwidgets/hello.cc:71 46#: hello-objc/hello.m:31 hello-objc-gnustep/Hello.m:58 47#: hello-objc-gnome/hello.m:52 hello-librep/hello.jl.in:14 48#: hello-gawk/hello.awk:12 hello-pascal/hello.running_as hello-tcl/hello.tcl:12 49#: hello-tcl-tk/hello.tcl:16 hello-perl/hello-1.pl.in:19 hello-php/hello.php:14 50#, php-format 51msgid "This program is running as process number %d." 52msgstr "Dieses Programm läuft mit der Prozess-Nummer %d." 53 54#: hello-c-gnome3/hello.c:79 55#, c-format 56msgid "" 57"<big>Hello world!</big>\n" 58"This program is running as process number <b>%d</b>." 59msgstr "" 60"<big>Hallo Welt!</big>\n" 61"Dieses Programm läuft mit der Prozess-Nummer %d." 62 63#: hello-c-gnome3/hello.c:84 64msgid "<big><u>This is another text</u></big>" 65msgstr "<big><u>Dies ist ein weiterer Text</u></big>" 66 67#: hello-c-gnome3/hello.c:86 68msgid "<big><i>This is yet another text</i></big>" 69msgstr "<big<i>Dies ist noch ein weiterer Text</i></big>" 70 71#: hello-c-gnome3/hello.desktop.in.in:4 72msgid "Hello" 73msgstr "Hallo" 74 75#: hello-c-gnome3/hello.ui:6 76msgid "Example Application" 77msgstr "Beispielanwendung" 78 79#: hello-c-gnome3/hello.ui:34 80msgid "Update text" 81msgstr "Text aktualisieren" 82 83#: hello-c-gnome3/hello.gschema.xml:8 84msgid "Use XML markup" 85msgstr "XML-Markup verwenden" 86 87#: hello-c-gnome3/hello.gschema.xml:9 88msgid "Whether to use XML markup in the text." 89msgstr "Ob XML-Markup im Text verwendet werden soll" 90 91#: hello-c++-qt/hello.cc:52 hello-c++-kde/hellowindow.cc:49 92#: hello-smalltalk/hello.st.in:32 hello-ycp/hello.ycp:19 93#, ycp-format 94msgid "This program is running as process number %1." 95msgstr "Dieses Programm läuft mit der Prozess-Nummer %1." 96 97#: hello-c++-kde/hello.cc:46 98msgid "Hello example" 99msgstr "Beispiel Hallo" 100 101#: hello-c++-kde/hello.cc:48 102msgid "Hello world example" 103msgstr "Beispiel Hallo-Welt" 104 105#: hello-sh/hello.sh:17 106#, sh-format 107msgid "This program is running as process number $pid." 108msgstr "Dieses Programm läuft mit der Prozess-Nummer $pid." 109 110#: hello-python/hello.py.in:13 111#, python-format 112msgid "This program is running as process number %(pid)d." 113msgstr "Dieses Programm läuft mit der Prozess-Nummer %(pid)d." 114 115#: hello-clisp/hello.lisp.in:13 hello-guile/hello.scm:17 116#, scheme-format 117msgid "This program is running as process number ~D." 118msgstr "Dieses Programm läuft mit der Prozess-Nummer ~D." 119 120#: hello-java/Hello.java:18 hello-java-awt/Hello.java:28 121#: hello-java-swing/Hello.java:25 hello-java-qtjambi/Hello.java:34 122#: hello-csharp/hello.cs:17 hello-csharp-forms/hello.cs:36 123#, csharp-format 124msgid "This program is running as process number {0}." 125msgstr "Dieses Programm läuft mit der Prozess-Nummer {0}." 126 127#: hello-perl/hello-2.pl.in:14 128#, perl-brace-format 129msgid "This program is running as process number {pid}." 130msgstr "Dieses Programm läuft mit der Prozess-Nummer {pid}." 131