From 0399e4e3b7c91b308aaea4b6b61671f37b6a90b7 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Fri, 16 Nov 2012 03:01:34 +0000 Subject: added translation infrastructure svn path=/trunk/scripts/guiplugins/search-plugin/; revision=16553 --- po/Makefile | 42 +++++++++++ po/af.po | 231 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/az.po | 230 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/be.po | 231 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/bg.po | 231 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/ca.po | 238 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/cs.po | 237 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/de.po | 240 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/el.po | 238 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/en_ca.po | 228 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/en_gb.po | 229 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/es_es.po | 242 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/es_mx.po | 239 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/eu.po | 230 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/fr.po | 238 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/gd.po | 235 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/gu.po | 233 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/he.po | 230 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/hi.po | 231 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/hu.po | 239 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/it.po | 239 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/ja.po | 238 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/lt.po | 235 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/lv.po | 237 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/nl.po | 235 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/pa.po | 232 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/pt_br.po | 237 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/pt_pt.po | 232 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/ru.po | 235 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/sq.po | 230 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/sv.po | 234 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/tr.po | 236 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/vi.po | 231 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ po/zh_tw.po | 240 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 34 files changed, 7783 insertions(+) create mode 100644 po/Makefile create mode 100644 po/af.po create mode 100644 po/az.po create mode 100644 po/be.po create mode 100644 po/bg.po create mode 100644 po/ca.po create mode 100644 po/cs.po create mode 100644 po/de.po create mode 100644 po/el.po create mode 100644 po/en_ca.po create mode 100644 po/en_gb.po create mode 100644 po/es_es.po create mode 100644 po/es_mx.po create mode 100644 po/eu.po create mode 100644 po/fr.po create mode 100644 po/gd.po create mode 100644 po/gu.po create mode 100644 po/he.po create mode 100644 po/hi.po create mode 100644 po/hu.po create mode 100644 po/it.po create mode 100644 po/ja.po create mode 100644 po/lt.po create mode 100644 po/lv.po create mode 100644 po/nl.po create mode 100644 po/pa.po create mode 100644 po/pt_br.po create mode 100644 po/pt_pt.po create mode 100644 po/ru.po create mode 100644 po/sq.po create mode 100644 po/sv.po create mode 100644 po/tr.po create mode 100644 po/vi.po create mode 100644 po/zh_tw.po diff --git a/po/Makefile b/po/Makefile new file mode 100644 index 0000000..a1b8093 --- /dev/null +++ b/po/Makefile @@ -0,0 +1,42 @@ + +PACKAGE_NAME = search plugin +PACKAGE_VERSION = 1.0 +TCLFILES = search-plugin.tcl + +# these are the supported languages, +ALL_LINGUAS = af az be bg ca cs de el en_ca en_gb es_es es_mx eu fr gd gu he hi hu it ja lt lv nl pa pt_br pt_pt ru sq sv tr vi zh_tw +POFILES = $(ALL_LINGUAS:=.po) +MSGFILES = $(ALL_LINGUAS:=.msg) + +TEMPLATE = template.pot +FILES = $(addprefix ../, $(TCLFILES)) + +# generate .msg files from the .po files +all: $(TEMPLATE) $(MSGFILES) + +# refresh .po files from the template +clean: + -rm -f -- $(TEMPLATE) + -rm -f -- $(MSGFILES) + -rm -f -- $(POFILES:=~) + +po: $(TEMPLATE) $(POFILES) + +$(TEMPLATE): $(FILES) + touch $(TEMPLATE) + xgettext --join-existing \ + --from-code=UTF-8 --language=Tcl --keyword=_ \ + --sort-by-file --output=$(TEMPLATE) \ + --package-name="$(PACKAGE_NAME)" \ + --package-version=$(PACKAGE_VERSION) \ + --copyright-holder='This file is put in the public domain' \ + --foreign-user \ + --msgid-bugs-address=http://bugs.puredata.info \ + $(FILES) + +$(POFILES): $(TEMPLATE) + touch $@ + msgmerge --sort-by-file -C /home/hans/code/pd-extended.git/po/$@ --update $@ $(TEMPLATE) + +%.msg: %.po + msgfmt --check --tcl --locale=$* -d . $< diff --git a/po/af.po b/po/af.po new file mode 100644 index 0000000..900a1e3 --- /dev/null +++ b/po/af.po @@ -0,0 +1,231 @@ +# Afrikaans translation of Pure Data +# This file is put in the public domain. +# Petri Jooste , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: Pure Data 2.0.8pre1\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2004-03-17 14:45+0200\n" +"Last-Translator: Petri Jooste \n" +"Language-Team: Afrikaans \n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "Aangaande" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +msgid "Manual" +msgstr "" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Open" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +msgid "External libraries" +msgstr "" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Volgrote teks soektog..." + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +#, fuzzy +msgid "Help" +msgstr "hulp" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/az.po b/po/az.po new file mode 100644 index 0000000..c1c35e9 --- /dev/null +++ b/po/az.po @@ -0,0 +1,230 @@ +# translation of Pure Data 0.43 to Azerbaijani Turkish +# This file is put in the public domain. +# Metin Amiroff , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: Pure Data 0.43\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2004-03-12 22:22+0200\n" +"Last-Translator: Metin Amiroff \n" +"Language-Team: Azerbaijani \n" +"Language: az\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "_Haqqında" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +msgid "Manual" +msgstr "" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Aç" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +msgid "External libraries" +msgstr "" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Mətni Axtar..." + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Yardım" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/be.po b/po/be.po new file mode 100644 index 0000000..db8b210 --- /dev/null +++ b/po/be.po @@ -0,0 +1,231 @@ +# Translation of Pure Data-0.43.po to Belarusian. +# This file is put in the public domain. +# Pavel Piatruk , 2006, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: Pure Data 0.43\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2007-06-26 12:02+0300\n" +"Last-Translator: Pavel Piatruk \n" +"Language-Team: Belarusian \n" +"Language: be\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.10.2\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "Аб праграме" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +msgid "Manual" +msgstr "" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Аперацыя" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +msgid "External libraries" +msgstr "" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "_Пошук" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Дапамога" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/bg.po b/po/bg.po new file mode 100644 index 0000000..977f886 --- /dev/null +++ b/po/bg.po @@ -0,0 +1,231 @@ +# Bulgarian translation of Pure Data +# This file is put in the public domain. +# Rostislav Raykov , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: Pure Data 0.43\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2005-05-20 17:51+0300\n" +"Last-Translator: Rostislav Raykov \n" +"Language-Team: Bulgarian \n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "_Относно" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +msgid "Manual" +msgstr "" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Отваряне" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +msgid "External libraries" +msgstr "" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Търсене из текста..." + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Помощ" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/ca.po b/po/ca.po new file mode 100644 index 0000000..0d3d6c1 --- /dev/null +++ b/po/ca.po @@ -0,0 +1,238 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# , 2012. +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-04-20 10:10+0000\n" +"Last-Translator: jpa32 \n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "Sobre Pd" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "Manual HTML..." + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Obrir" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +#, fuzzy +msgid "Error\n" +msgstr "error" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +#, fuzzy +msgid "Data Structures" +msgstr "Propietats de les dades" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "Edita librería" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "buscar a " + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +#, fuzzy +msgid "Match whole words" +msgstr "Coincidir només per paraula completa" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Ajuda" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "Passar part d'un error" diff --git a/po/cs.po b/po/cs.po new file mode 100644 index 0000000..5ff30fb --- /dev/null +++ b/po/cs.po @@ -0,0 +1,237 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# , 2012. +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-08-28 06:03+0000\n" +"Last-Translator: jui \n" +"Language-Team: LANGUAGE \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "O PD" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "HTML příručka ..." + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Otevřít" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +#, fuzzy +msgid "Error\n" +msgstr "chyba" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "Upravit knihovnu" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Najít v" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +#, fuzzy +msgid "Match whole words" +msgstr "Pouze celá slova" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Nápověda" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "Nahlásit chybu" diff --git a/po/de.po b/po/de.po new file mode 100644 index 0000000..3831892 --- /dev/null +++ b/po/de.po @@ -0,0 +1,240 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# Hans-Christoph Steiner , 2012. +# Johannes Kolb , 2012. +# Max Neupert , 2009. +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-05-19 00:09+0000\n" +"Last-Translator: Johannes Kolb \n" +"Language-Team: LANGUAGE \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "Über Pd" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "HTML Anleitung" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Öffnen" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +#, fuzzy +msgid "Error\n" +msgstr "Fehler" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +#, fuzzy +msgid "Data Structures" +msgstr "Daten-Einstellungen" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "Bibliothek editieren" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Suche in" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +#, fuzzy +msgid "Match whole words" +msgstr "Ganzes Wort abgleichen" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Hilfe" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "Fehler melden" diff --git a/po/el.po b/po/el.po new file mode 100644 index 0000000..a2062ff --- /dev/null +++ b/po/el.po @@ -0,0 +1,238 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# V L , 2012. +# Γεώργιος Κερατζάκης , 2009. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-04-16 08:42+0000\n" +"Last-Translator: Hans-Christoph Steiner \n" +"Language-Team: LANGUAGE \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "Περί..." + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "Εγχειρίδιο HTML..." + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Άνοιγμα" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +#, fuzzy +msgid "Error\n" +msgstr "Σφάλμα" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +#, fuzzy +msgid "Data Structures" +msgstr "Ιδιότητες δεδομένων" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "Οργάνωση βιβλιοθήκης" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Αναζήτηση σε" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +#, fuzzy +msgid "Match whole words" +msgstr "Ταύτιση μόνο ολόκληρης λέξης" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Βοήθεια" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "Αποστολή μηνύματος εύρεσης σφάλματος στο Pd" diff --git a/po/en_ca.po b/po/en_ca.po new file mode 100644 index 0000000..83db2cb --- /dev/null +++ b/po/en_ca.po @@ -0,0 +1,228 @@ +# The Canadian English translation for Pure Data +# This file is put in the public domain. +# Ben Bogart , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: Pure Data 0.43\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2009-08-25 18:19-0400\n" +"Last-Translator: Ben Bogart \n" +"Language-Team: Canadian English \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +msgid "All About Pd" +msgstr "" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +msgid "Manual" +msgstr "" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, tcl-format +msgid "Open %s" +msgstr "" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +msgid "External libraries" +msgstr "" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +msgid "Search" +msgstr "" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/en_gb.po b/po/en_gb.po new file mode 100644 index 0000000..1ff4870 --- /dev/null +++ b/po/en_gb.po @@ -0,0 +1,229 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-01-21 20:21+0000\n" +"Last-Translator: maxn \n" +"Language-Team: LANGUAGE \n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +msgid "All About Pd" +msgstr "" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +msgid "Manual" +msgstr "" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, tcl-format +msgid "Open %s" +msgstr "" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +msgid "External libraries" +msgstr "" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +msgid "Search" +msgstr "" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/es_es.po b/po/es_es.po new file mode 100644 index 0000000..5d63c73 --- /dev/null +++ b/po/es_es.po @@ -0,0 +1,242 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# , 2012. +# Izaskun Etxebarria <>, 2012. +# , 2012. +# , 2012. +# , 2012. +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-04-18 15:28+0000\n" +"Last-Translator: jpa32 \n" +"Language-Team: LANGUAGE \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "Acerca de Pd" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "Manual HTML..." + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Abrir" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +#, fuzzy +msgid "Error\n" +msgstr "error" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +#, fuzzy +msgid "Data Structures" +msgstr "Propiedades de los datos" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "Editar librería" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Buscar en" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +#, fuzzy +msgid "Match whole words" +msgstr "Coincidir sólo por palabra completa" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Ayuda" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "Dar parte de un error" diff --git a/po/es_mx.po b/po/es_mx.po new file mode 100644 index 0000000..53043b2 --- /dev/null +++ b/po/es_mx.po @@ -0,0 +1,239 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# , 2012. +# , 2012. +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-04-16 08:42+0000\n" +"Last-Translator: Aerolus \n" +"Language-Team: LANGUAGE \n" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "Acerca de Pd" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "Manual HTML..." + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Abrir" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +#, fuzzy +msgid "Error\n" +msgstr "error" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +#, fuzzy +msgid "Data Structures" +msgstr "Propiedades de dato" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "Editar librería" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Buscar en" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +#, fuzzy +msgid "Match whole words" +msgstr "Coincidir sólo por palabra completa" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Ayuda" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "Reportar un bug" diff --git a/po/eu.po b/po/eu.po new file mode 100644 index 0000000..542ac94 --- /dev/null +++ b/po/eu.po @@ -0,0 +1,230 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# Mikel Olasagasti , 2004, 2005. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-04-16 08:42+0000\n" +"Last-Translator: Hans-Christoph Steiner \n" +"Language-Team: LANGUAGE \n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +msgid "All About Pd" +msgstr "" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +msgid "Manual" +msgstr "" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Ireki" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +msgid "External libraries" +msgstr "" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +msgid "Search" +msgstr "" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Laguntza" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/fr.po b/po/fr.po new file mode 100644 index 0000000..ac84bf9 --- /dev/null +++ b/po/fr.po @@ -0,0 +1,238 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# dwan , 2012. +# Jean Sapristi , 2012. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-04-16 14:33+0000\n" +"Last-Translator: Jean Sapristi \n" +"Language-Team: LANGUAGE \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "À propos de Pd" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "Manuel HTML..." + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Ouvrir" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +#, fuzzy +msgid "Error\n" +msgstr "erreur" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +#, fuzzy +msgid "Data Structures" +msgstr "Propriétés des données" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "Éditer la bibliothèque" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Rechercher dans" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +#, fuzzy +msgid "Match whole words" +msgstr "Rechercher le mot complet uniquement" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Aide" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "Signaler un bogue" diff --git a/po/gd.po b/po/gd.po new file mode 100644 index 0000000..b2cfd74 --- /dev/null +++ b/po/gd.po @@ -0,0 +1,235 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# Ronald MacDonald , 2012. +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-04-16 08:42+0000\n" +"Last-Translator: Ronald MacDonald \n" +"Language-Team: LANGUAGE \n" +"Language: gd\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n < 2 ? 0 : n == 2 ? 1 : 2;\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "Mu dhèidhinn Pd" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +msgid "Manual" +msgstr "" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Fosgail" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +#, fuzzy +msgid "Error\n" +msgstr "mearachd" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "Deasaich leabharlann" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Lorg ann an" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Cobhair" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/gu.po b/po/gu.po new file mode 100644 index 0000000..f7ecb76 --- /dev/null +++ b/po/gu.po @@ -0,0 +1,233 @@ +# Translation of Pure Data-0.43.gu.po to Gujarati. +# This file is put in the public domain. +# Ankit Patel , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: Pure Data-0.43\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2005-09-14 12:49+0530\n" +"Last-Translator: Ankit Patel \n" +"Language-Team: Gujarati \n" +"Language: gu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9.1\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" +"\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "વિશે (_A)" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +msgid "Manual" +msgstr "" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "ખોલો" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +msgid "External libraries" +msgstr "" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "લખાણ શોધો..." + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "મદદ" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/he.po b/po/he.po new file mode 100644 index 0000000..429dbe3 --- /dev/null +++ b/po/he.po @@ -0,0 +1,230 @@ +# Hebrew translation of Pure Data. +# This file is put in the public domain +# you can be the first! , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: Pure Data 0.43\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2001-10-03 15:48+02:00\n" +"Last-Translator: xchat \n" +"Language-Team: Hebrew \n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "אודות איקס-צ'אט" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +msgid "Manual" +msgstr "" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, tcl-format +msgid "Open %s" +msgstr "" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +msgid "External libraries" +msgstr "" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "חפש בבאפר.." + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "עזרה" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/hi.po b/po/hi.po new file mode 100644 index 0000000..13d6ce8 --- /dev/null +++ b/po/hi.po @@ -0,0 +1,231 @@ +# Translation of Pure Data 0.43.po to Hindi. +# This file is put in the public domain. +# Rajesh Ranjan , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: Pure Data 0.43\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2005-05-04 12:50+0530\n" +"Last-Translator: Rajesh Ranjan \n" +"Language-Team: Hindi \n" +"Language: hi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9.1\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "के बारे में (_A)" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +msgid "Manual" +msgstr "" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "खोलें" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +msgid "External libraries" +msgstr "" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "पाठ खोजें..." + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "मदद" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/hu.po b/po/hu.po new file mode 100644 index 0000000..9fbe4da --- /dev/null +++ b/po/hu.po @@ -0,0 +1,239 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# Andras Muranyi , 2009, 2010. +# , 2011, 2012. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-04-16 13:43+0000\n" +"Last-Translator: muranyia \n" +"Language-Team: Hungarian (http://www.transifex.com/projects/p/puredata/" +"language/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "A Pd-ről" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "HTML kézikönyv..." + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Megnyit" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +#, fuzzy +msgid "Error\n" +msgstr "hiba" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +#, fuzzy +msgid "Data Structures" +msgstr "Adat tulajdonságai" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "Könyvtár szerkesztése" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Keresés itt:" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +#, fuzzy +msgid "Match whole words" +msgstr "Csak egész szavas egyezés" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Súgó" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "Hibabejelentés" diff --git a/po/it.po b/po/it.po new file mode 100644 index 0000000..a39bfd1 --- /dev/null +++ b/po/it.po @@ -0,0 +1,239 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# Lorenzo , 2012. +# Lorenzo Sutton (lorenzosu) , 2009. +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-04-16 16:10+0000\n" +"Last-Translator: Lorenzo \n" +"Language-Team: LANGUAGE \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "Informazioni su Pd..." + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "Manuale HTML..." + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Apri File..." + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +#, fuzzy +msgid "Error\n" +msgstr "errore" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +#, fuzzy +msgid "Data Structures" +msgstr "Proprietà Dati" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "Modifica la libreria" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Cerca in" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +#, fuzzy +msgid "Match whole words" +msgstr "Solo parole intere" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Aiuto" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "Segnala un bug" diff --git a/po/ja.po b/po/ja.po new file mode 100644 index 0000000..2bb3c6d --- /dev/null +++ b/po/ja.po @@ -0,0 +1,238 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# Sei Matsumura , 2012. +# TransReformer <>, 2012. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-04-16 08:42+0000\n" +"Last-Translator: Sei Matsumura \n" +"Language-Team: LANGUAGE \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "Pdについて" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "HTMLマニュアル..." + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "開く" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +#, fuzzy +msgid "Error\n" +msgstr "エラー" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +#, fuzzy +msgid "Data Structures" +msgstr "データ プロパティ" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "ライブラリの編集" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "検索範囲" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +#, fuzzy +msgid "Match whole words" +msgstr "全文適合検索" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "ヘルプ" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "バグを報告する" diff --git a/po/lt.po b/po/lt.po new file mode 100644 index 0000000..ef88488 --- /dev/null +++ b/po/lt.po @@ -0,0 +1,235 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-05-11 07:48+0000\n" +"Last-Translator: aurimasgizys \n" +"Language-Team: LANGUAGE \n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +msgid "All About Pd" +msgstr "" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "HTML žinynas..." + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, tcl-format +msgid "Open %s" +msgstr "" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +#, fuzzy +msgid "Data Structures" +msgstr "Duomenų savybės" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "Redaguoti biblioteką" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Ieškoti" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Pagalba" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/lv.po b/po/lv.po new file mode 100644 index 0000000..ca53602 --- /dev/null +++ b/po/lv.po @@ -0,0 +1,237 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-04-16 08:42+0000\n" +"Last-Translator: Hans-Christoph Steiner \n" +"Language-Team: LANGUAGE \n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "Par Pd" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "HTML Pamācība..." + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Atvērt" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +#, fuzzy +msgid "Error\n" +msgstr "kļūda" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +#, fuzzy +msgid "Data Structures" +msgstr "Datu iestatījumi" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "Labot bibliotēku" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Meklēt" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +#, fuzzy +msgid "Match whole words" +msgstr "Jāsakrīt pilnībā tikai vārdam." + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Palīdzība" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "Ziņot par kļūdu" diff --git a/po/nl.po b/po/nl.po new file mode 100644 index 0000000..ba21462 --- /dev/null +++ b/po/nl.po @@ -0,0 +1,235 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# Prim Smik <>, 2012. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-07-01 01:35+0000\n" +"Last-Translator: Prim Smik <>\n" +"Language-Team: LANGUAGE \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "Over Pd" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "HTML-handboek..." + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Open" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +#, fuzzy +msgid "Error\n" +msgstr "fout" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +#, fuzzy +msgid "Data Structures" +msgstr "Dataeigenschappen" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +msgid "External libraries" +msgstr "" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Zoeken in" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Help" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "Een bug meedelen" diff --git a/po/pa.po b/po/pa.po new file mode 100644 index 0000000..66d16f6 --- /dev/null +++ b/po/pa.po @@ -0,0 +1,232 @@ +# Translation of Pure Data 0.43.po to Punjabi. +# This file is put in the public domain. +# +# Amanpreet Singh Alam , 2005. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data 0.43\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2005-11-04 08:04+0530\n" +"Last-Translator: Amanpreet Singh Alam \n" +"Language-Team: Punjabi \n" +"Language: pa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9.1\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "ਇਸ ਬਾਰੇ(_A)" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +msgid "Manual" +msgstr "" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "ਖੋਲੋ" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +msgid "External libraries" +msgstr "" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "ਪਾਠ ਖੋਜ..." + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "ਸਹਾਇਤਾ" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/pt_br.po b/po/pt_br.po new file mode 100644 index 0000000..e0f8952 --- /dev/null +++ b/po/pt_br.po @@ -0,0 +1,237 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# Ricardo Palmieri <>, 2012. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-04-16 08:42+0000\n" +"Last-Translator: Ricardo Palmieri <>\n" +"Language-Team: LANGUAGE \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "Sobre PD" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "Manual HTML..." + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Abrir" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +#, fuzzy +msgid "Error\n" +msgstr "erro" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +#, fuzzy +msgid "Data Structures" +msgstr "Propriedades dos Dados" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "Editar biblioteca" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Procurar em" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +#, fuzzy +msgid "Match whole words" +msgstr "Casar somente palavra inteira" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Ajuda" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "Reportar um bug" diff --git a/po/pt_pt.po b/po/pt_pt.po new file mode 100644 index 0000000..54ff9cb --- /dev/null +++ b/po/pt_pt.po @@ -0,0 +1,232 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-01-19 14:31+0000\n" +"Last-Translator: Hans-Christoph Steiner \n" +"Language-Team: LANGUAGE \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "Sobre o Pd" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "Manual HTML" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Abrir" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +msgid "External libraries" +msgstr "" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Procurar em" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Ajuda" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/ru.po b/po/ru.po new file mode 100644 index 0000000..d8759e8 --- /dev/null +++ b/po/ru.po @@ -0,0 +1,235 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# Alexander Sokolov , 2012. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-08-13 16:45+0000\n" +"Last-Translator: Alexander Sokolov \n" +"Language-Team: LANGUAGE \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +msgid "All About Pd" +msgstr "" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +msgid "Manual" +msgstr "" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, tcl-format +msgid "Open %s" +msgstr "" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +#, fuzzy +msgid "Data Structures" +msgstr "Свойства Данных" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "Изменить библиотеку" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Искать в" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +#, fuzzy +msgid "Match whole words" +msgstr "Подбирать только целое слово" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Дапамога" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/sq.po b/po/sq.po new file mode 100644 index 0000000..abbce71 --- /dev/null +++ b/po/sq.po @@ -0,0 +1,230 @@ +# translation of Pure Data to Albanian +# This file is put in the public domain. +# Besnik Bleta , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: Pure Data 0.43\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2005-03-07 11:12+0200\n" +"Last-Translator: Besnik Bleta \n" +"Language-Team: Albanian \n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "_Rreth" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +msgid "Manual" +msgstr "" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Hap" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +msgid "External libraries" +msgstr "" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Kërko Tekst..." + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Ndihmë" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/sv.po b/po/sv.po new file mode 100644 index 0000000..2df1dfb --- /dev/null +++ b/po/sv.po @@ -0,0 +1,234 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# Johannes Burström , 2009. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-01-19 14:32+0000\n" +"Last-Translator: Hans-Christoph Steiner \n" +"Language-Team: LANGUAGE \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "Om Pd" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "HTML-manual..." + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Öppna" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +msgid "External libraries" +msgstr "" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Sök i" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +#, fuzzy +msgid "Match whole words" +msgstr "Endast hela ord" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Hjälp" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/tr.po b/po/tr.po new file mode 100644 index 0000000..0255752 --- /dev/null +++ b/po/tr.po @@ -0,0 +1,236 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# Necdet Yücel , 2012. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-05-09 05:47+0000\n" +"Last-Translator: Necdet Yücel \n" +"Language-Team: LANGUAGE \n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "Pd hakkında" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "HTML Kılavuzu..." + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Aç" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +#, fuzzy +msgid "Error\n" +msgstr "hata" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +#, fuzzy +msgid "Data Structures" +msgstr "Veri özellikleri" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "Kitaplığı düzenle" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Aranıyor" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Yardım" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "Hata raporla" diff --git a/po/vi.po b/po/vi.po new file mode 100644 index 0000000..83bb09b --- /dev/null +++ b/po/vi.po @@ -0,0 +1,231 @@ +# Vietnamese translation for Pure Data-0.43. +# This file is put in the public domain. +# Clytie Siddall , 2005. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data 0.43\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2005-07-28 17:29+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" +"X-Generator: LocFactoryEditor 1.2.2\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "_Giới thiệu" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +msgid "Manual" +msgstr "" + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "Mở" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +msgid "Error\n" +msgstr "" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "Data Structures" +msgstr "" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +msgid "External libraries" +msgstr "" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "Tìm kiếm trong văn bản..." + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "Trợ giúp" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "" diff --git a/po/zh_tw.po b/po/zh_tw.po new file mode 100644 index 0000000..f6dedc1 --- /dev/null +++ b/po/zh_tw.po @@ -0,0 +1,240 @@ +# SOME DESCRIPTIVE TITLE. +# This file is put in the public domain. +# +# Translators: +# crazylion <>, 2012. +# Liwei Chou <>, 2012. +# Pei-Wen Liu , 2012. +# 丼 / Don / डॉन <>, 2012. +# 鴻旗 鄭 <>, 2012. +msgid "" +msgstr "" +"Project-Id-Version: Pure Data\n" +"Report-Msgid-Bugs-To: http://bugs.puredata.info\n" +"POT-Creation-Date: 2012-11-15 21:17-0500\n" +"PO-Revision-Date: 2012-02-24 18:31+0000\n" +"Last-Translator: 鴻旗 鄭 <>\n" +"Language-Team: LANGUAGE \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ../search-plugin.tcl:23 +msgid "All documents" +msgstr "" + +#: ../search-plugin.tcl:24 +msgid "Object Help Patches" +msgstr "" + +#: ../search-plugin.tcl:25 ../search-plugin.tcl:511 +#, fuzzy +msgid "All About Pd" +msgstr "關於 Pd" + +#: ../search-plugin.tcl:26 +msgid "Tutorials" +msgstr "" + +#: ../search-plugin.tcl:27 +#, fuzzy +msgid "Manual" +msgstr "網頁式說明書..." + +#: ../search-plugin.tcl:28 +msgid "Uncategorized" +msgstr "" + +#: ../search-plugin.tcl:92 +#, fuzzy, tcl-format +msgid "Open %s" +msgstr "開啟檔案" + +#: ../search-plugin.tcl:96 +#, tcl-format +msgid "Browse %s%s" +msgstr "" + +#: ../search-plugin.tcl:116 +#, tcl-format +msgid "Search for pattern: %s" +msgstr "" + +#: ../search-plugin.tcl:181 +#, fuzzy +msgid "Error\n" +msgstr "錯誤" + +#: ../search-plugin.tcl:187 +msgid "" +"The search term you enter must be formatted as a proper tcl list. This " +"usually isn't an issue unless you use some special characters like brackets " +"or unmatched quotes in your search. For more info on tcl lists, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:196 +msgid "" +"The search term you enter must have the proper syntax for a regular " +"expression in Tcl. This usually isn't an issue unless you use special " +"characters to create a complex regular expression. For more info on regular " +"expressions in Tcl, see:\n" +"\n" +msgstr "" + +#: ../search-plugin.tcl:278 +msgid "Found " +msgstr "" + +#: ../search-plugin.tcl:287 +#, tcl-format +msgid " matches out of %s docs" +msgstr "" + +#: ../search-plugin.tcl:402 +msgid "text of the license for this software" +msgstr "" + +#: ../search-plugin.tcl:404 +msgid "general information from the author" +msgstr "" + +#: ../search-plugin.tcl:440 +msgid "No DESCRIPTION tag." +msgstr "" + +#: ../search-plugin.tcl:444 +msgid "Keywords:" +msgstr "" + +#: ../search-plugin.tcl:488 +msgid "Enter terms above. Use the dropdown " +msgstr "" + +#: ../search-plugin.tcl:489 +msgid "menu to filter by category.\n" +msgstr "" + +#: ../search-plugin.tcl:490 +msgid "Browse the Documentation\n" +msgstr "" + +#: ../search-plugin.tcl:491 +msgid "The \"doc\" directory" +msgstr "" + +#: ../search-plugin.tcl:495 +msgid "External Pd libraries\n" +msgstr "" + +#: ../search-plugin.tcl:496 +msgid "Introductory Topics\n" +msgstr "" + +#: ../search-plugin.tcl:514 +msgid " reference patches for key concepts and settings in Pd\n" +msgstr "" + +#: ../search-plugin.tcl:516 +msgid "Advanced Topics\n" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "Networking" +msgstr "" + +#: ../search-plugin.tcl:518 +msgid "sending data over networks with Pd" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "Writing Externals" +msgstr "" + +#: ../search-plugin.tcl:519 +msgid "how to code control and signal objects in C" +msgstr "" + +#: ../search-plugin.tcl:520 +#, fuzzy +msgid "Data Structures" +msgstr "數據內容" + +#: ../search-plugin.tcl:520 +msgid "creating graphical objects in Pure Data" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "Dynamic Patching" +msgstr "" + +#: ../search-plugin.tcl:521 +msgid "programmatically create/destroy Pd objects" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "Implementation Details" +msgstr "" + +#: ../search-plugin.tcl:523 +msgid "file format specification, license text, etc." +msgstr "" + +#: ../search-plugin.tcl:535 +msgid "Keywords\n" +msgstr "" + +#: ../search-plugin.tcl:536 +msgid "" +"Many of the help documents are categorized by keyword. Click a link below to " +"search for documents that have been tagged with that keyword.\n" +msgstr "" + +#: ../search-plugin.tcl:659 +#, fuzzy +msgid "External libraries" +msgstr "編輯函式庫" + +#: ../search-plugin.tcl:681 +msgid "no DESCRIPTION tag or values.\n" +msgstr "" + +#: ../search-plugin.tcl:756 +msgid "Home" +msgstr "" + +#: ../search-plugin.tcl:791 +msgid "This help patch is for an internal Pd class" +msgstr "" + +#: ../search-plugin.tcl:792 ../search-plugin.tcl:807 ../search-plugin.tcl:820 +#: ../search-plugin.tcl:838 ../search-plugin.tcl:1009 +#, fuzzy +msgid "Search" +msgstr "搜尋於" + +#: ../search-plugin.tcl:806 +msgid "Sorry, can't find a README file for this object's library." +msgstr "" + +#: ../search-plugin.tcl:843 +msgid "Match all terms" +msgstr "" + +#: ../search-plugin.tcl:845 +msgid "Match whole words" +msgstr "" + +#: ../search-plugin.tcl:847 +msgid "Help" +msgstr "幫助" + +#: ../search-plugin.tcl:854 +msgid "Pure Data Search" +msgstr "" + +#: ../search-plugin.tcl:1007 +msgid "Report a bug" +msgstr "回報錯誤" -- cgit v1.2.1