diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..2a371c66412e1fd2c3af00be2f5dac5edb947a69 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/Makefile.am @@ -0,0 +1,29 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# General automake options. +AUTOMAKE_OPTIONS = foreign no-dependencies +ACLOCAL_AMFLAGS = -I m4 + +# The list of subdirectories containing Makefiles. +SUBDIRS = m4 po + +# The list of programs that are built. +bin_PROGRAMS = hello + +# The source files of the 'hello' program. +hello_SOURCES = hello.cc gettext.h + +# Define a C macro LOCALEDIR indicating where catalogs will be installed. +DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ + +# Make sure the gettext.h include file is found. +AM_CPPFLAGS = -I. -I$(srcdir) + +# Link time dependencies. +LDADD = @LIBINTL@ + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/autoclean.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..1838e8d232aa0fee0d512f9fa715d4e1af1af925 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/autoclean.sh @@ -0,0 +1,46 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for cleaning all autogenerated files. + +test ! -f Makefile || make distclean +rm -rf autom4te.cache + +# Brought in by explicit copy. +rm -f gettext.h + +# Brought in by autopoint. +rm -f ABOUT-NLS +rm -f config.rpath +rm -f m4/gettext.m4 +rm -f m4/build-to-host.m4 +rm -f m4/host-cpu-c-abi.m4 +rm -f m4/iconv.m4 +rm -f m4/intlmacosx.m4 +rm -f m4/lib-ld.m4 +rm -f m4/lib-link.m4 +rm -f m4/lib-prefix.m4 +rm -f m4/nls.m4 +rm -f m4/po.m4 +rm -f m4/progtest.m4 +rm -f po/Makefile.in.in +rm -f po/remove-potcdate.sed + +# Generated by aclocal. +rm -f aclocal.m4 + +# Generated by autoconf. +rm -f configure + +# Generated or brought in by automake. +rm -f Makefile.in +rm -f m4/Makefile.in +rm -f compile +rm -f install-sh +rm -f missing +rm -f config.guess +rm -f config.sub +rm -f po/*.pot +rm -f po/stamp-po +rm -f po/*.gmo diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/autogen.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..21904ca9f990e376f4a22d27da4912325fc9fed0 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/autogen.sh @@ -0,0 +1,48 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for regenerating all autogenerated files. + +if test -r ../Makefile.am; then + # Inside the gettext source directory. + GETTEXT_TOPSRCDIR=../../.. +else + if test -r ../Makefile; then + # Inside a gettext build directory. + GETTEXT_TOOLS_SRCDIR=`sed -n -e 's,^top_srcdir *= *\(.*\)$,\1,p' ../Makefile` + # Adjust a relative top_srcdir. + case $GETTEXT_TOOLS_SRCDIR in + /*) ;; + *) GETTEXT_TOOLS_SRCDIR=../$GETTEXT_TOOLS_SRCDIR ;; + esac + GETTEXT_TOPSRCDIR=$GETTEXT_TOOLS_SRCDIR/../.. + else + # Installed under ${prefix}/share/doc/gettext/examples. + . ../installpaths + fi +fi + +cp -p ${GETTEXTSRCDIR-$GETTEXT_TOPSRCDIR/gettext-tools/gnulib-lib}/gettext.h gettext.h + +autopoint -f # was: gettextize -f -c +rm po/Makevars.template +rm po/Rules-quot +rm po/boldquot.sed +rm po/en@boldquot.header +rm po/en@quot.header +rm po/insert-header.sed +rm po/quot.sed + +aclocal -I m4 + +autoconf + +automake -a -c + +cd po +for f in *.po; do + lang=`echo $f | sed -e 's,\.po$,,'` + msgfmt -c -o $lang.gmo $lang.po +done +cd .. diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/configure.ac b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..c338c29e6f76e7cb11038229dc933b307422c833 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/configure.ac @@ -0,0 +1,37 @@ +dnl Example for use of GNU gettext. +dnl This file is in the public domain. +dnl +dnl Configuration file - processed by autoconf. + +AC_INIT([hello-c++20], [0], , [hello-c++20]) +AC_CONFIG_SRCDIR([hello.cc]) +AM_INIT_AUTOMAKE([1.11]) + +AC_PROG_CXX + +# Try to find compiler option for ISO C++ 20 support. +cat <<\EOF > conftest.cc +#include +#if __cpp_lib_format <= 202106L +using std::vformat; +using std::make_format_args; +#else +using std::format; +using std::runtime_format; +#endif +EOF +if ${CXX} ${CXXFLAGS} ${CPPFLAGS} -c conftest.cc 2>/dev/null; then + : +elif ${CXX} ${CXXFLAGS} -std=gnu++20 ${CPPFLAGS} -c conftest.cc 2>/dev/null; then + CXXFLAGS="${CXXFLAGS} -std=gnu++20" +elif ${CXX} ${CXXFLAGS} -std=gnu++26 ${CPPFLAGS} -c conftest.cc 2>/dev/null; then + CXXFLAGS="${CXXFLAGS} -std=gnu++26" +fi + +AM_GNU_GETTEXT([external]) +AM_GNU_GETTEXT_VERSION([0.25]) + +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile.in]) +AC_OUTPUT diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/hello.cc b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/hello.cc new file mode 100644 index 0000000000000000000000000000000000000000..03828b55e3c51154795019806f11db2b53f91878 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/hello.cc @@ -0,0 +1,57 @@ +// Example for use of GNU gettext. +// This file is in the public domain. + +// Source code of the ISO C++ 20 program. + +// Note: The API has changed three years after ISO C++ 20. Code that was working +// fine with g++ 13.1, 13.2 and clang++ 17, 18 (with option -std=gnu++20) +// no longer compiles with g++ 13.3 or newer and clang++ 19 or newer. Thus the +// need to test __cpp_lib_format, whose value is 202106L for the older compilers +// and 202110L for the newer compilers. See +// . +// The replacement API, presented in +// , +// uses a new symbol std::runtime_format, that +// - does not exist in g++ 13.3, +// - exists in g++ 14 or newer and clang++ 19 or newer, but requires the +// option -std=gnu++26. + +#include +#include +using namespace std; + +// Get setlocale() declaration. +#include + +// Get getpid() declaration. +#if defined _WIN32 && !defined __CYGWIN__ +/* native Windows API */ +# include +# define getpid _getpid +#else +/* POSIX API */ +# include +#endif + +// Get gettext(), textdomain(), bindtextdomain() declaration. +#include "gettext.h" +// Define shortcut for gettext(). +#define _(string) gettext (string) + +int +main () +{ + setlocale (LC_ALL, ""); + textdomain ("hello-c++20"); + bindtextdomain ("hello-c++20", LOCALEDIR); + + cout << _("Hello, world!") << endl; +#if __cpp_lib_format <= 202106L + cout << vformat (_("This program is running as process number {:d}."), + make_format_args (getpid ())) +#else + cout << format (runtime_format (_("This program is running as process number {:d}.")), + getpid ()) +#endif + << endl; +} diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/m4/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..7d516f09ff64e7f731d69696326a8626ca9c4ee0 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/m4/Makefile.am @@ -0,0 +1,4 @@ +EXTRA_DIST = \ + gettext.m4 build-to-host.m4 host-cpu-c-abi.m4 \ + iconv.m4 intlmacosx.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 \ + nls.m4 po.m4 progtest.m4 diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/LINGUAS b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/LINGUAS @@ -0,0 +1,5 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Set of available languages. +af ast bg ca cs da de el eo es fi fr ga gl hr hu id it ja ka ky lv ms mt nb nl nn pl pt pt_BR ro ru sk sl sq sr sv ta tr uk vi zh_CN zh_HK zh_TW diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/Makevars b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/Makevars new file mode 100644 index 0000000000000000000000000000000000000000..307bf0336ca3176369ba3720d52122b43c967657 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/Makevars @@ -0,0 +1,84 @@ +# Makefile variables for PO directory in any package using GNU gettext. +# +# Copyright (C) 2003-2025 Free Software Foundation, Inc. +# This file is free software; the Free Software Foundation gives +# unlimited permission to use, copy, distribute, and modify it. + +# Usually the message domain is the same as the package name. +DOMAIN = $(PACKAGE) + +# These two variables depend on the location of this directory. +subdir = po +top_builddir = .. + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = \ + --keyword=_ --flag=_:1:pass-c-format \ + --keyword=N_ --flag=N_:1:pass-c-format \ + --flag=autosprintf:1:c-format + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgid strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Yoyodyne, Inc. + +# This tells whether or not to prepend "GNU " prefix to the package +# name that gets inserted into the header of the $(DOMAIN).pot file. +# Possible values are "yes", "no", or empty. If it is empty, try to +# detect it automatically by scanning the files in $(top_srcdir) for +# "GNU packagename" string. +PACKAGE_GNU = no + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = bug-gettext@gnu.org + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = + +# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt' +# context. Possible values are "yes" and "no". Set this to yes if the +# package uses functions taking also a message context, like pgettext(), or +# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument. +USE_MSGCTXT = no + +# These options get passed to msgmerge. +# Useful options are in particular: +# --previous to keep previous msgids of translated messages +MSGMERGE_OPTIONS = + +# These options get passed to msginit. +# If you want to disable line wrapping when writing PO files, add +# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and +# MSGINIT_OPTIONS. +MSGINIT_OPTIONS = + +# This tells whether or not to regenerate a PO file when $(DOMAIN).pot +# has changed. Possible values are "yes" and "no". Set this to no if +# the POT file is checked in the repository and the version control +# program ignores timestamps. +PO_DEPENDS_ON_POT = yes + +# This tells whether or not to forcibly update $(DOMAIN).pot and +# regenerate PO files on "make dist". Possible values are "yes" and +# "no". Set this to no if the POT file and PO files are maintained +# externally. +DIST_DEPENDS_ON_UPDATE_PO = yes diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/POTFILES.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/POTFILES.in new file mode 100644 index 0000000000000000000000000000000000000000..bd28e81ce0c6a6f5784add4abe0aa0c66e4ed1af --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/POTFILES.in @@ -0,0 +1,5 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# List of files which contain translatable strings. +hello.cc diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/af.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..0e2c001bc093057d4c1b8aaf03d7fe9a08c126ac --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/af.po @@ -0,0 +1,26 @@ +# Afrikaans translation for Silky +# Copyright (C) 2004 Free Software Foundation, Inc. +# This file is distributed under the same license as the silky package. +# Hanlie Pretorius , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20-0.13.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2003-12-31 10:30+2\n" +"Last-Translator: Ysbeer \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.cc:50 hello.cc:53 +#, fuzzy, c++-format +msgid "This program is running as process number {:d}." +msgstr "Hierdie program loop as prosesnommer {pid}" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ast.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..cf8b1a07b6daff8b14ae8cded1c50804744e0bbf --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-c++20 +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marquinos , 2009. +# enolp , 2018. +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-07-16 00:28+0100\n" +"Last-Translator: enolp \n" +"Language-Team: Asturian \n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 2.0\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.cc:50 hello.cc:53 +#, fuzzy, c++-format +msgid "This program is running as process number {:d}." +msgstr "Esti programa ta executándose como procesu númberu {pid}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/bg.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..3e715a1a59872c4c27b93d128dbf73290400e6a9 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-c++20 package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Roumen Petrov , 2010,2014,2015,2019,2023,2024.2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c++20 0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-08 19:09+0200\n" +"Last-Translator: Roumen Petrov \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Програмата е пусната под процес номер {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ca.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..8be41a365a394f4765b1edb34cd503d7a65cddae --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-c++20. +# Copyright (C) 2003, 2014, 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ivan Vilata i Balaguer , 2003, 2014, 2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-07-07 08:36+0200\n" +"Last-Translator: Ivan Vilata i Balaguer \n" +"Language-Team: Catalan \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Aquest programa està corrent amb el número de procés {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/cs.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..266c6d624ad655cc7416ca3fac8a60a010fe8575 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/cs.po @@ -0,0 +1,29 @@ +# The Czech translation for the gettext package. +# Copyright (C) 2011 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marek Černocký , 2011. +# Petr Písař , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 20:05+02:00\n" +"Last-Translator: Petr Pisar \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Tento program běží jako proces číslo {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/da.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..edbe9d5ca49b7f36418e7ef6a3bb22ad22278fbe --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-c++20. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Jan Djærv , 2003, 2006. +# Keld Simonsen , 2011. +# Joe Hansen , 2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-27 12:39+0100\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.cc:50 hello.cc:53 +#, fuzzy, c++-format +msgid "This program is running as process number {:d}." +msgstr "Dette program kører som proces nummer {pid}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/de.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..ab0c06277ac92a66a4a43a9eb973f0b74d9a8624 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-c++20. +# Copyright © 2003, 2013 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Bruno Haible , 2003. +# Karl Eichwalder , 2003. +# Jakob Kramer , 2013. +# Mario Blättermann , 2014, 2023, 2025. +# Philipp Thomas , 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 17:15+0200\n" +"Last-Translator: Mario Blättermann \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 25.04.0\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Dieses Programm läuft mit der Prozess-Nummer {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/el.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..aa7edddfb4ed75f73057699477242987999580b2 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-c++20 +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.14.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2005-01-06 18:50+0000\n" +"Last-Translator: Simos Xenitellis \n" +"Language-Team: Greek \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.3.1\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.cc:50 hello.cc:53 +#, fuzzy, c++-format +msgid "This program is running as process number {:d}." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας {pid}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/eo.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..6c2ab45c2912ae209016db2985fb19bd76fb59f5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/eo.po @@ -0,0 +1,28 @@ +# La teksto por la mesaĝoj de la programo "gettext". +# Copyright (C) 2006, 2016 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Edmund GRIMLEY EVANS , 2006. +# Felipe CASTRO , 2016, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-23 19:00-0300\n" +"Last-Translator: Felipe Castro \n" +"Language-Team: Esperanto \n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Ĉi tiu programo rulas kiel procez-numero {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/es.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..2367a9dc2a3ea8b5456bd37571b8ca9f52119c03 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/es.po @@ -0,0 +1,30 @@ +# Mensajes en español para GNU gettext. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# This file is distributed under the same license as the gettext package. +# +# Max de Mendizábal , 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004. +# Antonio Ceballos , 2014, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-02-23 17:01+0100\n" +"Last-Translator: Antonio Ceballos \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Este programa está corriendo como el proceso número {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/fi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..7378165d976904bc241dcc127953e70dbaad79fa --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/fi.po @@ -0,0 +1,29 @@ +# Finnish messages for GNU Gettext examples. +# This file is distributed under the same license as the gettext package. +# Copyright © 2007, 2014, 2015 Yoyodyne, Inc. (msgids) +# Lauri Nurmi , 2007. +# Jorma Karvonen , 2014-2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-09-01 16:59+0300\n" +"Last-Translator: Jorma Karvonen \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 1.5.4\n" + +# Tämä nimenomainen käännös valittu GNU Hellon mukaisesti. +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.cc:50 hello.cc:53 +#, fuzzy, c++-format +msgid "This program is running as process number {:d}." +msgstr "Tämän ohjelman prosessinumero on {pid}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/fr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..8c7295f431d9f0b51df343aecf6a101ee3c29c0c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/fr.po @@ -0,0 +1,32 @@ +# Messages français pour GNU gettext. +# Copyright (C) 2006 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Michel Robitaille , 2006. +# Christophe Combelles , 2006 +# Stéphane Aulery , 2015 +# Christian Wiatr , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-28 16:25+0200\n" +"Last-Translator: Christian Wiatr \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Ce programme est exécuté en tant que processus numéro {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ga.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..57f30afcf7c12106b75d88a3efff404467a22a60 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-c++20. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Kevin Patrick Scannell , 2004, 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2017-01-10 12:09-0500\n" +"Last-Translator: Kevin Patrick Scannell \n" +"Language-Team: Irish \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.cc:50 hello.cc:53 +#, fuzzy, c++-format +msgid "This program is running as process number {:d}." +msgstr "Tá an clár seo ag rith mar phróiseas {pid}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/gl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..4ebf7af5af20de06db60d00c82ab1f4c0a089560 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-c++20 package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Leandro Regueiro , 2010-2014. +# +# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas +# colaborar connosco, podes atopar máis información en +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.19-rc1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2014-05-10 16:34+0100\n" +"Last-Translator: Leandro Regueiro \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.cc:50 hello.cc:53 +#, fuzzy, c++-format +msgid "This program is running as process number {:d}." +msgstr "Este programa estase executando como o proceso número {pid}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/hr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..b35175f563e3017d7a04e7b884d2b3e99d68f53c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-c++20 to Croatian. +# Copyright (C) 2003, 2004, 2014, 2015, 2019 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Permission is granted to freely copy and distribute +# this file and modified versions, provided that this +# header is not removed and modified versions are marked +# as such. +# +# Tomislav Krznar , 2012. +# Božidar Putanec , 2018-2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c++20 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:15-0700\n" +"Last-Translator: Božidar Putanec \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Ovaj program se izvršava kao proces broj {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/hu.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..dd20ee9f0fdca9b83b94564c358b833b2c9b935a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-c++20. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# Tamás Kiss , 2005. +# Balázs Úr , 2014, 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-23 20:31+0200\n" +"Last-Translator: Balázs Úr \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 1.2\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.cc:50 hello.cc:53 +#, fuzzy, c++-format +msgid "This program is running as process number {:d}." +msgstr "Ez a program a(z) {pid} folyamatazonosítóval fut." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/id.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..b552527635382844bd3252f7648636fc4d2b8ddc --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-c++20-0.15-pre5.po to Indonesian +# Copyright (C) 2006 Yoyodyne, Inc. +# This file is distributed under the same license as the PACKAGE package. +# +# Tedi Heriyanto , 2006. +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20-0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-09-27 20:19+0700\n" +"Last-Translator: Tedi Heriyanto \n" +"Language-Team: Indonesian \n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.11.2\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.cc:50 hello.cc:53 +#, fuzzy, c++-format +msgid "This program is running as process number {:d}." +msgstr "Program ini berjalan sebagai proses nomor {pid}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/it.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..6a46da2c46324e77b9288bfdec1e8c0f05f3ec9a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-c++20. +# Copyright (C) 2005, 2006 Yoyodyne, Inc. (msgids) +# Copyright (C) 2024 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Marco Colombo , 2005, 2006, 2015. +# Michele Locati , 2024, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c++20 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-04 18:28+0200\n" +"Last-Translator: Michele Locati \n" +"Language-Team: Italian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Questo programma è in esecuzione con numero di processo {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ja.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..b6583bf15316c96e1200b53c850044b1c1cb5e7f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-c++20' messages to Japanese. +# Copyright (C) 2005, 2006, 2014, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Masahito Yamaga , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c++20 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:59+0900\n" +"Last-Translator: Masahito Yamaga \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "このプログラムはプロセス番号 {:d} で動いています." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ka.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..7c53b2d9a30d68de7debc2febb54443d96eda34b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ka.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Temuri Doghonadze , 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2022-05-22 05:04+0200\n" +"Last-Translator: Temuri Doghonadze \n" +"Language-Team: Georgian <(nothing)>\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0.1\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.cc:50 hello.cc:53 +#, fuzzy, c++-format +msgid "This program is running as process number {:d}." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით {pid}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ky.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..d49e0b44d61e97e5fa0eac3600c0103d7923e1a7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-c++20' messages to Kirghiz. +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ilyas Bakirov , 2007. +# Ilyas Bakirov , 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-02-15 18:26+0600\n" +"Last-Translator: Ilyas Bakirov \n" +"Language-Team: Kirghiz \n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.0.6\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.cc:50 hello.cc:53 +#, fuzzy, c++-format +msgid "This program is running as process number {:d}." +msgstr "Бул программа {pid} процесс номери катары иштеп жатат." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/lv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..5293d8abfd317e4ddc4bc4e7140567227172dbcf --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-c++20 +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Arvis Lācis , 2009. +# Rihards Priedītis , 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-09 11:44+0000\n" +"Last-Translator: Rihards Priedītis \n" +"Language-Team: Latvian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Šī programma darbojas ar procesa numuru {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ms.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..c6eb0010997ed2ceafeb528b62f94e74876668b1 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ms.po @@ -0,0 +1,28 @@ +# hello-c++20 Bahasa Melayu (Malay) (ms). +# Copyright (C) 2006, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2006, 2015, 2023, 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Sharuzzaman Ahmat Raslan , 2006, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-03 21:10+0800\n" +"Last-Translator: Sharuzzaman Ahmat Raslan \n" +"Language-Team: Malay \n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Program ini dilaksanakan sebagai proses bernombor {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/mt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..daa994bc842681eec28cbedd9b1e43a86cf6305f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/mt.po @@ -0,0 +1,27 @@ +# hello-c++20-0.16.2-pre5. +# Copyright (C) 2008 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Clyde Meli , 2001-2008. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.16.2-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2008-11-18 17:27+0100\n" +"Last-Translator: Clyde Meli \n" +"Language-Team: Maltese \n" +"Language: mt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.cc:50 hello.cc:53 +#, fuzzy, c++-format +msgid "This program is running as process number {:d}." +msgstr "Dal-programm qed jaħdem taħt il-proċess numru {pid}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/nb.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..995b6c92e169662020cdf15165b5dbdd67a2dc1f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-c++20 package. +# Copyright (C) 2012 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Johnny A. Solbu , 2012-2024 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-01-06 16:33+0100\n" +"Last-Translator: Johnny A. Solbu \n" +"Language-Team: Norwegian Bokmaal \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Dette programmet kjører som prosess nummer {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/nl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..faa77aa320c96bb1b819f2cc7526ff800bf3f640 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-c++20. +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# "There are three basic rules for writing a novel. +# Unfortunately nobody knows what they are." +# +# Benno Schulenberg , 2007, 2014, 2015, 2019, 2025. +# Elros Cyriatan , 2004. +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-01 14:51+0100\n" +"Last-Translator: Benno Schulenberg \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Dit programma draait als proces nummer {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/nn.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..09c9b8e268d4d407aea5cd59747d88d2dd3e6679 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-c++20 +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Karl Ove Hufthammer , 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20-0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-05-04 18:58+0200\n" +"Last-Translator: Karl Ove Hufthammer \n" +"Language-Team: Norwegian Nynorsk \n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 20.04.0\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.cc:50 hello.cc:53 +#, fuzzy, c++-format +msgid "This program is running as process number {:d}." +msgstr "Dette programmet køyrer som prosess nummer {pid}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/pl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..1bfaf555fbacb3ab0df85d6481809fd66d0aaad6 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-c++20 domain +# Copyright (C) 2010, 2014, 2015, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Rafał Maszkowski , 2003, 2010, 2014, 2015, 2025 +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c++20 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-25 17:16+0200\n" +"Last-Translator: Rafał Maszkowski \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Ten program działa jako proces o numerze {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/pt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..0b27db9d0f32e72daea8da561e9d1dbce4843b9c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-c++20' package. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Pedro Albuquerque , 2019, 2020, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 11:24+0100\n" +"Last-Translator: Pedro Albuquerque \n" +"Language-Team: Portuguese \n" +"Language: 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;\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Este programa está em execução como processo nº {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/pt_BR.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..69c9f3e80c9e702c8741f9cb784352af18b1c0aa --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/pt_BR.po @@ -0,0 +1,31 @@ +# Brazilian Portuguese translations for gettext-example +# Traduções em português brasileiro para gettext-example +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Rafael Fontenelle , 2013-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:24-0300\n" +"Last-Translator: Rafael Fontenelle \n" +"Language-Team: Brazilian Portuguese \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" +"X-Generator: Gtranslator 48.0\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Este programa está sendo executado com número de processo {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ro.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..fee00fdce7e2050d51436079035851bc3a4a8200 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-c++20" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-c++20. +# Copyright © 2015, 2019, 2022, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Eugen Hoancă , 2003. +# Mihai Cristescu , 2015 - 2019. +# Remus-Gabriel Chelu , 2022 - 2025. +# +# Cronologia traducerii fișierului „hello-c++20”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-c++20 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-c++20 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-c++20 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-c++20 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-c++20-0.20.2.pot”. +# Actualizare a algoritmului formelor de plural (de la „trei-vechi” la „trei-actual”). +# NU și a mesajelor traduse (acestea au rămas neschimbate). +# Eliminare a mesajelor ce-au dispărut în ultima versiune. +# Actualizări realizate de Remus-Gabriel Chelu , 15.01.2022. +# Actualizare a traducerii pentru versiunea 0.20.2 făcută de R-GC, ian-2022. +# Actualizare a traducerii pentru versiunea 0.22 făcută de R-GC, iun-2023. +# Revizuire și corectare a traducerii pentru versiunea 0.23-pre1 făcută de R-GC, oct-2024. +# Actualizare a traducerii pentru versiunea 0.24-pre1 făcută de R-GC, feb-2025. +# Actualizare a traducerii pentru versiunea 0.25-pre1 făcută de R-GC, apr-2025. +# Actualizare a traducerii pentru versiunea Y, făcută de X, Z(luna-anul). +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 00:25+0200\n" +"Last-Translator: Remus-Gabriel Chelu \n" +"Language-Team: Romanian \n" +"Language: ro\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==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Acest program rulează ca procesul numărul {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ru.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..8e3210a5a804bd40791e7bdf79a9fc752f937601 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-c++20-0.14.1.po to Russian +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Pavel Maryanov , 2004. +# SPDX-FileCopyrightText: 2014, 2015, 2023, 2025 Yuri Kozlov +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-02 09:17+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Lokalize 24.12.0\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" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Эта программа выполняется как процесс под номером {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/sk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..1c17fb97eec2a66c970609575d7a9849a3f72aa5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-c++20 package. +# Copyright (C) 2003, 2004, 2014, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Marcel Telka , 2003, 2004, 2014, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c++20 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:53+0200\n" +"Last-Translator: Marcel Telka \n" +"Language-Team: Slovak \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Tento program beží ako proces s číslom {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/sl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..605965d5d5deaf795dc031fd42e9160f11e60aff --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/sl.po @@ -0,0 +1,29 @@ +# -*- mode: po; coding: utf-8; -*- Slovenian message catalog for GNU gettext-example +# Copyright (C) 2005 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Primož Peterlin , 2005, 2014, 2015, 2024. +# $Id: hello-c++20-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-03-28 18:02+0100\n" +"Last-Translator: Primož Peterlin \n" +"Language-Team: Slovenian \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " +"n%100==4 ? 3 : 0);\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Ta program teče kot proces številka {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/sq.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..81eda06b61b7fb3607d99c405e2aded222df7288 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/sq.po @@ -0,0 +1,28 @@ +# Albanian translation of gettext-example. +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Besnik Bleta , 2020,2023,2024,2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20-0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:56+0300\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.2.2\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Ky program po xhiron si procesi numër {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/sr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..1ea127534f5333c09f153707f49b94475c83a233 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-c++20. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Aleksandar Jelenak , 2004. +# Мирослав Николић , 2014-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-02 16:51+0100\n" +"Last-Translator: Мирослав Николић \n" +"Language-Team: Serbian <(nothing)>\n" +"Language: sr\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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Овај програм се извршава као процес број {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/sv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..2584de11a62cc57ee364f82b7f632922e7ff7b28 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-c++20. +# Copyright © 2006, 2014, 2016, 2019, 2020, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Jan Djärv , 2003, 2006, 2014. +# Göran Uddeborg , 2016, 2019, 2020, 2023, 2024, 2025. +# Luna Jernberg , 2025. +# $Revision: 1.12 $ +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 12:18+0200\n" +"Last-Translator: Luna Jernberg \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Detta program kör som process nummer {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ta.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..b78ef9ea0fb9cf5ee5428df5aab87e93ffcfce85 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/ta.po @@ -0,0 +1,28 @@ +# Tamil messages for GNU gettext. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# List of contributors follow: +# Poorajith , 2018. +# Arun Isaac , 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-19 00:06+0100\n" +"Last-Translator: Arun Isaac \n" +"Language-Team: Tamil \n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "இந்நிரல் செயலாக்க எண் {:d} ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/tr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..5e9713f0415d0c0093795ebbeca80539e711fdc0 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-c++20. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2017 Yoyodyne, Inc. (msgids) +# Copyright (C) 2004 Free Software Foundation, Inc. +# Nilgün Belma Bugüner , 2003,2004 +# Mehmet Kececi , 2017, 2019, 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-04-17 13:10+0300\n" +"Last-Translator: Mehmet Kececi \n" +"Language-Team: Turkish \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" +"X-Generator: Poedit 2.3\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.cc:50 hello.cc:53 +#, fuzzy, c++-format +msgid "This program is running as process number {:d}." +msgstr "Bu program işlem numarası {pid} olarak çalışıyor." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/uk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..292423cd1bda22da730ae402cb37404d0c6aa5a5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-c++20 +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Maxim V. Dziumanenko , 2004-2007. +# Yuri Chornoivan , 2014, 2015, 2023, 2025. +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:56+0300\n" +"Last-Translator: Yuri Chornoivan \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\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" +"X-Generator: Lokalize 23.04.3\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Ця програма виконується як процес з номером {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/vi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..2d41242e48223170cb7761e4f1aac2fdeca341d5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/vi.po @@ -0,0 +1,30 @@ +# Vietnamese Translation for Gettext Examples. +# Bản dịch tiếng Việt dành cho các ví dụ của gói gettext. +# Copyright © 2015 Yoyodyne, Inc. (msgids) +# Copyright © 2015 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Clytie Siddall , 2005-2010. +# Trần Ngọc Quân , 2012-2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-24 09:10+0700\n" +"Last-Translator: Trần Ngọc Quân \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "Chương trình này đang chạy với mã số tiến trình {:d}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/zh_CN.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..218e2d580a50114f80fb718845ccaeb76e40e0b0 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-c++20. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Funda Wang , 2003. +# Ji ZhengYu , 2015. +# Boyuan Yang <073plan@gmail.com>, 2019, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 15:56-0400\n" +"Last-Translator: Boyuan Yang <073plan@gmail.com>\n" +"Language-Team: Chinese (simplified) \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "此程序正以进程号 {:d} 运行。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/zh_HK.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..099f815d0f1d0fb6c0148fb34aa77d923d9394d3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-c++20. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-07-05 15:40+0800\n" +"Last-Translator: Abel Cheung \n" +"Language-Team: Chinese (Hong Kong) \n" +"Language: zh_HK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "你好!" + +#: hello.cc:50 hello.cc:53 +#, fuzzy, c++-format +msgid "This program is running as process number {:d}." +msgstr "本程式正在執行中,進程編號為 {pid}。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/zh_TW.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..1f98aa78f9c32f86a337b489ea43478f0156a305 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c++20/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-c++20. +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Abel Cheung , 2005. +# Wei-Lun Chao , 2013, 2015. +# Yi-Jyun Pan , 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c++20 0.23-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-11-30 14:14+0800\n" +"Last-Translator: Yi-Jyun Pan \n" +"Language-Team: Chinese (traditional) \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cc:48 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.cc:50 hello.cc:53 +#, c++-format +msgid "This program is running as process number {:d}." +msgstr "本程式正在執行,行程編號為 {:d}。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/INSTALL b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..6a6db9af5fef1f1ecd455d7d7ed006740784a189 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/INSTALL @@ -0,0 +1,16 @@ +This example relies on: + - the GNOME libraries (libgnomeui, libgnome, libgnomesupport, libart_lgpl) + and their dependencies: imlib (libgdk_imlib), audiofile (libaudiofile), + esound (libesd), zlib (libz). + - the GTK libraries (libgtk, libgdk) + - the glib libraries (libglib, libgmodule) + - the X11 libraries + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..ef6ea73250026e3dcd9731d664887c5fbb8382f3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/Makefile.am @@ -0,0 +1,29 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# General automake options. +AUTOMAKE_OPTIONS = foreign no-dependencies +ACLOCAL_AMFLAGS = -I m4 + +# The list of subdirectories containing Makefiles. +SUBDIRS = m4 po + +# The list of programs that are built. +bin_PROGRAMS = hello + +# The source files of the 'hello' program. +hello_SOURCES = hello.c + +# Define a C macro LOCALEDIR indicating where catalogs will be installed. +DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ + +# Make sure the gnome.h include file is found. +AM_CPPFLAGS = $(GNOME_INCLUDEDIR) + +# Link time dependencies. +LDADD = $(GNOME_LIBDIR) $(GNOMEUI_LIBS) @LIBINTL@ + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/autoclean.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..9b8332fb282055fcc13b321d80e7054f54000af8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/autoclean.sh @@ -0,0 +1,43 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for cleaning all autogenerated files. + +test ! -f Makefile || make distclean +rm -rf autom4te.cache + +# Brought in by autopoint. +rm -f ABOUT-NLS +rm -f config.rpath +rm -f m4/gettext.m4 +rm -f m4/build-to-host.m4 +rm -f m4/host-cpu-c-abi.m4 +rm -f m4/iconv.m4 +rm -f m4/intlmacosx.m4 +rm -f m4/lib-ld.m4 +rm -f m4/lib-link.m4 +rm -f m4/lib-prefix.m4 +rm -f m4/nls.m4 +rm -f m4/po.m4 +rm -f m4/progtest.m4 +rm -f po/Makefile.in.in +rm -f po/remove-potcdate.sed + +# Generated by aclocal. +rm -f aclocal.m4 + +# Generated by autoconf. +rm -f configure + +# Generated or brought in by automake. +rm -f Makefile.in +rm -f m4/Makefile.in +rm -f compile +rm -f install-sh +rm -f missing +rm -f config.guess +rm -f config.sub +rm -f po/*.pot +rm -f po/stamp-po +rm -f po/*.gmo diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/autogen.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..cf1a97eec3ac424bd16d58e77382be46b3015993 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/autogen.sh @@ -0,0 +1,29 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for regenerating all autogenerated files. + +autopoint -f # was: gettextize -f -c +rm po/Makevars.template +rm po/Rules-quot +rm po/boldquot.sed +rm po/en@boldquot.header +rm po/en@quot.header +rm po/insert-header.sed +rm po/quot.sed + +aclocal -I m4 + +autoconf + +automake -a -c + +cd po +for f in *.po; do + if test -r "$f"; then + lang=`echo $f | sed -e 's,\.po$,,'` + msgfmt -c -o $lang.gmo $lang.po + fi +done +cd .. diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/configure.ac b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..aed4720ca768a796e72c8aa0fcda51e7cd1b428d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/configure.ac @@ -0,0 +1,18 @@ +dnl Example for use of GNU gettext. +dnl This file is in the public domain. +dnl +dnl Configuration file - processed by autoconf. + +AC_INIT([hello-c-gnome2], [0]) +AC_CONFIG_SRCDIR([hello.c]) +AM_INIT_AUTOMAKE([1.11]) + +AC_PROG_CC +GNOME_INIT +AM_GNU_GETTEXT([external]) +AM_GNU_GETTEXT_VERSION([0.25]) + +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile.in]) +AC_OUTPUT diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/hello.c b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/hello.c new file mode 100644 index 0000000000000000000000000000000000000000..a46defb1a9a0a08759e32e27e49ef4c15d7c5f38 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/hello.c @@ -0,0 +1,92 @@ +/* Example for use of GNU gettext. + This file is in the public domain. + + Source code of the C program. */ + + +/* Get GNOME declarations. */ +#include + +/* Get getpid() declaration. */ +#if defined _WIN32 && !defined __CYGWIN__ +/* native Windows API */ +# include +# define getpid _getpid +#else +/* POSIX API */ +# include +#endif + +static void +quit_callback (GtkWidget *widget, void *data) +{ + gtk_main_quit (); +} + +int +main (int argc, char *argv[]) +{ + GtkWidget *window; + GtkWidget *panel; + GtkWidget *label1; + GtkWidget *label1aligned; + GtkWidget *label2; + GtkWidget *label2aligned; + GtkWidget *button; + GtkWidget *buttonbar; + + /* Initializations. */ + + gnome_init (PACKAGE, VERSION, argc, argv); + textdomain ("hello-c-gnome2"); + bindtextdomain ("hello-c-gnome2", LOCALEDIR); + + /* Create the GUI elements. */ + + window = gnome_app_new ("hello-c-gnome", "Hello example"); + gtk_widget_realize (window); + gtk_signal_connect (GTK_OBJECT (window), "delete_event", + GTK_SIGNAL_FUNC (quit_callback), NULL); + + label1 = gtk_label_new (_("Hello, world!")); + + label1aligned = gtk_alignment_new (0.0, 0.5, 0, 0); + gtk_container_add (GTK_CONTAINER (label1aligned), label1); + + label2 = gtk_label_new (g_strdup_printf (_("This program is running as process number %d."), getpid ())); + + label2aligned = gtk_alignment_new (0.0, 0.5, 0, 0); + gtk_container_add (GTK_CONTAINER (label2aligned), label2); + + button = gtk_button_new_with_label ("OK"); + gtk_signal_connect (GTK_OBJECT (button), "clicked", + GTK_SIGNAL_FUNC (quit_callback), NULL); + + buttonbar = gtk_hbutton_box_new (); + gtk_button_box_set_layout (GTK_BUTTON_BOX (buttonbar), GTK_BUTTONBOX_END); + gtk_box_pack_start_defaults (GTK_BOX (buttonbar), button); + + panel = gtk_vbox_new (FALSE, GNOME_PAD_SMALL); + gtk_box_pack_start_defaults (GTK_BOX (panel), label1aligned); + gtk_box_pack_start_defaults (GTK_BOX (panel), label2aligned); + gtk_box_pack_start_defaults (GTK_BOX (panel), buttonbar); + + gnome_app_set_contents (GNOME_APP (window), panel); + + /* Make the GUI elements visible. */ + + gtk_widget_show (label1); + gtk_widget_show (label1aligned); + gtk_widget_show (label2); + gtk_widget_show (label2aligned); + gtk_widget_show (button); + gtk_widget_show (buttonbar); + gtk_widget_show (panel); + gtk_widget_show (window); + + /* Start the event loop. */ + + gtk_main (); + + return 0; +} diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/m4/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..c79c5b179662c8bd87d2e36101638f9a1e1615d5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/m4/Makefile.am @@ -0,0 +1,5 @@ +EXTRA_DIST = \ + gettext.m4 build-to-host.m4 host-cpu-c-abi.m4 \ + iconv.m4 intlmacosx.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 \ + nls.m4 po.m4 progtest.m4 \ + gnome.m4 gnome-gnorba-check.m4 gnome-orbit-check.m4 diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/m4/gnome-gnorba-check.m4 b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/m4/gnome-gnorba-check.m4 new file mode 100644 index 0000000000000000000000000000000000000000..dbac0a6cf75be4e9560f4653eed1437962b07710 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/m4/gnome-gnorba-check.m4 @@ -0,0 +1,35 @@ +dnl +dnl GNOME_GNORBA_HOOK (script-if-gnorba-found, failflag) +dnl +dnl if failflag is "failure" it aborts if gnorba is not found. +dnl + +AC_DEFUN([GNOME_GNORBA_HOOK],[ + GNOME_ORBIT_HOOK([],$2) + AC_CACHE_CHECK([for gnorba libraries],gnome_cv_gnorba_found,[ + gnome_cv_gnorba_found=no + if test x$gnome_cv_orbit_found = xyes; then + GNORBA_CFLAGS="`gnome-config --cflags gnorba gnomeui`" + GNORBA_LIBS="`gnome-config --libs gnorba gnomeui`" + if test -n "$GNORBA_LIBS"; then + gnome_cv_gnorba_found=yes + fi + fi + ]) + AM_CONDITIONAL(HAVE_GNORBA, test x$gnome_cv_gnorba_found = xyes) + if test x$gnome_cv_orbit_found = xyes; then + $1 + GNORBA_CFLAGS="`gnome-config --cflags gnorba gnomeui`" + GNORBA_LIBS="`gnome-config --libs gnorba gnomeui`" + AC_SUBST(GNORBA_CFLAGS) + AC_SUBST(GNORBA_LIBS) + else + if test x$2 = xfailure; then + AC_MSG_ERROR(gnorba library not installed or installation problem) + fi + fi +]) + +AC_DEFUN([GNOME_GNORBA_CHECK], [ + GNOME_GNORBA_HOOK([],failure) +]) diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/m4/gnome-orbit-check.m4 b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/m4/gnome-orbit-check.m4 new file mode 100644 index 0000000000000000000000000000000000000000..54bf33aa4ba585bdb409732799b2f50f4f773a83 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/m4/gnome-orbit-check.m4 @@ -0,0 +1,33 @@ +dnl +dnl GNOME_ORBIT_HOOK (script-if-orbit-found, failflag) +dnl +dnl if failflag is "failure" it aborts if orbit is not found. +dnl + +AC_DEFUN([GNOME_ORBIT_HOOK],[ + AC_PATH_PROG(ORBIT_CONFIG,orbit-config,no) + AC_PATH_PROG(ORBIT_IDL,orbit-idl,no) + AC_CACHE_CHECK([for working ORBit environment],gnome_cv_orbit_found,[ + if test x$ORBIT_CONFIG = xno -o x$ORBIT_IDL = xno; then + gnome_cv_orbit_found=no + else + gnome_cv_orbit_found=yes + fi + ]) + AM_CONDITIONAL(HAVE_ORBIT, test x$gnome_cv_orbit_found = xyes) + if test x$gnome_cv_orbit_found = xyes; then + $1 + ORBIT_CFLAGS=`orbit-config --cflags client server` + ORBIT_LIBS=`orbit-config --use-service=name --libs client server` + AC_SUBST(ORBIT_CFLAGS) + AC_SUBST(ORBIT_LIBS) + else + if test x$2 = xfailure; then + AC_MSG_ERROR(ORBit not installed or installation problem) + fi + fi +]) + +AC_DEFUN([GNOME_ORBIT_CHECK], [ + GNOME_ORBIT_HOOK([],failure) +]) diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/m4/gnome.m4 b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/m4/gnome.m4 new file mode 100644 index 0000000000000000000000000000000000000000..659c22c4942dc3411e8cd9a03df2346e2af760b6 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/m4/gnome.m4 @@ -0,0 +1,128 @@ +dnl +dnl GNOME_INIT_HOOK (script-if-gnome-enabled, [failflag], [additional-inits]) +dnl +dnl if failflag is "fail" then GNOME_INIT_HOOK will abort if gnomeConf.sh +dnl is not found. +dnl + +AC_DEFUN([GNOME_INIT_HOOK],[ + AC_SUBST(GNOME_LIBS) + AC_SUBST(GNOMEUI_LIBS) + AC_SUBST(GNOMEGNORBA_LIBS) + AC_SUBST(GTKXMHTML_LIBS) + AC_SUBST(ZVT_LIBS) + AC_SUBST(GNOME_LIBDIR) + AC_SUBST(GNOME_INCLUDEDIR) + + AC_ARG_WITH(gnome-includes, + [ --with-gnome-includes Specify location of GNOME headers],[ + CFLAGS="$CFLAGS -I$withval" + ]) + + AC_ARG_WITH(gnome-libs, + [ --with-gnome-libs Specify location of GNOME libs],[ + LDFLAGS="$LDFLAGS -L$withval" + gnome_prefix=$withval + ]) + + AC_ARG_WITH(gnome, + [ --with-gnome Specify prefix for GNOME files], + if test x$withval = xyes; then + want_gnome=yes + dnl Note that an empty true branch is not + dnl valid sh syntax. + ifelse([$1], [], :, [$1]) + else + if test "x$withval" = xno; then + want_gnome=no + else + want_gnome=yes + LDFLAGS="$LDFLAGS -L$withval/lib" + CFLAGS="$CFLAGS -I$withval/include" + gnome_prefix=$withval/lib + fi + fi, + want_gnome=yes) + + if test "x$want_gnome" = xyes; then + + AC_PATH_PROG(GNOME_CONFIG,gnome-config,no) + if test "$GNOME_CONFIG" = "no"; then + no_gnome_config="yes" + else + AC_MSG_CHECKING(if $GNOME_CONFIG works) + if $GNOME_CONFIG --libs-only-l gnome >/dev/null 2>&1; then + AC_MSG_RESULT(yes) + GNOME_GNORBA_HOOK([],$2) + GNOME_LIBS="`$GNOME_CONFIG --libs-only-l gnome`" + GNOMEUI_LIBS="`$GNOME_CONFIG --libs-only-l gnomeui`" + GNOMEGNORBA_LIBS="`$GNOME_CONFIG --libs-only-l gnorba gnomeui`" + GTKXMHTML_LIBS="`$GNOME_CONFIG --libs-only-l gtkxmhtml`" + ZVT_LIBS="`$GNOME_CONFIG --libs-only-l zvt`" + GNOME_LIBDIR="`$GNOME_CONFIG --libs-only-L gnorba gnomeui`" + GNOME_INCLUDEDIR="`$GNOME_CONFIG --cflags gnorba gnomeui`" + $1 + else + AC_MSG_RESULT(no) + no_gnome_config="yes" + fi + fi + + if test x$exec_prefix = xNONE; then + if test x$prefix = xNONE; then + gnome_prefix=$ac_default_prefix/lib + else + gnome_prefix=$prefix/lib + fi + else + gnome_prefix=`eval echo \`echo $libdir\`` + fi + + if test "$no_gnome_config" = "yes"; then + AC_MSG_CHECKING(for gnomeConf.sh file in $gnome_prefix) + if test -f $gnome_prefix/gnomeConf.sh; then + AC_MSG_RESULT(found) + echo "loading gnome configuration from" \ + "$gnome_prefix/gnomeConf.sh" + . $gnome_prefix/gnomeConf.sh + $1 + else + AC_MSG_RESULT(not found) + if test x$2 = xfail; then + AC_MSG_ERROR(Could not find the gnomeConf.sh file that is generated by gnome-libs install) + fi + fi + fi + fi + + if test -n "$3"; then + n="$3" + for i in $n; do + AC_MSG_CHECKING(extra library \"$i\") + case $i in + applets) + AC_SUBST(GNOME_APPLETS_LIBS) + GNOME_APPLETS_LIBS=`$GNOME_CONFIG --libs-only-l applets` + AC_MSG_RESULT($GNOME_APPLETS_LIBS);; + docklets) + AC_SUBST(GNOME_DOCKLETS_LIBS) + GNOME_DOCKLETS_LIBS=`$GNOME_CONFIG --libs-only-l docklets` + AC_MSG_RESULT($GNOME_DOCKLETS_LIBS);; + capplet) + AC_SUBST(GNOME_CAPPLET_LIBS) + GNOME_CAPPLET_LIBS=`$GNOME_CONFIG --libs-only-l capplet` + AC_MSG_RESULT($GNOME_CAPPLET_LIBS);; + *) + AC_MSG_RESULT(unknown library) + esac + done + fi +]) + +dnl +dnl GNOME_INIT ([additional-inits]) +dnl + +AC_DEFUN([GNOME_INIT],[ + GNOME_INIT_HOOK([],fail,$1) +]) diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/LINGUAS b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/LINGUAS @@ -0,0 +1,5 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Set of available languages. +af ast bg ca cs da de el eo es fi fr ga gl hr hu id it ja ka ky lv ms mt nb nl nn pl pt pt_BR ro ru sk sl sq sr sv ta tr uk vi zh_CN zh_HK zh_TW diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/Makevars b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/Makevars new file mode 100644 index 0000000000000000000000000000000000000000..c3f465c6825fc1a1d5a5cc56fbf52ae4727db0a3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/Makevars @@ -0,0 +1,95 @@ +# Makefile variables for PO directory in any package using GNU gettext. +# +# Copyright (C) 2003-2025 Free Software Foundation, Inc. +# This file is free software; the Free Software Foundation gives +# unlimited permission to use, copy, distribute, and modify it. + +# Usually the message domain is the same as the package name. +DOMAIN = $(PACKAGE) + +# These two variables depend on the location of this directory. +subdir = po +top_builddir = .. + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = \ + --keyword=_ --flag=_:1:pass-c-format \ + --keyword=N_ --flag=N_:1:pass-c-format \ + --flag=g_log:3:c-format --flag=g_logv:3:c-format \ + --flag=g_error:1:c-format --flag=g_message:1:c-format \ + --flag=g_critical:1:c-format --flag=g_warning:1:c-format \ + --flag=g_print:1:c-format \ + --flag=g_printerr:1:c-format \ + --flag=g_strdup_printf:1:c-format --flag=g_strdup_vprintf:1:c-format \ + --flag=g_printf_string_upper_bound:1:c-format \ + --flag=g_snprintf:3:c-format --flag=g_vsnprintf:3:c-format \ + --flag=g_string_sprintf:2:c-format \ + --flag=g_string_sprintfa:2:c-format \ + --flag=g_scanner_error:2:c-format \ + --flag=g_scanner_warn:2:c-format + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgid strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Yoyodyne, Inc. + +# This tells whether or not to prepend "GNU " prefix to the package +# name that gets inserted into the header of the $(DOMAIN).pot file. +# Possible values are "yes", "no", or empty. If it is empty, try to +# detect it automatically by scanning the files in $(top_srcdir) for +# "GNU packagename" string. +PACKAGE_GNU = no + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = bug-gettext@gnu.org + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = + +# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt' +# context. Possible values are "yes" and "no". Set this to yes if the +# package uses functions taking also a message context, like pgettext(), or +# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument. +USE_MSGCTXT = no + +# These options get passed to msgmerge. +# Useful options are in particular: +# --previous to keep previous msgids of translated messages +MSGMERGE_OPTIONS = + +# These options get passed to msginit. +# If you want to disable line wrapping when writing PO files, add +# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and +# MSGINIT_OPTIONS. +MSGINIT_OPTIONS = + +# This tells whether or not to regenerate a PO file when $(DOMAIN).pot +# has changed. Possible values are "yes" and "no". Set this to no if +# the POT file is checked in the repository and the version control +# program ignores timestamps. +PO_DEPENDS_ON_POT = yes + +# This tells whether or not to forcibly update $(DOMAIN).pot and +# regenerate PO files on "make dist". Possible values are "yes" and +# "no". Set this to no if the POT file and PO files are maintained +# externally. +DIST_DEPENDS_ON_UPDATE_PO = yes diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/POTFILES.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/POTFILES.in new file mode 100644 index 0000000000000000000000000000000000000000..92cdf7897032b86aa6efaaf3d3f2ed012c37f246 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/POTFILES.in @@ -0,0 +1,5 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# List of files which contain translatable strings. +hello.c diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/af.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..03e00c402dea1efe368b580b5bbe28efba06d829 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/af.po @@ -0,0 +1,26 @@ +# Afrikaans translation for Silky +# Copyright (C) 2004 Free Software Foundation, Inc. +# This file is distributed under the same license as the silky package. +# Hanlie Pretorius , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2-0.13.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2003-12-31 10:30+2\n" +"Last-Translator: Ysbeer \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Hierdie program loop as prosesnommer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ast.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..b4d33ef969503e4edec43a914668125e470e2526 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-c-gnome2 +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marquinos , 2009. +# enolp , 2018. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-07-16 00:28+0100\n" +"Last-Translator: enolp \n" +"Language-Team: Asturian \n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 2.0\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Esti programa ta executándose como procesu númberu %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/bg.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..9c6a24c6a262b88479a51e0fb525772756f4ebb7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-c-gnome2 package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Roumen Petrov , 2010,2014,2015,2019,2023,2024.2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-gnome2 0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-08 19:09+0200\n" +"Last-Translator: Roumen Petrov \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Програмата е пусната под процес номер %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ca.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..0613c252e68ac0ebef48a9e5faf945f97464150c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-c-gnome2. +# Copyright (C) 2003, 2014, 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ivan Vilata i Balaguer , 2003, 2014, 2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-07-07 08:36+0200\n" +"Last-Translator: Ivan Vilata i Balaguer \n" +"Language-Team: Catalan \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Aquest programa està corrent amb el número de procés %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/cs.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..df9c2af930005ecfb4438f7e35808e4aa06a307e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/cs.po @@ -0,0 +1,29 @@ +# The Czech translation for the gettext package. +# Copyright (C) 2011 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marek Černocký , 2011. +# Petr Písař , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 20:05+02:00\n" +"Last-Translator: Petr Pisar \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Tento program běží jako proces číslo %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/da.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..825595bb319992d59740781d251b49f2941c8c94 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-c-gnome2. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Jan Djærv , 2003, 2006. +# Keld Simonsen , 2011. +# Joe Hansen , 2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-27 12:39+0100\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Dette program kører som proces nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/de.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..ad742d136d7da1191dc525fba9cf7609a6185899 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-c-gnome2. +# Copyright © 2003, 2013 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Bruno Haible , 2003. +# Karl Eichwalder , 2003. +# Jakob Kramer , 2013. +# Mario Blättermann , 2014, 2023, 2025. +# Philipp Thomas , 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 17:15+0200\n" +"Last-Translator: Mario Blättermann \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 25.04.0\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Dieses Programm läuft mit der Prozess-Nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/el.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..ff7e67490816bdcac890e2184bb5f6318114f62a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-c-gnome2 +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.14.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2005-01-06 18:50+0000\n" +"Last-Translator: Simos Xenitellis \n" +"Language-Team: Greek \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.3.1\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/eo.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..705d78e5a28fa5fd8d459774514c48c6eac171d3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/eo.po @@ -0,0 +1,28 @@ +# La teksto por la mesaĝoj de la programo "gettext". +# Copyright (C) 2006, 2016 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Edmund GRIMLEY EVANS , 2006. +# Felipe CASTRO , 2016, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-23 19:00-0300\n" +"Last-Translator: Felipe Castro \n" +"Language-Team: Esperanto \n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Ĉi tiu programo rulas kiel procez-numero %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/es.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..ffcce09b2202b4f558dbc891f7b2c9f35f0d1c18 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/es.po @@ -0,0 +1,30 @@ +# Mensajes en español para GNU gettext. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# This file is distributed under the same license as the gettext package. +# +# Max de Mendizábal , 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004. +# Antonio Ceballos , 2014, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-02-23 17:01+0100\n" +"Last-Translator: Antonio Ceballos \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Este programa está corriendo como el proceso número %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/fi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..ee956a4a51a2599aa2a59c57939bd52b34a0cc88 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/fi.po @@ -0,0 +1,29 @@ +# Finnish messages for GNU Gettext examples. +# This file is distributed under the same license as the gettext package. +# Copyright © 2007, 2014, 2015 Yoyodyne, Inc. (msgids) +# Lauri Nurmi , 2007. +# Jorma Karvonen , 2014-2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-09-01 16:59+0300\n" +"Last-Translator: Jorma Karvonen \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 1.5.4\n" + +# Tämä nimenomainen käännös valittu GNU Hellon mukaisesti. +#: hello.c:51 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Tämän ohjelman prosessinumero on %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/fr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..4c05cea6565b60b505fe7bb100226ea7683a91eb --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/fr.po @@ -0,0 +1,32 @@ +# Messages français pour GNU gettext. +# Copyright (C) 2006 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Michel Robitaille , 2006. +# Christophe Combelles , 2006 +# Stéphane Aulery , 2015 +# Christian Wiatr , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-28 16:25+0200\n" +"Last-Translator: Christian Wiatr \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Ce programme est exécuté en tant que processus numéro %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ga.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..244e42dc8f984228e456d90e4bf92d1b75b1868d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-c-gnome2. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Kevin Patrick Scannell , 2004, 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2017-01-10 12:09-0500\n" +"Last-Translator: Kevin Patrick Scannell \n" +"Language-Team: Irish \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Tá an clár seo ag rith mar phróiseas %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/gl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..6a8e72aa7de641799d3ddd87306e0b0004848cef --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-c-gnome2 package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Leandro Regueiro , 2010-2014. +# +# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas +# colaborar connosco, podes atopar máis información en +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.19-rc1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2014-05-10 16:34+0100\n" +"Last-Translator: Leandro Regueiro \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Este programa estase executando como o proceso número %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/hr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..e386c90c953cbe08a0b970b75a6b78a221ff52c8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-c-gnome2 to Croatian. +# Copyright (C) 2003, 2004, 2014, 2015, 2019 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Permission is granted to freely copy and distribute +# this file and modified versions, provided that this +# header is not removed and modified versions are marked +# as such. +# +# Tomislav Krznar , 2012. +# Božidar Putanec , 2018-2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-gnome2 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:15-0700\n" +"Last-Translator: Božidar Putanec \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Ovaj program se izvršava kao proces broj %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/hu.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..61e4e6bdfeb0395ee415ceddb75bc651425db82a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-c-gnome2. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# Tamás Kiss , 2005. +# Balázs Úr , 2014, 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-23 20:31+0200\n" +"Last-Translator: Balázs Úr \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 1.2\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Ez a program a(z) %d folyamatazonosítóval fut." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/id.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..0e227e3312c866be7312a57d87664d4b2e9fe2a5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-c-gnome2-0.15-pre5.po to Indonesian +# Copyright (C) 2006 Yoyodyne, Inc. +# This file is distributed under the same license as the PACKAGE package. +# +# Tedi Heriyanto , 2006. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2-0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-09-27 20:19+0700\n" +"Last-Translator: Tedi Heriyanto \n" +"Language-Team: Indonesian \n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.11.2\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Program ini berjalan sebagai proses nomor %d" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/it.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..c6792b160f56cc7a875513420e2fd1cd81540a59 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-c-gnome2. +# Copyright (C) 2005, 2006 Yoyodyne, Inc. (msgids) +# Copyright (C) 2024 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Marco Colombo , 2005, 2006, 2015. +# Michele Locati , 2024, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-gnome2 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-04 18:28+0200\n" +"Last-Translator: Michele Locati \n" +"Language-Team: Italian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Questo programma è in esecuzione con numero di processo %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ja.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..ca85234f36e6fd788bf9c6e042b52842912026a9 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-c-gnome2' messages to Japanese. +# Copyright (C) 2005, 2006, 2014, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Masahito Yamaga , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-gnome2 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:59+0900\n" +"Last-Translator: Masahito Yamaga \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "このプログラムはプロセス番号 %d で動いています." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ka.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..f162ed3a1813ec76b09de9d4483557452b19f521 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ka.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Temuri Doghonadze , 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2022-05-22 05:04+0200\n" +"Last-Translator: Temuri Doghonadze \n" +"Language-Team: Georgian <(nothing)>\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0.1\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ky.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..aa58ab89aace03b994ed6db29d0bc1fba6b1794c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-c-gnome2' messages to Kirghiz. +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ilyas Bakirov , 2007. +# Ilyas Bakirov , 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-02-15 18:26+0600\n" +"Last-Translator: Ilyas Bakirov \n" +"Language-Team: Kirghiz \n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.0.6\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Бул программа %d процесс номери катары иштеп жатат." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/lv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..a88de832d8fe89c26f20bb8571a058f9ac115b77 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-c-gnome2 +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Arvis Lācis , 2009. +# Rihards Priedītis , 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-09 11:44+0000\n" +"Last-Translator: Rihards Priedītis \n" +"Language-Team: Latvian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Šī programma darbojas ar procesa numuru %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ms.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..99ef40d08a6cb8b1d2238f838e8fe982ac452ef5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ms.po @@ -0,0 +1,28 @@ +# hello-c-gnome2 Bahasa Melayu (Malay) (ms). +# Copyright (C) 2006, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2006, 2015, 2023, 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Sharuzzaman Ahmat Raslan , 2006, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-03 21:10+0800\n" +"Last-Translator: Sharuzzaman Ahmat Raslan \n" +"Language-Team: Malay \n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Program ini dilaksanakan sebagai proses bernombor %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/mt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..3c7ef9e824650710ebd4980749cfe3fd17154033 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/mt.po @@ -0,0 +1,27 @@ +# hello-c-gnome2-0.16.2-pre5. +# Copyright (C) 2008 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Clyde Meli , 2001-2008. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.16.2-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2008-11-18 17:27+0100\n" +"Last-Translator: Clyde Meli \n" +"Language-Team: Maltese \n" +"Language: mt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Dal-programm qed jaħdem taħt il-proċess numru %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/nb.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..cc7f4bef520dfb2d627a9d7c7c3047fde4f5a293 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-c-gnome2 package. +# Copyright (C) 2012 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Johnny A. Solbu , 2012-2024 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-01-06 16:33+0100\n" +"Last-Translator: Johnny A. Solbu \n" +"Language-Team: Norwegian Bokmaal \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Dette programmet kjører som prosess nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/nl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..bc53527fc331797a2d77aef95db5c8ea278fdef8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-c-gnome2. +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# "There are three basic rules for writing a novel. +# Unfortunately nobody knows what they are." +# +# Benno Schulenberg , 2007, 2014, 2015, 2019, 2025. +# Elros Cyriatan , 2004. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-01 14:51+0100\n" +"Last-Translator: Benno Schulenberg \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Dit programma draait als proces nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/nn.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..1708da41574f6f87e902f42cce25129147125e5e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-c-gnome2 +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Karl Ove Hufthammer , 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2-0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-05-04 18:58+0200\n" +"Last-Translator: Karl Ove Hufthammer \n" +"Language-Team: Norwegian Nynorsk \n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 20.04.0\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Dette programmet køyrer som prosess nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/pl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..a6a1140c9ceac8a6dca585122e3f385611ae72bf --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-c-gnome2 domain +# Copyright (C) 2010, 2014, 2015, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Rafał Maszkowski , 2003, 2010, 2014, 2015, 2025 +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-gnome2 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-25 17:16+0200\n" +"Last-Translator: Rafał Maszkowski \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Ten program działa jako proces o numerze %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/pt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..2839d113602a125e0eaf4a7bbaa72c88859b53ae --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-c-gnome2' package. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Pedro Albuquerque , 2019, 2020, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 11:24+0100\n" +"Last-Translator: Pedro Albuquerque \n" +"Language-Team: Portuguese \n" +"Language: 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;\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Este programa está em execução como processo nº %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/pt_BR.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..d282f1ed51e0fb0120148231df139012a3be3c5e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/pt_BR.po @@ -0,0 +1,31 @@ +# Brazilian Portuguese translations for gettext-example +# Traduções em português brasileiro para gettext-example +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Rafael Fontenelle , 2013-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:24-0300\n" +"Last-Translator: Rafael Fontenelle \n" +"Language-Team: Brazilian Portuguese \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" +"X-Generator: Gtranslator 48.0\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Este programa está sendo executado com número de processo %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ro.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..272dcdb86fa602435b2697ed81fff26dd6a42877 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-c-gnome2" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-c-gnome2. +# Copyright © 2015, 2019, 2022, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Eugen Hoancă , 2003. +# Mihai Cristescu , 2015 - 2019. +# Remus-Gabriel Chelu , 2022 - 2025. +# +# Cronologia traducerii fișierului „hello-c-gnome2”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-c-gnome2 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-c-gnome2 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-c-gnome2 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-c-gnome2 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-c-gnome2-0.20.2.pot”. +# Actualizare a algoritmului formelor de plural (de la „trei-vechi” la „trei-actual”). +# NU și a mesajelor traduse (acestea au rămas neschimbate). +# Eliminare a mesajelor ce-au dispărut în ultima versiune. +# Actualizări realizate de Remus-Gabriel Chelu , 15.01.2022. +# Actualizare a traducerii pentru versiunea 0.20.2 făcută de R-GC, ian-2022. +# Actualizare a traducerii pentru versiunea 0.22 făcută de R-GC, iun-2023. +# Revizuire și corectare a traducerii pentru versiunea 0.23-pre1 făcută de R-GC, oct-2024. +# Actualizare a traducerii pentru versiunea 0.24-pre1 făcută de R-GC, feb-2025. +# Actualizare a traducerii pentru versiunea 0.25-pre1 făcută de R-GC, apr-2025. +# Actualizare a traducerii pentru versiunea Y, făcută de X, Z(luna-anul). +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 00:25+0200\n" +"Last-Translator: Remus-Gabriel Chelu \n" +"Language-Team: Romanian \n" +"Language: ro\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==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Acest program rulează ca procesul numărul %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ru.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..689c91f495088542f773f3207a7fc22be57c94ca --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-c-gnome2-0.14.1.po to Russian +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Pavel Maryanov , 2004. +# SPDX-FileCopyrightText: 2014, 2015, 2023, 2025 Yuri Kozlov +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-02 09:17+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Lokalize 24.12.0\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" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Эта программа выполняется как процесс под номером %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/sk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..de04c6ee5e7fe6fedf3a5bb590a49d1842467189 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-c-gnome2 package. +# Copyright (C) 2003, 2004, 2014, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Marcel Telka , 2003, 2004, 2014, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-gnome2 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:53+0200\n" +"Last-Translator: Marcel Telka \n" +"Language-Team: Slovak \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Tento program beží ako proces s číslom %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/sl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..b4b72b1a8e287b7e1a71fb4c827b2161b7adc2e0 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/sl.po @@ -0,0 +1,29 @@ +# -*- mode: po; coding: utf-8; -*- Slovenian message catalog for GNU gettext-example +# Copyright (C) 2005 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Primož Peterlin , 2005, 2014, 2015, 2024. +# $Id: hello-c-gnome2-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-03-28 18:02+0100\n" +"Last-Translator: Primož Peterlin \n" +"Language-Team: Slovenian \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " +"n%100==4 ? 3 : 0);\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Ta program teče kot proces številka %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/sq.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..0a2deacfd64800a139144ef2acc9535e0f29ebf7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/sq.po @@ -0,0 +1,28 @@ +# Albanian translation of gettext-example. +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Besnik Bleta , 2020,2023,2024,2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2-0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:56+0300\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.2.2\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Ky program po xhiron si procesi numër %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/sr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..1c00537ad2716215845974a12be4b663bb1168f3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-c-gnome2. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Aleksandar Jelenak , 2004. +# Мирослав Николић , 2014-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-02 16:51+0100\n" +"Last-Translator: Мирослав Николић \n" +"Language-Team: Serbian <(nothing)>\n" +"Language: sr\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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Овај програм се извршава као процес број %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/sv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..10177f8475ad5aeb3f112fb4db07c25b6b296e47 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-c-gnome2. +# Copyright © 2006, 2014, 2016, 2019, 2020, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Jan Djärv , 2003, 2006, 2014. +# Göran Uddeborg , 2016, 2019, 2020, 2023, 2024, 2025. +# Luna Jernberg , 2025. +# $Revision: 1.12 $ +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 12:18+0200\n" +"Last-Translator: Luna Jernberg \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Detta program kör som process nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ta.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..623fca5a5cf1fffec4328e5af5f86cc2c271cb94 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/ta.po @@ -0,0 +1,28 @@ +# Tamil messages for GNU gettext. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# List of contributors follow: +# Poorajith , 2018. +# Arun Isaac , 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-19 00:06+0100\n" +"Last-Translator: Arun Isaac \n" +"Language-Team: Tamil \n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "இந்நிரல் செயலாக்க எண் %d ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/tr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..30c23b2bd542d9964f784398c52fc4691ebe74b8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-c-gnome2. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2017 Yoyodyne, Inc. (msgids) +# Copyright (C) 2004 Free Software Foundation, Inc. +# Nilgün Belma Bugüner , 2003,2004 +# Mehmet Kececi , 2017, 2019, 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-04-17 13:10+0300\n" +"Last-Translator: Mehmet Kececi \n" +"Language-Team: Turkish \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" +"X-Generator: Poedit 2.3\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Bu yazılım %d işlem numarası ile çalışıyor." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/uk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..740324ebe07301519b290052593433c9ef1dee02 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-c-gnome2 +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Maxim V. Dziumanenko , 2004-2007. +# Yuri Chornoivan , 2014, 2015, 2023, 2025. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:56+0300\n" +"Last-Translator: Yuri Chornoivan \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\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" +"X-Generator: Lokalize 23.04.3\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Ця програма виконується як процес з номером %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/vi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..a50277e149329723bbe0ca4abe43043388d9fd16 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/vi.po @@ -0,0 +1,30 @@ +# Vietnamese Translation for Gettext Examples. +# Bản dịch tiếng Việt dành cho các ví dụ của gói gettext. +# Copyright © 2015 Yoyodyne, Inc. (msgids) +# Copyright © 2015 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Clytie Siddall , 2005-2010. +# Trần Ngọc Quân , 2012-2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-24 09:10+0700\n" +"Last-Translator: Trần Ngọc Quân \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "Chương trình này đang chạy với mã số tiến trình %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/zh_CN.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..a0b3bdbe25347693780898efdd68bfa8e2b9322f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-c-gnome2. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Funda Wang , 2003. +# Ji ZhengYu , 2015. +# Boyuan Yang <073plan@gmail.com>, 2019, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 15:56-0400\n" +"Last-Translator: Boyuan Yang <073plan@gmail.com>\n" +"Language-Team: Chinese (simplified) \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "此程序正以进程号 %d 运行。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/zh_HK.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..afcdf52a73c6501a9f34d146c378273ed8fea3c5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-c-gnome2. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-07-05 15:40+0800\n" +"Last-Translator: Abel Cheung \n" +"Language-Team: Chinese (Hong Kong) \n" +"Language: zh_HK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "你好!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行中,進程編號為 %d。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/zh_TW.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..5d8aa87eb4f3e3f8a2e743fc0326a35ee23ac34c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome2/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-c-gnome2. +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Abel Cheung , 2005. +# Wei-Lun Chao , 2013, 2015. +# Yi-Jyun Pan , 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome2 0.23-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-11-30 14:14+0800\n" +"Last-Translator: Yi-Jyun Pan \n" +"Language-Team: Chinese (traditional) \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.c:51 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.c:56 +#, c-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行,行程編號為 %d。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/INSTALL b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..3b9f22fe0142ae2739beebefb8097b32b7becbf7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/INSTALL @@ -0,0 +1,12 @@ +This example relies on: + - the GTK libraries (libgtk, libgdk), version 3.10 or later + - the glib libraries (libglib) + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..6158d99914bebd519813691095ba166a24e966d7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/Makefile.am @@ -0,0 +1,80 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# General automake options. +AUTOMAKE_OPTIONS = foreign no-dependencies +ACLOCAL_AMFLAGS = -I m4 + +# The list of subdirectories containing Makefiles. +SUBDIRS = m4 po + +# The list of programs that are built. +bin_PROGRAMS = hello hello2 + +# The source files of the 'hello' program. +hello_SOURCES = hello.c hello-resources.c +# The source files of the 'hello2' program. +hello2_SOURCES = hello2.c hello2-resources.c + +# Define a C macro LOCALEDIR indicating where catalogs will be installed +# and a C macro PKGDATADIR indicating a package-specific location. +DEFS = \ + -DLOCALEDIR=$(localedir_c_make) \ + -DPKGDATADIR=$(pkgdatadir_c_make) \ + @DEFS@ + +# Make sure the gnome.h include file is found. +AM_CPPFLAGS = $(GTK_CFLAGS) + +# Link time dependencies. +LDADD = $(GTK_LIBS) @LIBINTL@ + +# Compile GSettings schema. +gschemas.compiled: hello2.gschema.xml + $(AM_V_GEN) $(GLIB_COMPILE_SCHEMAS) --targetdir=. $(srcdir) + +# Compile assets into a C source and link it with the application. +hello-resources.c: hello.gresource.xml hello.ui + $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) $< --target=$@ \ + --sourcedir=$(srcdir) --generate-source +hello2-resources.c: hello2.gresource.xml hello2.ui + $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) $< --target=$@ \ + --sourcedir=$(srcdir) --generate-source + +# Install the compiled GSettings schema in a package-specific location +# (so that "make install" works with a --prefix other than /usr). +pkgdata_DATA = gschemas.compiled + +desktopdir = $(datadir)/applications +desktop_DATA = hello.desktop hello2.desktop + +# Merge translations back into a Desktop Entry file. + +# Note that the resulting file should be included in EXTRA_DIST and +# processed earlier than the variable substitution below. Otherwise, +# the 'msgfmt' command will be required at compile-time. +hello.desktop.in: hello.desktop.in.in + $(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@ +hello2.desktop.in: hello2.desktop.in.in + $(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@ + +# Substitute variables in a Desktop Entry file. +hello.desktop: hello.desktop.in + $(AM_V_GEN) sed -e 's|@bindir[@]|$(bindir)|g' $< > $@ +hello2.desktop: hello2.desktop.in + $(AM_V_GEN) sed -e 's|@bindir[@]|$(bindir)|g' $< > $@ + +BUILT_SOURCES = gschemas.compiled hello-resources.c hello2-resources.c hello.desktop hello2.desktop +CLEANFILES = gschemas.compiled hello.desktop hello2.desktop +DISTCLEANFILES = +MAINTAINERCLEANFILES = hello-resources.c hello2-resources.c hello.desktop.in hello2.desktop.in + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh \ + hello.desktop.in.in hello.desktop.in \ + hello.gresource.xml hello.ui \ + hello2.desktop.in.in hello2.desktop.in \ + hello2.gresource.xml hello2.ui \ + hello2.gschema.xml diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/README b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/README new file mode 100644 index 0000000000000000000000000000000000000000..5badbd8b20c8f1d8b2ace19da4e6abcb7c11e010 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/README @@ -0,0 +1,4 @@ +This example contains two programs: + - hello, a simple "hello world" program, + - hello2, a more elaborate program that demonstrates advanced Gtk 3 features: + derived GObject classes, widget templates, GSettings. diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/autoclean.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..2f812ed5e31b270454ebde4b748bfe2f4cffb643 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/autoclean.sh @@ -0,0 +1,48 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for cleaning all autogenerated files. + +test ! -f Makefile || make distclean +# Do the equivalent of "make maintainer-clean", even without the Makefile. +rm -f hello-resources.c hello2-resources.c hello.desktop.in hello2.desktop.in +rm -rf autom4te.cache + +# Files generated by "make" and distributed (see MAINTAINERCLEANFILES). +rm -f hello-resources.c hello2-resources.c hello.desktop.in hello2.desktop.in + +# Brought in by autopoint. +rm -f ABOUT-NLS +rm -f config.rpath +rm -f m4/gettext.m4 +rm -f m4/build-to-host.m4 +rm -f m4/host-cpu-c-abi.m4 +rm -f m4/iconv.m4 +rm -f m4/intlmacosx.m4 +rm -f m4/lib-ld.m4 +rm -f m4/lib-link.m4 +rm -f m4/lib-prefix.m4 +rm -f m4/nls.m4 +rm -f m4/po.m4 +rm -f m4/progtest.m4 +rm -f po/Makefile.in.in +rm -f po/remove-potcdate.sed + +# Generated by aclocal. +rm -f aclocal.m4 + +# Generated by autoconf. +rm -f configure + +# Generated or brought in by automake. +rm -f Makefile.in +rm -f m4/Makefile.in +rm -f compile +rm -f install-sh +rm -f missing +rm -f config.guess +rm -f config.sub +rm -f po/*.pot +rm -f po/stamp-po +rm -f po/*.gmo diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/autogen.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..cf1a97eec3ac424bd16d58e77382be46b3015993 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/autogen.sh @@ -0,0 +1,29 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for regenerating all autogenerated files. + +autopoint -f # was: gettextize -f -c +rm po/Makevars.template +rm po/Rules-quot +rm po/boldquot.sed +rm po/en@boldquot.header +rm po/en@quot.header +rm po/insert-header.sed +rm po/quot.sed + +aclocal -I m4 + +autoconf + +automake -a -c + +cd po +for f in *.po; do + if test -r "$f"; then + lang=`echo $f | sed -e 's,\.po$,,'` + msgfmt -c -o $lang.gmo $lang.po + fi +done +cd .. diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/configure.ac b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..c82f0dc4c045d3b4d0052aaa9b58e84bd91d35df --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/configure.ac @@ -0,0 +1,60 @@ +dnl Example for use of GNU gettext. +dnl This file is in the public domain. +dnl +dnl Configuration file - processed by autoconf. + +AC_INIT([hello-c-gnome3], [0]) +AC_CONFIG_SRCDIR([hello.c]) +AM_INIT_AUTOMAKE([1.11]) + +AC_PROG_CC +AM_GNU_GETTEXT([external]) +AM_GNU_GETTEXT_VERSION([0.25]) + +dnl Define localedir_c and localedir_c_make. +gl_BUILD_TO_HOST_LOCALEDIR +dnl Define pkgdatadir_c and pkgdatadir_c_make. +gl_BUILD_TO_HOST_PKGDATADIR + +dnl Check GNOME specific stuff. +dnl +dnl If you have full GNOME development environment installed on your +dnl system, you should be able to use the following macros: +dnl +dnl AM_PATH_GLIB_2_0 +dnl PKG_CHECK_MODULES([GTK], [gtk+-3.0 >= 3.10], , +dnl [AC_MSG_ERROR([can't find gtk+-3.0])]) +dnl +dnl Here, in gettext-tools/examples, we do the checks manually for +dnl simplicity. + +AC_PATH_PROG([GLIB_COMPILE_RESOURCES], [glib-compile-resources]) +AS_IF([test -z "$GLIB_COMPILE_RESOURCES"], [ + AC_MSG_ERROR([can't find glib-compile-resources]) +]) + +AC_PATH_PROG([GLIB_COMPILE_SCHEMAS], [glib-compile-schemas]) +AS_IF([test -z "$GLIB_COMPILE_SCHEMAS"], [ + AC_MSG_ERROR([can't find glib-compile-schemas]) +]) + +AC_PATH_PROG([PKG_CONFIG], [pkg-config]) +AS_IF([test -z "$PKG_CONFIG"], [ + AC_MSG_ERROR([can't find pkg-config]) +]) + +GTK="gtk+-3.0 >= 3.10" +AS_IF(["$PKG_CONFIG" --exists "$GTK"], , [ + AC_MSG_ERROR([can't find $GTK]) +]) + +GTK_CFLAGS=`"$PKG_CONFIG" --cflags "$GTK"` +AC_SUBST([GTK_CFLAGS]) + +GTK_LIBS=`"$PKG_CONFIG" --libs "$GTK"` +AC_SUBST([GTK_LIBS]) + +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile.in]) +AC_OUTPUT diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello.c b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello.c new file mode 100644 index 0000000000000000000000000000000000000000..8b4eea44549be33dd9090afed71300713e5df527 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello.c @@ -0,0 +1,121 @@ +/* Example for use of GNU gettext. + This file is in the public domain. + + Source code of the C program. */ + + +/* Get GTK declarations. */ +#include +#include + +/* Get exit() declaration. */ +#include + +/* Get getpid() declaration. */ +#if defined _WIN32 && !defined __CYGWIN__ +/* native Windows API */ +# include +# define getpid _getpid +#else +/* POSIX API */ +# include +#endif + +#define UI_PATH "/org/gnu/gettext/examples/hello/hello.ui" +#define APPLICATION_ID "org.gnu.gettext.examples.hello" + +/* An ad-hoc struct for managing the main window. + (Not connected to the GObject type system.) */ +struct HelloWindow +{ + GtkWindow *window; + GtkLabel *label; + GtkButton *button; + gsize label_id; + gchar *labels[3]; +}; + +static void +update_content (struct HelloWindow *hello_window) +{ + gtk_label_set_label (hello_window->label, + hello_window->labels[hello_window->label_id]); + hello_window->label_id = + (hello_window->label_id + 1) % G_N_ELEMENTS (hello_window->labels); +} + +static void +clicked_callback (GtkWidget *widget, struct HelloWindow *hello_window) +{ + update_content (hello_window); +} + +static void +activate (GApplication *application, void *data) +{ + GtkBuilder *builder; + GError *error = NULL; + + /* Instantiate the UI. */ + builder = gtk_builder_new (); + if (gtk_builder_add_from_resource (builder, UI_PATH, &error) == 0) + { + g_printerr ("Error instantiating UI: %s\n", error->message); + g_clear_error (&error); + exit (1); + } + + struct HelloWindow *hello_window = g_malloc (sizeof (struct HelloWindow)); + hello_window->window = GTK_WINDOW (gtk_builder_get_object (builder, "main_window")); + hello_window->label = GTK_LABEL (gtk_builder_get_object (builder, "label")); + hello_window->button = GTK_BUTTON (gtk_builder_get_object (builder, "button")); + + /* Allow Pango markup in the label. */ + gtk_label_set_use_markup (hello_window->label, TRUE); + + /* Prepare various presentations of the label. */ + hello_window->label_id = 0; + gchar *line1 = g_strdup_printf ("%s", _("Hello world!")); + gchar *line2 = + g_strdup_printf (_("This program is running as process number %s."), + g_strdup_printf ("%d", getpid ())); + hello_window->labels[0] = g_strdup_printf ("%s\n%s", line1, line2); + hello_window->labels[1] = + g_strdup_printf ("%s", _("This is another text")); + hello_window->labels[2] = + g_strdup_printf ("%s", _("This is yet another text")); + + update_content (hello_window); + + /* Make sure that the application runs for as long as this window is + still open. */ + gtk_application_add_window (GTK_APPLICATION (application), + GTK_WINDOW (hello_window->window)); + + g_signal_connect (hello_window->button, "clicked", + G_CALLBACK (clicked_callback), hello_window); + gtk_window_present (GTK_WINDOW (hello_window->window)); +} + +int +main (int argc, char *argv[]) +{ + GApplication *application; + int status; + + /* Initializations. */ + textdomain ("hello-c-gnome3"); + bindtextdomain ("hello-c-gnome3", LOCALEDIR); + + /* Create application. */ + application = + G_APPLICATION (gtk_application_new (APPLICATION_ID, + G_APPLICATION_DEFAULT_FLAGS)); + g_signal_connect (application, "activate", G_CALLBACK (activate), NULL); + + /* Start the application. */ + status = g_application_run (application, argc, argv); + g_object_unref (application); + + return status; +} diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello.desktop.in.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello.desktop.in.in new file mode 100644 index 0000000000000000000000000000000000000000..a31bf93375d7754ef52943e022d0a8cbf22ddd86 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello.desktop.in.in @@ -0,0 +1,6 @@ +[Desktop Entry] +Type=Application +Name=Hello +Comment=Hello, world! +StartupNotify=true +Exec=@bindir@/hello diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello.gresource.xml b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello.gresource.xml new file mode 100644 index 0000000000000000000000000000000000000000..7a00dc8362c0bcc17aaa68147393bfbef098d8d7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello.gresource.xml @@ -0,0 +1,7 @@ + + + + + hello.ui + + diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello.ui b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello.ui new file mode 100644 index 0000000000000000000000000000000000000000..e142400c04d2f89797cf76aa86d5e14f88807b68 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello.ui @@ -0,0 +1,46 @@ + + + + + + Example Application + 600 + 400 + + + True + vertical + + + True + 0.5 + 0.5 + 0 + 0 + True + + + True + + + + + + + True + + + True + Update text + False + + + end + + + + + + + + diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello2.c b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello2.c new file mode 100644 index 0000000000000000000000000000000000000000..e89dfd8d5649903da01ee30058698b2ffa781389 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello2.c @@ -0,0 +1,195 @@ +/* Example for use of GNU gettext. + This file is in the public domain. + + Source code of the C program. */ + + +/* Get GTK declarations. */ +#include +#include + +/* Get getpid() declaration. */ +#if defined _WIN32 && !defined __CYGWIN__ +/* native Windows API */ +# include +# define getpid _getpid +#else +/* POSIX API */ +# include +#endif + +#define UI_PATH "/org/gnu/gettext/examples/hello/hello2.ui" +#define APPLICATION_ID "org.gnu.gettext.examples.hello2" +#define GSETTINGS_SCHEMA "org.gnu.gettext.examples.hello2" + +/* Forward declaration of GObject types. */ + +#define HELLO_TYPE_APPLICATION_WINDOW (hello_application_window_get_type ()) +#define HELLO_APPLICATION_WINDOW(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST ((obj), \ + HELLO_TYPE_APPLICATION_WINDOW, \ + HelloApplicationWindow)) + +typedef struct _HelloApplicationWindow HelloApplicationWindow; +typedef struct _HelloApplicationWindowClass HelloApplicationWindowClass; + +#define HELLO_TYPE_APPLICATION (hello_application_get_type ()) +#define HELLO_APPLICATION(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST ((obj), \ + HELLO_TYPE_APPLICATION, \ + HelloApplication)) + +typedef struct _HelloApplication HelloApplication; +typedef struct _HelloApplicationClass HelloApplicationClass; + +/* Custom application window implementation. */ + +struct _HelloApplicationWindow +{ + GtkApplicationWindow parent; + GtkWidget *label; + GtkWidget *button; + GSettings *settings; + gsize label_id; + gchar *labels[3]; +}; + +struct _HelloApplicationWindowClass +{ + GtkApplicationWindowClass parent_class; +}; + +G_DEFINE_TYPE (HelloApplicationWindow, hello_application_window, + GTK_TYPE_APPLICATION_WINDOW); + +static void +update_content (HelloApplicationWindow *window) +{ + gtk_label_set_label (GTK_LABEL (window->label), + window->labels[window->label_id]); + window->label_id = (window->label_id + 1) % G_N_ELEMENTS (window->labels); +} + +static void +hello_application_window_init (HelloApplicationWindow *window) +{ + gtk_widget_init_template (GTK_WIDGET (window)); + + window->settings = g_settings_new (GSETTINGS_SCHEMA); + /* Allow Pango markup in the label. */ + g_settings_bind (window->settings, "use-markup", + window->label, "use-markup", + G_SETTINGS_BIND_DEFAULT); + + /* Prepare various presentations of the label. */ + window->label_id = 0; + gchar *line1 = g_strdup_printf ("%s", _("Hello world!")); + gchar *line2 = + g_strdup_printf (_("This program is running as process number %s."), + g_strdup_printf ("%d", getpid ())); + window->labels[0] = g_strdup_printf ("%s\n%s", line1, line2); + window->labels[1] = + g_strdup_printf ("%s", _("This is another text")); + window->labels[2] = + g_strdup_printf ("%s", _("This is yet another text")); + + update_content (window); +} + +static void +hello_application_window_class_init (HelloApplicationWindowClass *klass) +{ + GObjectClass *gobject_class = G_OBJECT_CLASS (klass); + + gtk_widget_class_set_template_from_resource (GTK_WIDGET_CLASS (klass), + UI_PATH); + gtk_widget_class_bind_template_child (GTK_WIDGET_CLASS (klass), + HelloApplicationWindow, label); + gtk_widget_class_bind_template_child (GTK_WIDGET_CLASS (klass), + HelloApplicationWindow, button); +} + +static HelloApplicationWindow * +hello_application_window_new (HelloApplication *application) +{ + return g_object_new (HELLO_TYPE_APPLICATION_WINDOW, + "application", application, + NULL); +} + +/* Custom application implementation. */ + +struct _HelloApplication +{ + GtkApplication parent; +}; + +struct _HelloApplicationClass +{ + GtkApplicationClass parent_class; +}; + +G_DEFINE_TYPE (HelloApplication, hello_application, GTK_TYPE_APPLICATION); + +static void +hello_application_init (HelloApplication *application) +{ +} + +static void +clicked_callback (GtkWidget *widget, void *data) +{ + update_content (HELLO_APPLICATION_WINDOW (data)); +} + +static void +hello_application_activate (GApplication *application) +{ + HelloApplicationWindow *window; + + window = hello_application_window_new (HELLO_APPLICATION (application)); + g_signal_connect (window->button, "clicked", + G_CALLBACK (clicked_callback), window); + gtk_window_present (GTK_WINDOW (window)); +} + +static void +hello_application_class_init (HelloApplicationClass *klass) +{ + G_APPLICATION_CLASS (klass)->activate = hello_application_activate; +} + +static HelloApplication * +hello_application_new (void) +{ + return g_object_new (HELLO_TYPE_APPLICATION, + "application-id", APPLICATION_ID, + NULL); +} + +int +main (int argc, char *argv[]) +{ + GApplication *application; + int status; + + /* Load the compiled GSettings schema + - from PKGDATADIR (so that it works after "make install"), + - from the current directory (so that it works in the build directory, + before "make install"). */ + g_setenv ("GSETTINGS_SCHEMA_DIR", PKGDATADIR G_SEARCHPATH_SEPARATOR_S ".", + FALSE); + + /* Initializations. */ + textdomain ("hello-c-gnome3"); + bindtextdomain ("hello-c-gnome3", LOCALEDIR); + + /* Create application. */ + application = G_APPLICATION (hello_application_new ()); + + /* Start the application. */ + status = g_application_run (application, argc, argv); + g_object_unref (application); + + return status; +} diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello2.desktop.in.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello2.desktop.in.in new file mode 100644 index 0000000000000000000000000000000000000000..5ab5be552db7a9fe58d76166202532e13d0e9ffd --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello2.desktop.in.in @@ -0,0 +1,6 @@ +[Desktop Entry] +Type=Application +Name=Hello +Comment=Hello, world! +StartupNotify=true +Exec=@bindir@/hello2 diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello2.gresource.xml b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello2.gresource.xml new file mode 100644 index 0000000000000000000000000000000000000000..4a65f40c8de0ff6026b828d35bcdcc7d8f911e33 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello2.gresource.xml @@ -0,0 +1,7 @@ + + + + + hello2.ui + + diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello2.gschema.xml b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello2.gschema.xml new file mode 100644 index 0000000000000000000000000000000000000000..63e1c6a13ad4473f1b1edfad788431a2f1560f82 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello2.gschema.xml @@ -0,0 +1,12 @@ + + + + + + true + Use XML markup + Whether to use XML markup in the text. + + + diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello2.ui b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello2.ui new file mode 100644 index 0000000000000000000000000000000000000000..b2d13b0f0647e58e3ed48abd7457b385c8ef7930 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/hello2.ui @@ -0,0 +1,46 @@ + + + + + + diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/m4/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..7d516f09ff64e7f731d69696326a8626ca9c4ee0 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/m4/Makefile.am @@ -0,0 +1,4 @@ +EXTRA_DIST = \ + gettext.m4 build-to-host.m4 host-cpu-c-abi.m4 \ + iconv.m4 intlmacosx.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 \ + nls.m4 po.m4 progtest.m4 diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/LINGUAS b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/LINGUAS @@ -0,0 +1,5 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Set of available languages. +af ast bg ca cs da de el eo es fi fr ga gl hr hu id it ja ka ky lv ms mt nb nl nn pl pt pt_BR ro ru sk sl sq sr sv ta tr uk vi zh_CN zh_HK zh_TW diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/Makevars b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/Makevars new file mode 100644 index 0000000000000000000000000000000000000000..c3f465c6825fc1a1d5a5cc56fbf52ae4727db0a3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/Makevars @@ -0,0 +1,95 @@ +# Makefile variables for PO directory in any package using GNU gettext. +# +# Copyright (C) 2003-2025 Free Software Foundation, Inc. +# This file is free software; the Free Software Foundation gives +# unlimited permission to use, copy, distribute, and modify it. + +# Usually the message domain is the same as the package name. +DOMAIN = $(PACKAGE) + +# These two variables depend on the location of this directory. +subdir = po +top_builddir = .. + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = \ + --keyword=_ --flag=_:1:pass-c-format \ + --keyword=N_ --flag=N_:1:pass-c-format \ + --flag=g_log:3:c-format --flag=g_logv:3:c-format \ + --flag=g_error:1:c-format --flag=g_message:1:c-format \ + --flag=g_critical:1:c-format --flag=g_warning:1:c-format \ + --flag=g_print:1:c-format \ + --flag=g_printerr:1:c-format \ + --flag=g_strdup_printf:1:c-format --flag=g_strdup_vprintf:1:c-format \ + --flag=g_printf_string_upper_bound:1:c-format \ + --flag=g_snprintf:3:c-format --flag=g_vsnprintf:3:c-format \ + --flag=g_string_sprintf:2:c-format \ + --flag=g_string_sprintfa:2:c-format \ + --flag=g_scanner_error:2:c-format \ + --flag=g_scanner_warn:2:c-format + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgid strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Yoyodyne, Inc. + +# This tells whether or not to prepend "GNU " prefix to the package +# name that gets inserted into the header of the $(DOMAIN).pot file. +# Possible values are "yes", "no", or empty. If it is empty, try to +# detect it automatically by scanning the files in $(top_srcdir) for +# "GNU packagename" string. +PACKAGE_GNU = no + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = bug-gettext@gnu.org + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = + +# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt' +# context. Possible values are "yes" and "no". Set this to yes if the +# package uses functions taking also a message context, like pgettext(), or +# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument. +USE_MSGCTXT = no + +# These options get passed to msgmerge. +# Useful options are in particular: +# --previous to keep previous msgids of translated messages +MSGMERGE_OPTIONS = + +# These options get passed to msginit. +# If you want to disable line wrapping when writing PO files, add +# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and +# MSGINIT_OPTIONS. +MSGINIT_OPTIONS = + +# This tells whether or not to regenerate a PO file when $(DOMAIN).pot +# has changed. Possible values are "yes" and "no". Set this to no if +# the POT file is checked in the repository and the version control +# program ignores timestamps. +PO_DEPENDS_ON_POT = yes + +# This tells whether or not to forcibly update $(DOMAIN).pot and +# regenerate PO files on "make dist". Possible values are "yes" and +# "no". Set this to no if the POT file and PO files are maintained +# externally. +DIST_DEPENDS_ON_UPDATE_PO = yes diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/POTFILES.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/POTFILES.in new file mode 100644 index 0000000000000000000000000000000000000000..9f16cea4364ca4ea042565522fa30b9a57514ccd --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/POTFILES.in @@ -0,0 +1,11 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# List of files which contain translatable strings. +hello.c +hello.desktop.in.in +hello.ui +hello2.c +hello2.desktop.in.in +hello2.ui +hello2.gschema.xml diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/af.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..50e2e9386a0cc9b41f1617fb6158f3d184724c4b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/af.po @@ -0,0 +1,59 @@ +# Afrikaans translation for Silky +# Copyright (C) 2004 Free Software Foundation, Inc. +# This file is distributed under the same license as the silky package. +# Hanlie Pretorius , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3-0.13.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2003-12-31 10:30+2\n" +"Last-Translator: Ysbeer \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Hallo wêreld!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Hierdie program loop as prosesnommer %d." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ast.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..b12d155775e16c3889fa8dcdfe3985eae516a55b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ast.po @@ -0,0 +1,64 @@ +# Asturian translation for hello-c-gnome3 +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marquinos , 2009. +# enolp , 2018. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-07-16 00:28+0100\n" +"Last-Translator: enolp \n" +"Language-Team: Asturian \n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 2.0\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "¡Hola, mundu!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Esti programa ta executándose como procesu númberu %d." + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "Esto ye otru testu" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "Esto ye otru testu más" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Hola" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Aplicación d'exemplu" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Anovar testu" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Usar marques XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Usa o non marques XML nel testu." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/bg.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..74d23e31ab9ac9ea5b4f94f24b3bad45f7d80c76 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/bg.po @@ -0,0 +1,58 @@ +# Bulgarian translations for hello-c-gnome3 package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Roumen Petrov , 2010,2014,2015,2019,2023,2024.2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-gnome3 0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-08 19:09+0200\n" +"Last-Translator: Roumen Petrov \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Здравейте всички!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Програмата е пусната под процес номер %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Това е друг текст" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "А това е един друг текст" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Здравейте" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Примерно приложение" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Обноваване на текст" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Използване на XML markup" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Дали да се използва XML markup за текст." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ca.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..49d42484e6458a80303fd87ebc7c36f58d591747 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ca.po @@ -0,0 +1,62 @@ +# Catalan messages for GNU hello-c-gnome3. +# Copyright (C) 2003, 2014, 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ivan Vilata i Balaguer , 2003, 2014, 2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-07-07 08:36+0200\n" +"Last-Translator: Ivan Vilata i Balaguer \n" +"Language-Team: Catalan \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Hola, món!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Aquest programa està corrent amb el número de procés %d." + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "Aquest és un altre text" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "Aquest és un altre text més" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Hola" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Aplicació d’exemple" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Actualitza el text" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Empra etiquetatge XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Indica si es permet emprar etiquetatge XML al text." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/cs.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..0ff6eaa15c58fd60febc4c9972b938bd851ff381 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/cs.po @@ -0,0 +1,61 @@ +# The Czech translation for the gettext package. +# Copyright (C) 2011 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marek Černocký , 2011. +# Petr Písař , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 20:05+02:00\n" +"Last-Translator: Petr Pisar \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Ahoj, světe!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Tento program běží jako proces číslo %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Toto je nějaký další text" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "Toto je nějaký ještě další text" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Ahoj" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Ukázková aplikace" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Aktualizovat text" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Používat značkovací jazyk XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Zda v textu používat značkovací jazyk XML." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/da.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..34900fed0295fe80a51c06aed68355cc31809ce6 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/da.po @@ -0,0 +1,63 @@ +# Danish messages for hello-c-gnome3. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Jan Djærv , 2003, 2006. +# Keld Simonsen , 2011. +# Joe Hansen , 2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-27 12:39+0100\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Hej verden!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Dette program kører som proces nummer %d." + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "Dette er en anden tekst" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "Endnu en tekst" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Hej" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Eksempelprogram" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Opdater tekst" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Brug XML-opmærkning" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Hvorvidt der skal bruges XML-opmærkning i teksten." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/de.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..5ee21525ceb33a0c37778ef470afa2f9ca4262bf --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/de.po @@ -0,0 +1,64 @@ +# German messages for hello-c-gnome3. +# Copyright © 2003, 2013 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Bruno Haible , 2003. +# Karl Eichwalder , 2003. +# Jakob Kramer , 2013. +# Mario Blättermann , 2014, 2023, 2025. +# Philipp Thomas , 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 17:15+0200\n" +"Last-Translator: Mario Blättermann \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 25.04.0\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Hallo Welt!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Dieses Programm läuft mit der Prozess-Nummer %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Dies ist ein weiterer Text" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "Dies ist noch ein weiterer Text" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Hallo" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Beispielanwendung" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Text aktualisieren" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "XML-Markup verwenden" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Ob XML-Markup im Text verwendet werden soll" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/el.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..f91d57ac938a03776b903dcc01b29860a3f6b08f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/el.po @@ -0,0 +1,59 @@ +# Greek translation of hello-c-gnome3 +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.14.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2005-01-06 18:50+0000\n" +"Last-Translator: Simos Xenitellis \n" +"Language-Team: Greek \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.3.1\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας %d." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/eo.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..8a951e70c0dfa900af5ddcb7e8afbc361944a120 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/eo.po @@ -0,0 +1,63 @@ +# La teksto por la mesaĝoj de la programo "gettext". +# Copyright (C) 2006, 2016 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Edmund GRIMLEY EVANS , 2006. +# Felipe CASTRO , 2016, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-23 19:00-0300\n" +"Last-Translator: Felipe Castro \n" +"Language-Team: Esperanto \n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Saluton, mondo!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Ĉi tiu programo rulas kiel procez-numero %d." + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "Tio ĉi estas alia teksto" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "Tio ĉi estas pli alia teksto" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Saluton" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Ekzempla aplikaĵo" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Ĝisdatigi tekston" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Uzi marklingvon XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Ĉu uzi marklingvon XML en la teksto." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/es.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..b0b7d27c91f39668ed31610ad7709d6e408c2720 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/es.po @@ -0,0 +1,62 @@ +# Mensajes en español para GNU gettext. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# This file is distributed under the same license as the gettext package. +# +# Max de Mendizábal , 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004. +# Antonio Ceballos , 2014, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-02-23 17:01+0100\n" +"Last-Translator: Antonio Ceballos \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "¡Hola, mundo!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Este programa está corriendo como el proceso número %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Este es otro texto" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "Este es otro texto más" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Hola" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Ejemplo de aplicación" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Actualizar texto" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Utilizar etiquetas XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Si utilizar etiquetas XML en el texto." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/fi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..1cee7d15b0e51c04c6d2d8de3bf6a45d0d450f97 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/fi.po @@ -0,0 +1,65 @@ +# Finnish messages for GNU Gettext examples. +# This file is distributed under the same license as the gettext package. +# Copyright © 2007, 2014, 2015 Yoyodyne, Inc. (msgids) +# Lauri Nurmi , 2007. +# Jorma Karvonen , 2014-2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-09-01 16:59+0300\n" +"Last-Translator: Jorma Karvonen \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 1.5.4\n" + +# Tämä nimenomainen käännös valittu GNU Hellon mukaisesti. +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Terve maailma!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Tämän ohjelman prosessinumero on %d." + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "Tämä on toinen teksti" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "Tämä on vielä toinen teksti" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Hei" + +# Tämä nimenomainen käännös valittu GNU Hellon mukaisesti. +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Esimerkkisovellus" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Päivitä teksti" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Käytä XML-merkintäkieltä" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Käytetäänkö XML-merkintäkieltä tekstissä." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/fr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..a262890c6603cefa1dfd229caefc1b76f8a52d42 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/fr.po @@ -0,0 +1,67 @@ +# Messages français pour GNU gettext. +# Copyright (C) 2006 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Michel Robitaille , 2006. +# Christophe Combelles , 2006 +# Stéphane Aulery , 2015 +# Christian Wiatr , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-28 16:25+0200\n" +"Last-Translator: Christian Wiatr \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Bonjour, le monde !" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Ce programme est exécuté en tant que processus numéro %d." + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "Ceci est un autre texte" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "Ceci est encore un autre texte" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Bonjour" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Application d’exemple" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Actualiser le texte" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Utiliser le balisage XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "De quelle manière utiliser le balisage XML dans le texte." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ga.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..18f317cc4dd8d308c532e2fab82a5964486ce897 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ga.po @@ -0,0 +1,61 @@ +# Irish translations for hello-c-gnome3. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Kevin Patrick Scannell , 2004, 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2017-01-10 12:09-0500\n" +"Last-Translator: Kevin Patrick Scannell \n" +"Language-Team: Irish \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Tá an clár seo ag rith mar phróiseas %d." + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "Seo é téacs eile" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "Seo é téacs eile fós" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Dia dhuit" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Feidhmchlár Samplach" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Nuashonraigh an téacs" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Úsáid marcáil XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "An úsáidfear marcáil XML sa téacs." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/gl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..3baa83cede78e9e45b01a74470f969eb375f8c30 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/gl.po @@ -0,0 +1,64 @@ +# Galician translation for hello-c-gnome3 package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Leandro Regueiro , 2010-2014. +# +# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas +# colaborar connosco, podes atopar máis información en +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.19-rc1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2014-05-10 16:34+0100\n" +"Last-Translator: Leandro Regueiro \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Ola, mundo!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Este programa estase executando como o proceso número %d." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Aplicativo de exemplo" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/hr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..4db668067ddf943be21dbc065be3216cece6e766 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/hr.po @@ -0,0 +1,65 @@ +# Translation of hello-c-gnome3 to Croatian. +# Copyright (C) 2003, 2004, 2014, 2015, 2019 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Permission is granted to freely copy and distribute +# this file and modified versions, provided that this +# header is not removed and modified versions are marked +# as such. +# +# Tomislav Krznar , 2012. +# Božidar Putanec , 2018-2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-gnome3 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:15-0700\n" +"Last-Translator: Božidar Putanec \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Pozdrav svijete!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Ovaj program se izvršava kao proces broj %s" + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Ovo je drugi tekstr" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "Ovo je još jedan tekst" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Pozdrav" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Primjer primjene" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Ažuiranje teksta" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Koristi XML markup oznake" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Treba li koristiti XML markup u tekstu" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/hu.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..27e9e1f7f36d4ba6dfd7d723915f4650f253b839 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/hu.po @@ -0,0 +1,64 @@ +# Hungarian translation for hello-c-gnome3. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# Tamás Kiss , 2005. +# Balázs Úr , 2014, 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-23 20:31+0200\n" +"Last-Translator: Balázs Úr \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 1.2\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Hello, világ!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Ez a program a(z) %d folyamatazonosítóval fut." + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "Ez egy másik szöveg" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "Ez megint egy másik szöveg" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Helló" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Példa alkalmazás" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Szöveg frissítése" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "XML-jelölőnyelv használata" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Használjon-e XML-jelölőnyelvet a szövegben." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/id.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..f8ddcc776ffd138aef074aa1309979eb034b4562 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/id.po @@ -0,0 +1,60 @@ +# translation of hello-c-gnome3-0.15-pre5.po to Indonesian +# Copyright (C) 2006 Yoyodyne, Inc. +# This file is distributed under the same license as the PACKAGE package. +# +# Tedi Heriyanto , 2006. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3-0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-09-27 20:19+0700\n" +"Last-Translator: Tedi Heriyanto \n" +"Language-Team: Indonesian \n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.11.2\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Hello, world!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Program ini berjalan sebagai proses nomor %d" + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/it.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..785898bd027e9c343028800cb039e08d8eef9db8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/it.po @@ -0,0 +1,61 @@ +# Italian messages for hello-c-gnome3. +# Copyright (C) 2005, 2006 Yoyodyne, Inc. (msgids) +# Copyright (C) 2024 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Marco Colombo , 2005, 2006, 2015. +# Michele Locati , 2024, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-gnome3 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-04 18:28+0200\n" +"Last-Translator: Michele Locati \n" +"Language-Team: Italian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Ciao mondo!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Questo programma è in esecuzione con numero di processo %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Questo è un altro testo" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "Questo è un altro testo ancora" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Ciao" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Applicazione di esempio" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Aggiorna testo" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Usa il markup XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Se usare il markup XML nel testo." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ja.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..0fe38cc068cbd6b88a5514b2a151f67405bedea2 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ja.po @@ -0,0 +1,58 @@ +# Translation of `hello-c-gnome3' messages to Japanese. +# Copyright (C) 2005, 2006, 2014, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Masahito Yamaga , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-gnome3 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:59+0900\n" +"Last-Translator: Masahito Yamaga \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "世界よ こんにちは!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "このプログラムはプロセス番号 %s で動いています." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "これはもう一つのテキストです" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "これはさらにもう一つのテキストです" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "こんにちは" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "実例応用" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "テキストを更新" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "XMLマークアップを使用" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "テキスト内でXMLマークアップを使うか否か" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ka.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..50746736ac1e1546eed0370ec360fb2c5d071141 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ka.po @@ -0,0 +1,63 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Temuri Doghonadze , 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2022-05-22 05:04+0200\n" +"Last-Translator: Temuri Doghonadze \n" +"Language-Team: Georgian <(nothing)>\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0.1\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით %d." + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "ეს კი სხვა ტექსტია" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "ეს კიდევ უფრო სხვაა" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "გამარჯობა" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "მაგალითი აპლიკაცია" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "ტექსტის განახლება" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "XML მარკირების გამოყენება" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "გამოიყენოთ თუ არა XML მარკირება ტექსტში." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ky.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..40d69eacfd739df221ef7f74676bffc8dec025c5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ky.po @@ -0,0 +1,63 @@ +# Translation of 'hello-c-gnome3' messages to Kirghiz. +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ilyas Bakirov , 2007. +# Ilyas Bakirov , 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-02-15 18:26+0600\n" +"Last-Translator: Ilyas Bakirov \n" +"Language-Team: Kirghiz \n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.0.6\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Салам дүйнө!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Бул программа %d процесс номери катары иштеп жатат." + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "Дагы бир текст" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "Жана дагы бир текст" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Салам" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Мисал программа" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Текстти жаңылоо" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "XML белгени колдонуу" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Текст ичинле XML белги эсепке алынсынбы." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/lv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..01f12c0b41a2c7eaa34c26a6b05331dd2733a0c8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/lv.po @@ -0,0 +1,62 @@ +# Latvian translation of hello-c-gnome3 +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Arvis Lācis , 2009. +# Rihards Priedītis , 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-09 11:44+0000\n" +"Last-Translator: Rihards Priedītis \n" +"Language-Team: Latvian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Sveika, pasaule!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Šī programma darbojas ar procesa numuru %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Šis ir vēl viens teksts" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "Šis ir arī vēl viens teksts" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Sveiki" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Parauga Lietotne" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Atjaunināt tekstu" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Izmantot XML marķēšanu" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Vai tekstā izmantot XML marķēšanu." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ms.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..5ce34c224f7d9d93ee654e61df568326c0113a09 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ms.po @@ -0,0 +1,60 @@ +# hello-c-gnome3 Bahasa Melayu (Malay) (ms). +# Copyright (C) 2006, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2006, 2015, 2023, 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Sharuzzaman Ahmat Raslan , 2006, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-03 21:10+0800\n" +"Last-Translator: Sharuzzaman Ahmat Raslan \n" +"Language-Team: Malay \n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Hello dunia!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Program ini dilaksanakan sebagai proses bernombor %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Ini adalah teks lain" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "Ini adalah satu lagi teks lain" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Hello" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Contoh Aplikasi" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Kemaskini teks" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Guna penanda XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Sama ada untuk menggunakan penanda XML dalam teks." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/mt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..e9f052f78f40cc13e10e26f41d110ec27a9325f8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/mt.po @@ -0,0 +1,60 @@ +# hello-c-gnome3-0.16.2-pre5. +# Copyright (C) 2008 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Clyde Meli , 2001-2008. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.16.2-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2008-11-18 17:27+0100\n" +"Last-Translator: Clyde Meli \n" +"Language-Team: Maltese \n" +"Language: mt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Hello, lil kulħadd!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Dal-programm qed jaħdem taħt il-proċess numru %d." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/nb.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..b980a41d25435206106d12c0f1e25faf86da1c03 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/nb.po @@ -0,0 +1,64 @@ +# Norwegian Bokmal translations for hello-c-gnome3 package. +# Copyright (C) 2012 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Johnny A. Solbu , 2012-2024 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-01-06 16:33+0100\n" +"Last-Translator: Johnny A. Solbu \n" +"Language-Team: Norwegian Bokmaal \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Hallo verden!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Dette programmet kjører som prosess nummer %d." + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "Dette er en annen tekst" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "Dette er enda en tekst" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Hallo" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Eksempelprogram" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Oppdater tekst" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Bruk XML-formatering" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Om det skal bruke XML-formatering i teksten." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/nl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..7562939e3a1805c0664423c5cb4527d0e6e49637 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/nl.po @@ -0,0 +1,63 @@ +# Dutch translations for GNU hello-c-gnome3. +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# "There are three basic rules for writing a novel. +# Unfortunately nobody knows what they are." +# +# Benno Schulenberg , 2007, 2014, 2015, 2019, 2025. +# Elros Cyriatan , 2004. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-01 14:51+0100\n" +"Last-Translator: Benno Schulenberg \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Hallo wereld!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Dit programma draait als proces nummer %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Dit is een andere tekst" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "Dit is nog weer een andere tekst" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Hallo" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Voorbeeldtoepassing" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Tekst bijwerken" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "XML-markup gebruiken" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Of er XML-markup gebruikt moet worden in de tekst." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/nn.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..790a9ba25869f8b0977172c9b502bc4a7326ca17 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/nn.po @@ -0,0 +1,63 @@ +# Norwegian Nynorsk translation of GNU hello-c-gnome3 +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Karl Ove Hufthammer , 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3-0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-05-04 18:58+0200\n" +"Last-Translator: Karl Ove Hufthammer \n" +"Language-Team: Norwegian Nynorsk \n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 20.04.0\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Hei, verda!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Dette programmet køyrer som prosess nummer %d." + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "Dette er ein annan tekst" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "Her er endå ein tekst" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Hei" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Eksempelprogram" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Oppdater tekst" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Bruk XML-oppmerking" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Om det skal brukast XML-oppmerking i teksten." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/pl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..2c950f14a527733eab29569c20d2e2a4b17db41d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/pl.po @@ -0,0 +1,59 @@ +# Polish translations for the GNU gettext messages, hello-c-gnome3 domain +# Copyright (C) 2010, 2014, 2015, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Rafał Maszkowski , 2003, 2010, 2014, 2015, 2025 +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-gnome3 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-25 17:16+0200\n" +"Last-Translator: Rafał Maszkowski \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Cześć, świecie!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Ten program działa jako proces o numerze %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "To jest inny tekst" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "To jest jeszcze inny tekst" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Cześć" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Program przykładowy" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Aktualizacja tekstu" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Użycie znaczników XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Czy użyć znaczników XML w tekście." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/pt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..ed6e84b948ef57577338a1551f8e5ab56b3b2c41 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/pt.po @@ -0,0 +1,60 @@ +# Portuguese (Portugal) translation of 'hello-c-gnome3' package. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Pedro Albuquerque , 2019, 2020, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 11:24+0100\n" +"Last-Translator: Pedro Albuquerque \n" +"Language-Team: Portuguese \n" +"Language: 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;\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Olá mundo!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Este programa está em execução como processo nº %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Este é outro texto" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "Eis ainda outro texto" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Olá" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Aplicação exemplo" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Actualizar texto" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Usar marcação XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Se se deve usar marcação XML no texto." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/pt_BR.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..3bb6563cd4ab702bfb2d736816c6ab330f38de77 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/pt_BR.po @@ -0,0 +1,63 @@ +# Brazilian Portuguese translations for gettext-example +# Traduções em português brasileiro para gettext-example +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Rafael Fontenelle , 2013-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:24-0300\n" +"Last-Translator: Rafael Fontenelle \n" +"Language-Team: Brazilian Portuguese \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" +"X-Generator: Gtranslator 48.0\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Olá mundo!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Este programa está sendo executado com número de processo %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Este é outro texto" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "Este também é outro texto" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Olá" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Aplicativo exemplo" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Atualizar texto" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Usar marcação XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Se deve ser usada marcação XML no texto." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ro.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..f4b966be51a3e5731c52498da02a07e8b42a05b7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ro.po @@ -0,0 +1,82 @@ +# Translation of "hello-c-gnome3" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-c-gnome3. +# Copyright © 2015, 2019, 2022, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Eugen Hoancă , 2003. +# Mihai Cristescu , 2015 - 2019. +# Remus-Gabriel Chelu , 2022 - 2025. +# +# Cronologia traducerii fișierului „hello-c-gnome3”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-c-gnome3 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-c-gnome3 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-c-gnome3 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-c-gnome3 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-c-gnome3-0.20.2.pot”. +# Actualizare a algoritmului formelor de plural (de la „trei-vechi” la „trei-actual”). +# NU și a mesajelor traduse (acestea au rămas neschimbate). +# Eliminare a mesajelor ce-au dispărut în ultima versiune. +# Actualizări realizate de Remus-Gabriel Chelu , 15.01.2022. +# Actualizare a traducerii pentru versiunea 0.20.2 făcută de R-GC, ian-2022. +# Actualizare a traducerii pentru versiunea 0.22 făcută de R-GC, iun-2023. +# Revizuire și corectare a traducerii pentru versiunea 0.23-pre1 făcută de R-GC, oct-2024. +# Actualizare a traducerii pentru versiunea 0.24-pre1 făcută de R-GC, feb-2025. +# Actualizare a traducerii pentru versiunea 0.25-pre1 făcută de R-GC, apr-2025. +# Actualizare a traducerii pentru versiunea Y, făcută de X, Z(luna-anul). +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 00:25+0200\n" +"Last-Translator: Remus-Gabriel Chelu \n" +"Language-Team: Romanian \n" +"Language: ro\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==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Salutare lume!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Acest program rulează ca procesul numărul %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Acesta este un alt text" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "Acesta este un alt rând de text" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Salut" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Exemplu de aplicație" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Actualizează textul" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Folosește marcajul XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Dacă se folosește marcajul XML în text." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ru.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..5ddb59b4715d4d440271a2435672853149d0815d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ru.po @@ -0,0 +1,62 @@ +# Translation of hello-c-gnome3-0.14.1.po to Russian +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Pavel Maryanov , 2004. +# SPDX-FileCopyrightText: 2014, 2015, 2023, 2025 Yuri Kozlov +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-02 09:17+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Lokalize 24.12.0\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" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Здравствуй мир!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Эта программа выполняется как процесс под номером %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Ещё один текст" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "И ещё один текст" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Здравствуйте" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Пример приложения" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Обновить текст" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Использовать разметку XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Учитывать ли в тексте разметку XML." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/sk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..b3c8121c2937b29ede20bdc8024c76119650d753 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/sk.po @@ -0,0 +1,58 @@ +# Slovak translations GNU for hello-c-gnome3 package. +# Copyright (C) 2003, 2004, 2014, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Marcel Telka , 2003, 2004, 2014, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-gnome3 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:53+0200\n" +"Last-Translator: Marcel Telka \n" +"Language-Team: Slovak \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Ahoj svet!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Tento program beží ako proces s číslom %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Toto je ďalší text" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "Toto je ešte ďalší text" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Ahoj" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Ukážková aplikácia" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Aktualizovať text" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Použiť značky XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Či v texte použiť značky XML." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/sl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..7db9db31e5b8496bf46c6da7d2e37772052e3e1a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/sl.po @@ -0,0 +1,64 @@ +# -*- mode: po; coding: utf-8; -*- Slovenian message catalog for GNU gettext-example +# Copyright (C) 2005 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Primož Peterlin , 2005, 2014, 2015, 2024. +# $Id: hello-c-gnome3-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-03-28 18:02+0100\n" +"Last-Translator: Primož Peterlin \n" +"Language-Team: Slovenian \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " +"n%100==4 ? 3 : 0);\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Pozdravljen, svet!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Ta program teče kot proces številka %d." + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "Podčrtano besedilo" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "Besedilo v kurzivi" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Zdravo" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Zgled aplikacije" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Posodobi besedilo" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Uporabi oznake XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Ali naj bodo v besedilu uporabljene oznake XML." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/sq.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..7a7ec425f625047a443e8d000f15bdc44d86923d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/sq.po @@ -0,0 +1,60 @@ +# Albanian translation of gettext-example. +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Besnik Bleta , 2020,2023,2024,2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3-0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:56+0300\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.2.2\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Tungjatjeta, botë!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Ky program po xhiron si procesi numër %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Ja dhe një tekst tjetër" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "Ja edhe një tekst tjetër akoma" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Tungjatjeta" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Aplikacion Shembull" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Përditësojeni tekstin" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Përdor markup XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Të përdoret ose jo markup XML te teksti." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/sr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..7539897debfd890a017732ed1dce5eca692699b2 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/sr.po @@ -0,0 +1,62 @@ +# Serbian translation of hello-c-gnome3. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Aleksandar Jelenak , 2004. +# Мирослав Николић , 2014-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-02 16:51+0100\n" +"Last-Translator: Мирослав Николић \n" +"Language-Team: Serbian <(nothing)>\n" +"Language: sr\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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Здраво свима!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Овај програм се извршава као процес број %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Ово је још један текст" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "Богами и ово је још један текст" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Здраво" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Програм примера" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Опис ажурирања" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Користи XML означавање" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Да ли ће да користи XML означавање у тексту." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/sv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..7e7540540ec050a7981eb0a307f5e204f1e14409 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/sv.po @@ -0,0 +1,62 @@ +# Swedish messages for hello-c-gnome3. +# Copyright © 2006, 2014, 2016, 2019, 2020, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Jan Djärv , 2003, 2006, 2014. +# Göran Uddeborg , 2016, 2019, 2020, 2023, 2024, 2025. +# Luna Jernberg , 2025. +# $Revision: 1.12 $ +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 12:18+0200\n" +"Last-Translator: Luna Jernberg \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Hej världen!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Detta program kör som process nummer %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Detta är en annan text" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "Detta är ytterligare en annan text" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Hej" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Exempelprogram" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Uppdatera text" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Använd XML-märkning" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Huruvida XML-märkning skall användas i texten." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ta.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..1c925a2d394fcf98be82c78881c46bd61e9ecb5d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/ta.po @@ -0,0 +1,63 @@ +# Tamil messages for GNU gettext. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# List of contributors follow: +# Poorajith , 2018. +# Arun Isaac , 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-19 00:06+0100\n" +"Last-Translator: Arun Isaac \n" +"Language-Team: Tamil \n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "வணக்கம், உலகு!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "இந்நிரல் செயலாக்க எண் %d ஆக இயங்கிக்கொண்டிருக்கிறது." + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "இது மற்றொரு உரை\"" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "இது மேலும் ஒரு உரை" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "வணக்கம்" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "எடுத்துக்காட்டு நிரல்" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "உரையை மாற்று" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "XML குறிமொழியைப் பயன்படுத்து" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "உரையில் XML குறிமொழியைப் பயன்படுத்துவதா." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/tr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..a1cd67cea6f42c80beee1e4db036a88841241f3a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/tr.po @@ -0,0 +1,64 @@ +# Turkish translation for hello-c-gnome3. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2017 Yoyodyne, Inc. (msgids) +# Copyright (C) 2004 Free Software Foundation, Inc. +# Nilgün Belma Bugüner , 2003,2004 +# Mehmet Kececi , 2017, 2019, 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-04-17 13:10+0300\n" +"Last-Translator: Mehmet Kececi \n" +"Language-Team: Turkish \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" +"X-Generator: Poedit 2.3\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Merhaba, dünya!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Bu yazılım %d işlem numarası ile çalışıyor." + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "Bu diğer metindir" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "Bu henüz başka bir metindir" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Merhaba" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Örnek Uygulama" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Metni güncelleştir" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "XML betiğini kullan" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "XML betiğinde kullanılıp kullanılmayacağını belirtir." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/uk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..411d849255e9589368fdc248a4aafa712d10787e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/uk.po @@ -0,0 +1,62 @@ +# Ukrainian translation to hello-c-gnome3 +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Maxim V. Dziumanenko , 2004-2007. +# Yuri Chornoivan , 2014, 2015, 2023, 2025. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:56+0300\n" +"Last-Translator: Yuri Chornoivan \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\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" +"X-Generator: Lokalize 23.04.3\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "Привіт, світе!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "Ця програма виконується як процес з номером %s." + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "Інший фрагмент тексту" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "Ще якийсь фрагмент тексту" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Привіт" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Програма-приклад" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Оновити текст" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Використати розмітку XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Визначає, чи слід використовувати розмітку XML у тексті." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/vi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..41b802d493d96cfc8313ab6a21d276f39f38fb11 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/vi.po @@ -0,0 +1,65 @@ +# Vietnamese Translation for Gettext Examples. +# Bản dịch tiếng Việt dành cho các ví dụ của gói gettext. +# Copyright © 2015 Yoyodyne, Inc. (msgids) +# Copyright © 2015 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Clytie Siddall , 2005-2010. +# Trần Ngọc Quân , 2012-2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-24 09:10+0700\n" +"Last-Translator: Trần Ngọc Quân \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "Chào thế giới!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "Chương trình này đang chạy với mã số tiến trình %d." + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "Đây là văn bản khác" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "Đây là văn bản khác nữa" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "Chào" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "Ứng dụng mẫu" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "Cập nhật văn bản" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "Dùng đánh dấu XML" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "Có dùng đánh dấu XML trong văn bản hay không." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/zh_CN.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..44ed10b5bf32708da244622f690c9fe41715edfb --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/zh_CN.po @@ -0,0 +1,61 @@ +# zh_CN translation for hello-c-gnome3. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Funda Wang , 2003. +# Ji ZhengYu , 2015. +# Boyuan Yang <073plan@gmail.com>, 2019, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 15:56-0400\n" +"Last-Translator: Boyuan Yang <073plan@gmail.com>\n" +"Language-Team: Chinese (simplified) \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello.c:78 hello2.c:86 +msgid "Hello world!" +msgstr "你好世界!" + +#: hello.c:80 hello2.c:88 +#, c-format +msgid "This program is running as process number %s." +msgstr "此程序正以进程号 %s 运行。" + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "这是另一段文本" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "这还是另一段文本" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "你好" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "示例应用" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "更新文本" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "使用 XML 标记语言" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "是否在文本中使用 XML 标记。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/zh_HK.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..e268a546aaf0cef44d7761fd2b4cd0da91cc52b8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/zh_HK.po @@ -0,0 +1,58 @@ +# Chinese (Hong Kong) translation of hello-c-gnome3. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-07-05 15:40+0800\n" +"Last-Translator: Abel Cheung \n" +"Language-Team: Chinese (Hong Kong) \n" +"Language: zh_HK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "你好!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "本程式正在執行中,進程編號為 %d。" + +#: hello.c:84 hello2.c:92 +msgid "This is another text" +msgstr "" + +#: hello.c:86 hello2.c:94 +msgid "This is yet another text" +msgstr "" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "你好!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/zh_TW.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..8dc2edb2f240f91702d6c0a3da3c68650e5dbf5d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-gnome3/po/zh_TW.po @@ -0,0 +1,64 @@ +# Traditional Chinese translation of hello-c-gnome3. +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Abel Cheung , 2005. +# Wei-Lun Chao , 2013, 2015. +# Yi-Jyun Pan , 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-gnome3 0.23-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-11-30 14:14+0800\n" +"Last-Translator: Yi-Jyun Pan \n" +"Language-Team: Chinese (traditional) \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.c:78 hello2.c:86 +#, fuzzy +msgid "Hello world!" +msgstr "哈囉,大家好!" + +#: hello.c:80 hello2.c:88 +#, fuzzy, c-format +msgid "This program is running as process number %s." +msgstr "本程式正在執行,行程編號為 %d。" + +#: hello.c:84 hello2.c:92 +#, fuzzy +msgid "This is another text" +msgstr "這是另一段文字" + +#: hello.c:86 hello2.c:94 +#, fuzzy +msgid "This is yet another text" +msgstr "這又是另一段文字" + +#: hello.desktop.in.in:3 hello2.desktop.in.in:3 +msgid "Hello" +msgstr "哈囉" + +#: hello.desktop.in.in:4 hello2.desktop.in.in:4 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.ui:6 hello2.ui:6 +msgid "Example Application" +msgstr "應用軟體範例" + +#: hello.ui:34 hello2.ui:34 +msgid "Update text" +msgstr "更新文字" + +#: hello2.gschema.xml:8 +msgid "Use XML markup" +msgstr "使用 XML 標記" + +#: hello2.gschema.xml:9 +msgid "Whether to use XML markup in the text." +msgstr "是否在文字中使用 XML 標記。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/INSTALL b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..33dd0ac90e6d7ec38f9238b3b50519194cf326d4 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/INSTALL @@ -0,0 +1,83 @@ +This example implements a simple multithreaded web server. + +Platforms +--------- + +It supports systems with GNU libc. +It may also work, with some adaptations: +on Unix platforms (which have POSIX threads) +other than NetBSD (which does not have uselocale() nor gettext_l). + +Dependencies +------------ + +It relies just on gettext-runtime (and libc, of course). + +Preparations +------------ + +To install the needed locales on glibc systems: + +$ sudo localedef -i af_ZA -f UTF-8 af_ZA.UTF-8 +$ sudo localedef -i ast_ES -f UTF-8 ast_ES.UTF-8 +$ sudo localedef -i bg_BG -f UTF-8 bg_BG.UTF-8 +$ sudo localedef -i ca_ES -f UTF-8 ca_ES.UTF-8 +$ sudo localedef -i cs_CZ -f UTF-8 cs_CZ.UTF-8 +$ sudo localedef -i da_DK -f UTF-8 da_DK.UTF-8 +$ sudo localedef -i de_DE -f UTF-8 de_DE.UTF-8 +$ sudo localedef -i el_GR -f UTF-8 el_GR.UTF-8 +$ sudo localedef -i en_US -f UTF-8 en_US.UTF-8 +$ sudo localedef -i eo -f UTF-8 eo +$ sudo localedef -i es_ES -f UTF-8 es_ES.UTF-8 +$ sudo localedef -i fi_FI -f UTF-8 fi_FI.UTF-8 +$ sudo localedef -i fr_FR -f UTF-8 fr_FR.UTF-8 +$ sudo localedef -i ga_IE -f UTF-8 ga_IE.UTF-8 +$ sudo localedef -i gl_ES -f UTF-8 gl_ES.UTF-8 +$ sudo localedef -i hr_HR -f UTF-8 hr_HR.UTF-8 +$ sudo localedef -i hu_HU -f UTF-8 hu_HU.UTF-8 +$ sudo localedef -i id_ID -f UTF-8 id_ID.UTF-8 +$ sudo localedef -i it_IT -f UTF-8 it_IT.UTF-8 +$ sudo localedef -i ja_JP -f UTF-8 ja_JP.UTF-8 +$ sudo localedef -i ka_GE -f UTF-8 ka_GE.UTF-8 +$ sudo localedef -i ky_KG -f UTF-8 ky_KG +$ sudo localedef -i lv_LV -f UTF-8 lv_LV.UTF-8 +$ sudo localedef -i ms_MY -f UTF-8 ms_MY.UTF-8 +$ sudo localedef -i mt_MT -f UTF-8 mt_MT.UTF-8 +$ sudo localedef -i nb_NO -f UTF-8 nb_NO.UTF-8 +$ sudo localedef -i nl_NL -f UTF-8 nl_NL.UTF-8 +$ sudo localedef -i nn_NO -f UTF-8 nn_NO.UTF-8 +$ sudo localedef -i pl_PL -f UTF-8 pl_PL.UTF-8 +$ sudo localedef -i pt_PT -f UTF-8 pt_PT.UTF-8 +$ sudo localedef -i pt_BR -f UTF-8 pt_BR.UTF-8 +$ sudo localedef -i ro_RO -f UTF-8 ro_RO.UTF-8 +$ sudo localedef -i ru_RU -f UTF-8 ru_RU.UTF-8 +$ sudo localedef -i sk_SK -f UTF-8 sk_SK.UTF-8 +$ sudo localedef -i sl_SI -f UTF-8 sl_SI.UTF-8 +$ sudo localedef -i sq_AL -f UTF-8 sq_AL.UTF-8 +$ sudo localedef -i sr_RS -f UTF-8 sr_RS +$ sudo localedef -i sv_SE -f UTF-8 sv_SE.UTF-8 +$ sudo localedef -i ta_IN -f UTF-8 ta_IN +$ sudo localedef -i tr_TR -f UTF-8 tr_TR.UTF-8 +$ sudo localedef -i uk_UA -f UTF-8 uk_UA.UTF-8 +$ sudo localedef -i vi_VN -f UTF-8 vi_VN +$ sudo localedef -i zh_CN -f UTF-8 zh_CN.UTF-8 +$ sudo localedef -i zh_HK -f UTF-8 zh_HK.UTF-8 +$ sudo localedef -i zh_TW -f UTF-8 zh_TW.UTF-8 + +On Debian and Debian-based systems, if you want these locales to be +persistent across automatic system updates, the approach is different: +There, you need to enable the locales in the file /etc/locale.gen and +then run +$ sudo locale-gen + +Building +-------- + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..4409b2faf375b18e86b775e62afebf972625671a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/Makefile.am @@ -0,0 +1,26 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# General automake options. +AUTOMAKE_OPTIONS = foreign no-dependencies +ACLOCAL_AMFLAGS = -I m4 + +# The list of subdirectories containing Makefiles. +SUBDIRS = m4 po + +# The list of programs that are built. +bin_PROGRAMS = hello-server + +# The source files of the 'hello-server' program. +hello_server_SOURCES = hello-server.c + +# Define a C macro LOCALEDIR indicating where catalogs will be installed. +DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ + +# Link time dependencies. +LDADD = @LIBINTL@ + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/autoclean.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..9b8332fb282055fcc13b321d80e7054f54000af8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/autoclean.sh @@ -0,0 +1,43 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for cleaning all autogenerated files. + +test ! -f Makefile || make distclean +rm -rf autom4te.cache + +# Brought in by autopoint. +rm -f ABOUT-NLS +rm -f config.rpath +rm -f m4/gettext.m4 +rm -f m4/build-to-host.m4 +rm -f m4/host-cpu-c-abi.m4 +rm -f m4/iconv.m4 +rm -f m4/intlmacosx.m4 +rm -f m4/lib-ld.m4 +rm -f m4/lib-link.m4 +rm -f m4/lib-prefix.m4 +rm -f m4/nls.m4 +rm -f m4/po.m4 +rm -f m4/progtest.m4 +rm -f po/Makefile.in.in +rm -f po/remove-potcdate.sed + +# Generated by aclocal. +rm -f aclocal.m4 + +# Generated by autoconf. +rm -f configure + +# Generated or brought in by automake. +rm -f Makefile.in +rm -f m4/Makefile.in +rm -f compile +rm -f install-sh +rm -f missing +rm -f config.guess +rm -f config.sub +rm -f po/*.pot +rm -f po/stamp-po +rm -f po/*.gmo diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/autogen.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..c589e7d1ed236e29463d53113e1e54f263cddfb7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/autogen.sh @@ -0,0 +1,48 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for regenerating all autogenerated files. + +if test -r ../Makefile.am; then + # Inside the gettext source directory. + GETTEXT_TOPSRCDIR=../../.. +else + if test -r ../Makefile; then + # Inside a gettext build directory. + GETTEXT_TOOLS_SRCDIR=`sed -n -e 's,^top_srcdir *= *\(.*\)$,\1,p' ../Makefile` + # Adjust a relative top_srcdir. + case $GETTEXT_TOOLS_SRCDIR in + /*) ;; + *) GETTEXT_TOOLS_SRCDIR=../$GETTEXT_TOOLS_SRCDIR ;; + esac + GETTEXT_TOPSRCDIR=$GETTEXT_TOOLS_SRCDIR/../.. + else + # Installed under ${prefix}/share/doc/gettext/examples. + . ../installpaths + fi +fi + +autopoint -f # was: gettextize -f -c +rm po/Makevars.template +rm po/Rules-quot +rm po/boldquot.sed +rm po/en@boldquot.header +rm po/en@quot.header +rm po/insert-header.sed +rm po/quot.sed + +aclocal -I m4 + +autoconf + +automake -a -c + +cd po +for f in *.po; do + if test -r "$f"; then + lang=`echo $f | sed -e 's,\.po$,,'` + msgfmt -c -o $lang.gmo $lang.po + fi +done +cd .. diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/configure.ac b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..871d94ebe1a079aa2abe0158b97a4c4eafcd62bf --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/configure.ac @@ -0,0 +1,17 @@ +dnl Example for use of GNU gettext. +dnl This file is in the public domain. +dnl +dnl Configuration file - processed by autoconf. + +AC_INIT([hello-c-http], [0]) +AC_CONFIG_SRCDIR([hello-server.c]) +AM_INIT_AUTOMAKE([1.11]) + +AC_PROG_CC +AM_GNU_GETTEXT([external]) +AM_GNU_GETTEXT_VERSION([0.25]) + +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile.in]) +AC_OUTPUT diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/hello-server.c b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/hello-server.c new file mode 100644 index 0000000000000000000000000000000000000000..c4bffc5229dc98f7c8da2b2e2ef52282aecc443f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/hello-server.c @@ -0,0 +1,429 @@ +/* Example for use of GNU gettext. + This file is in the public domain. + + Source code of the C program. */ + +/* This example implements a simple multithreaded web server. + + In order to get translations via gettext(), a locale must be installed on + the server system for each language that should be served. For example, + in order to get French translations, you need to install the fr_FR.UTF-8 + locale. You find the list of locales below and the installation instructions + in the INSTALL file. + This may seem strange to people who think "why is this necessary? why should + reading a .mo file need a locale?" The rationale is that servers who produce + French text for a web page most often also need French number formatting, + French sorting (for lists and UI elements), etc. — and these functionalities + rely on the locale. + + Since the server is multithreaded, different requests may be served in + different threads. And different requests can come from different users, + that have declared different language preferences in their web browser. + Therefore, while at a certain moment one thread may produce a French + translation (and thus work with a French locale), another thread may be + producing a Spanish translation (and thus work with a Spanish locale) + at the same time. + Using the global locale (via setlocale()) would require locking, so that + different threads don't influence each other; but this would severely limit + the possible throughput of the server (which is the motivation for making + the server multithreaded in the first place). + Therefore the server does not use setlocale(), but instead works with + locale_t objects, that can become the "current locale" of a thread, via + uselocale(). + + While it would be possible to allocate the locale_t objects lazily (upon + the first request that needs the particular locale), here we allocate + them all up-front, so that the response time for a given request is fast + and so that there is no contention between the threads. */ + + +/* Persuade glibc to declare asprintf(). */ +#define _GNU_SOURCE 1 + +/* Get textdomain(), bindtextdomain(), gettext() declarations. */ +#include + +/* Get locale_t, newlocale(), uselocale() declarations. */ +#include + +/* Get pthread_create(), pthread_join() declarations. */ +#include + +/* Get asprintf(), dprintf() declarations. */ +#include + +/* Get abort(), free() declarations. */ +#include + +/* Get memset(), strchr(), strcasecmp(), strncasecmp() declarations. */ +#include + +/* Get nanosleep(). */ +#include + +/* Get close() declaration. */ +#include + +/* Get socket(), setsockopt(), bind(), listen(), accept(), recv() declarations. */ +#include + +/* Get IPPROTO_TCP, INADDR_ANY, in6addr_any. */ +#include + + +/* Mapping from language to locale. */ +struct language_support +{ + const char *language; + const char *locale_name; + locale_t locale; /* NULL when the locale is not installed on the system */ +}; +static struct language_support all_languages[] = +{ + /* The locale names here must all be UTF-8 locales. */ + { "af", "af_ZA.UTF-8" }, + { "ast", "ast_ES.UTF-8" }, + { "bg", "bg_BG.UTF-8" }, + { "ca", "ca_ES.UTF-8" }, + { "cs", "cs_CZ.UTF-8" }, + { "da", "da_DK.UTF-8" }, + { "de", "de_DE.UTF-8" }, + { "el", "el_GR.UTF-8" }, + { "en", "en_US.UTF-8" }, + { "eo", "eo" }, + { "es", "es_ES.UTF-8" }, + { "fi", "fi_FI.UTF-8" }, + { "fr", "fr_FR.UTF-8" }, + { "ga", "ga_IE.UTF-8" }, + { "gl", "gl_ES.UTF-8" }, + { "hr", "hr_HR.UTF-8" }, + { "hu", "hu_HU.UTF-8" }, + { "id", "id_ID.UTF-8" }, + { "it", "it_IT.UTF-8" }, + { "ja", "ja_JP.UTF-8" }, + { "ka", "ka_GE.UTF-8" }, + { "ky", "ky_KG" }, + { "lv", "lv_LV.UTF-8" }, + { "ms", "ms_MY.UTF-8" }, + { "mt", "mt_MT.UTF-8" }, + { "nb", "nb_NO.UTF-8" }, + { "nl", "nl_NL.UTF-8" }, + { "nn", "nn_NO.UTF-8" }, + { "pl", "pl_PL.UTF-8" }, + { "pt", "pt_PT.UTF-8" }, + { "pt_BR", "pt_BR.UTF-8" }, + { "ro", "ro_RO.UTF-8" }, + { "ru", "ru_RU.UTF-8" }, + { "sk", "sk_SK.UTF-8" }, + { "sl", "sl_SI.UTF-8" }, + { "sq", "sq_AL.UTF-8" }, + { "sr", "sr_RS" }, + { "sv", "sv_SE.UTF-8" }, + { "ta", "ta_IN" }, + { "tr", "tr_TR.UTF-8" }, + { "uk", "uk_UA.UTF-8" }, + { "vi", "vi_VN" }, + { "zh_CN", "zh_CN.UTF-8" }, + { "zh_HK", "zh_HK.UTF-8" }, + { "zh_TW", "zh_TW.UTF-8" } +}; + +/* Get the locale that exactly matches a given language. */ +static locale_t +get_locale_from_language (const char *language) +{ + size_t i; + for (i = 0; i < sizeof (all_languages) / sizeof (all_languages[0]); i++) + if (strcasecmp (all_languages[i].language, language) == 0) + return all_languages[i].locale; + return NULL; +} + +/* Get the locale that can be used for a given language. */ +static locale_t +get_locale_matching_language (char *language) +{ + /* Convert '-' to '_'. */ + char *dash = strchr (language, '-'); + if (dash != NULL) + *dash = '_'; + + locale_t result = get_locale_from_language (language); + if (result == NULL && dash != NULL) + { + /* Truncate the language at the dash's position. */ + *dash = '\0'; + result = get_locale_from_language (language); + } + + /* Restore language. */ + if (dash != NULL) + *dash = '-'; + + return result; +} + +/* Get the locale for an 'Accept-Language' request header field element. */ +static locale_t +get_locale_matching_element (char *element_start, char *element_end) +{ + char *p; + + /* Ignore the element part that starts with a semicolon. */ + for (p = element_start; p < element_end && *p != ';'; p++) + ; + element_end = p; + + /* Trim the element. */ + while (element_start < element_end && element_end[-1] == ' ') + element_end--; + while (element_start < element_end && element_start[0] == ' ') + element_start++; + if (element_start == element_end) + return NULL; + + char saved = *element_end; + *element_end = '\0'; + locale_t result = get_locale_matching_language (element_start); + *element_end = saved; + + return result; +} + +/* Get the locale for an 'Accept-Language' request header field. */ +static locale_t +get_locale_matching_field (char *field_start, char *field_end) +{ + /* The field's value is a comma-separated list of "lang [; q=...]" elements. + Each lang is of the form ll-CC, not a BCP 47 string. + Therefore, for Chinese, expect zh-CN, zh-TW, etc. See + */ + char *element_start = field_start; + for (;;) + { + char *p; + + for (p = element_start; p < field_end && *p != ','; p++) + ; + char *element_end = p; + + locale_t locale_for_element = + get_locale_matching_element (element_start, element_end); + /* If the locale is not supported on this system, skip this element and + continue with the next one. */ + if (locale_for_element != NULL) + return locale_for_element; + + if (element_end == field_end) + break; + element_start = element_end + 1; + } + return NULL; +} + +/* Extract the desired locale from the value of the 'Accept-Language' + request header field. */ +static locale_t +get_locale_from_header (char *header_start, char *header_end) +{ + char *line_start = header_start; + while (line_start < header_end) + { + char *line_end = strchr (line_start, '\r'); + if (line_end == NULL) + abort (); + if (line_end - line_start >= 16 + && strncasecmp (line_start, "Accept-Language:", 16) == 0) + { + char *field_start = line_start + 16; + char *field_end = line_end; + return get_locale_matching_field (field_start, field_end); + } + line_start = line_end + 2; + } + return NULL; +} + + +/* This function defines what each thread does. */ + +static void * +server_thread (void *arg) +{ + int server_socket = *(int const *) arg; + enum { BUFFER_SIZE = 4096 }; + + for (;;) + { + /* Accept an incoming connection. */ + struct sockaddr_storage addr; + socklen_t addrlen = sizeof (addr); + int connected_socket = + accept (server_socket, (struct sockaddr *) &addr, &addrlen); + if (connected_socket >= 0) + { + /* Receive the initial part of an HTTP request. */ + char request[BUFFER_SIZE + 1]; + int req_len = recv (connected_socket, request, BUFFER_SIZE, 0); + if (req_len >= 0) + { + /* Determine the extent of the HTTP request header. + We are not interested in the message body. */ + char *header_start; + char *header_end; + { + request[req_len] = '\0'; + char *line_start = request; + char *line_end = strchr (line_start, '\r'); + if (line_end != NULL && line_end[1] == '\n') + { + header_start = line_start = line_end + 2; + for (;;) + { + line_end = strchr (line_start, '\r'); + if (!(line_end != NULL && line_end[1] == '\n' + && line_end > line_start)) + /* An empty line ends the header and starts the body. */ + break; + line_start = line_end + 2; + } + header_end = line_start; + } + else + header_start = header_end = request; + } + /* Determine the locale. */ + locale_t locale = + get_locale_from_header (header_start, header_end); + /* Set the locale on this thread. + If locale == NULL, we use the thread's default locale, which + is the global locale, which is "C". */ + if (locale != NULL) + uselocale (locale); + + /* Get the localized HTTP response body. */ + char *response_body; + /* Some HTML could be added here. */ + if (asprintf (&response_body, "%s\n", gettext ("Hello, world!")) >= 0) + { + /* Writing to the connected_socket via send() is the same as + via write(). So, we can use dprintf(). Alternatively, + one could use fdopen() and fprintf(). */ + dprintf (connected_socket, + "HTTP/1.1 200 OK\r\n" + "Content-Type: text/plain; charset=UTF-8\r\n" + "Content-Length: %lu\r\n" + "Connection: close\r\n" + "\r\n" + "%s", + (unsigned long) strlen (response_body), + response_body); + free (response_body); + } + + /* Restore the previous locale. */ + if (locale != NULL) + uselocale (LC_GLOBAL_LOCALE); + } + close (connected_socket); + + /* Enable this to ensure that different threads get actually used. */ + if (0) + { + struct timespec duration = { .tv_sec = 60, .tv_nsec = 0 }; + nanosleep (&duration, NULL); + } + } + } + return NULL; +} + + +/* Main program. */ + +#define PORT 8080 + +/* The IPv4 server socket. */ +int server_socket4; +/* The IPv6 server socket. */ +int server_socket6; + +/* Number of threads per socket. */ +#define NUM_THREADS 10 + +int +main () +{ + textdomain ("hello-c-http"); + bindtextdomain ("hello-c-http", LOCALEDIR); + + /* Initialize all_languages. */ + unsigned int i; + for (i = 0; i < sizeof (all_languages) / sizeof (all_languages[0]); i++) + all_languages[i].locale = + newlocale (LC_ALL_MASK, all_languages[i].locale_name, NULL); + + /* Initialize an IPv4 server socket. */ + { + server_socket4 = socket (PF_INET, SOCK_STREAM, IPPROTO_TCP); + if (server_socket4 < 0) + return 1; + + /* Avoid an EADDRINUSE error in the next bind() call. */ + unsigned int flag = 1; + setsockopt (server_socket4, SOL_SOCKET, SO_REUSEADDR, &flag, sizeof (flag)); + + struct sockaddr_in server_addr; + memset (&server_addr, 0, sizeof (server_addr)); + server_addr.sin_family = AF_INET; + server_addr.sin_addr.s_addr = INADDR_ANY; + server_addr.sin_port = htons (PORT); + if (bind (server_socket4, (struct sockaddr *) &server_addr, sizeof (server_addr)) < 0) + return 2; + + if (listen (server_socket4, 10) < 0) + return 3; + } + + /* Initialize an IPv6 server socket. */ + { + server_socket6 = socket (PF_INET6, SOCK_STREAM, IPPROTO_TCP); + if (server_socket6 >= 0) + { + /* Avoid an EADDRINUSE error in the next bind() call. */ + unsigned int flag = 1; + setsockopt (server_socket6, SOL_SOCKET, SO_REUSEADDR, &flag, sizeof (flag)); + /* We don't want dual-socket support here. */ + setsockopt (server_socket6, IPPROTO_IPV6, IPV6_V6ONLY, &flag, sizeof (flag)); + + struct sockaddr_in6 server_addr; + memset (&server_addr, 0, sizeof (server_addr)); + server_addr.sin6_family = AF_INET6; + server_addr.sin6_addr = in6addr_any; + server_addr.sin6_port = htons (PORT); + if (bind (server_socket6, (struct sockaddr *) &server_addr, sizeof (server_addr)) < 0) + return 4; + + if (listen (server_socket6, 10) < 0) + return 5; + } + } + + printf ("Server is listening on port %d...\n", PORT); + + pthread_t thread; + for (i = 0; i < NUM_THREADS; i++) + { + if (pthread_create (&thread, NULL, server_thread, &server_socket4) < 0) + return 6; + } + if (server_socket6 >= 0) + for (i = 0; i < NUM_THREADS; i++) + { + if (pthread_create (&thread, NULL, server_thread, &server_socket6) < 0) + return 6; + } + + /* Wait forever. */ + pthread_join (thread, NULL); +} diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/m4/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..7d516f09ff64e7f731d69696326a8626ca9c4ee0 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/m4/Makefile.am @@ -0,0 +1,4 @@ +EXTRA_DIST = \ + gettext.m4 build-to-host.m4 host-cpu-c-abi.m4 \ + iconv.m4 intlmacosx.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 \ + nls.m4 po.m4 progtest.m4 diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/LINGUAS b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/LINGUAS @@ -0,0 +1,5 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Set of available languages. +af ast bg ca cs da de el eo es fi fr ga gl hr hu id it ja ka ky lv ms mt nb nl nn pl pt pt_BR ro ru sk sl sq sr sv ta tr uk vi zh_CN zh_HK zh_TW diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/Makevars b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/Makevars new file mode 100644 index 0000000000000000000000000000000000000000..097db7f958cc1e42df4500f9bc82f318f196456a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/Makevars @@ -0,0 +1,83 @@ +# Makefile variables for PO directory in any package using GNU gettext. +# +# Copyright (C) 2003-2025 Free Software Foundation, Inc. +# This file is free software; the Free Software Foundation gives +# unlimited permission to use, copy, distribute, and modify it. + +# Usually the message domain is the same as the package name. +DOMAIN = $(PACKAGE) + +# These two variables depend on the location of this directory. +subdir = po +top_builddir = .. + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = \ + --keyword=_ --flag=_:1:pass-c-format \ + --keyword=N_ --flag=N_:1:pass-c-format + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgid strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Yoyodyne, Inc. + +# This tells whether or not to prepend "GNU " prefix to the package +# name that gets inserted into the header of the $(DOMAIN).pot file. +# Possible values are "yes", "no", or empty. If it is empty, try to +# detect it automatically by scanning the files in $(top_srcdir) for +# "GNU packagename" string. +PACKAGE_GNU = no + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = bug-gettext@gnu.org + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = + +# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt' +# context. Possible values are "yes" and "no". Set this to yes if the +# package uses functions taking also a message context, like pgettext(), or +# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument. +USE_MSGCTXT = no + +# These options get passed to msgmerge. +# Useful options are in particular: +# --previous to keep previous msgids of translated messages +MSGMERGE_OPTIONS = + +# These options get passed to msginit. +# If you want to disable line wrapping when writing PO files, add +# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and +# MSGINIT_OPTIONS. +MSGINIT_OPTIONS = + +# This tells whether or not to regenerate a PO file when $(DOMAIN).pot +# has changed. Possible values are "yes" and "no". Set this to no if +# the POT file is checked in the repository and the version control +# program ignores timestamps. +PO_DEPENDS_ON_POT = yes + +# This tells whether or not to forcibly update $(DOMAIN).pot and +# regenerate PO files on "make dist". Possible values are "yes" and +# "no". Set this to no if the POT file and PO files are maintained +# externally. +DIST_DEPENDS_ON_UPDATE_PO = yes diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/POTFILES.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/POTFILES.in new file mode 100644 index 0000000000000000000000000000000000000000..8215af41ee682d47e28fccc6cc9ba8ba70deb98e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/POTFILES.in @@ -0,0 +1,5 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# List of files which contain translatable strings. +hello-server.c diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/af.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..6986ebf751fcaad7af9e4c3d8ce016f3d69de49d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/af.po @@ -0,0 +1,21 @@ +# Afrikaans translation for Silky +# Copyright (C) 2004 Free Software Foundation, Inc. +# This file is distributed under the same license as the silky package. +# Hanlie Pretorius , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http-0.13.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2003-12-31 10:30+2\n" +"Last-Translator: Ysbeer \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Hallo wêreld!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ast.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..fc1d1675cd41091a672068c2977ada596c9b3e0e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ast.po @@ -0,0 +1,24 @@ +# Asturian translation for hello-c-http +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marquinos , 2009. +# enolp , 2018. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-07-16 00:28+0100\n" +"Last-Translator: enolp \n" +"Language-Team: Asturian \n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 2.0\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/bg.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..829837e1d8177e9c70f81edd3d8db654ac0c3d9a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/bg.po @@ -0,0 +1,21 @@ +# Bulgarian translations for hello-c-http package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Roumen Petrov , 2010,2014,2015,2019,2023,2024.2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-http 0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-08 19:09+0200\n" +"Last-Translator: Roumen Petrov \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Здравейте всички!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ca.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..569789dfcc69efc52c162c7604ff30231bf1458b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ca.po @@ -0,0 +1,22 @@ +# Catalan messages for GNU hello-c-http. +# Copyright (C) 2003, 2014, 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ivan Vilata i Balaguer , 2003, 2014, 2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-07-07 08:36+0200\n" +"Last-Translator: Ivan Vilata i Balaguer \n" +"Language-Team: Catalan \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Hola, món!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/cs.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..7df3cdf72f0f4d13571bcd089739c8ad59e54b08 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/cs.po @@ -0,0 +1,24 @@ +# The Czech translation for the gettext package. +# Copyright (C) 2011 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marek Černocký , 2011. +# Petr Písař , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 20:05+02:00\n" +"Last-Translator: Petr Pisar \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Ahoj světe!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/da.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..f552cda3b90a3ed91aa7d481169f397b64b44e77 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/da.po @@ -0,0 +1,23 @@ +# Danish messages for hello-c-http. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Jan Djærv , 2003, 2006. +# Keld Simonsen , 2011. +# Joe Hansen , 2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-27 12:39+0100\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Hej verden!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/de.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..ec7ad25db041e8f747c9eacd25922cd440f7a84f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/de.po @@ -0,0 +1,27 @@ +# German messages for hello-c-http. +# Copyright © 2003, 2013 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Bruno Haible , 2003. +# Karl Eichwalder , 2003. +# Jakob Kramer , 2013. +# Mario Blättermann , 2014, 2023, 2025. +# Philipp Thomas , 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 17:15+0200\n" +"Last-Translator: Mario Blättermann \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 25.04.0\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Hallo Welt!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/el.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..fcc2cd7e3486b409b4e3b0cb4941c0af79878509 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/el.po @@ -0,0 +1,21 @@ +# Greek translation of hello-c-http +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.14.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2005-01-06 18:50+0000\n" +"Last-Translator: Simos Xenitellis \n" +"Language-Team: Greek \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.3.1\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/eo.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..ea5ee739b776bf0a66780c863289a03a236bb48e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/eo.po @@ -0,0 +1,23 @@ +# La teksto por la mesaĝoj de la programo "gettext". +# Copyright (C) 2006, 2016 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Edmund GRIMLEY EVANS , 2006. +# Felipe CASTRO , 2016, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-23 19:00-0300\n" +"Last-Translator: Felipe Castro \n" +"Language-Team: Esperanto \n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Saluton, mondo!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/es.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..95997c7240d40bc019357551f679c647e0bbe18b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/es.po @@ -0,0 +1,25 @@ +# Mensajes en español para GNU gettext. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# This file is distributed under the same license as the gettext package. +# +# Max de Mendizábal , 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004. +# Antonio Ceballos , 2014, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-02-23 17:01+0100\n" +"Last-Translator: Antonio Ceballos \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/fi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..bfa71f61110feb4df6de5cc86ab83fdec18a0085 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/fi.po @@ -0,0 +1,24 @@ +# Finnish messages for GNU Gettext examples. +# This file is distributed under the same license as the gettext package. +# Copyright © 2007, 2014, 2015 Yoyodyne, Inc. (msgids) +# Lauri Nurmi , 2007. +# Jorma Karvonen , 2014-2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-09-01 16:59+0300\n" +"Last-Translator: Jorma Karvonen \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 1.5.4\n" + +# Tämä nimenomainen käännös valittu GNU Hellon mukaisesti. +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Terve maailma!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/fr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..6b0ba39174351c528a85bbb0b3cdd5b7239d60e3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/fr.po @@ -0,0 +1,27 @@ +# Messages français pour GNU gettext. +# Copyright (C) 2006 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Michel Robitaille , 2006. +# Christophe Combelles , 2006 +# Stéphane Aulery , 2015 +# Christian Wiatr , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-28 16:25+0200\n" +"Last-Translator: Christian Wiatr \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ga.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..ebf47440428592b0a35d8413a56a416d2d2479c8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ga.po @@ -0,0 +1,21 @@ +# Irish translations for hello-c-http. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Kevin Patrick Scannell , 2004, 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2017-01-10 12:09-0500\n" +"Last-Translator: Kevin Patrick Scannell \n" +"Language-Team: Irish \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/gl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..88928c8690857e5160de4fb7cbdf7f45f28e9956 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/gl.po @@ -0,0 +1,26 @@ +# Galician translation for hello-c-http package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Leandro Regueiro , 2010-2014. +# +# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas +# colaborar connosco, podes atopar máis información en +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.19-rc1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2014-05-10 16:34+0100\n" +"Last-Translator: Leandro Regueiro \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Ola, mundo!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/hr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..3ee6657eb251e271ecf640b5f3e246c39dae9d39 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/hr.po @@ -0,0 +1,28 @@ +# Translation of hello-c-http to Croatian. +# Copyright (C) 2003, 2004, 2014, 2015, 2019 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Permission is granted to freely copy and distribute +# this file and modified versions, provided that this +# header is not removed and modified versions are marked +# as such. +# +# Tomislav Krznar , 2012. +# Božidar Putanec , 2018-2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:15-0700\n" +"Last-Translator: Božidar Putanec \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/hu.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..c8ae56f488bab8e8c9c4f583699c7ea9cbf05727 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/hu.po @@ -0,0 +1,24 @@ +# Hungarian translation for hello-c-http. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# Tamás Kiss , 2005. +# Balázs Úr , 2014, 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-23 20:31+0200\n" +"Last-Translator: Balázs Úr \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 1.2\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Hello, világ!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/id.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..f68cd2e969b5980c790da7d8796ddde2e610c591 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/id.po @@ -0,0 +1,22 @@ +# translation of hello-c-http-0.15-pre5.po to Indonesian +# Copyright (C) 2006 Yoyodyne, Inc. +# This file is distributed under the same license as the PACKAGE package. +# +# Tedi Heriyanto , 2006. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http-0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-09-27 20:19+0700\n" +"Last-Translator: Tedi Heriyanto \n" +"Language-Team: Indonesian \n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.11.2\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Hello, world!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/it.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..9788200fcbd2dc02672b60d0a74441bd70cfce81 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/it.po @@ -0,0 +1,24 @@ +# Italian messages for hello-c-http. +# Copyright (C) 2005, 2006 Yoyodyne, Inc. (msgids) +# Copyright (C) 2024 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Marco Colombo , 2005, 2006, 2015. +# Michele Locati , 2024, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-04 18:28+0200\n" +"Last-Translator: Michele Locati \n" +"Language-Team: Italian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Ciao, mondo!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ja.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..82f1c4d8ed674bc463bf313b148346f0512140c9 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ja.po @@ -0,0 +1,21 @@ +# Translation of `hello-c-http' messages to Japanese. +# Copyright (C) 2005, 2006, 2014, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Masahito Yamaga , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:59+0900\n" +"Last-Translator: Masahito Yamaga \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ka.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..c1228d07a99cd34160a1f0bba9a4346925d0f202 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ka.po @@ -0,0 +1,23 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Temuri Doghonadze , 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2022-05-22 05:04+0200\n" +"Last-Translator: Temuri Doghonadze \n" +"Language-Team: Georgian <(nothing)>\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0.1\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ky.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..2448a8d510e1abc29d2c9f5128c0b75c7b038a4e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ky.po @@ -0,0 +1,23 @@ +# Translation of 'hello-c-http' messages to Kirghiz. +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ilyas Bakirov , 2007. +# Ilyas Bakirov , 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-02-15 18:26+0600\n" +"Last-Translator: Ilyas Bakirov \n" +"Language-Team: Kirghiz \n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.0.6\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Салам дүйнө!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/lv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..2acf84124f310c2e915deadaada3f2a416b055ed --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/lv.po @@ -0,0 +1,25 @@ +# Latvian translation of hello-c-http +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Arvis Lācis , 2009. +# Rihards Priedītis , 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-09 11:44+0000\n" +"Last-Translator: Rihards Priedītis \n" +"Language-Team: Latvian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ms.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..b5427b3fa4bb92f549f8f2bd7fa184b353fa02d4 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ms.po @@ -0,0 +1,23 @@ +# hello-c-http Bahasa Melayu (Malay) (ms). +# Copyright (C) 2006, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2006, 2015, 2023, 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Sharuzzaman Ahmat Raslan , 2006, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-03 21:10+0800\n" +"Last-Translator: Sharuzzaman Ahmat Raslan \n" +"Language-Team: Malay \n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Hello, dunia!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/mt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..521d6041eff910ed9dc40506ed4b468b9e78bf7b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/mt.po @@ -0,0 +1,22 @@ +# hello-c-http-0.16.2-pre5. +# Copyright (C) 2008 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Clyde Meli , 2001-2008. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.16.2-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2008-11-18 17:27+0100\n" +"Last-Translator: Clyde Meli \n" +"Language-Team: Maltese \n" +"Language: mt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/nb.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..5d236e43912e24069863312c29ac6d2c79c77d92 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/nb.po @@ -0,0 +1,24 @@ +# Norwegian Bokmal translations for hello-c-http package. +# Copyright (C) 2012 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Johnny A. Solbu , 2012-2024 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-01-06 16:33+0100\n" +"Last-Translator: Johnny A. Solbu \n" +"Language-Team: Norwegian Bokmaal \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Hallo verden!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/nl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..69350247bab459768667f7248139335ff040859a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/nl.po @@ -0,0 +1,26 @@ +# Dutch translations for GNU hello-c-http. +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# "There are three basic rules for writing a novel. +# Unfortunately nobody knows what they are." +# +# Benno Schulenberg , 2007, 2014, 2015, 2019, 2025. +# Elros Cyriatan , 2004. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-01 14:51+0100\n" +"Last-Translator: Benno Schulenberg \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Hallo, wereld!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/nn.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..212fc3786681feb029859b36cc37c4d76f6e1eeb --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/nn.po @@ -0,0 +1,23 @@ +# Norwegian Nynorsk translation of GNU hello-c-http +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Karl Ove Hufthammer , 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http-0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-05-04 18:58+0200\n" +"Last-Translator: Karl Ove Hufthammer \n" +"Language-Team: Norwegian Nynorsk \n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 20.04.0\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Hei, verda!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/pl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..5438ca47908313e370216ec355a6bd2476501dc1 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/pl.po @@ -0,0 +1,22 @@ +# Polish translations for the GNU gettext messages, hello-c-http domain +# Copyright (C) 2010, 2014, 2015, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Rafał Maszkowski , 2003, 2010, 2014, 2015, 2025 +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-25 17:16+0200\n" +"Last-Translator: Rafał Maszkowski \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Cześć, świecie!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/pt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..b842eb448976c5db24bd9a56157230f719a61058 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/pt.po @@ -0,0 +1,23 @@ +# Portuguese (Portugal) translation of 'hello-c-http' package. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Pedro Albuquerque , 2019, 2020, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 11:24+0100\n" +"Last-Translator: Pedro Albuquerque \n" +"Language-Team: Portuguese \n" +"Language: 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;\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Olá mundo!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/pt_BR.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..c99835552121a03881ddf2a9e4763c514bf310c1 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/pt_BR.po @@ -0,0 +1,26 @@ +# Brazilian Portuguese translations for gettext-example +# Traduções em português brasileiro para gettext-example +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Rafael Fontenelle , 2013-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:24-0300\n" +"Last-Translator: Rafael Fontenelle \n" +"Language-Team: Brazilian Portuguese \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" +"X-Generator: Gtranslator 48.0\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Olá, mundo!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ro.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..30227a5ebdb02dedaf75dc1867dcdf4f84204180 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ro.po @@ -0,0 +1,45 @@ +# Translation of "hello-c-http" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-c-http. +# Copyright © 2015, 2019, 2022, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Eugen Hoancă , 2003. +# Mihai Cristescu , 2015 - 2019. +# Remus-Gabriel Chelu , 2022 - 2025. +# +# Cronologia traducerii fișierului „hello-c-http”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-c-http 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-c-http 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-c-http 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-c-http 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-c-http-0.20.2.pot”. +# Actualizare a algoritmului formelor de plural (de la „trei-vechi” la „trei-actual”). +# NU și a mesajelor traduse (acestea au rămas neschimbate). +# Eliminare a mesajelor ce-au dispărut în ultima versiune. +# Actualizări realizate de Remus-Gabriel Chelu , 15.01.2022. +# Actualizare a traducerii pentru versiunea 0.20.2 făcută de R-GC, ian-2022. +# Actualizare a traducerii pentru versiunea 0.22 făcută de R-GC, iun-2023. +# Revizuire și corectare a traducerii pentru versiunea 0.23-pre1 făcută de R-GC, oct-2024. +# Actualizare a traducerii pentru versiunea 0.24-pre1 făcută de R-GC, feb-2025. +# Actualizare a traducerii pentru versiunea 0.25-pre1 făcută de R-GC, apr-2025. +# Actualizare a traducerii pentru versiunea Y, făcută de X, Z(luna-anul). +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 00:25+0200\n" +"Last-Translator: Remus-Gabriel Chelu \n" +"Language-Team: Romanian \n" +"Language: ro\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==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Salutare, lume!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ru.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..e46171817debe0378f87c53622ed3a3f6690912d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ru.po @@ -0,0 +1,25 @@ +# Translation of hello-c-http-0.14.1.po to Russian +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Pavel Maryanov , 2004. +# SPDX-FileCopyrightText: 2014, 2015, 2023, 2025 Yuri Kozlov +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-02 09:17+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Lokalize 24.12.0\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" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/sk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..3f686173c52ed321b9c71d877dac546656adc61e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/sk.po @@ -0,0 +1,21 @@ +# Slovak translations GNU for hello-c-http package. +# Copyright (C) 2003, 2004, 2014, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Marcel Telka , 2003, 2004, 2014, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-c-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:53+0200\n" +"Last-Translator: Marcel Telka \n" +"Language-Team: Slovak \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Ahoj svet!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/sl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..41a0e2d21165a52fc4eb599c8e6a33d68e7b6702 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/sl.po @@ -0,0 +1,24 @@ +# -*- mode: po; coding: utf-8; -*- Slovenian message catalog for GNU gettext-example +# Copyright (C) 2005 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Primož Peterlin , 2005, 2014, 2015, 2024. +# $Id: hello-c-http-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-03-28 18:02+0100\n" +"Last-Translator: Primož Peterlin \n" +"Language-Team: Slovenian \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " +"n%100==4 ? 3 : 0);\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/sq.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..569439d27fd5a970de063d06e14e9060732ff7aa --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/sq.po @@ -0,0 +1,23 @@ +# Albanian translation of gettext-example. +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Besnik Bleta , 2020,2023,2024,2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http-0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:56+0300\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.2.2\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/sr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..e2d800261d6a46d37c835df360c4cfc73353026c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/sr.po @@ -0,0 +1,25 @@ +# Serbian translation of hello-c-http. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Aleksandar Jelenak , 2004. +# Мирослав Николић , 2014-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-02 16:51+0100\n" +"Last-Translator: Мирослав Николић \n" +"Language-Team: Serbian <(nothing)>\n" +"Language: sr\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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Здраво, свима!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/sv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..b49103825b2e9cbab255c4715293e90667fca02d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/sv.po @@ -0,0 +1,25 @@ +# Swedish messages for hello-c-http. +# Copyright © 2006, 2014, 2016, 2019, 2020, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Jan Djärv , 2003, 2006, 2014. +# Göran Uddeborg , 2016, 2019, 2020, 2023, 2024, 2025. +# Luna Jernberg , 2025. +# $Revision: 1.12 $ +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 12:18+0200\n" +"Last-Translator: Luna Jernberg \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Hej världen!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ta.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..0fa9b0e63efba6404d554c367752d00f71664ee1 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/ta.po @@ -0,0 +1,23 @@ +# Tamil messages for GNU gettext. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# List of contributors follow: +# Poorajith , 2018. +# Arun Isaac , 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-19 00:06+0100\n" +"Last-Translator: Arun Isaac \n" +"Language-Team: Tamil \n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/tr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..5cbf4df942f07d5d9cd2b3ac26b589ad0ef18b50 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/tr.po @@ -0,0 +1,24 @@ +# Turkish translation for hello-c-http. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2017 Yoyodyne, Inc. (msgids) +# Copyright (C) 2004 Free Software Foundation, Inc. +# Nilgün Belma Bugüner , 2003,2004 +# Mehmet Kececi , 2017, 2019, 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-04-17 13:10+0300\n" +"Last-Translator: Mehmet Kececi \n" +"Language-Team: Turkish \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" +"X-Generator: Poedit 2.3\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/uk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..7e8894141fc432185beba5d5ef6c7169827687ff --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/uk.po @@ -0,0 +1,25 @@ +# Ukrainian translation to hello-c-http +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Maxim V. Dziumanenko , 2004-2007. +# Yuri Chornoivan , 2014, 2015, 2023, 2025. +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:56+0300\n" +"Last-Translator: Yuri Chornoivan \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\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" +"X-Generator: Lokalize 23.04.3\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Привіт, світе!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/vi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..d65fb1bfa0c3e4bd96b9cfe69389d899bc268dbc --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/vi.po @@ -0,0 +1,25 @@ +# Vietnamese Translation for Gettext Examples. +# Bản dịch tiếng Việt dành cho các ví dụ của gói gettext. +# Copyright © 2015 Yoyodyne, Inc. (msgids) +# Copyright © 2015 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Clytie Siddall , 2005-2010. +# Trần Ngọc Quân , 2012-2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-24 09:10+0700\n" +"Last-Translator: Trần Ngọc Quân \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "Chào thế giới!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/zh_CN.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..a98880c0f63bae42dcaa42c1ec6d2b25e4f15342 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/zh_CN.po @@ -0,0 +1,24 @@ +# zh_CN translation for hello-c-http. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Funda Wang , 2003. +# Ji ZhengYu , 2015. +# Boyuan Yang <073plan@gmail.com>, 2019, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 15:56-0400\n" +"Last-Translator: Boyuan Yang <073plan@gmail.com>\n" +"Language-Team: Chinese (simplified) \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "你好,世界!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/zh_HK.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..b50aaa1253a72f66b9747bdd0547c672c6c4b68c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/zh_HK.po @@ -0,0 +1,20 @@ +# Chinese (Hong Kong) translation of hello-c-http. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-07-05 15:40+0800\n" +"Last-Translator: Abel Cheung \n" +"Language-Team: Chinese (Hong Kong) \n" +"Language: zh_HK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "你好!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/zh_TW.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..2aca90a5a37d38f58041f292a4098074e9ef409e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-c-http/po/zh_TW.po @@ -0,0 +1,24 @@ +# Traditional Chinese translation of hello-c-http. +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Abel Cheung , 2005. +# Wei-Lun Chao , 2013, 2015. +# Yi-Jyun Pan , 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-c-http 0.23-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-11-30 14:14+0800\n" +"Last-Translator: Yi-Jyun Pan \n" +"Language-Team: Chinese (traditional) \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello-server.c:307 +msgid "Hello, world!" +msgstr "哈囉,大家好!" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/INSTALL b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..2d751165236aea744975b874aa6ee706aa8517ca --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/INSTALL @@ -0,0 +1,10 @@ +This example relies on clisp (GNU clisp). + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..3911ff3ca37cec9b4dac3c508a1a7f46feed51b3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/Makefile.am @@ -0,0 +1,29 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# General automake options. +AUTOMAKE_OPTIONS = foreign +ACLOCAL_AMFLAGS = -I m4 + +# The list of subdirectories containing Makefiles. +SUBDIRS = m4 po + +# The list of programs that are built. +bin_SCRIPTS = hello + +# Compilation of Common Lisp programs. +SUFFIXES = .lisp .fas +.lisp.fas: + clisp -norc -q -c $< -o $@ +CLEANFILES = *.fas *.lib + +# Making a Common Lisp program executable. +hello: hello.fas + (echo '#!@CLISP@'; cat $<) > $@ + chmod a+x $@ +CLEANFILES += hello + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/autoclean.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..8655a871726b2a31a935332f3e7cbba7b36928e8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/autoclean.sh @@ -0,0 +1,30 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for cleaning all autogenerated files. + +test ! -f Makefile || make distclean +rm -rf autom4te.cache + +# Brought in by explicit copy. +rm -f m4/nls.m4 +rm -f m4/po.m4 +rm -f m4/progtest.m4 +rm -f po/remove-potcdate.sed + +# Generated by aclocal. +rm -f aclocal.m4 + +# Generated by autoconf. +rm -f configure + +# Generated or brought in by automake. +rm -f Makefile.in +rm -f m4/Makefile.in +rm -f po/Makefile.in +rm -f install-sh +rm -f missing +rm -f po/*.pot +rm -f po/stamp-po +rm -f po/*.gmo diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/autogen.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..a972da8041799c1ddf0a23303c0660eb9fb827bc --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/autogen.sh @@ -0,0 +1,44 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for regenerating all autogenerated files. + +if test -r ../Makefile.am; then + # Inside the gettext source directory. + GETTEXT_TOPSRCDIR=../../.. +else + if test -r ../Makefile; then + # Inside a gettext build directory. + GETTEXT_TOOLS_SRCDIR=`sed -n -e 's,^top_srcdir *= *\(.*\)$,\1,p' ../Makefile` + # Adjust a relative top_srcdir. + case $GETTEXT_TOOLS_SRCDIR in + /*) ;; + *) GETTEXT_TOOLS_SRCDIR=../$GETTEXT_TOOLS_SRCDIR ;; + esac + GETTEXT_TOPSRCDIR=$GETTEXT_TOOLS_SRCDIR/../.. + else + # Installed under ${prefix}/share/doc/gettext/examples. + . ../installpaths + fi +fi + +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/nls.m4 m4/nls.m4 +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/po.m4 m4/po.m4 +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/progtest.m4 m4/progtest.m4 +cp -p ${GETTEXTSRCPODIR-$GETTEXT_TOPSRCDIR/gettext-runtime/po}/remove-potcdate.sed po/remove-potcdate.sed + +aclocal -I m4 + +autoconf + +automake -a -c + +cd po +for f in *.po; do + if test -r "$f"; then + lang=`echo $f | sed -e 's,\.po$,,'` + msgfmt -c -o $lang.gmo $lang.po + fi +done +cd .. diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/configure.ac b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..68b5c7e3f1b361ab72914a0cfd8f4aeb19c343ca --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/configure.ac @@ -0,0 +1,38 @@ +dnl Example for use of GNU gettext. +dnl This file is in the public domain. +dnl +dnl Configuration file - processed by autoconf. + +AC_INIT([hello-clisp], [0]) +AC_CONFIG_SRCDIR([hello.lisp.in]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Check for availability of the Lisp system. +AC_PATH_PROG([CLISP], [clisp]) +if test -z "$CLISP"; then + echo "*** Essential program clisp not found" 1>&2 + exit 1 +fi +AC_SUBST([CLISP]) + +dnl The installed program must know where to find its message catalogs. +dnl Unfortunately, prefix gets only finally determined at the end of configure. +if test "X$prefix" = "XNONE"; then + final_prefix="$ac_default_prefix" +else + final_prefix="$prefix" +fi +save_prefix="$prefix" +prefix="$final_prefix" +eval "datarootdir=\"${datarootdir}\"" +eval "localedir=\"${datarootdir}/locale\"" +prefix="$save_prefix" +AC_SUBST([localedir]) + +dnl Support for the po directory. +AM_PO_SUBDIRS + +AC_CONFIG_FILES([Makefile hello.lisp]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/hello.lisp.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/hello.lisp.in new file mode 100644 index 0000000000000000000000000000000000000000..bbcc8ce7d3eb0c4eef5a5cc47190adc7e2b240a6 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/hello.lisp.in @@ -0,0 +1,15 @@ +#| Example for use of GNU gettext. + This file is in the public domain. + + Source code of the GNU clisp program. +|# + +(setf (i18n:textdomain) "hello-clisp") +(setf (i18n:textdomaindir "hello-clisp") "@localedir@/") +(defmacro _ (string) `(i18n:gettext ,string)) + +(write-line (_ "Hello, world!")) + +(format t (_ "This program is running as process number ~D.") + (ext:process-id)) +(terpri) diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/m4/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..8a841b31f12ff3bd59428fbba049f50825d91510 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/m4/Makefile.am @@ -0,0 +1,2 @@ +EXTRA_DIST = \ + nls.m4 po.m4 diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/LINGUAS b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/LINGUAS @@ -0,0 +1,5 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Set of available languages. +af ast bg ca cs da de el eo es fi fr ga gl hr hu id it ja ka ky lv ms mt nb nl nn pl pt pt_BR ro ru sk sl sq sr sv ta tr uk vi zh_CN zh_HK zh_TW diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..eebfcdbf3ba45e5f0f91cd483c8bf7bf9fe9a2fc --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/Makefile.am @@ -0,0 +1,434 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# List of files which contain translatable strings. +POTFILES = \ + hello.lisp.in + +# Usually the message domain is the same as the package name. +DOMAIN = $(PACKAGE) + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = --keyword=_ --flag=_:1:pass-lisp-format + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgid strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Yoyodyne, Inc. + +# This tells whether or not to prepend "GNU " prefix to the package +# name that gets inserted into the header of the $(DOMAIN).pot file. +# Possible values are "yes", "no", or empty. If it is empty, try to +# detect it automatically by scanning the files in $(top_srcdir) for +# "GNU packagename" string. +PACKAGE_GNU = no + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = bug-gettext@gnu.org + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = + +# These options get passed to msgmerge. +# Useful options are in particular: +# --previous to keep previous msgids of translated messages +MSGMERGE_OPTIONS = + +# These options get passed to msginit. +# If you want to disable line wrapping when writing PO files, add +# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and +# MSGINIT_OPTIONS. +MSGINIT_OPTIONS = + +MSGMERGE = @MSGMERGE@ +MSGMERGE_UPDATE = @MSGMERGE@ --update +MSGMERGE_FOR_MSGFMT_OPTION = @MSGMERGE_FOR_MSGFMT_OPTION@ +MSGINIT = msginit +MSGCONV = msgconv +MSGFILTER = msgfilter + +# This is computed as $(foreach file, $(POTFILES), $(top_srcdir)/$(file)) +POTFILES_DEPS != for file in $(POTFILES); do echo $(top_srcdir)/$$file; done + +# The set of available translations. +ALL_LINGUAS != if test -f $(srcdir)/LINGUAS; then \ + sed -e '/^\#/d' < $(srcdir)/LINGUAS; \ + else \ + echo $(LINGUAS); \ + fi +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) +POFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$$lang.po; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) +GMOFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$$lang.gmo; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) +UPDATEPOFILES != for lang in $(ALL_LINGUAS); do echo $$lang.po-update; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) +DUMMYPOFILES != for lang in $(ALL_LINGUAS); do echo $$lang.nop; done + +# The set of desired translations, as specified by the installer or distributor. +DESIRED_LINGUAS = @DESIRED_LINGUAS@ +# The set of translations to install. This is computed based on $(ALL_LINGUAS) +# and $(DESIRED_LINGUAS). It is a subset of $(ALL_LINGUAS). +# We use the presentlang catalog if desiredlang is +# a. equal to presentlang, or +# b. a variant of presentlang (because in this case, presentlang can be used +# as a fallback for messages which are not translated in the desiredlang +# catalog). +INST_LINGUAS != for presentlang in $(ALL_LINGUAS); do \ + useit=false; \ + for desiredlang in $(DESIRED_LINGUAS); do \ + case "$$desiredlang" in \ + "$$presentlang" | "$$presentlang"_* | "$$presentlang".* | "$$presentlang"@*) \ + useit=true ;; \ + esac; \ + done; \ + if $$useit; then echo $$presentlang; fi; \ + done +# This is computed as $(foreach lang, $(INST_LINGUAS), $(lang).gmo) +CATALOGS != for lang in $(INST_LINGUAS); do echo $$lang.gmo; done + +SUFFIXES = .po .gmo .nop .po-create .po-update + +# The .pot file, stamp-po, .po files, and .gmo files appear in release tarballs. +# The GNU Coding Standards say in +# : +# "GNU distributions usually contain some files which are not source files +# ... . Since these files normally appear in the source directory, they +# should always appear in the source directory, not in the build directory. +# So Makefile rules to update them should put the updated files in the +# source directory." +# Therefore we put these files in the source directory, not the build directory. + +# During .po -> .gmo conversion, take into account the most recent changes to +# the .pot file. This eliminates the need to update the .po files when the +# .pot file has changed, which would be troublesome if the .po files are put +# under version control. +$(GMOFILES): $(srcdir)/$(DOMAIN).pot +.po.gmo: + @lang=`echo $* | sed -e 's,.*/,,'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}rm -f $${lang}.gmo && $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $${lang}.po $(DOMAIN).pot && $(GMSGFMT) -c --statistics --verbose -o $${lang}.gmo $${lang}.1po && rm -f $${lang}.1po"; \ + cd $(srcdir) && \ + rm -f $${lang}.gmo && \ + $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $${lang}.po $(DOMAIN).pot && \ + $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.1po && \ + mv t-$${lang}.gmo $${lang}.gmo && \ + rm -f $${lang}.1po + + +all-local: all-local-@USE_NLS@ + +all-local-yes: $(srcdir)/stamp-po +all-local-no: + +# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no +# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because +# we don't want to bother translators with empty POT files). We assume that +# LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty. +# In this case, $(srcdir)/stamp-po is a nop (i.e. a phony target). + +# $(srcdir)/stamp-po is a timestamp denoting the last time at which the CATALOGS +# have been loosely updated. Its purpose is that when a developer or translator +# checks out the package from a version control system, and the $(DOMAIN).pot +# file is not under version control, "make" will update the $(DOMAIN).pot and +# the $(CATALOGS), but subsequent invocations of "make" will do nothing. This +# timestamp would not be necessary if updating the $(CATALOGS) would always +# touch them; however, the rule for $(POFILES) has been designed to not touch +# files that don't need to be changed. +$(srcdir)/stamp-po: $(srcdir)/$(DOMAIN).pot + test ! -f $(srcdir)/$(DOMAIN).pot || \ + test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) + @test ! -f $(srcdir)/$(DOMAIN).pot || { \ + echo "touch $(srcdir)/stamp-po" && \ + echo timestamp > $(srcdir)/stamp-poT && \ + mv $(srcdir)/stamp-poT $(srcdir)/stamp-po; \ + } + +# This target rebuilds $(DOMAIN).pot; it is an expensive operation. +# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. +# The determination of whether the package xyz is a GNU one is based on the +# heuristic whether some file in the top level directory mentions "GNU xyz". +# If GNU 'find' is available, we avoid grepping through monster files. +$(DOMAIN).pot-update: $(POTFILES_DEPS) + package_gnu="$(PACKAGE_GNU)"; \ + test -n "$$package_gnu" || { \ + if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \ + LC_ALL=C find -L $(top_srcdir) -maxdepth 1 -type f -size -10000000c -exec grep -i 'GNU $(PACKAGE)' /dev/null '{}' ';' 2>/dev/null; \ + else \ + LC_ALL=C grep -i 'GNU $(PACKAGE)' $(top_srcdir)/* 2>/dev/null; \ + fi; \ + } | grep -v 'libtool:' >/dev/null; then \ + package_gnu=yes; \ + else \ + package_gnu=no; \ + fi; \ + }; \ + if test "$$package_gnu" = "yes"; then \ + package_prefix='GNU '; \ + else \ + package_prefix=''; \ + fi; \ + if test -n '$(MSGID_BUGS_ADDRESS)'; then \ + msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ + else \ + msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ + fi; \ + case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ + $(POTFILES) \ + ;; \ + *) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --package-name="$${package_prefix}$(PACKAGE)" \ + --package-version='$(VERSION)' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ + $(POTFILES) \ + ;; \ + esac + test ! -f $(DOMAIN).po || { \ + if test -f $(srcdir)/$(DOMAIN).pot-header; then \ + sed -e '1,/^#$$/d' < $(DOMAIN).po > $(DOMAIN).1po && \ + cat $(srcdir)/$(DOMAIN).pot-header $(DOMAIN).1po > $(DOMAIN).po && \ + rm -f $(DOMAIN).1po \ + || exit 1; \ + fi; \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + sed -f $(srcdir)/remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ + sed -f $(srcdir)/remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ + if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ + else \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + else \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + } + +# This rule has no dependencies: we don't need to update $(DOMAIN).pot at +# every "make" invocation, only create it when it is missing. +# Only "make $(DOMAIN).pot-update" or "make dist" will force an update. +$(srcdir)/$(DOMAIN).pot: + $(MAKE) $(DOMAIN).pot-update + +# This target rebuilds a PO file if $(DOMAIN).pot has changed. +# Note that a PO file is not touched if it doesn't need to be changed. +$(POFILES): $(srcdir)/$(DOMAIN).pot + @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ + if test -f "$(srcdir)/$${lang}.po"; then \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot"; \ + cd $(srcdir) \ + && { case `$(MSGMERGE_UPDATE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.10 | 0.10.*) \ + $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ + 0.1[1-5] | 0.1[1-5].*) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ + 0.1[6-7] | 0.1[6-7].*) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --previous $${lang}.po $(DOMAIN).pot;; \ + *) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot;; \ + esac; \ + }; \ + else \ + $(MAKE) $${lang}.po-create; \ + fi + + +install-data-local: install-data-local-@USE_NLS@ +install-data-local-no: all-local +install-data-local-yes: all-local + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(MKDIR_P) $(DESTDIR)$$dir; \ + if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ + $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ + echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ + fi; \ + done; \ + done + +installdirs-local: installdirs-local-@USE_NLS@ +installdirs-local-no: +installdirs-local-yes: + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(MKDIR_P) $(DESTDIR)$$dir; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + fi; \ + done; \ + done + +uninstall-local: uninstall-local-@USE_NLS@ +uninstall-local-no: +uninstall-local-yes: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + done; \ + done + +html ID: + +MOSTLYCLEANFILES = +MOSTLYCLEANFILES += stamp-poT +MOSTLYCLEANFILES += core core.* *.stackdump $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po +MOSTLYCLEANFILES += *.o + +MAINTAINERCLEANFILES = $(DOMAIN).pot stamp-po $(GMOFILES) + +EXTRA_DIST = remove-potcdate.sed LINGUAS $(POFILES) $(GMOFILES) + +# Hidden from automake, but really activated. Works around an automake-1.5 bug. +#distdir: distdir1 +distdir1: + $(MAKE) update-po + $(MAKE) $(srcdir)/stamp-po + @if test -f $(srcdir)/$(DOMAIN).pot; then \ + for file in $(DOMAIN).pot stamp-po; do \ + if test -f $$file; then d=.; else d=$(srcdir); fi; \ + cp -p $$d/$$file $(distdir)/$$file || exit 1; \ + done; \ + else \ + case $(XGETTEXT) in \ + :) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because a suitable 'xgettext' program was not found in PATH." 1>&2;; \ + *) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because 'xgettext' found no strings to extract. Check the POTFILES and the XGETTEXT_OPTIONS in the Makefile.am file." 1>&2;; \ + esac; \ + fi + +update-po: Makefile + $(MAKE) $(DOMAIN).pot-update + test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) + $(MAKE) update-gmo + +# General rule for creating PO files. + +.nop.po-create: + @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ + echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ + exit 1 + +# General rule for updating PO files. + +.nop.po-update: + @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --lang=$$lang --previous $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ + cd $(srcdir); \ + if { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.10 | 0.10.*) \ + $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + 0.1[1-5] | 0.1[1-5].*) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + 0.1[6-7] | 0.1[6-7].*) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --previous -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + *) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --lang=$$lang --previous -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + esac; \ + }; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +$(DUMMYPOFILES): + +update-gmo: Makefile $(GMOFILES) + @: diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/af.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..eff618c3b6af1f08dae011722db449e626bafebe --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/af.po @@ -0,0 +1,26 @@ +# Afrikaans translation for Silky +# Copyright (C) 2004 Free Software Foundation, Inc. +# This file is distributed under the same license as the silky package. +# Hanlie Pretorius , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp-0.13.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2003-12-31 10:30+2\n" +"Last-Translator: Ysbeer \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Hierdie program loop as prosesnommer ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ast.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..7d89c16b3e0799b43c54b63764ed966d29972f4e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-clisp +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marquinos , 2009. +# enolp , 2018. +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-07-16 00:28+0100\n" +"Last-Translator: enolp \n" +"Language-Team: Asturian \n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 2.0\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Esti programa ta executándose como procesu númberu ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/bg.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..81c3b945530c50bfbb1cb718eb26bd4d1554b78a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-clisp package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Roumen Petrov , 2010,2014,2015,2019,2023,2024.2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-clisp 0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-08 19:09+0200\n" +"Last-Translator: Roumen Petrov \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Програмата е пусната под процес номер ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ca.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..a32fd3869d3442f39702d7c01fc9412edc5f8914 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-clisp. +# Copyright (C) 2003, 2014, 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ivan Vilata i Balaguer , 2003, 2014, 2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-07-07 08:36+0200\n" +"Last-Translator: Ivan Vilata i Balaguer \n" +"Language-Team: Catalan \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Aquest programa està corrent amb el número de procés ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/cs.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..3abced00979f5b594d41b3cb21e472fa833964fd --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/cs.po @@ -0,0 +1,29 @@ +# The Czech translation for the gettext package. +# Copyright (C) 2011 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marek Černocký , 2011. +# Petr Písař , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 20:05+02:00\n" +"Last-Translator: Petr Pisar \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Tento program běží jako proces číslo ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/da.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..91a4c511f9ca2338b9c12a2701ec34c83377e314 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-clisp. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Jan Djærv , 2003, 2006. +# Keld Simonsen , 2011. +# Joe Hansen , 2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-27 12:39+0100\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Dette program kører som proces nummer ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/de.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..40487edfdb6f08701e2f8a68d734d5615b7ac7d8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-clisp. +# Copyright © 2003, 2013 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Bruno Haible , 2003. +# Karl Eichwalder , 2003. +# Jakob Kramer , 2013. +# Mario Blättermann , 2014, 2023, 2025. +# Philipp Thomas , 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 17:15+0200\n" +"Last-Translator: Mario Blättermann \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 25.04.0\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Dieses Programm läuft mit der Prozess-Nummer ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/el.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..2d474a727fce7b4a7b6cf26e8a71021aa383f43b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-clisp +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.14.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2005-01-06 18:50+0000\n" +"Last-Translator: Simos Xenitellis \n" +"Language-Team: Greek \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.3.1\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/eo.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..7e28edbf6b27315e469bc854e368984ad99ac737 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/eo.po @@ -0,0 +1,28 @@ +# La teksto por la mesaĝoj de la programo "gettext". +# Copyright (C) 2006, 2016 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Edmund GRIMLEY EVANS , 2006. +# Felipe CASTRO , 2016, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-23 19:00-0300\n" +"Last-Translator: Felipe Castro \n" +"Language-Team: Esperanto \n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Ĉi tiu programo rulas kiel procez-numero ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/es.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..f0315c7c0628f07afffc3f61ca5ce10c27d8f055 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/es.po @@ -0,0 +1,30 @@ +# Mensajes en español para GNU gettext. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# This file is distributed under the same license as the gettext package. +# +# Max de Mendizábal , 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004. +# Antonio Ceballos , 2014, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-02-23 17:01+0100\n" +"Last-Translator: Antonio Ceballos \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Este programa está corriendo como el proceso número ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/fi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..0ec55ed9dc3e9ee0306dbfc6e240ce5159cacf84 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/fi.po @@ -0,0 +1,29 @@ +# Finnish messages for GNU Gettext examples. +# This file is distributed under the same license as the gettext package. +# Copyright © 2007, 2014, 2015 Yoyodyne, Inc. (msgids) +# Lauri Nurmi , 2007. +# Jorma Karvonen , 2014-2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-09-01 16:59+0300\n" +"Last-Translator: Jorma Karvonen \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 1.5.4\n" + +# Tämä nimenomainen käännös valittu GNU Hellon mukaisesti. +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Tämän ohjelman prosessinumero on ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/fr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..ca6e0e40ea10394d01e4c3e90e617622ba53eb12 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/fr.po @@ -0,0 +1,32 @@ +# Messages français pour GNU gettext. +# Copyright (C) 2006 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Michel Robitaille , 2006. +# Christophe Combelles , 2006 +# Stéphane Aulery , 2015 +# Christian Wiatr , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-28 16:25+0200\n" +"Last-Translator: Christian Wiatr \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Ce programme est exécuté en tant que processus numéro ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ga.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..391a1a2134b4fff7a7c8697afc670d48ba92f1f7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-clisp. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Kevin Patrick Scannell , 2004, 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2017-01-10 12:09-0500\n" +"Last-Translator: Kevin Patrick Scannell \n" +"Language-Team: Irish \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Tá an clár seo ag rith mar phróiseas ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/gl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..811a4e4df30d9c0c335cbf96d32e5a7cfdd7557c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-clisp package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Leandro Regueiro , 2010-2014. +# +# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas +# colaborar connosco, podes atopar máis información en +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.19-rc1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2014-05-10 16:34+0100\n" +"Last-Translator: Leandro Regueiro \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Este programa estase executando como o proceso número ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/hr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..f2a38f38d798c31e4e310810301dee453b53a337 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-clisp to Croatian. +# Copyright (C) 2003, 2004, 2014, 2015, 2019 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Permission is granted to freely copy and distribute +# this file and modified versions, provided that this +# header is not removed and modified versions are marked +# as such. +# +# Tomislav Krznar , 2012. +# Božidar Putanec , 2018-2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-clisp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:15-0700\n" +"Last-Translator: Božidar Putanec \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Ovaj program se izvršava kao proces broj ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/hu.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..9d5657828a48d688a6dc96c50193d4121d9e3c99 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-clisp. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# Tamás Kiss , 2005. +# Balázs Úr , 2014, 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-23 20:31+0200\n" +"Last-Translator: Balázs Úr \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 1.2\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Ez a program a(z) ~D folyamatazonosítóval fut." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/id.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..d20e29077de5671c8bcc579aa380ebb337c8f696 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-clisp-0.15-pre5.po to Indonesian +# Copyright (C) 2006 Yoyodyne, Inc. +# This file is distributed under the same license as the PACKAGE package. +# +# Tedi Heriyanto , 2006. +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp-0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-09-27 20:19+0700\n" +"Last-Translator: Tedi Heriyanto \n" +"Language-Team: Indonesian \n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.11.2\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Program ini berjalan sebagai proses nomor ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/it.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..552743870bab01e004d816df3a0623cec1e283fe --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-clisp. +# Copyright (C) 2005, 2006 Yoyodyne, Inc. (msgids) +# Copyright (C) 2024 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Marco Colombo , 2005, 2006, 2015. +# Michele Locati , 2024, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-clisp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-04 18:28+0200\n" +"Last-Translator: Michele Locati \n" +"Language-Team: Italian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Questo programma è in esecuzione con numero di processo ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ja.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..5b07fe15b63e9438c0cb6dcfe94c66ca8fd44c92 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-clisp' messages to Japanese. +# Copyright (C) 2005, 2006, 2014, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Masahito Yamaga , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-clisp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:59+0900\n" +"Last-Translator: Masahito Yamaga \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "このプログラムはプロセス番号 ~D で動いています." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ka.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..fff0ac6b04bb768fa64ddd669a9047135fafd05f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ka.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Temuri Doghonadze , 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2022-05-22 05:04+0200\n" +"Last-Translator: Temuri Doghonadze \n" +"Language-Team: Georgian <(nothing)>\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0.1\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ky.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..78c6f1682ceb2b851eb8cae5f286882328a781c1 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-clisp' messages to Kirghiz. +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ilyas Bakirov , 2007. +# Ilyas Bakirov , 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-02-15 18:26+0600\n" +"Last-Translator: Ilyas Bakirov \n" +"Language-Team: Kirghiz \n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.0.6\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Бул программа ~D процесс номери катары иштеп жатат." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/lv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..3625931e767afc8a774e08ba20e54316d5a6f647 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-clisp +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Arvis Lācis , 2009. +# Rihards Priedītis , 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-09 11:44+0000\n" +"Last-Translator: Rihards Priedītis \n" +"Language-Team: Latvian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Šī programma darbojas ar procesa numuru ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ms.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..1b23910a633319b68719ae91f48918f2207b55d1 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ms.po @@ -0,0 +1,28 @@ +# hello-clisp Bahasa Melayu (Malay) (ms). +# Copyright (C) 2006, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2006, 2015, 2023, 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Sharuzzaman Ahmat Raslan , 2006, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-03 21:10+0800\n" +"Last-Translator: Sharuzzaman Ahmat Raslan \n" +"Language-Team: Malay \n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Program ini dilaksanakan sebagai proses bernombor ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/mt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..ef6166d31d64310b96332ab6b25b938b467de679 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/mt.po @@ -0,0 +1,27 @@ +# hello-clisp-0.16.2-pre5. +# Copyright (C) 2008 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Clyde Meli , 2001-2008. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.16.2-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2008-11-18 17:27+0100\n" +"Last-Translator: Clyde Meli \n" +"Language-Team: Maltese \n" +"Language: mt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Dal-programm qed jaħdem taħt il-proċess numru ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/nb.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..0b663418479c342f5e099bf3af4fcd5b5851cbfa --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-clisp package. +# Copyright (C) 2012 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Johnny A. Solbu , 2012-2024 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-01-06 16:33+0100\n" +"Last-Translator: Johnny A. Solbu \n" +"Language-Team: Norwegian Bokmaal \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Dette programmet kjører som prosess nummer ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/nl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..77be4c6a43219f84e380a9f1291996e3469cf215 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-clisp. +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# "There are three basic rules for writing a novel. +# Unfortunately nobody knows what they are." +# +# Benno Schulenberg , 2007, 2014, 2015, 2019, 2025. +# Elros Cyriatan , 2004. +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-01 14:51+0100\n" +"Last-Translator: Benno Schulenberg \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Dit programma draait als proces nummer ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/nn.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..4ce4ec43850941692a4af1fcf11b83dc48aec591 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-clisp +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Karl Ove Hufthammer , 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp-0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-05-04 18:58+0200\n" +"Last-Translator: Karl Ove Hufthammer \n" +"Language-Team: Norwegian Nynorsk \n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 20.04.0\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Dette programmet køyrer som prosess nummer ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/pl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..3a988791b351f052ccab4d592dc094862df33fcb --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-clisp domain +# Copyright (C) 2010, 2014, 2015, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Rafał Maszkowski , 2003, 2010, 2014, 2015, 2025 +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-clisp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-25 17:16+0200\n" +"Last-Translator: Rafał Maszkowski \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Ten program działa jako proces o numerze ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/pt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..5efb96c3e91a8e28b0947a87b62444d04a0af437 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-clisp' package. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Pedro Albuquerque , 2019, 2020, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 11:24+0100\n" +"Last-Translator: Pedro Albuquerque \n" +"Language-Team: Portuguese \n" +"Language: 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;\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Este programa está em execução como processo nº ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/pt_BR.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..79aeb4db9bfd4d19fd677ddd2e70fb5ee12254b4 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/pt_BR.po @@ -0,0 +1,31 @@ +# Brazilian Portuguese translations for gettext-example +# Traduções em português brasileiro para gettext-example +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Rafael Fontenelle , 2013-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:24-0300\n" +"Last-Translator: Rafael Fontenelle \n" +"Language-Team: Brazilian Portuguese \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" +"X-Generator: Gtranslator 48.0\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Este programa está sendo executado com número de processo ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ro.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..a112035af3ef6dfcd8d5265404630809ac4a8a79 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-clisp" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-clisp. +# Copyright © 2015, 2019, 2022, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Eugen Hoancă , 2003. +# Mihai Cristescu , 2015 - 2019. +# Remus-Gabriel Chelu , 2022 - 2025. +# +# Cronologia traducerii fișierului „hello-clisp”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-clisp 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-clisp 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-clisp 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-clisp 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-clisp-0.20.2.pot”. +# Actualizare a algoritmului formelor de plural (de la „trei-vechi” la „trei-actual”). +# NU și a mesajelor traduse (acestea au rămas neschimbate). +# Eliminare a mesajelor ce-au dispărut în ultima versiune. +# Actualizări realizate de Remus-Gabriel Chelu , 15.01.2022. +# Actualizare a traducerii pentru versiunea 0.20.2 făcută de R-GC, ian-2022. +# Actualizare a traducerii pentru versiunea 0.22 făcută de R-GC, iun-2023. +# Revizuire și corectare a traducerii pentru versiunea 0.23-pre1 făcută de R-GC, oct-2024. +# Actualizare a traducerii pentru versiunea 0.24-pre1 făcută de R-GC, feb-2025. +# Actualizare a traducerii pentru versiunea 0.25-pre1 făcută de R-GC, apr-2025. +# Actualizare a traducerii pentru versiunea Y, făcută de X, Z(luna-anul). +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 00:25+0200\n" +"Last-Translator: Remus-Gabriel Chelu \n" +"Language-Team: Romanian \n" +"Language: ro\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==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Acest program rulează ca procesul numărul ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ru.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..e9c822c7007e66e41360d2753be665cc0e1a4c34 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-clisp-0.14.1.po to Russian +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Pavel Maryanov , 2004. +# SPDX-FileCopyrightText: 2014, 2015, 2023, 2025 Yuri Kozlov +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-02 09:17+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Lokalize 24.12.0\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" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Эта программа выполняется как процесс под номером ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/sk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..0082c7b2273cf15494346c639d39e57f0751728f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-clisp package. +# Copyright (C) 2003, 2004, 2014, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Marcel Telka , 2003, 2004, 2014, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-clisp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:53+0200\n" +"Last-Translator: Marcel Telka \n" +"Language-Team: Slovak \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Tento program beží ako proces s číslom ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/sl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..f32c771f1395c03dded3f8df38e593027f7c5926 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/sl.po @@ -0,0 +1,29 @@ +# -*- mode: po; coding: utf-8; -*- Slovenian message catalog for GNU gettext-example +# Copyright (C) 2005 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Primož Peterlin , 2005, 2014, 2015, 2024. +# $Id: hello-clisp-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-03-28 18:02+0100\n" +"Last-Translator: Primož Peterlin \n" +"Language-Team: Slovenian \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " +"n%100==4 ? 3 : 0);\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Ta program teče kot proces številka ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/sq.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..81f6f9421780f0154f98ed97137b2d2077bc141d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/sq.po @@ -0,0 +1,28 @@ +# Albanian translation of gettext-example. +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Besnik Bleta , 2020,2023,2024,2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp-0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:56+0300\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.2.2\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Ky program po xhiron si procesi numër ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/sr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..c37d60981fd1021240397c2b2671f1550fe8de07 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-clisp. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Aleksandar Jelenak , 2004. +# Мирослав Николић , 2014-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-02 16:51+0100\n" +"Last-Translator: Мирослав Николић \n" +"Language-Team: Serbian <(nothing)>\n" +"Language: sr\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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Овај програм се извршава као процес број ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/sv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..d85b72a6eb4ff49abf53f3acbd6327294c457489 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-clisp. +# Copyright © 2006, 2014, 2016, 2019, 2020, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Jan Djärv , 2003, 2006, 2014. +# Göran Uddeborg , 2016, 2019, 2020, 2023, 2024, 2025. +# Luna Jernberg , 2025. +# $Revision: 1.12 $ +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 12:18+0200\n" +"Last-Translator: Luna Jernberg \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Detta program kör som process nummer ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ta.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..c261913450fd5dee317b7be01d7fb9af97c88c4e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/ta.po @@ -0,0 +1,28 @@ +# Tamil messages for GNU gettext. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# List of contributors follow: +# Poorajith , 2018. +# Arun Isaac , 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-19 00:06+0100\n" +"Last-Translator: Arun Isaac \n" +"Language-Team: Tamil \n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "இந்நிரல் செயலாக்க எண் ~D ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/tr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..99218aab6b5354c1531a5c7c67016319a1b83846 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-clisp. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2017 Yoyodyne, Inc. (msgids) +# Copyright (C) 2004 Free Software Foundation, Inc. +# Nilgün Belma Bugüner , 2003,2004 +# Mehmet Kececi , 2017, 2019, 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-04-17 13:10+0300\n" +"Last-Translator: Mehmet Kececi \n" +"Language-Team: Turkish \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" +"X-Generator: Poedit 2.3\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Bu yazılım ~D süreç numarası ile çalışıyor." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/uk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..be286257bbccc85fbe9503ee930523435682be20 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-clisp +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Maxim V. Dziumanenko , 2004-2007. +# Yuri Chornoivan , 2014, 2015, 2023, 2025. +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:56+0300\n" +"Last-Translator: Yuri Chornoivan \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\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" +"X-Generator: Lokalize 23.04.3\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Ця програма виконується як процес з номером ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/vi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..9f2c12b0a6a6dcdcedde7d6ee786504e6ef47609 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/vi.po @@ -0,0 +1,30 @@ +# Vietnamese Translation for Gettext Examples. +# Bản dịch tiếng Việt dành cho các ví dụ của gói gettext. +# Copyright © 2015 Yoyodyne, Inc. (msgids) +# Copyright © 2015 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Clytie Siddall , 2005-2010. +# Trần Ngọc Quân , 2012-2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-24 09:10+0700\n" +"Last-Translator: Trần Ngọc Quân \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "Chương trình này đang chạy với mã số tiến trình ~D." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/zh_CN.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..3d06fec5676f132a772e76e433bfe131304fd4b2 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-clisp. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Funda Wang , 2003. +# Ji ZhengYu , 2015. +# Boyuan Yang <073plan@gmail.com>, 2019, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 15:56-0400\n" +"Last-Translator: Boyuan Yang <073plan@gmail.com>\n" +"Language-Team: Chinese (simplified) \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "此程序正以进程号 ~D 运行。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/zh_HK.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..99e6f09f3d1663266a6dd3e485040eb1cc591cb9 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-clisp. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-07-05 15:40+0800\n" +"Last-Translator: Abel Cheung \n" +"Language-Team: Chinese (Hong Kong) \n" +"Language: zh_HK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "你好!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "本程式正在執行中,進程編號為 ~D。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/zh_TW.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..b8845e60259a4843d21b23bee3790d07f75fae38 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-clisp/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-clisp. +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Abel Cheung , 2005. +# Wei-Lun Chao , 2013, 2015. +# Yi-Jyun Pan , 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-clisp 0.23-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-11-30 14:14+0800\n" +"Last-Translator: Yi-Jyun Pan \n" +"Language-Team: Chinese (traditional) \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.lisp.in:11 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.lisp.in:13 +#, lisp-format +msgid "This program is running as process number ~D." +msgstr "本程式正在執行,行程編號為 ~D。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/INSTALL b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..31c44e48095dd4e53e09663ea050a2521050fb14 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/INSTALL @@ -0,0 +1,11 @@ +This example relies on: + - a C# implementation with System.Windows.Forms library: mono + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..44a82fc603fe4c28e30f225779a253905baf91a3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/Makefile.am @@ -0,0 +1,74 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# General automake options. +AUTOMAKE_OPTIONS = foreign +ACLOCAL_AMFLAGS = -I m4 + +# The list of subdirectories containing Makefiles. +SUBDIRS = m4 po + +# The list of programs that are built. +bin_CSHARPPROGRAMS = hello + +# The source files of the 'hello' program. +hello_SOURCES = hello.cs + +# The link dependencies of the 'hello' program. +hello_CSHARPLIBS = @GNU_GETTEXT_LDADD@ @GNU_GETTEXT_LIBS@ -l System -l System.Drawing -l System.Windows.Forms + +# Resources that are generated from PO files. +MAINTAINERCLEANFILES = */*.resources.dll + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh + + +# ----------------- General rules for compiling C# programs ----------------- + +pkgdatadir = $(datadir)/$(PACKAGE) +pkglibdir = $(libdir)/$(PACKAGE) + +CSHARPCOMP = $(SHELL) csharpcomp.sh +CSHARPCOMPFLAGS = -O -g + +EXTRA_DIST += $(hello_SOURCES) +CLEANFILES = hello.net.exe.mdb +DISTCLEANFILES = csharpcomp.sh csharpexec.sh + + +# Rules for compiling C# programs. + +all-local: hello.net.exe hello.sh + +hello.net.exe: $(hello_SOURCES) + $(CSHARPCOMP) $(CSHARPCOMPFLAGS) -o $@ $(hello_CSHARPLIBS) $(srcdir)/hello.cs + +hello.sh: + { echo '#!/bin/sh'; \ + echo "exec /bin/sh '$(pkgdatadir)/csharpexec.sh' @GNU_GETTEXT_LDADD@ '$(pkglibdir)/hello.net.exe' \"\$$@\""; \ + } > $@ + +install-exec-local: all-local + $(MKDIR_P) $(DESTDIR)$(bindir) + $(INSTALL_SCRIPT) hello.sh $(DESTDIR)$(bindir)/hello + $(MKDIR_P) $(DESTDIR)$(pkglibdir) + $(INSTALL_DATA) hello.net.exe $(DESTDIR)$(pkglibdir)/hello.net.exe + +install-data-local: all-local + $(MKDIR_P) $(DESTDIR)$(pkgdatadir) + $(INSTALL_DATA) csharpexec.sh $(DESTDIR)$(pkgdatadir)/csharpexec.sh + +installdirs-local: + $(MKDIR_P) $(DESTDIR)$(bindir) + $(MKDIR_P) $(DESTDIR)$(pkglibdir) + $(MKDIR_P) $(DESTDIR)$(pkgdatadir) + +uninstall-local: + rm -f $(DESTDIR)$(bindir)/hello + rm -f $(DESTDIR)$(pkglibdir)/hello.net.exe + rm -f $(DESTDIR)$(pkgdatadir)/csharpexec.sh + +CLEANFILES += hello.net.exe hello.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/README b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/README new file mode 100644 index 0000000000000000000000000000000000000000..5756710df52758d24180022728ccfa54614c6321 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/README @@ -0,0 +1,81 @@ +Before you read the hello.cs source code: + +Preface about GUI Programming Methodologies +=========================================== + +The traditional GUI programming methodology for Windows GUI programmers +is to assemble controls using a GUI builder. These GUI builders +don't have good techniques for determining the size and position of the +controls depending on their contents. Instead, they *hardcode* the +size and positions of the controls in each panel, as fixed numbers, +measured in pixels. + +What are the consequences? + +1) Consequences for all users: + Such panels would not look nice when the user resizes them. So the + programmer simply makes the dialogs non-resizable. When such a + panel then contains a scrollable list of items, with 100 items and + a scroll window of 5 items, a user's normal reaction is to enlarge + the dialog, to see more items. But the dialog is not resizable! + Frustration. + +2) Consequences for disabled users: + Some users need bigger fonts for working comfortably. Guess what + happens when the user changes the size of the default system font? + Many labels in dialogs are truncated. + +3) Consequences for internationalization: + The translation of a term or label in another language often needs + more screen space. For example, Japanese translations often are 30% + longer than the original English label. Therefore, if only the strings + of a dialog are localized, many labels are truncated. + +Problems 1 and 2 are usually accepted in the Windows programmers +community. (Problem 1 is not fatal, only frustrating. And problem 2 +affects only a small proportion of the users; they are simply ignored.) +Problem 3 is "solved" by letting the localization team not only translate +the strings, but also redo the layout of each dialog. + +In contrast, the methodology of programmers of the Qt/KDE, Gtk/GNOME, +wxWidgets, AWT, Swing, Tk toolkits is to have the positions and sizes +of controls determined at runtime, according to + - the needs of the control itself, + - the needs of the other controls in the panel, + - the available panel size, given by the user through resizing. +The common technology for this approach is to group related controls +together in containers, and perform size and position propagations +between the controls of the container, the container, the container's +container etc. These computations are performed by so-called +"layout manager" objects. +Other technologies such as global constraint systems (as in Garnet) or +spring-like attachments are not so much in use anymore nowadays. + +This programmed-resizing methodology solves the problems 1), 2) and 3). + +What are the associated costs and efforts? Taking the programmed-resizing +methodology as baseline, the hardcoded sizes and positions approach has + - the advantage that the programmer saves about 1/3 of the GUI + programming work (namely choosing the layout managers and setting + alignment hints), + - the drawback that each localization team has much more work, namely + to rearrange the controls in the panel. +In most free software projects, there are at least ca. 5 localizations; +successful projects even have 30 or 50 localizations. +In other words, a program built with hardcoded sizes and positions +cannot afford many localizations, or the effort for localization will +be prohibitively high. + +For this reason, we strongly recommend to use the programmed-resizing +methodology. In this example, since the Windows.Forms package lacks +layout manager classes, we compute the layout by hand, through an +override of the OnResize method. For larger programs, we would recommend +to build a few simple layout managers, to get on par with the layout +abilities found in Qt, Swing, etc. +(The layout system of Gtk/GNOME is somewhat particular: It does not +provide the ability to set a preferred alignment on controls like labels. +Instead one uses intermediate containers for the purpose of alignment.) + +Acknowledgement: This preface borrows ideas from an article of Luke Plant. + +Copyright (C) 2006 Free Software Foundation, Inc. diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/autoclean.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..4d1bda1d9e77774b0794ab4e47303c199aa225ce --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/autoclean.sh @@ -0,0 +1,48 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for cleaning all autogenerated files. + +test ! -f Makefile || make distclean +# Do the equivalent of "make maintainer-clean", even without the Makefile. +rm -f */*.resources.dll +rm -rf autom4te.cache + +# Brought in by explicit copy. +rm -f m4/nls.m4 +rm -f m4/po.m4 +rm -f m4/progtest.m4 +rm -f po/remove-potcdate.sed + +# Brought in by explicit copy. +rm -f m4/csharpcomp.m4 +rm -f m4/csharpexec.m4 +rm -f m4/csharpexec-test.exe +rm -f m4/csharp.m4 +rm -f csharpcomp.sh.in +rm -f csharpexec.sh.in + +# Generated by aclocal. +rm -f aclocal.m4 + +# Generated by autoconf. +rm -f configure + +# Generated or brought in by automake. +rm -f Makefile.in +rm -f m4/Makefile.in +rm -f po/Makefile.in +rm -f compile +rm -f install-sh +rm -f missing +rm -f config.guess +rm -f config.sub +rm -f po/*.pot +rm -f po/stamp-po +for f in po/*/*.resources.dll; do + if test -f "$f"; then + rm -f "$f" + rmdir `echo $f | sed -e 's,/[^/]*$,,'` + fi +done diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/autogen.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..5f6822c80d0c6d64ddf6e3789e7a6a1f1cbb8952 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/autogen.sh @@ -0,0 +1,48 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for regenerating all autogenerated files. + +if test -r ../Makefile.am; then + # Inside the gettext source directory. + GETTEXT_TOPSRCDIR=../../.. +else + if test -r ../Makefile; then + # Inside a gettext build directory. + GETTEXT_TOOLS_SRCDIR=`sed -n -e 's,^top_srcdir *= *\(.*\)$,\1,p' ../Makefile` + # Adjust a relative top_srcdir. + case $GETTEXT_TOOLS_SRCDIR in + /*) ;; + *) GETTEXT_TOOLS_SRCDIR=../$GETTEXT_TOOLS_SRCDIR ;; + esac + GETTEXT_TOPSRCDIR=$GETTEXT_TOOLS_SRCDIR/../.. + else + # Installed under ${prefix}/share/doc/gettext/examples. + . ../installpaths + fi +fi + +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/nls.m4 m4/nls.m4 +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/po.m4 m4/po.m4 +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/progtest.m4 m4/progtest.m4 +cp -p ${GETTEXTSRCPODIR-$GETTEXT_TOPSRCDIR/gettext-runtime/po}/remove-potcdate.sed po/remove-potcdate.sed + +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/gettext-tools/gnulib-m4}/csharpcomp.m4 m4/csharpcomp.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/gettext-tools/gnulib-m4}/csharpexec.m4 m4/csharpexec.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/gettext-tools/m4}/csharpexec-test.exe m4/csharpexec-test.exe +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/gettext-tools/gnulib-m4}/csharp.m4 m4/csharp.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/build-aux}/csharpcomp.sh.in csharpcomp.sh.in +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/build-aux}/csharpexec.sh.in csharpexec.sh.in + +aclocal -I m4 + +autoconf + +automake -a -c + +./configure +cd po +make update-po +cd .. +make distclean diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/configure.ac b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..c206f98448fa72f0d0ab41a28101f40e9d430568 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/configure.ac @@ -0,0 +1,52 @@ +dnl Example for use of GNU gettext. +dnl This file is in the public domain. +dnl +dnl Configuration file - processed by autoconf. + +AC_INIT([hello-csharp-forms], [0]) +AC_CONFIG_SRCDIR([hello.cs]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Check whether we can build C# programs at all. +gt_CSHARPCOMP +if test -n "$HAVE_CSHARPCOMP"; then + BUILDCSHARP=yes +else + BUILDCSHARP=no +fi +AC_SUBST([BUILDCSHARP]) + +dnl Check whether we can execute C# programs. +gt_CSHARPEXEC([csharpexec-test.exe], [$srcdir/m4]) +if test -n "$HAVE_CSHARPEXEC" && test $BUILDCSHARP = yes; then + TESTCSHARP=yes +else + TESTCSHARP=no +fi +AC_SUBST([TESTCSHARP]) + +dnl Checks for needed libraries. +AM_PATH_PROG_WITH_TEST([GETTEXT_WITH_GNU_GETTEXT_DLL], [gettext], + [{ basedir=`echo "$ac_dir" | sed -e 's,/bin$,,'`; test -r "$basedir"/lib/GNU.Gettext.dll; }]) +if test -z "$GETTEXT_WITH_GNU_GETTEXT_DLL"; then + echo "Required library GNU.Gettext.dll not found." 1>&2 + exit 1 +fi +changequote(,)dnl +basedir=`echo "$GETTEXT_WITH_GNU_GETTEXT_DLL" | sed -e 's,/[^/]*$,,' | sed -e 's,/bin$,,'` +changequote([, ])dnl +GNU_GETTEXT_DLL="$basedir"/lib/GNU.Gettext.dll +GNU_GETTEXT_LDADD="-L $basedir/lib" +GNU_GETTEXT_LIBS="-l GNU.Gettext" +AC_SUBST([GNU_GETTEXT_LDADD]) +AC_SUBST([GNU_GETTEXT_LIBS]) + +dnl Support for the po directory. +AM_PO_SUBDIRS + +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([csharpcomp.sh]) +AC_CONFIG_FILES([csharpexec.sh]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/hello.cs b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/hello.cs new file mode 100644 index 0000000000000000000000000000000000000000..84103349d4f757add25d4b29259d279486352674 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/hello.cs @@ -0,0 +1,81 @@ +// Example for use of GNU gettext. +// This file is in the public domain. +// +// Source code of the C#/Forms program. + +using System; /* String, EventHandler */ +using GNU.Gettext; /* GettextResourceManager */ +using System.Diagnostics; /* Process */ +using System.Threading; /* Thread */ +using System.Drawing; /* Point, Size */ +using System.Windows.Forms; /* Application, Form, Label, Button */ + +public class Hello { + + private static GettextResourceManager catalog = + new GettextResourceManager("hello-csharp-forms"); + + class HelloWindow : Form { + + private int border; + private Label label1; + private Label label2; + private Button ok; + + public HelloWindow () { + border = 2; + + label1 = new Label(); + label1.Text = catalog.GetString("Hello, world!"); + label1.ClientSize = new Size(label1.PreferredWidth, label1.PreferredHeight); + Controls.Add(label1); + + label2 = new Label(); + label2.Text = + String.Format( + catalog.GetString("This program is running as process number {0}."), + Process.GetCurrentProcess().Id); + label2.ClientSize = new Size(label2.PreferredWidth, label2.PreferredHeight); + Controls.Add(label2); + + ok = new Button(); + Label okLabel = new Label(); + ok.Text = okLabel.Text = "OK"; + ok.ClientSize = new Size(okLabel.PreferredWidth + 12, okLabel.PreferredHeight + 4); + ok.Click += new EventHandler(Quit); + Controls.Add(ok); + + Size total = ComputePreferredSizeWithoutBorder(); + LayoutControls(total.Width, total.Height); + ClientSize = new Size(border + total.Width + border, border + total.Height + border); + } + + protected override void OnResize(EventArgs ev) { + LayoutControls(ClientSize.Width - border - border, ClientSize.Height - border - border); + base.OnResize(ev); + } + + // Layout computation, part 1: The preferred size of this panel. + private Size ComputePreferredSizeWithoutBorder () { + int totalWidth = Math.Max(Math.Max(label1.PreferredWidth, label2.PreferredWidth), + ok.Width); + int totalHeight = label1.PreferredHeight + label2.PreferredHeight + 6 + ok.Height; + return new Size(totalWidth, totalHeight); + } + + // Layout computation, part 2: Determine where to put the sub-controls. + private void LayoutControls (int totalWidth, int totalHeight) { + label1.Location = new Point(border, border); + label2.Location = new Point(border, border + label1.PreferredHeight); + ok.Location = new Point(border + totalWidth - ok.Width, border + totalHeight - ok.Height); + } + + private void Quit (Object sender, EventArgs ev) { + Application.Exit(); + } + } + + public static void Main () { + Application.Run(new HelloWindow()); + } +} diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/m4/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..de22d57cb1ebe59d18c8e8eae7259977e452b255 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/m4/Makefile.am @@ -0,0 +1,3 @@ +EXTRA_DIST = \ + nls.m4 po.m4 \ + csharpcomp.m4 csharpexec.m4 csharpexec-test.exe diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/LINGUAS b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/LINGUAS @@ -0,0 +1,5 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Set of available languages. +af ast bg ca cs da de el eo es fi fr ga gl hr hu id it ja ka ky lv ms mt nb nl nn pl pt pt_BR ro ru sk sl sq sr sv ta tr uk vi zh_CN zh_HK zh_TW diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..3d2b1934efec02c2d7ab649749cee26189ebb038 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/Makefile.am @@ -0,0 +1,380 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# List of files which contain translatable strings. +POTFILES = \ + hello.cs + +# Usually the message domain is the same as the package name. +DOMAIN = $(PACKAGE) + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgid strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Yoyodyne, Inc. + +# This tells whether or not to prepend "GNU " prefix to the package +# name that gets inserted into the header of the $(DOMAIN).pot file. +# Possible values are "yes", "no", or empty. If it is empty, try to +# detect it automatically by scanning the files in $(top_srcdir) for +# "GNU packagename" string. +PACKAGE_GNU = no + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = bug-gettext@gnu.org + +# These options get passed to msgmerge. +# Useful options are in particular: +# --previous to keep previous msgids of translated messages +MSGMERGE_OPTIONS = + +# These options get passed to msginit. +# If you want to disable line wrapping when writing PO files, add +# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and +# MSGINIT_OPTIONS. +MSGINIT_OPTIONS = + +pkglibdir = $(libdir)/$(PACKAGE) + +MSGMERGE = @MSGMERGE@ +MSGMERGE_UPDATE = @MSGMERGE@ --update +MSGMERGE_FOR_MSGFMT_OPTION = @MSGMERGE_FOR_MSGFMT_OPTION@ +MSGINIT = msginit +MSGCONV = msgconv +MSGFILTER = msgfilter + +# This is computed as $(foreach file, $(POTFILES), $(top_srcdir)/$(file)) +POTFILES_DEPS != for file in $(POTFILES); do echo $(top_srcdir)/$$file; done + +# The set of available translations. +ALL_LINGUAS != if test -f $(srcdir)/LINGUAS; then \ + sed -e '/^\#/d' < $(srcdir)/LINGUAS; \ + else \ + echo $(LINGUAS); \ + fi +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) +POFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$$lang.po; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) +UPDATEPOFILES != for lang in $(ALL_LINGUAS); do echo $$lang.po-update; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) +DUMMYPOFILES != for lang in $(ALL_LINGUAS); do echo $$lang.nop; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(frob $(lang))/$(DOMAIN).resources.dll) +# It also creates the .csharp-rules file. +RESOURCESDLLFILES != tab=`printf '\t'`; \ + for lang in $(ALL_LINGUAS); do \ + frobbedlang=`echo $$lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$$/-Latn/' -e 's/@cyrillic$$/-Cyrl/' -e 's/^sr-SP$$/sr-SP-Latn/' -e 's/^uz-UZ$$/uz-UZ-Latn/'`; \ + echo 1>&3 "$$frobbedlang/\$$(DOMAIN).resources.dll: $$lang.po"; \ + echo 1>&3 "$${tab}@echo \"\$$(MSGFMT) -c --csharp -d \$$(srcdir) -l $$lang \$$(srcdir)/$$lang.po -r \$$(DOMAIN)\"; \\"; \ + echo 1>&3 "$${tab}\$$(MSGFMT) -c --csharp -d \"\$$(srcdir)\" -l $$lang \$$(srcdir)/$$lang.po -r \"\$$(DOMAIN)\" || { rm -f \"\$$(srcdir)/$$frobbedlang/\$$(DOMAIN).resources.dll\"; exit 1; }"; \ + echo $(srcdir)/$$frobbedlang/$(DOMAIN).resources.dll; \ + done 3> .csharp-rules +# Include the generated rules that cannot be formulated as a simple rule. +-include .csharp-rules + +# The set of desired translations, as specified by the installer or distributor. +DESIRED_LINGUAS = @DESIRED_LINGUAS@ +# The set of translations to install. This is computed based on $(ALL_LINGUAS) +# and $(DESIRED_LINGUAS). It is a subset of $(ALL_LINGUAS). +# We use the presentlang catalog if desiredlang is +# a. equal to presentlang, or +# b. a variant of presentlang (because in this case, presentlang can be used +# as a fallback for messages which are not translated in the desiredlang +# catalog). +INST_LINGUAS != for presentlang in $(ALL_LINGUAS); do \ + useit=false; \ + for desiredlang in $(DESIRED_LINGUAS); do \ + case "$$desiredlang" in \ + "$$presentlang" | "$$presentlang"_* | "$$presentlang".* | "$$presentlang"@*) \ + useit=true ;; \ + esac; \ + done; \ + if $$useit; then echo $$presentlang; fi; \ + done +# This is computed as $(foreach lang, $(INST_LINGUAS), $(frob $(lang))/$(DOMAIN).resources.dll) +CATALOGS != for lang in $(INST_LINGUAS); do \ + frobbedlang=`echo $$lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$$/-Latn/' -e 's/@cyrillic$$/-Cyrl/' -e 's/^sr-SP$$/sr-SP-Latn/' -e 's/^uz-UZ$$/uz-UZ-Latn/'`; \ + echo $$lang/$(DOMAIN).resources.dll; \ + done + +SUFFIXES = .nop .po-create .po-update + +# The .pot file, stamp-po, .po files, and .resources.dll files appear in release +# tarballs. +# The GNU Coding Standards say in +# : +# "GNU distributions usually contain some files which are not source files +# ... . Since these files normally appear in the source directory, they +# should always appear in the source directory, not in the build directory. +# So Makefile rules to update them should put the updated files in the +# source directory." +# Therefore we put these files in the source directory, not the build directory. + + +all-local: all-local-@USE_NLS@ + +all-local-yes: $(srcdir)/stamp-po +all-local-no: + +# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no +# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because +# we don't want to bother translators with empty POT files). We assume that +# LINGUAS is empty in this case, i.e. $(POFILES) and $(RESOURCESDLLFILES) are +# empty. In this case, $(srcdir)/stamp-po is a nop (i.e. a phony target). + +# $(srcdir)/stamp-po is a timestamp denoting the last time at which the CATALOGS +# have been loosely updated. Its purpose is that when a developer or translator +# checks out the package from a version control system, and the $(DOMAIN).pot +# file is not under version control, "make" will update the $(DOMAIN).pot and +# the $(CATALOGS), but subsequent invocations of "make" will do nothing. This +# timestamp would not be necessary if updating the $(CATALOGS) would always +# touch them; however, the rule for $(POFILES) has been designed to not touch +# files that don't need to be changed. +$(srcdir)/stamp-po: $(srcdir)/$(DOMAIN).pot + test ! -f $(srcdir)/$(DOMAIN).pot || \ + test -z "$(RESOURCESDLLFILES)" || $(MAKE) $(RESOURCESDLLFILES) + @test ! -f $(srcdir)/$(DOMAIN).pot || { \ + echo "touch $(srcdir)/stamp-po" && \ + echo timestamp > $(srcdir)/stamp-poT && \ + mv $(srcdir)/stamp-poT $(srcdir)/stamp-po; \ + } + +# This target rebuilds $(DOMAIN).pot; it is an expensive operation. +# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. +# The determination of whether the package xyz is a GNU one is based on the +# heuristic whether some file in the top level directory mentions "GNU xyz". +# If GNU 'find' is available, we avoid grepping through monster files. +$(DOMAIN).pot-update: $(POTFILES_DEPS) + package_gnu="$(PACKAGE_GNU)"; \ + test -n "$$package_gnu" || { \ + if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \ + LC_ALL=C find -L $(top_srcdir) -maxdepth 1 -type f -size -10000000c -exec grep -i 'GNU $(PACKAGE)' /dev/null '{}' ';' 2>/dev/null; \ + else \ + LC_ALL=C grep -i 'GNU $(PACKAGE)' $(top_srcdir)/* 2>/dev/null; \ + fi; \ + } | grep -v 'libtool:' >/dev/null; then \ + package_gnu=yes; \ + else \ + package_gnu=no; \ + fi; \ + }; \ + if test "$$package_gnu" = "yes"; then \ + package_prefix='GNU '; \ + else \ + package_prefix=''; \ + fi; \ + if test -n '$(MSGID_BUGS_ADDRESS)'; then \ + msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ + else \ + msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ + fi; \ + case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ + $(POTFILES) \ + ;; \ + *) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --package-name="$${package_prefix}$(PACKAGE)" \ + --package-version='$(VERSION)' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ + $(POTFILES) \ + ;; \ + esac + test ! -f $(DOMAIN).po || { \ + if test -f $(srcdir)/$(DOMAIN).pot-header; then \ + sed -e '1,/^#$$/d' < $(DOMAIN).po > $(DOMAIN).1po && \ + cat $(srcdir)/$(DOMAIN).pot-header $(DOMAIN).1po > $(DOMAIN).po && \ + rm -f $(DOMAIN).1po \ + || exit 1; \ + fi; \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + sed -f $(srcdir)/remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ + sed -f $(srcdir)/remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ + if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ + else \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + else \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + } + +# This rule has no dependencies: we don't need to update $(DOMAIN).pot at +# every "make" invocation, only create it when it is missing. +# Only "make $(DOMAIN).pot-update" or "make dist" will force an update. +$(srcdir)/$(DOMAIN).pot: + $(MAKE) $(DOMAIN).pot-update + +# This target rebuilds a PO file if $(DOMAIN).pot has changed. +# Note that a PO file is not touched if it doesn't need to be changed. +$(POFILES): $(srcdir)/$(DOMAIN).pot + @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ + if test -f "$(srcdir)/$${lang}.po"; then \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot"; \ + cd $(srcdir) \ + && { case `$(MSGMERGE_UPDATE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.10 | 0.10.*) \ + $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ + 0.1[1-5] | 0.1[1-5].*) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ + 0.1[6-7] | 0.1[6-7].*) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --previous $${lang}.po $(DOMAIN).pot;; \ + *) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot;; \ + esac; \ + }; \ + else \ + $(MAKE) $${lang}.po-create; \ + fi + + +install-data-local: install-data-local-@USE_NLS@ +install-data-local-no: all-local +install-data-local-yes: all-local + $(MKDIR_P) $(DESTDIR)$(pkglibdir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + $(MKDIR_P) $(DESTDIR)$(pkglibdir)/`echo $$cat | sed -e 's,/[^/]*$$,,'`; \ + if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ + $(INSTALL_DATA) $$realcat $(DESTDIR)$(pkglibdir)/$$cat; \ + echo "installing $$realcat as $(DESTDIR)$(pkglibdir)/$$cat"; \ + done + +installdirs-local: installdirs-local-@USE_NLS@ +installdirs-local-no: +installdirs-local-yes: + $(MKDIR_P) $(DESTDIR)$(pkglibdir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + $(MKDIR_P) $(DESTDIR)$(pkglibdir)/`echo $$cat | sed -e 's,/[^/]*$$,,'`; \ + done + +uninstall-local: uninstall-local-@USE_NLS@ +uninstall-local-no: +uninstall-local-yes: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + rm -f $(DESTDIR)$(pkglibdir)/$$cat; \ + done + +html ID: + +DISTCLEANFILES = .csharp-rules + +MOSTLYCLEANFILES = +MOSTLYCLEANFILES += stamp-poT +MOSTLYCLEANFILES += core core.* *.stackdump $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po + +MAINTAINERCLEANFILES = $(DOMAIN).pot stamp-po +maintainer-clean-local: + if test -n "$(RESOURCESDLLFILES)"; then \ + for file in $(RESOURCESDLLFILES); do \ + rm -f "$$file"; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$$dir"; then rmdir "$$dir"; fi; \ + done; \ + fi + +EXTRA_DIST = remove-potcdate.sed LINGUAS $(POFILES) $(RESOURCESDLLFILES) + +# Hidden from automake, but really activated. Works around an automake-1.5 bug. +#distdir: distdir1 +distdir1: + $(MAKE) update-po + $(MAKE) $(srcdir)/stamp-po + @if test -f $(srcdir)/$(DOMAIN).pot; then \ + for file in $(DOMAIN).pot stamp-po; do \ + if test -f $$file; then d=.; else d=$(srcdir); fi; \ + cp -p $$d/$$file $(distdir)/$$file || exit 1; \ + done; \ + else \ + case $(XGETTEXT) in \ + :) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because a suitable 'xgettext' program was not found in PATH." 1>&2;; \ + *) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because 'xgettext' found no strings to extract. Check the POTFILES and the XGETTEXT_OPTIONS in the Makefile.am file." 1>&2;; \ + esac; \ + fi + +update-po: Makefile + $(MAKE) $(DOMAIN).pot-update + test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) + $(MAKE) update-resourcesdll + +# General rule for creating PO files. + +.nop.po-create: + @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ + echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ + exit 1 + +# General rule for updating PO files. + +.nop.po-update: + @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --lang=$$lang --previous $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ + cd $(srcdir); \ + if { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.10 | 0.10.*) \ + $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + 0.1[1-5] | 0.1[1-5].*) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + 0.1[6-7] | 0.1[6-7].*) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --previous -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + *) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --lang=$$lang --previous -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + esac; \ + }; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +$(DUMMYPOFILES): + +update-resourcesdll: Makefile $(RESOURCESDLLFILES) + @: diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/af.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..41938cdf01d0f514ff6d8da189d3561f43be5019 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/af.po @@ -0,0 +1,26 @@ +# Afrikaans translation for Silky +# Copyright (C) 2004 Free Software Foundation, Inc. +# This file is distributed under the same license as the silky package. +# Hanlie Pretorius , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms-0.13.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2003-12-31 10:30+2\n" +"Last-Translator: Ysbeer \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Hierdie program loop as prosesnommer {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ast.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..061e48d00d5345b6b29c09fd84a816a0c837ad43 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-csharp-forms +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marquinos , 2009. +# enolp , 2018. +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-07-16 00:28+0100\n" +"Last-Translator: enolp \n" +"Language-Team: Asturian \n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 2.0\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Esti programa ta executándose como procesu númberu {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/bg.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..fee6cb4ad3fec3f8a48b824de6b6bf567ecb9bfc --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-csharp-forms package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Roumen Petrov , 2010,2014,2015,2019,2023,2024.2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-csharp-forms 0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-08 19:09+0200\n" +"Last-Translator: Roumen Petrov \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Програмата е пусната под процес номер {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ca.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..dd8f7d953db6f3524c3bf1ee0db5e1961cb3d252 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-csharp-forms. +# Copyright (C) 2003, 2014, 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ivan Vilata i Balaguer , 2003, 2014, 2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-07-07 08:36+0200\n" +"Last-Translator: Ivan Vilata i Balaguer \n" +"Language-Team: Catalan \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Aquest programa està corrent amb el número de procés {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/cs.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..da86c419f23ee0de06fba2ae76b5bbd388e9c878 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/cs.po @@ -0,0 +1,29 @@ +# The Czech translation for the gettext package. +# Copyright (C) 2011 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marek Černocký , 2011. +# Petr Písař , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 20:05+02:00\n" +"Last-Translator: Petr Pisar \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Tento program běží jako proces číslo {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/da.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..d0d186da8723a20117110930ec5318ad50461c9f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-csharp-forms. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Jan Djærv , 2003, 2006. +# Keld Simonsen , 2011. +# Joe Hansen , 2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-27 12:39+0100\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Dette program kører som proces nummer {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/de.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..359ffbe2d079f68e096eee7521ec93d4f1c45f30 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-csharp-forms. +# Copyright © 2003, 2013 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Bruno Haible , 2003. +# Karl Eichwalder , 2003. +# Jakob Kramer , 2013. +# Mario Blättermann , 2014, 2023, 2025. +# Philipp Thomas , 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 17:15+0200\n" +"Last-Translator: Mario Blättermann \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 25.04.0\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Dieses Programm läuft mit der Prozess-Nummer {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/el.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..07f91e479cb4c0d172decadd52f3d77c39c91bba --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-csharp-forms +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.14.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2005-01-06 18:50+0000\n" +"Last-Translator: Simos Xenitellis \n" +"Language-Team: Greek \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.3.1\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/eo.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..0f2d6038215f38c48c5a3be0c14a06753839c7e1 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/eo.po @@ -0,0 +1,28 @@ +# La teksto por la mesaĝoj de la programo "gettext". +# Copyright (C) 2006, 2016 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Edmund GRIMLEY EVANS , 2006. +# Felipe CASTRO , 2016, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-23 19:00-0300\n" +"Last-Translator: Felipe Castro \n" +"Language-Team: Esperanto \n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Ĉi tiu programo rulas kiel procez-numero {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/es.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..6eac6a67c523779f8095810d255758b40c5af63d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/es.po @@ -0,0 +1,30 @@ +# Mensajes en español para GNU gettext. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# This file is distributed under the same license as the gettext package. +# +# Max de Mendizábal , 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004. +# Antonio Ceballos , 2014, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-02-23 17:01+0100\n" +"Last-Translator: Antonio Ceballos \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Este programa está corriendo como el proceso número {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/fi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..7090827b15cbdf388d1a28ee58b496551878ad2b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/fi.po @@ -0,0 +1,29 @@ +# Finnish messages for GNU Gettext examples. +# This file is distributed under the same license as the gettext package. +# Copyright © 2007, 2014, 2015 Yoyodyne, Inc. (msgids) +# Lauri Nurmi , 2007. +# Jorma Karvonen , 2014-2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-09-01 16:59+0300\n" +"Last-Translator: Jorma Karvonen \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 1.5.4\n" + +# Tämä nimenomainen käännös valittu GNU Hellon mukaisesti. +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Tämän ohjelman prosessinumero on {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/fr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..94cd15680be92d8ef47234ef58999baa685acfcb --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/fr.po @@ -0,0 +1,32 @@ +# Messages français pour GNU gettext. +# Copyright (C) 2006 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Michel Robitaille , 2006. +# Christophe Combelles , 2006 +# Stéphane Aulery , 2015 +# Christian Wiatr , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-28 16:25+0200\n" +"Last-Translator: Christian Wiatr \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Ce programme est exécuté en tant que processus numéro {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ga.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..4ff11ac5d005ace8b2e50c848997d4a1e0bd873e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-csharp-forms. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Kevin Patrick Scannell , 2004, 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2017-01-10 12:09-0500\n" +"Last-Translator: Kevin Patrick Scannell \n" +"Language-Team: Irish \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Tá an clár seo ag rith mar phróiseas {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/gl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..7de1291541630f4218e65fd1819d37f61145ed53 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-csharp-forms package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Leandro Regueiro , 2010-2014. +# +# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas +# colaborar connosco, podes atopar máis información en +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.19-rc1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2014-05-10 16:34+0100\n" +"Last-Translator: Leandro Regueiro \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Este programa estase executando como o proceso número {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/hr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..7e31ebdda1ba6c4f46a30973259ad3e9edcb2d75 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-csharp-forms to Croatian. +# Copyright (C) 2003, 2004, 2014, 2015, 2019 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Permission is granted to freely copy and distribute +# this file and modified versions, provided that this +# header is not removed and modified versions are marked +# as such. +# +# Tomislav Krznar , 2012. +# Božidar Putanec , 2018-2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-csharp-forms 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:15-0700\n" +"Last-Translator: Božidar Putanec \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Ovaj program se izvršava kao proces broj {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/hu.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..027f2260122d0f7625c2f1d38c67c02c05ab554f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-csharp-forms. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# Tamás Kiss , 2005. +# Balázs Úr , 2014, 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-23 20:31+0200\n" +"Last-Translator: Balázs Úr \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 1.2\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Ez a program a(z) {0} folyamatazonosítóval fut." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/id.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..3b7878b806c45d1050a569833b3c67286830db3a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-csharp-forms-0.15-pre5.po to Indonesian +# Copyright (C) 2006 Yoyodyne, Inc. +# This file is distributed under the same license as the PACKAGE package. +# +# Tedi Heriyanto , 2006. +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms-0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-09-27 20:19+0700\n" +"Last-Translator: Tedi Heriyanto \n" +"Language-Team: Indonesian \n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.11.2\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Program ini berjalan sebagai proses nomor {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/it.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..e8cccaec9d754c5bfdad0d3b102970ee732f062e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-csharp-forms. +# Copyright (C) 2005, 2006 Yoyodyne, Inc. (msgids) +# Copyright (C) 2024 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Marco Colombo , 2005, 2006, 2015. +# Michele Locati , 2024, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-csharp-forms 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-04 18:28+0200\n" +"Last-Translator: Michele Locati \n" +"Language-Team: Italian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Questo programma è in esecuzione con numero di processo {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ja.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..58dbecfec93126572482d96b15a29420f5b4cb86 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-csharp-forms' messages to Japanese. +# Copyright (C) 2005, 2006, 2014, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Masahito Yamaga , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-csharp-forms 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:59+0900\n" +"Last-Translator: Masahito Yamaga \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "このプログラムはプロセス番号 {0} で動いています." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ka.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..e2d8051eeca3de1da11c35a8c1fd89c6e45e8fc4 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ka.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Temuri Doghonadze , 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2022-05-22 05:04+0200\n" +"Last-Translator: Temuri Doghonadze \n" +"Language-Team: Georgian <(nothing)>\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0.1\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ky.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..e1e9ab704dafc16a227274e4532dbfc71b9d0dce --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-csharp-forms' messages to Kirghiz. +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ilyas Bakirov , 2007. +# Ilyas Bakirov , 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-02-15 18:26+0600\n" +"Last-Translator: Ilyas Bakirov \n" +"Language-Team: Kirghiz \n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.0.6\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Бул программа {0} процесс номери катары иштеп жатат." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/lv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..dcc14c15fce1af7c91ba144d12f17a78e13f0b9b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-csharp-forms +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Arvis Lācis , 2009. +# Rihards Priedītis , 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-09 11:44+0000\n" +"Last-Translator: Rihards Priedītis \n" +"Language-Team: Latvian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Šī programma darbojas ar procesa numuru {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ms.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..ad29597d0823bdb2fbe5a91abb598ae5fc486661 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ms.po @@ -0,0 +1,28 @@ +# hello-csharp-forms Bahasa Melayu (Malay) (ms). +# Copyright (C) 2006, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2006, 2015, 2023, 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Sharuzzaman Ahmat Raslan , 2006, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-03 21:10+0800\n" +"Last-Translator: Sharuzzaman Ahmat Raslan \n" +"Language-Team: Malay \n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Program ini dilaksanakan sebagai proses bernombor {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/mt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..4c028e52b23b88b7b5314ff395fc03b66d2188b7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/mt.po @@ -0,0 +1,27 @@ +# hello-csharp-forms-0.16.2-pre5. +# Copyright (C) 2008 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Clyde Meli , 2001-2008. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.16.2-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2008-11-18 17:27+0100\n" +"Last-Translator: Clyde Meli \n" +"Language-Team: Maltese \n" +"Language: mt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Dal-programm qed jaħdem taħt il-proċess numru {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/nb.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..86ca5687b6009bb34b04115e6baa7d29797fd30e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-csharp-forms package. +# Copyright (C) 2012 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Johnny A. Solbu , 2012-2024 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-01-06 16:33+0100\n" +"Last-Translator: Johnny A. Solbu \n" +"Language-Team: Norwegian Bokmaal \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Dette programmet kjører som prosess nummer {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/nl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..9ddbf0462eb6d3485f2159dfde40f12595d45392 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-csharp-forms. +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# "There are three basic rules for writing a novel. +# Unfortunately nobody knows what they are." +# +# Benno Schulenberg , 2007, 2014, 2015, 2019, 2025. +# Elros Cyriatan , 2004. +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-01 14:51+0100\n" +"Last-Translator: Benno Schulenberg \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Dit programma draait als proces nummer {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/nn.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..57c95db337f2bd797c2a6c7b9d17b8b8da61d5ab --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-csharp-forms +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Karl Ove Hufthammer , 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms-0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-05-04 18:58+0200\n" +"Last-Translator: Karl Ove Hufthammer \n" +"Language-Team: Norwegian Nynorsk \n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 20.04.0\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Dette programmet køyrer som prosess nummer {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/pl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..a10f9380335ea1be661fd2bdeeba2395581306dc --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-csharp-forms domain +# Copyright (C) 2010, 2014, 2015, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Rafał Maszkowski , 2003, 2010, 2014, 2015, 2025 +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-csharp-forms 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-25 17:16+0200\n" +"Last-Translator: Rafał Maszkowski \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Ten program działa jako proces o numerze {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/pt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..8e21fa58f5433b6851f34b9bd37b9833b4a45c5d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-csharp-forms' package. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Pedro Albuquerque , 2019, 2020, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 11:24+0100\n" +"Last-Translator: Pedro Albuquerque \n" +"Language-Team: Portuguese \n" +"Language: 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;\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Este programa está em execução como processo nº {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/pt_BR.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..582643a2d04378210e4811ced173794da9b5a393 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/pt_BR.po @@ -0,0 +1,31 @@ +# Brazilian Portuguese translations for gettext-example +# Traduções em português brasileiro para gettext-example +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Rafael Fontenelle , 2013-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:24-0300\n" +"Last-Translator: Rafael Fontenelle \n" +"Language-Team: Brazilian Portuguese \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" +"X-Generator: Gtranslator 48.0\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Este programa está sendo executado com número de processo {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ro.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..b91d11aaa433695c74f0c276d13fa984a622cfd5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-csharp-forms" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-csharp-forms. +# Copyright © 2015, 2019, 2022, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Eugen Hoancă , 2003. +# Mihai Cristescu , 2015 - 2019. +# Remus-Gabriel Chelu , 2022 - 2025. +# +# Cronologia traducerii fișierului „hello-csharp-forms”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-csharp-forms 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-csharp-forms 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-csharp-forms 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-csharp-forms 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-csharp-forms-0.20.2.pot”. +# Actualizare a algoritmului formelor de plural (de la „trei-vechi” la „trei-actual”). +# NU și a mesajelor traduse (acestea au rămas neschimbate). +# Eliminare a mesajelor ce-au dispărut în ultima versiune. +# Actualizări realizate de Remus-Gabriel Chelu , 15.01.2022. +# Actualizare a traducerii pentru versiunea 0.20.2 făcută de R-GC, ian-2022. +# Actualizare a traducerii pentru versiunea 0.22 făcută de R-GC, iun-2023. +# Revizuire și corectare a traducerii pentru versiunea 0.23-pre1 făcută de R-GC, oct-2024. +# Actualizare a traducerii pentru versiunea 0.24-pre1 făcută de R-GC, feb-2025. +# Actualizare a traducerii pentru versiunea 0.25-pre1 făcută de R-GC, apr-2025. +# Actualizare a traducerii pentru versiunea Y, făcută de X, Z(luna-anul). +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 00:25+0200\n" +"Last-Translator: Remus-Gabriel Chelu \n" +"Language-Team: Romanian \n" +"Language: ro\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==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Acest program rulează ca procesul numărul {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ru.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..2266de42ae83402631ea79a13f95a334e632b409 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-csharp-forms-0.14.1.po to Russian +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Pavel Maryanov , 2004. +# SPDX-FileCopyrightText: 2014, 2015, 2023, 2025 Yuri Kozlov +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-02 09:17+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Lokalize 24.12.0\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" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Эта программа выполняется как процесс под номером {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/sk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..8fd8cef9f6de5b428df75b17a22b779f3698265b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-csharp-forms package. +# Copyright (C) 2003, 2004, 2014, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Marcel Telka , 2003, 2004, 2014, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-csharp-forms 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:53+0200\n" +"Last-Translator: Marcel Telka \n" +"Language-Team: Slovak \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Tento program beží ako proces s číslom {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/sl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..34c796c0145d38721abf92a1549fa35f5728a169 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/sl.po @@ -0,0 +1,29 @@ +# -*- mode: po; coding: utf-8; -*- Slovenian message catalog for GNU gettext-example +# Copyright (C) 2005 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Primož Peterlin , 2005, 2014, 2015, 2024. +# $Id: hello-csharp-forms-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-03-28 18:02+0100\n" +"Last-Translator: Primož Peterlin \n" +"Language-Team: Slovenian \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " +"n%100==4 ? 3 : 0);\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Ta program teče kot proces številka {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/sq.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..25439ff8e0074d061c78c4c1a3080cc89b7b7ab1 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/sq.po @@ -0,0 +1,28 @@ +# Albanian translation of gettext-example. +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Besnik Bleta , 2020,2023,2024,2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms-0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:56+0300\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.2.2\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Ky program po xhiron si procesi numër {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/sr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..4265d3e29b54b59e43c187e2d3e328f21b96bde7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-csharp-forms. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Aleksandar Jelenak , 2004. +# Мирослав Николић , 2014-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-02 16:51+0100\n" +"Last-Translator: Мирослав Николић \n" +"Language-Team: Serbian <(nothing)>\n" +"Language: sr\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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Овај програм се извршава као процес број {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/sv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..0f6b10a252961cfb18fc21d399f02b7869eefc5b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-csharp-forms. +# Copyright © 2006, 2014, 2016, 2019, 2020, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Jan Djärv , 2003, 2006, 2014. +# Göran Uddeborg , 2016, 2019, 2020, 2023, 2024, 2025. +# Luna Jernberg , 2025. +# $Revision: 1.12 $ +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 12:18+0200\n" +"Last-Translator: Luna Jernberg \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Detta program kör som process nummer {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ta.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..db7f9820084e9fcd7dc7f5a23f59fea9ba99a795 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/ta.po @@ -0,0 +1,28 @@ +# Tamil messages for GNU gettext. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# List of contributors follow: +# Poorajith , 2018. +# Arun Isaac , 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-19 00:06+0100\n" +"Last-Translator: Arun Isaac \n" +"Language-Team: Tamil \n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "இந்நிரல் செயலாக்க எண் {0} ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/tr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..f53dfd3ed7700a1e784b1958931446310609914b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-csharp-forms. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2017 Yoyodyne, Inc. (msgids) +# Copyright (C) 2004 Free Software Foundation, Inc. +# Nilgün Belma Bugüner , 2003,2004 +# Mehmet Kececi , 2017, 2019, 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-04-17 13:10+0300\n" +"Last-Translator: Mehmet Kececi \n" +"Language-Team: Turkish \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" +"X-Generator: Poedit 2.3\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Bu yazılım {0} süreç numarası ile çalışıyor." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/uk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..5664b28d71a08b959ab389ddae1cbcce1c4cb5d4 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-csharp-forms +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Maxim V. Dziumanenko , 2004-2007. +# Yuri Chornoivan , 2014, 2015, 2023, 2025. +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:56+0300\n" +"Last-Translator: Yuri Chornoivan \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\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" +"X-Generator: Lokalize 23.04.3\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Ця програма виконується як процес з номером {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/vi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..32a00a9d970cbb67b708b9714a95c7c09f391b11 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/vi.po @@ -0,0 +1,30 @@ +# Vietnamese Translation for Gettext Examples. +# Bản dịch tiếng Việt dành cho các ví dụ của gói gettext. +# Copyright © 2015 Yoyodyne, Inc. (msgids) +# Copyright © 2015 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Clytie Siddall , 2005-2010. +# Trần Ngọc Quân , 2012-2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-24 09:10+0700\n" +"Last-Translator: Trần Ngọc Quân \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Chương trình này đang chạy với mã số tiến trình {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/zh_CN.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..acca2e24b7e1ceeefce1e1b2d3d62870dc7273e7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-csharp-forms. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Funda Wang , 2003. +# Ji ZhengYu , 2015. +# Boyuan Yang <073plan@gmail.com>, 2019, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 15:56-0400\n" +"Last-Translator: Boyuan Yang <073plan@gmail.com>\n" +"Language-Team: Chinese (simplified) \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "此程序正以进程号 {0} 运行。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/zh_HK.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..46f6ebca0dde02602433dcdba1aeaed673683983 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-csharp-forms. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-07-05 15:40+0800\n" +"Last-Translator: Abel Cheung \n" +"Language-Team: Chinese (Hong Kong) \n" +"Language: zh_HK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "你好!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "本程式正在執行中,進程編號為 {0}。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/zh_TW.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..64f025147a9a096570bd284028cc592023d4e87a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp-forms/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-csharp-forms. +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Abel Cheung , 2005. +# Wei-Lun Chao , 2013, 2015. +# Yi-Jyun Pan , 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-forms 0.23-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-11-30 14:14+0800\n" +"Last-Translator: Yi-Jyun Pan \n" +"Language-Team: Chinese (traditional) \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cs:29 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.cs:36 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "本程式正在執行,行程編號為 {0}。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/INSTALL b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..aacf6bc37001de2cd0e92d5137d3cf548eff2692 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/INSTALL @@ -0,0 +1,11 @@ +This example relies on: + - a C# implementation: mono + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..51b34f989d81276542ae65239359ee951e712c3a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/Makefile.am @@ -0,0 +1,74 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# General automake options. +AUTOMAKE_OPTIONS = foreign +ACLOCAL_AMFLAGS = -I m4 + +# The list of subdirectories containing Makefiles. +SUBDIRS = m4 po + +# The list of programs that are built. +bin_CSHARPPROGRAMS = hello + +# The source files of the 'hello' program. +hello_SOURCES = hello.cs + +# The link dependencies of the 'hello' program. +hello_CSHARPLIBS = @GNU_GETTEXT_LDADD@ @GNU_GETTEXT_LIBS@ -l System + +# Resources that are generated from PO files. +MAINTAINERCLEANFILES = */*.resources.dll + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh + + +# ----------------- General rules for compiling C# programs ----------------- + +pkgdatadir = $(datadir)/$(PACKAGE) +pkglibdir = $(libdir)/$(PACKAGE) + +CSHARPCOMP = $(SHELL) csharpcomp.sh +CSHARPCOMPFLAGS = -O -g + +EXTRA_DIST += $(hello_SOURCES) +CLEANFILES = hello.net.exe.mdb +DISTCLEANFILES = csharpcomp.sh csharpexec.sh + + +# Rules for compiling C# programs. + +all-local: hello.net.exe hello.sh + +hello.net.exe: $(hello_SOURCES) + $(CSHARPCOMP) $(CSHARPCOMPFLAGS) -o $@ $(hello_CSHARPLIBS) $(srcdir)/hello.cs + +hello.sh: + { echo '#!/bin/sh'; \ + echo "exec /bin/sh '$(pkgdatadir)/csharpexec.sh' @GNU_GETTEXT_LDADD@ '$(pkglibdir)/hello.net.exe' \"\$$@\""; \ + } > $@ + +install-exec-local: all-local + $(MKDIR_P) $(DESTDIR)$(bindir) + $(INSTALL_SCRIPT) hello.sh $(DESTDIR)$(bindir)/hello + $(MKDIR_P) $(DESTDIR)$(pkglibdir) + $(INSTALL_DATA) hello.net.exe $(DESTDIR)$(pkglibdir)/hello.net.exe + +install-data-local: all-local + $(MKDIR_P) $(DESTDIR)$(pkgdatadir) + $(INSTALL_DATA) csharpexec.sh $(DESTDIR)$(pkgdatadir)/csharpexec.sh + +installdirs-local: + $(MKDIR_P) $(DESTDIR)$(bindir) + $(MKDIR_P) $(DESTDIR)$(pkglibdir) + $(MKDIR_P) $(DESTDIR)$(pkgdatadir) + +uninstall-local: + rm -f $(DESTDIR)$(bindir)/hello + rm -f $(DESTDIR)$(pkglibdir)/hello.net.exe + rm -f $(DESTDIR)$(pkgdatadir)/csharpexec.sh + +CLEANFILES += hello.net.exe hello.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/autoclean.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..4d1bda1d9e77774b0794ab4e47303c199aa225ce --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/autoclean.sh @@ -0,0 +1,48 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for cleaning all autogenerated files. + +test ! -f Makefile || make distclean +# Do the equivalent of "make maintainer-clean", even without the Makefile. +rm -f */*.resources.dll +rm -rf autom4te.cache + +# Brought in by explicit copy. +rm -f m4/nls.m4 +rm -f m4/po.m4 +rm -f m4/progtest.m4 +rm -f po/remove-potcdate.sed + +# Brought in by explicit copy. +rm -f m4/csharpcomp.m4 +rm -f m4/csharpexec.m4 +rm -f m4/csharpexec-test.exe +rm -f m4/csharp.m4 +rm -f csharpcomp.sh.in +rm -f csharpexec.sh.in + +# Generated by aclocal. +rm -f aclocal.m4 + +# Generated by autoconf. +rm -f configure + +# Generated or brought in by automake. +rm -f Makefile.in +rm -f m4/Makefile.in +rm -f po/Makefile.in +rm -f compile +rm -f install-sh +rm -f missing +rm -f config.guess +rm -f config.sub +rm -f po/*.pot +rm -f po/stamp-po +for f in po/*/*.resources.dll; do + if test -f "$f"; then + rm -f "$f" + rmdir `echo $f | sed -e 's,/[^/]*$,,'` + fi +done diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/autogen.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..5f6822c80d0c6d64ddf6e3789e7a6a1f1cbb8952 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/autogen.sh @@ -0,0 +1,48 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for regenerating all autogenerated files. + +if test -r ../Makefile.am; then + # Inside the gettext source directory. + GETTEXT_TOPSRCDIR=../../.. +else + if test -r ../Makefile; then + # Inside a gettext build directory. + GETTEXT_TOOLS_SRCDIR=`sed -n -e 's,^top_srcdir *= *\(.*\)$,\1,p' ../Makefile` + # Adjust a relative top_srcdir. + case $GETTEXT_TOOLS_SRCDIR in + /*) ;; + *) GETTEXT_TOOLS_SRCDIR=../$GETTEXT_TOOLS_SRCDIR ;; + esac + GETTEXT_TOPSRCDIR=$GETTEXT_TOOLS_SRCDIR/../.. + else + # Installed under ${prefix}/share/doc/gettext/examples. + . ../installpaths + fi +fi + +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/nls.m4 m4/nls.m4 +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/po.m4 m4/po.m4 +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/progtest.m4 m4/progtest.m4 +cp -p ${GETTEXTSRCPODIR-$GETTEXT_TOPSRCDIR/gettext-runtime/po}/remove-potcdate.sed po/remove-potcdate.sed + +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/gettext-tools/gnulib-m4}/csharpcomp.m4 m4/csharpcomp.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/gettext-tools/gnulib-m4}/csharpexec.m4 m4/csharpexec.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/gettext-tools/m4}/csharpexec-test.exe m4/csharpexec-test.exe +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/gettext-tools/gnulib-m4}/csharp.m4 m4/csharp.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/build-aux}/csharpcomp.sh.in csharpcomp.sh.in +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/build-aux}/csharpexec.sh.in csharpexec.sh.in + +aclocal -I m4 + +autoconf + +automake -a -c + +./configure +cd po +make update-po +cd .. +make distclean diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/configure.ac b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..c9b95de05aa3a0f55ed3e074c3b563ef8a038a41 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/configure.ac @@ -0,0 +1,52 @@ +dnl Example for use of GNU gettext. +dnl This file is in the public domain. +dnl +dnl Configuration file - processed by autoconf. + +AC_INIT([hello-csharp], [0]) +AC_CONFIG_SRCDIR([hello.cs]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Check whether we can build C# programs at all. +gt_CSHARPCOMP +if test -n "$HAVE_CSHARPCOMP"; then + BUILDCSHARP=yes +else + BUILDCSHARP=no +fi +AC_SUBST([BUILDCSHARP]) + +dnl Check whether we can execute C# programs. +gt_CSHARPEXEC([csharpexec-test.exe], [$srcdir/m4]) +if test -n "$HAVE_CSHARPEXEC" && test $BUILDCSHARP = yes; then + TESTCSHARP=yes +else + TESTCSHARP=no +fi +AC_SUBST([TESTCSHARP]) + +dnl Checks for needed libraries. +AM_PATH_PROG_WITH_TEST([GETTEXT_WITH_GNU_GETTEXT_DLL], [gettext], + [{ basedir=`echo "$ac_dir" | sed -e 's,/bin$,,'`; test -r "$basedir"/lib/GNU.Gettext.dll; }]) +if test -z "$GETTEXT_WITH_GNU_GETTEXT_DLL"; then + echo "Required library GNU.Gettext.dll not found." 1>&2 + exit 1 +fi +changequote(,)dnl +basedir=`echo "$GETTEXT_WITH_GNU_GETTEXT_DLL" | sed -e 's,/[^/]*$,,' | sed -e 's,/bin$,,'` +changequote([, ])dnl +GNU_GETTEXT_DLL="$basedir"/lib/GNU.Gettext.dll +GNU_GETTEXT_LDADD="-L $basedir/lib" +GNU_GETTEXT_LIBS="-l GNU.Gettext" +AC_SUBST([GNU_GETTEXT_LDADD]) +AC_SUBST([GNU_GETTEXT_LIBS]) + +dnl Support for the po directory. +AM_PO_SUBDIRS + +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([csharpcomp.sh]) +AC_CONFIG_FILES([csharpexec.sh]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/hello.cs b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/hello.cs new file mode 100644 index 0000000000000000000000000000000000000000..d46b99c937b7a2deccbcea728dbc588405210cd0 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/hello.cs @@ -0,0 +1,20 @@ +// Example for use of GNU gettext. +// This file is in the public domain. +// +// Source code of the C# program. + +using System; /* String, Console */ +using GNU.Gettext; /* GettextResourceManager */ +using System.Diagnostics; /* Process */ + +public class Hello { + public static void Main (String[] args) { + GettextResourceManager catalog = + new GettextResourceManager("hello-csharp"); + Console.WriteLine(catalog.GetString("Hello, world!")); + Console.WriteLine( + String.Format( + catalog.GetString("This program is running as process number {0}."), + Process.GetCurrentProcess().Id)); + } +} diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/m4/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..de22d57cb1ebe59d18c8e8eae7259977e452b255 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/m4/Makefile.am @@ -0,0 +1,3 @@ +EXTRA_DIST = \ + nls.m4 po.m4 \ + csharpcomp.m4 csharpexec.m4 csharpexec-test.exe diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/LINGUAS b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/LINGUAS @@ -0,0 +1,5 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Set of available languages. +af ast bg ca cs da de el eo es fi fr ga gl hr hu id it ja ka ky lv ms mt nb nl nn pl pt pt_BR ro ru sk sl sq sr sv ta tr uk vi zh_CN zh_HK zh_TW diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..3d2b1934efec02c2d7ab649749cee26189ebb038 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/Makefile.am @@ -0,0 +1,380 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# List of files which contain translatable strings. +POTFILES = \ + hello.cs + +# Usually the message domain is the same as the package name. +DOMAIN = $(PACKAGE) + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgid strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Yoyodyne, Inc. + +# This tells whether or not to prepend "GNU " prefix to the package +# name that gets inserted into the header of the $(DOMAIN).pot file. +# Possible values are "yes", "no", or empty. If it is empty, try to +# detect it automatically by scanning the files in $(top_srcdir) for +# "GNU packagename" string. +PACKAGE_GNU = no + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = bug-gettext@gnu.org + +# These options get passed to msgmerge. +# Useful options are in particular: +# --previous to keep previous msgids of translated messages +MSGMERGE_OPTIONS = + +# These options get passed to msginit. +# If you want to disable line wrapping when writing PO files, add +# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and +# MSGINIT_OPTIONS. +MSGINIT_OPTIONS = + +pkglibdir = $(libdir)/$(PACKAGE) + +MSGMERGE = @MSGMERGE@ +MSGMERGE_UPDATE = @MSGMERGE@ --update +MSGMERGE_FOR_MSGFMT_OPTION = @MSGMERGE_FOR_MSGFMT_OPTION@ +MSGINIT = msginit +MSGCONV = msgconv +MSGFILTER = msgfilter + +# This is computed as $(foreach file, $(POTFILES), $(top_srcdir)/$(file)) +POTFILES_DEPS != for file in $(POTFILES); do echo $(top_srcdir)/$$file; done + +# The set of available translations. +ALL_LINGUAS != if test -f $(srcdir)/LINGUAS; then \ + sed -e '/^\#/d' < $(srcdir)/LINGUAS; \ + else \ + echo $(LINGUAS); \ + fi +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) +POFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$$lang.po; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) +UPDATEPOFILES != for lang in $(ALL_LINGUAS); do echo $$lang.po-update; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) +DUMMYPOFILES != for lang in $(ALL_LINGUAS); do echo $$lang.nop; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(frob $(lang))/$(DOMAIN).resources.dll) +# It also creates the .csharp-rules file. +RESOURCESDLLFILES != tab=`printf '\t'`; \ + for lang in $(ALL_LINGUAS); do \ + frobbedlang=`echo $$lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$$/-Latn/' -e 's/@cyrillic$$/-Cyrl/' -e 's/^sr-SP$$/sr-SP-Latn/' -e 's/^uz-UZ$$/uz-UZ-Latn/'`; \ + echo 1>&3 "$$frobbedlang/\$$(DOMAIN).resources.dll: $$lang.po"; \ + echo 1>&3 "$${tab}@echo \"\$$(MSGFMT) -c --csharp -d \$$(srcdir) -l $$lang \$$(srcdir)/$$lang.po -r \$$(DOMAIN)\"; \\"; \ + echo 1>&3 "$${tab}\$$(MSGFMT) -c --csharp -d \"\$$(srcdir)\" -l $$lang \$$(srcdir)/$$lang.po -r \"\$$(DOMAIN)\" || { rm -f \"\$$(srcdir)/$$frobbedlang/\$$(DOMAIN).resources.dll\"; exit 1; }"; \ + echo $(srcdir)/$$frobbedlang/$(DOMAIN).resources.dll; \ + done 3> .csharp-rules +# Include the generated rules that cannot be formulated as a simple rule. +-include .csharp-rules + +# The set of desired translations, as specified by the installer or distributor. +DESIRED_LINGUAS = @DESIRED_LINGUAS@ +# The set of translations to install. This is computed based on $(ALL_LINGUAS) +# and $(DESIRED_LINGUAS). It is a subset of $(ALL_LINGUAS). +# We use the presentlang catalog if desiredlang is +# a. equal to presentlang, or +# b. a variant of presentlang (because in this case, presentlang can be used +# as a fallback for messages which are not translated in the desiredlang +# catalog). +INST_LINGUAS != for presentlang in $(ALL_LINGUAS); do \ + useit=false; \ + for desiredlang in $(DESIRED_LINGUAS); do \ + case "$$desiredlang" in \ + "$$presentlang" | "$$presentlang"_* | "$$presentlang".* | "$$presentlang"@*) \ + useit=true ;; \ + esac; \ + done; \ + if $$useit; then echo $$presentlang; fi; \ + done +# This is computed as $(foreach lang, $(INST_LINGUAS), $(frob $(lang))/$(DOMAIN).resources.dll) +CATALOGS != for lang in $(INST_LINGUAS); do \ + frobbedlang=`echo $$lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$$/-Latn/' -e 's/@cyrillic$$/-Cyrl/' -e 's/^sr-SP$$/sr-SP-Latn/' -e 's/^uz-UZ$$/uz-UZ-Latn/'`; \ + echo $$lang/$(DOMAIN).resources.dll; \ + done + +SUFFIXES = .nop .po-create .po-update + +# The .pot file, stamp-po, .po files, and .resources.dll files appear in release +# tarballs. +# The GNU Coding Standards say in +# : +# "GNU distributions usually contain some files which are not source files +# ... . Since these files normally appear in the source directory, they +# should always appear in the source directory, not in the build directory. +# So Makefile rules to update them should put the updated files in the +# source directory." +# Therefore we put these files in the source directory, not the build directory. + + +all-local: all-local-@USE_NLS@ + +all-local-yes: $(srcdir)/stamp-po +all-local-no: + +# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no +# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because +# we don't want to bother translators with empty POT files). We assume that +# LINGUAS is empty in this case, i.e. $(POFILES) and $(RESOURCESDLLFILES) are +# empty. In this case, $(srcdir)/stamp-po is a nop (i.e. a phony target). + +# $(srcdir)/stamp-po is a timestamp denoting the last time at which the CATALOGS +# have been loosely updated. Its purpose is that when a developer or translator +# checks out the package from a version control system, and the $(DOMAIN).pot +# file is not under version control, "make" will update the $(DOMAIN).pot and +# the $(CATALOGS), but subsequent invocations of "make" will do nothing. This +# timestamp would not be necessary if updating the $(CATALOGS) would always +# touch them; however, the rule for $(POFILES) has been designed to not touch +# files that don't need to be changed. +$(srcdir)/stamp-po: $(srcdir)/$(DOMAIN).pot + test ! -f $(srcdir)/$(DOMAIN).pot || \ + test -z "$(RESOURCESDLLFILES)" || $(MAKE) $(RESOURCESDLLFILES) + @test ! -f $(srcdir)/$(DOMAIN).pot || { \ + echo "touch $(srcdir)/stamp-po" && \ + echo timestamp > $(srcdir)/stamp-poT && \ + mv $(srcdir)/stamp-poT $(srcdir)/stamp-po; \ + } + +# This target rebuilds $(DOMAIN).pot; it is an expensive operation. +# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. +# The determination of whether the package xyz is a GNU one is based on the +# heuristic whether some file in the top level directory mentions "GNU xyz". +# If GNU 'find' is available, we avoid grepping through monster files. +$(DOMAIN).pot-update: $(POTFILES_DEPS) + package_gnu="$(PACKAGE_GNU)"; \ + test -n "$$package_gnu" || { \ + if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \ + LC_ALL=C find -L $(top_srcdir) -maxdepth 1 -type f -size -10000000c -exec grep -i 'GNU $(PACKAGE)' /dev/null '{}' ';' 2>/dev/null; \ + else \ + LC_ALL=C grep -i 'GNU $(PACKAGE)' $(top_srcdir)/* 2>/dev/null; \ + fi; \ + } | grep -v 'libtool:' >/dev/null; then \ + package_gnu=yes; \ + else \ + package_gnu=no; \ + fi; \ + }; \ + if test "$$package_gnu" = "yes"; then \ + package_prefix='GNU '; \ + else \ + package_prefix=''; \ + fi; \ + if test -n '$(MSGID_BUGS_ADDRESS)'; then \ + msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ + else \ + msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ + fi; \ + case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ + $(POTFILES) \ + ;; \ + *) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --package-name="$${package_prefix}$(PACKAGE)" \ + --package-version='$(VERSION)' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ + $(POTFILES) \ + ;; \ + esac + test ! -f $(DOMAIN).po || { \ + if test -f $(srcdir)/$(DOMAIN).pot-header; then \ + sed -e '1,/^#$$/d' < $(DOMAIN).po > $(DOMAIN).1po && \ + cat $(srcdir)/$(DOMAIN).pot-header $(DOMAIN).1po > $(DOMAIN).po && \ + rm -f $(DOMAIN).1po \ + || exit 1; \ + fi; \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + sed -f $(srcdir)/remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ + sed -f $(srcdir)/remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ + if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ + else \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + else \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + } + +# This rule has no dependencies: we don't need to update $(DOMAIN).pot at +# every "make" invocation, only create it when it is missing. +# Only "make $(DOMAIN).pot-update" or "make dist" will force an update. +$(srcdir)/$(DOMAIN).pot: + $(MAKE) $(DOMAIN).pot-update + +# This target rebuilds a PO file if $(DOMAIN).pot has changed. +# Note that a PO file is not touched if it doesn't need to be changed. +$(POFILES): $(srcdir)/$(DOMAIN).pot + @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ + if test -f "$(srcdir)/$${lang}.po"; then \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot"; \ + cd $(srcdir) \ + && { case `$(MSGMERGE_UPDATE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.10 | 0.10.*) \ + $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ + 0.1[1-5] | 0.1[1-5].*) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ + 0.1[6-7] | 0.1[6-7].*) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --previous $${lang}.po $(DOMAIN).pot;; \ + *) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot;; \ + esac; \ + }; \ + else \ + $(MAKE) $${lang}.po-create; \ + fi + + +install-data-local: install-data-local-@USE_NLS@ +install-data-local-no: all-local +install-data-local-yes: all-local + $(MKDIR_P) $(DESTDIR)$(pkglibdir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + $(MKDIR_P) $(DESTDIR)$(pkglibdir)/`echo $$cat | sed -e 's,/[^/]*$$,,'`; \ + if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ + $(INSTALL_DATA) $$realcat $(DESTDIR)$(pkglibdir)/$$cat; \ + echo "installing $$realcat as $(DESTDIR)$(pkglibdir)/$$cat"; \ + done + +installdirs-local: installdirs-local-@USE_NLS@ +installdirs-local-no: +installdirs-local-yes: + $(MKDIR_P) $(DESTDIR)$(pkglibdir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + $(MKDIR_P) $(DESTDIR)$(pkglibdir)/`echo $$cat | sed -e 's,/[^/]*$$,,'`; \ + done + +uninstall-local: uninstall-local-@USE_NLS@ +uninstall-local-no: +uninstall-local-yes: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + rm -f $(DESTDIR)$(pkglibdir)/$$cat; \ + done + +html ID: + +DISTCLEANFILES = .csharp-rules + +MOSTLYCLEANFILES = +MOSTLYCLEANFILES += stamp-poT +MOSTLYCLEANFILES += core core.* *.stackdump $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po + +MAINTAINERCLEANFILES = $(DOMAIN).pot stamp-po +maintainer-clean-local: + if test -n "$(RESOURCESDLLFILES)"; then \ + for file in $(RESOURCESDLLFILES); do \ + rm -f "$$file"; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$$dir"; then rmdir "$$dir"; fi; \ + done; \ + fi + +EXTRA_DIST = remove-potcdate.sed LINGUAS $(POFILES) $(RESOURCESDLLFILES) + +# Hidden from automake, but really activated. Works around an automake-1.5 bug. +#distdir: distdir1 +distdir1: + $(MAKE) update-po + $(MAKE) $(srcdir)/stamp-po + @if test -f $(srcdir)/$(DOMAIN).pot; then \ + for file in $(DOMAIN).pot stamp-po; do \ + if test -f $$file; then d=.; else d=$(srcdir); fi; \ + cp -p $$d/$$file $(distdir)/$$file || exit 1; \ + done; \ + else \ + case $(XGETTEXT) in \ + :) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because a suitable 'xgettext' program was not found in PATH." 1>&2;; \ + *) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because 'xgettext' found no strings to extract. Check the POTFILES and the XGETTEXT_OPTIONS in the Makefile.am file." 1>&2;; \ + esac; \ + fi + +update-po: Makefile + $(MAKE) $(DOMAIN).pot-update + test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) + $(MAKE) update-resourcesdll + +# General rule for creating PO files. + +.nop.po-create: + @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ + echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ + exit 1 + +# General rule for updating PO files. + +.nop.po-update: + @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --lang=$$lang --previous $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ + cd $(srcdir); \ + if { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.10 | 0.10.*) \ + $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + 0.1[1-5] | 0.1[1-5].*) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + 0.1[6-7] | 0.1[6-7].*) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --previous -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + *) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --lang=$$lang --previous -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + esac; \ + }; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +$(DUMMYPOFILES): + +update-resourcesdll: Makefile $(RESOURCESDLLFILES) + @: diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/af.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..32fa5040ee4b6463f665d473cc0ba35d54bd5d9d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/af.po @@ -0,0 +1,26 @@ +# Afrikaans translation for Silky +# Copyright (C) 2004 Free Software Foundation, Inc. +# This file is distributed under the same license as the silky package. +# Hanlie Pretorius , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-0.13.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2003-12-31 10:30+2\n" +"Last-Translator: Ysbeer \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Hierdie program loop as prosesnommer {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ast.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..8520ac579ce93c74c7c624bf88969ddbad15f921 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-csharp +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marquinos , 2009. +# enolp , 2018. +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-07-16 00:28+0100\n" +"Last-Translator: enolp \n" +"Language-Team: Asturian \n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 2.0\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Esti programa ta executándose como procesu númberu {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/bg.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..2073d0284a604805ec83541cefd2e970aef3d1df --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-csharp package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Roumen Petrov , 2010,2014,2015,2019,2023,2024.2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-csharp 0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-08 19:09+0200\n" +"Last-Translator: Roumen Petrov \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Програмата е пусната под процес номер {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ca.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..552f6f476d80a11a65d5a163fe3881b174ddea14 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-csharp. +# Copyright (C) 2003, 2014, 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ivan Vilata i Balaguer , 2003, 2014, 2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-07-07 08:36+0200\n" +"Last-Translator: Ivan Vilata i Balaguer \n" +"Language-Team: Catalan \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Aquest programa està corrent amb el número de procés {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/cs.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..eac23e2a9c091c68000530122db5f111d8ae8227 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/cs.po @@ -0,0 +1,29 @@ +# The Czech translation for the gettext package. +# Copyright (C) 2011 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marek Černocký , 2011. +# Petr Písař , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 20:05+02:00\n" +"Last-Translator: Petr Pisar \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Tento program běží jako proces číslo {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/da.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..f9b64e3bca232e75ec11a7ddce76b8b7d89f08d4 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-csharp. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Jan Djærv , 2003, 2006. +# Keld Simonsen , 2011. +# Joe Hansen , 2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-27 12:39+0100\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Dette program kører som proces nummer {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/de.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..ff3ea4b18e1250aaf5504ab67c89ca209bfaac76 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-csharp. +# Copyright © 2003, 2013 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Bruno Haible , 2003. +# Karl Eichwalder , 2003. +# Jakob Kramer , 2013. +# Mario Blättermann , 2014, 2023, 2025. +# Philipp Thomas , 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 17:15+0200\n" +"Last-Translator: Mario Blättermann \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 25.04.0\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Dieses Programm läuft mit der Prozess-Nummer {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/el.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..365ed22593f7b9b0888b7821e612527847bfad8a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-csharp +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.14.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2005-01-06 18:50+0000\n" +"Last-Translator: Simos Xenitellis \n" +"Language-Team: Greek \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.3.1\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/eo.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..9ffd23c8dceab42808bd8ac24487cec4ba645b63 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/eo.po @@ -0,0 +1,28 @@ +# La teksto por la mesaĝoj de la programo "gettext". +# Copyright (C) 2006, 2016 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Edmund GRIMLEY EVANS , 2006. +# Felipe CASTRO , 2016, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-23 19:00-0300\n" +"Last-Translator: Felipe Castro \n" +"Language-Team: Esperanto \n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Ĉi tiu programo rulas kiel procez-numero {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/es.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..c4e794f156e2c8ccb4bfe05ba2017d7f43066b09 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/es.po @@ -0,0 +1,30 @@ +# Mensajes en español para GNU gettext. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# This file is distributed under the same license as the gettext package. +# +# Max de Mendizábal , 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004. +# Antonio Ceballos , 2014, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-02-23 17:01+0100\n" +"Last-Translator: Antonio Ceballos \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Este programa está corriendo como el proceso número {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/fi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..3940317fbf4bbd6c5930166ac1158d032f8593ef --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/fi.po @@ -0,0 +1,29 @@ +# Finnish messages for GNU Gettext examples. +# This file is distributed under the same license as the gettext package. +# Copyright © 2007, 2014, 2015 Yoyodyne, Inc. (msgids) +# Lauri Nurmi , 2007. +# Jorma Karvonen , 2014-2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-09-01 16:59+0300\n" +"Last-Translator: Jorma Karvonen \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 1.5.4\n" + +# Tämä nimenomainen käännös valittu GNU Hellon mukaisesti. +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Tämän ohjelman prosessinumero on {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/fr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..9d2555641d9678deb12ac3ed8c6024c027783999 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/fr.po @@ -0,0 +1,32 @@ +# Messages français pour GNU gettext. +# Copyright (C) 2006 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Michel Robitaille , 2006. +# Christophe Combelles , 2006 +# Stéphane Aulery , 2015 +# Christian Wiatr , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-28 16:25+0200\n" +"Last-Translator: Christian Wiatr \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Ce programme est exécuté en tant que processus numéro {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ga.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..b69cfdc31f21d54509c76b88232151f8ee17014b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-csharp. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Kevin Patrick Scannell , 2004, 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2017-01-10 12:09-0500\n" +"Last-Translator: Kevin Patrick Scannell \n" +"Language-Team: Irish \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Tá an clár seo ag rith mar phróiseas {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/gl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..220c862bd2ff8cdf066817e067fc377f27c743f2 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-csharp package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Leandro Regueiro , 2010-2014. +# +# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas +# colaborar connosco, podes atopar máis información en +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.19-rc1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2014-05-10 16:34+0100\n" +"Last-Translator: Leandro Regueiro \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Este programa estase executando como o proceso número {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/hr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..c40c272dddf0e00b25c28dd05b6d9c8cf8c5a688 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-csharp to Croatian. +# Copyright (C) 2003, 2004, 2014, 2015, 2019 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Permission is granted to freely copy and distribute +# this file and modified versions, provided that this +# header is not removed and modified versions are marked +# as such. +# +# Tomislav Krznar , 2012. +# Božidar Putanec , 2018-2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-csharp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:15-0700\n" +"Last-Translator: Božidar Putanec \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Ovaj program se izvršava kao proces broj {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/hu.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..da1f018c181894ea14efe56063e2fa02b9ddbb66 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-csharp. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# Tamás Kiss , 2005. +# Balázs Úr , 2014, 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-23 20:31+0200\n" +"Last-Translator: Balázs Úr \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 1.2\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Ez a program a(z) {0} folyamatazonosítóval fut." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/id.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..207ee8c2b54d17106e253f5bd4b0befb8f516c1b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-csharp-0.15-pre5.po to Indonesian +# Copyright (C) 2006 Yoyodyne, Inc. +# This file is distributed under the same license as the PACKAGE package. +# +# Tedi Heriyanto , 2006. +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-09-27 20:19+0700\n" +"Last-Translator: Tedi Heriyanto \n" +"Language-Team: Indonesian \n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.11.2\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Program ini berjalan sebagai proses nomor {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/it.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..fbc41aee0bc0cf74c1cceccb2fbee770fe9dd0c6 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-csharp. +# Copyright (C) 2005, 2006 Yoyodyne, Inc. (msgids) +# Copyright (C) 2024 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Marco Colombo , 2005, 2006, 2015. +# Michele Locati , 2024, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-csharp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-04 18:28+0200\n" +"Last-Translator: Michele Locati \n" +"Language-Team: Italian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Questo programma è in esecuzione con numero di processo {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ja.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..4ddb9ea1c4e577d2b7446648c269e7b40c580880 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-csharp' messages to Japanese. +# Copyright (C) 2005, 2006, 2014, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Masahito Yamaga , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-csharp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:59+0900\n" +"Last-Translator: Masahito Yamaga \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "このプログラムはプロセス番号 {0} で動いています." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ka.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..5e529b45ac4247565a4190ae7be4a87cf82d5f61 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ka.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Temuri Doghonadze , 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2022-05-22 05:04+0200\n" +"Last-Translator: Temuri Doghonadze \n" +"Language-Team: Georgian <(nothing)>\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0.1\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ky.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..31cc1157dd2a2b27a875cce707b263e9a567099e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-csharp' messages to Kirghiz. +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ilyas Bakirov , 2007. +# Ilyas Bakirov , 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-02-15 18:26+0600\n" +"Last-Translator: Ilyas Bakirov \n" +"Language-Team: Kirghiz \n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.0.6\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Бул программа {0} процесс номери катары иштеп жатат." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/lv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..b5ea71c3b049d030ddaabe2471647d3c47c49ea5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-csharp +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Arvis Lācis , 2009. +# Rihards Priedītis , 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-09 11:44+0000\n" +"Last-Translator: Rihards Priedītis \n" +"Language-Team: Latvian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Šī programma darbojas ar procesa numuru {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ms.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..b5e8913e917a805335359be7f930c655389164e9 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ms.po @@ -0,0 +1,28 @@ +# hello-csharp Bahasa Melayu (Malay) (ms). +# Copyright (C) 2006, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2006, 2015, 2023, 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Sharuzzaman Ahmat Raslan , 2006, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-03 21:10+0800\n" +"Last-Translator: Sharuzzaman Ahmat Raslan \n" +"Language-Team: Malay \n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Program ini dilaksanakan sebagai proses bernombor {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/mt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..1fbe33e37dc32b83c4f5a0d54aaa06d21166af03 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/mt.po @@ -0,0 +1,27 @@ +# hello-csharp-0.16.2-pre5. +# Copyright (C) 2008 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Clyde Meli , 2001-2008. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.16.2-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2008-11-18 17:27+0100\n" +"Last-Translator: Clyde Meli \n" +"Language-Team: Maltese \n" +"Language: mt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Dal-programm qed jaħdem taħt il-proċess numru {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/nb.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..5d7b90e2e15f62434b744a0cee0d008ee43d5e94 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-csharp package. +# Copyright (C) 2012 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Johnny A. Solbu , 2012-2024 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-01-06 16:33+0100\n" +"Last-Translator: Johnny A. Solbu \n" +"Language-Team: Norwegian Bokmaal \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Dette programmet kjører som prosess nummer {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/nl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..24fedebb66b18dd207820ef225082461acf238f3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-csharp. +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# "There are three basic rules for writing a novel. +# Unfortunately nobody knows what they are." +# +# Benno Schulenberg , 2007, 2014, 2015, 2019, 2025. +# Elros Cyriatan , 2004. +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-01 14:51+0100\n" +"Last-Translator: Benno Schulenberg \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Dit programma draait als proces nummer {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/nn.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..c63418630d096e16c45f484efd205d51b80b44ed --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-csharp +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Karl Ove Hufthammer , 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-05-04 18:58+0200\n" +"Last-Translator: Karl Ove Hufthammer \n" +"Language-Team: Norwegian Nynorsk \n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 20.04.0\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Dette programmet køyrer som prosess nummer {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/pl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..a103b3f6024eccc61dbb757fd21f01cea5016172 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-csharp domain +# Copyright (C) 2010, 2014, 2015, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Rafał Maszkowski , 2003, 2010, 2014, 2015, 2025 +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-csharp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-25 17:16+0200\n" +"Last-Translator: Rafał Maszkowski \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Ten program działa jako proces o numerze {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/pt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..126c87b4218a2ba390ed99a40a8490309e6df092 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-csharp' package. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Pedro Albuquerque , 2019, 2020, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 11:24+0100\n" +"Last-Translator: Pedro Albuquerque \n" +"Language-Team: Portuguese \n" +"Language: 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;\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Este programa está em execução como processo nº {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/pt_BR.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..ea5648feb928e12b3d3402a0affb3fd95ad1fcc8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/pt_BR.po @@ -0,0 +1,31 @@ +# Brazilian Portuguese translations for gettext-example +# Traduções em português brasileiro para gettext-example +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Rafael Fontenelle , 2013-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:24-0300\n" +"Last-Translator: Rafael Fontenelle \n" +"Language-Team: Brazilian Portuguese \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" +"X-Generator: Gtranslator 48.0\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Este programa está sendo executado com número de processo {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ro.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..b95bf59d9b198ef4fa967d2b6e53b8fa9d212e32 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-csharp" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-csharp. +# Copyright © 2015, 2019, 2022, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Eugen Hoancă , 2003. +# Mihai Cristescu , 2015 - 2019. +# Remus-Gabriel Chelu , 2022 - 2025. +# +# Cronologia traducerii fișierului „hello-csharp”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-csharp 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-csharp 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-csharp 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-csharp 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-csharp-0.20.2.pot”. +# Actualizare a algoritmului formelor de plural (de la „trei-vechi” la „trei-actual”). +# NU și a mesajelor traduse (acestea au rămas neschimbate). +# Eliminare a mesajelor ce-au dispărut în ultima versiune. +# Actualizări realizate de Remus-Gabriel Chelu , 15.01.2022. +# Actualizare a traducerii pentru versiunea 0.20.2 făcută de R-GC, ian-2022. +# Actualizare a traducerii pentru versiunea 0.22 făcută de R-GC, iun-2023. +# Revizuire și corectare a traducerii pentru versiunea 0.23-pre1 făcută de R-GC, oct-2024. +# Actualizare a traducerii pentru versiunea 0.24-pre1 făcută de R-GC, feb-2025. +# Actualizare a traducerii pentru versiunea 0.25-pre1 făcută de R-GC, apr-2025. +# Actualizare a traducerii pentru versiunea Y, făcută de X, Z(luna-anul). +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 00:25+0200\n" +"Last-Translator: Remus-Gabriel Chelu \n" +"Language-Team: Romanian \n" +"Language: ro\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==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Acest program rulează ca procesul numărul {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ru.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..08c00b9d8b054e345859abf42623511d94609af1 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-csharp-0.14.1.po to Russian +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Pavel Maryanov , 2004. +# SPDX-FileCopyrightText: 2014, 2015, 2023, 2025 Yuri Kozlov +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-02 09:17+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Lokalize 24.12.0\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" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Эта программа выполняется как процесс под номером {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/sk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..1c6a254159a80f30f503ee1d6b45cc85fd3bb4ec --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-csharp package. +# Copyright (C) 2003, 2004, 2014, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Marcel Telka , 2003, 2004, 2014, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-csharp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:53+0200\n" +"Last-Translator: Marcel Telka \n" +"Language-Team: Slovak \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Tento program beží ako proces s číslom {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/sl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..d390cdc23747a4d0bf2860a08930184184b0f595 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/sl.po @@ -0,0 +1,29 @@ +# -*- mode: po; coding: utf-8; -*- Slovenian message catalog for GNU gettext-example +# Copyright (C) 2005 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Primož Peterlin , 2005, 2014, 2015, 2024. +# $Id: hello-csharp-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-03-28 18:02+0100\n" +"Last-Translator: Primož Peterlin \n" +"Language-Team: Slovenian \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " +"n%100==4 ? 3 : 0);\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Ta program teče kot proces številka {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/sq.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..3cf418f496b9df8d3837d0d6d0e1b95c2becdf82 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/sq.po @@ -0,0 +1,28 @@ +# Albanian translation of gettext-example. +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Besnik Bleta , 2020,2023,2024,2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:56+0300\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.2.2\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Ky program po xhiron si procesi numër {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/sr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..38e0f1938d132028cd01c7c8ac792cab3b7831cf --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-csharp. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Aleksandar Jelenak , 2004. +# Мирослав Николић , 2014-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-02 16:51+0100\n" +"Last-Translator: Мирослав Николић \n" +"Language-Team: Serbian <(nothing)>\n" +"Language: sr\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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Овај програм се извршава као процес број {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/sv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..8bfb88c63966bcbb07ff476e600e002c009793b3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-csharp. +# Copyright © 2006, 2014, 2016, 2019, 2020, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Jan Djärv , 2003, 2006, 2014. +# Göran Uddeborg , 2016, 2019, 2020, 2023, 2024, 2025. +# Luna Jernberg , 2025. +# $Revision: 1.12 $ +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 12:18+0200\n" +"Last-Translator: Luna Jernberg \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Detta program kör som process nummer {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ta.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..d23de1bcd5a399c68209e3d1db90567d44e51fe1 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/ta.po @@ -0,0 +1,28 @@ +# Tamil messages for GNU gettext. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# List of contributors follow: +# Poorajith , 2018. +# Arun Isaac , 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-19 00:06+0100\n" +"Last-Translator: Arun Isaac \n" +"Language-Team: Tamil \n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "இந்நிரல் செயலாக்க எண் {0} ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/tr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..6555408c347d7629616629b3c22e2c9971b5d98c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-csharp. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2017 Yoyodyne, Inc. (msgids) +# Copyright (C) 2004 Free Software Foundation, Inc. +# Nilgün Belma Bugüner , 2003,2004 +# Mehmet Kececi , 2017, 2019, 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-04-17 13:10+0300\n" +"Last-Translator: Mehmet Kececi \n" +"Language-Team: Turkish \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" +"X-Generator: Poedit 2.3\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Bu yazılım {0} süreç numarası ile çalışıyor." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/uk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..c016abdbecf3b934ee8f3bbefc071751bedc3e08 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-csharp +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Maxim V. Dziumanenko , 2004-2007. +# Yuri Chornoivan , 2014, 2015, 2023, 2025. +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:56+0300\n" +"Last-Translator: Yuri Chornoivan \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\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" +"X-Generator: Lokalize 23.04.3\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Ця програма виконується як процес з номером {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/vi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..415e11aad92388e03e2437a8a10268c135b2af29 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/vi.po @@ -0,0 +1,30 @@ +# Vietnamese Translation for Gettext Examples. +# Bản dịch tiếng Việt dành cho các ví dụ của gói gettext. +# Copyright © 2015 Yoyodyne, Inc. (msgids) +# Copyright © 2015 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Clytie Siddall , 2005-2010. +# Trần Ngọc Quân , 2012-2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-24 09:10+0700\n" +"Last-Translator: Trần Ngọc Quân \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "Chương trình này đang chạy với mã số tiến trình {0}." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/zh_CN.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..27693c8dceb2a3d1e06886e2702e3fc138a591a7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-csharp. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Funda Wang , 2003. +# Ji ZhengYu , 2015. +# Boyuan Yang <073plan@gmail.com>, 2019, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 15:56-0400\n" +"Last-Translator: Boyuan Yang <073plan@gmail.com>\n" +"Language-Team: Chinese (simplified) \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "此程序正以进程号 {0} 运行。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/zh_HK.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..e792282f82ff19b49a68e2593c9e64e3833eec98 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-csharp. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-07-05 15:40+0800\n" +"Last-Translator: Abel Cheung \n" +"Language-Team: Chinese (Hong Kong) \n" +"Language: zh_HK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "你好!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "本程式正在執行中,進程編號為 {0}。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/zh_TW.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..54561afd79a385004f5dd1a9eab9804ae6f527d0 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-csharp/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-csharp. +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Abel Cheung , 2005. +# Wei-Lun Chao , 2013, 2015. +# Yi-Jyun Pan , 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-csharp 0.23-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-11-30 14:14+0800\n" +"Last-Translator: Yi-Jyun Pan \n" +"Language-Team: Chinese (traditional) \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.cs:14 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.cs:17 +#, csharp-format +msgid "This program is running as process number {0}." +msgstr "本程式正在執行,行程編號為 {0}。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/INSTALL b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..79993777bb994d8785d17e24a8cc5f9b5feea12e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/INSTALL @@ -0,0 +1,10 @@ +This example relies on a D compiler (one of gdc, ldc2, dmd). + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..de7901d5d6b00ca9cacb7fb73a8d92be7cbf4d7d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/Makefile.am @@ -0,0 +1,49 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# General automake options. +AUTOMAKE_OPTIONS = foreign +ACLOCAL_AMFLAGS = -I m4 + +# The list of subdirectories containing Makefiles. +SUBDIRS = m4 po + +# The list of programs that are built. +bin_PROGRAMS = hello + +# The source files of the 'hello' program. +nodist_hello_SOURCES = hello.d + +# Compile time dependencies. +dincludedir = $(D_PACKAGES_PREFIX)/include/d +dlibdir = $(D_PACKAGES_EXECPREFIX)/lib + +# Link time dependencies. +LDADD = @LIBINTL@ + +hello$(EXEEXT): hello.d $(dlibdir)/libintl_d.a + $(SHELL) ./dcomp.sh -I$(dincludedir) -o hello$(EXEEXT) hello.d $(dlibdir)/libintl_d.a $(LDADD) + +# Compile dependency module. +# For simplicity, compile the entire module to a single object file. +$(dlibdir)/libintl_d.a: + mkdir -p $(dlibdir) + $(SHELL) ./dcomp.sh -I$(dincludedir) -c -o $(dlibdir)/libintl_d.a `find $(dincludedir)/gnu/libintl -name '*.d' -print` + +DISTCLEANFILES = dcomp.sh + +distclean-local: distclean-generic + @if test '$(D_PACKAGES_EXECPREFIX)' = './depends'; then \ + rm -f $(dlibdir)/libintl_d.a; \ + rmdir $(dlibdir); \ + rmdir depends 2>/dev/null || true; \ + fi + +# Additional files to be distributed. +EXTRA_DIST = \ + autogen.sh autoclean.sh \ + depends/include/d/gnu/libintl/package.d \ + depends/include/d/gnu/libintl/libintl.d \ + depends/include/d/gnu/libintl/internal/low.d diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/autoclean.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..079ca7d4d1bc17f652959afc1274c2d1be433436 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/autoclean.sh @@ -0,0 +1,51 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for cleaning all autogenerated files. + +test ! -f Makefile || make distclean +rm -rf autom4te.cache + +# Brought in by explicit copy. +rm -rf depends + +# Brought in by autopoint. +rm -f ABOUT-NLS +rm -f config.rpath +rm -f m4/gettext.m4 +rm -f m4/build-to-host.m4 +rm -f m4/host-cpu-c-abi.m4 +rm -f m4/iconv.m4 +rm -f m4/intlmacosx.m4 +rm -f m4/lib-ld.m4 +rm -f m4/lib-link.m4 +rm -f m4/lib-prefix.m4 +rm -f m4/nls.m4 +rm -f m4/po.m4 +rm -f m4/progtest.m4 +rm -f po/Makefile.in.in +rm -f po/remove-potcdate.sed + +# Brought in by explicit copy. +rm -f m4/dcomp.m4 +rm -f dcomp.sh.in + +# Generated by aclocal. +rm -f aclocal.m4 + +# Generated by autoconf. +rm -f configure + +# Generated or brought in by automake. +rm -f Makefile.in +rm -f m4/Makefile.in +rm -f po/Makefile.in +rm -f compile +rm -f install-sh +rm -f missing +rm -f config.guess +rm -f config.sub +rm -f po/*.pot +rm -f po/stamp-po +rm -f po/*.gmo diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/autogen.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..66ed26caafa5b8aedfaf690123a9fe2aaf81fa69 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/autogen.sh @@ -0,0 +1,61 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for regenerating all autogenerated files. + +mkdir -p depends/include/d +if test -r ../Makefile.am || test -r ../Makefile; then + if test -r ../Makefile.am; then + # Inside the gettext source directory. + GETTEXT_TOPSRCDIR=../../.. + else + # Inside a gettext build directory. + GETTEXT_TOOLS_SRCDIR=`sed -n -e 's,^top_srcdir *= *\(.*\)$,\1,p' ../Makefile` + # Adjust a relative top_srcdir. + case $GETTEXT_TOOLS_SRCDIR in + /*) ;; + *) GETTEXT_TOOLS_SRCDIR=../$GETTEXT_TOOLS_SRCDIR ;; + esac + GETTEXT_TOPSRCDIR=$GETTEXT_TOOLS_SRCDIR/../.. + fi + (cd "$GETTEXT_TOPSRCDIR/gettext-runtime/intl-d" \ + && tar cf - `find gnu/libintl -name '*.d' -print`) \ + | (cd depends/include/d && tar xf -) +else + # Installed under ${prefix}/share/doc/gettext/examples. + . ../installpaths + (cd "$includedir/d" \ + && tar cf - `find gnu/libintl -name '*.d' -print`) \ + | (cd depends/include/d && tar xf -) +fi + +autopoint -f # was: gettextize -f -c +rm po/Makefile.in.in +rm po/Makevars.template +rm po/Rules-quot +rm po/boldquot.sed +rm po/en@boldquot.header +rm po/en@quot.header +rm po/insert-header.sed +rm po/quot.sed + +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/gettext-tools/gnulib-m4}/dcomp.m4 m4/dcomp.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/build-aux}/dcomp.sh.in dcomp.sh.in + +aclocal -I m4 + +autoconf + +automake -a -c + +rm -rf autom4te.cache + +cd po +for f in *.po; do + if test -r "$f"; then + lang=`echo $f | sed -e 's,\.po$,,'` + msgfmt -c -o $lang.gmo $lang.po + fi +done +cd .. diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/configure.ac b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..76b7177c4e8f49f448dd01bded99ba842f733b3c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/configure.ac @@ -0,0 +1,49 @@ +dnl Example for use of GNU gettext. +dnl This file is in the public domain. +dnl +dnl Configuration file - processed by autoconf. + +AC_INIT([hello-d], [0]) +AC_CONFIG_SRCDIR([hello.d.in]) +AM_INIT_AUTOMAKE([1.11]) + +gt_DCOMP +if test -z "$DC"; then + echo "*** D compiler not found" 1>&2 + exit 1 +fi + +D_PACKAGES_PREFIX='$(srcdir)/depends' +D_PACKAGES_EXECPREFIX='./depends' +AC_ARG_WITH([d-packages-prefix], + [[ --with-d-packages-prefix=DIR search for D packages in DIR/include/d, DIR/lib]], + [if test "X$withval" != "X" && test "X$withval" != "Xno"; then + D_PACKAGES_PREFIX="$withval" + D_PACKAGES_EXECPREFIX="$D_PACKAGES_PREFIX" + fi + ]) +AC_SUBST([D_PACKAGES_PREFIX]) +AC_SUBST([D_PACKAGES_EXECPREFIX]) + +dnl The installed program must know where to find its message catalogs. +dnl Unfortunately, prefix gets only finally determined at the end of configure. +if test "X$prefix" = "XNONE"; then + final_prefix="$ac_default_prefix" +else + final_prefix="$prefix" +fi +save_prefix="$prefix" +prefix="$final_prefix" +eval "datarootdir=\"${datarootdir}\"" +eval "localedir=\"${datarootdir}/locale\"" +prefix="$save_prefix" +AC_SUBST([localedir]) + +AM_GNU_GETTEXT([external]) +AM_GNU_GETTEXT_VERSION([0.25]) + +AC_CONFIG_FILES([Makefile hello.d]) +AC_CONFIG_FILES([dcomp.sh]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/hello.d.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/hello.d.in new file mode 100644 index 0000000000000000000000000000000000000000..544e605abf37c1e082ec396fd5dc9581bd595378 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/hello.d.in @@ -0,0 +1,29 @@ +/* Example for use of GNU gettext. + This file is in the public domain. + + Source code of the D program. */ + + +// Get writeln. +import std.stdio; +// Get format. +import std.format; +// Get locale constants. +import core.stdc.locale : LC_ALL; +// Get textdomain, bindtextdomain, gettext, ngettext, setlocale. +import gnu.libintl : textdomain, bindtextdomain, gettext, ngettext, setlocale; +// Get thisProcessID. +import std.process : thisProcessID; + +// Define _() as a shorthand for gettext(). +alias _ = gettext; + +void main (string[] args) +{ + setlocale (LC_ALL, ""); + textdomain ("hello-d"); + bindtextdomain ("hello-d", `@localedir@`); + + writeln (_("Hello, world!")); + writeln (format (_("This program is running as process number %d."), thisProcessID)); +} diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/m4/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..0b103bb7463dc79f6e56a4c31f5aaa14a4c58ae6 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/m4/Makefile.am @@ -0,0 +1,3 @@ +EXTRA_DIST = \ + nls.m4 po.m4 \ + dcomp.m4 diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/LINGUAS b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/LINGUAS @@ -0,0 +1,5 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Set of available languages. +af ast bg ca cs da de el eo es fi fr ga gl hr hu id it ja ka ky lv ms mt nb nl nn pl pt pt_BR ro ru sk sl sq sr sv ta tr uk vi zh_CN zh_HK zh_TW diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..42d7beddc06887c11eec9d6702933e1687fff579 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/Makefile.am @@ -0,0 +1,434 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# List of files which contain translatable strings. +POTFILES = \ + hello.d.in + +# Usually the message domain is the same as the package name. +DOMAIN = $(PACKAGE) + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = -k_ --flag=_:1:pass-c-format --flag=_:1:pass-d-format + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgid strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Yoyodyne, Inc. + +# This tells whether or not to prepend "GNU " prefix to the package +# name that gets inserted into the header of the $(DOMAIN).pot file. +# Possible values are "yes", "no", or empty. If it is empty, try to +# detect it automatically by scanning the files in $(top_srcdir) for +# "GNU packagename" string. +PACKAGE_GNU = no + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = bug-gettext@gnu.org + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = + +# These options get passed to msgmerge. +# Useful options are in particular: +# --previous to keep previous msgids of translated messages +MSGMERGE_OPTIONS = + +# These options get passed to msginit. +# If you want to disable line wrapping when writing PO files, add +# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and +# MSGINIT_OPTIONS. +MSGINIT_OPTIONS = + +MSGMERGE = @MSGMERGE@ +MSGMERGE_UPDATE = @MSGMERGE@ --update +MSGMERGE_FOR_MSGFMT_OPTION = @MSGMERGE_FOR_MSGFMT_OPTION@ +MSGINIT = msginit +MSGCONV = msgconv +MSGFILTER = msgfilter + +# This is computed as $(foreach file, $(POTFILES), $(top_srcdir)/$(file)) +POTFILES_DEPS != for file in $(POTFILES); do echo $(top_srcdir)/$$file; done + +# The set of available translations. +ALL_LINGUAS != if test -f $(srcdir)/LINGUAS; then \ + sed -e '/^\#/d' < $(srcdir)/LINGUAS; \ + else \ + echo $(LINGUAS); \ + fi +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) +POFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$$lang.po; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) +GMOFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$$lang.gmo; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) +UPDATEPOFILES != for lang in $(ALL_LINGUAS); do echo $$lang.po-update; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) +DUMMYPOFILES != for lang in $(ALL_LINGUAS); do echo $$lang.nop; done + +# The set of desired translations, as specified by the installer or distributor. +DESIRED_LINGUAS = @DESIRED_LINGUAS@ +# The set of translations to install. This is computed based on $(ALL_LINGUAS) +# and $(DESIRED_LINGUAS). It is a subset of $(ALL_LINGUAS). +# We use the presentlang catalog if desiredlang is +# a. equal to presentlang, or +# b. a variant of presentlang (because in this case, presentlang can be used +# as a fallback for messages which are not translated in the desiredlang +# catalog). +INST_LINGUAS != for presentlang in $(ALL_LINGUAS); do \ + useit=false; \ + for desiredlang in $(DESIRED_LINGUAS); do \ + case "$$desiredlang" in \ + "$$presentlang" | "$$presentlang"_* | "$$presentlang".* | "$$presentlang"@*) \ + useit=true ;; \ + esac; \ + done; \ + if $$useit; then echo $$presentlang; fi; \ + done +# This is computed as $(foreach lang, $(INST_LINGUAS), $(lang).gmo) +CATALOGS != for lang in $(INST_LINGUAS); do echo $$lang.gmo; done + +SUFFIXES = .po .gmo .nop .po-create .po-update + +# The .pot file, stamp-po, .po files, and .gmo files appear in release tarballs. +# The GNU Coding Standards say in +# : +# "GNU distributions usually contain some files which are not source files +# ... . Since these files normally appear in the source directory, they +# should always appear in the source directory, not in the build directory. +# So Makefile rules to update them should put the updated files in the +# source directory." +# Therefore we put these files in the source directory, not the build directory. + +# During .po -> .gmo conversion, take into account the most recent changes to +# the .pot file. This eliminates the need to update the .po files when the +# .pot file has changed, which would be troublesome if the .po files are put +# under version control. +$(GMOFILES): $(srcdir)/$(DOMAIN).pot +.po.gmo: + @lang=`echo $* | sed -e 's,.*/,,'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}rm -f $${lang}.gmo && $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $${lang}.po $(DOMAIN).pot && $(GMSGFMT) -c --statistics --verbose -o $${lang}.gmo $${lang}.1po && rm -f $${lang}.1po"; \ + cd $(srcdir) && \ + rm -f $${lang}.gmo && \ + $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $${lang}.po $(DOMAIN).pot && \ + $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.1po && \ + mv t-$${lang}.gmo $${lang}.gmo && \ + rm -f $${lang}.1po + + +all-local: all-local-@USE_NLS@ + +all-local-yes: $(srcdir)/stamp-po +all-local-no: + +# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no +# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because +# we don't want to bother translators with empty POT files). We assume that +# LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty. +# In this case, $(srcdir)/stamp-po is a nop (i.e. a phony target). + +# $(srcdir)/stamp-po is a timestamp denoting the last time at which the CATALOGS +# have been loosely updated. Its purpose is that when a developer or translator +# checks out the package from a version control system, and the $(DOMAIN).pot +# file is not under version control, "make" will update the $(DOMAIN).pot and +# the $(CATALOGS), but subsequent invocations of "make" will do nothing. This +# timestamp would not be necessary if updating the $(CATALOGS) would always +# touch them; however, the rule for $(POFILES) has been designed to not touch +# files that don't need to be changed. +$(srcdir)/stamp-po: $(srcdir)/$(DOMAIN).pot + test ! -f $(srcdir)/$(DOMAIN).pot || \ + test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) + @test ! -f $(srcdir)/$(DOMAIN).pot || { \ + echo "touch $(srcdir)/stamp-po" && \ + echo timestamp > $(srcdir)/stamp-poT && \ + mv $(srcdir)/stamp-poT $(srcdir)/stamp-po; \ + } + +# This target rebuilds $(DOMAIN).pot; it is an expensive operation. +# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. +# The determination of whether the package xyz is a GNU one is based on the +# heuristic whether some file in the top level directory mentions "GNU xyz". +# If GNU 'find' is available, we avoid grepping through monster files. +$(DOMAIN).pot-update: $(POTFILES_DEPS) + package_gnu="$(PACKAGE_GNU)"; \ + test -n "$$package_gnu" || { \ + if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \ + LC_ALL=C find -L $(top_srcdir) -maxdepth 1 -type f -size -10000000c -exec grep -i 'GNU $(PACKAGE)' /dev/null '{}' ';' 2>/dev/null; \ + else \ + LC_ALL=C grep -i 'GNU $(PACKAGE)' $(top_srcdir)/* 2>/dev/null; \ + fi; \ + } | grep -v 'libtool:' >/dev/null; then \ + package_gnu=yes; \ + else \ + package_gnu=no; \ + fi; \ + }; \ + if test "$$package_gnu" = "yes"; then \ + package_prefix='GNU '; \ + else \ + package_prefix=''; \ + fi; \ + if test -n '$(MSGID_BUGS_ADDRESS)'; then \ + msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ + else \ + msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ + fi; \ + case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ + $(POTFILES) \ + ;; \ + *) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --package-name="$${package_prefix}$(PACKAGE)" \ + --package-version='$(VERSION)' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ + $(POTFILES) \ + ;; \ + esac + test ! -f $(DOMAIN).po || { \ + if test -f $(srcdir)/$(DOMAIN).pot-header; then \ + sed -e '1,/^#$$/d' < $(DOMAIN).po > $(DOMAIN).1po && \ + cat $(srcdir)/$(DOMAIN).pot-header $(DOMAIN).1po > $(DOMAIN).po && \ + rm -f $(DOMAIN).1po \ + || exit 1; \ + fi; \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + sed -f $(srcdir)/remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ + sed -f $(srcdir)/remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ + if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ + else \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + else \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + } + +# This rule has no dependencies: we don't need to update $(DOMAIN).pot at +# every "make" invocation, only create it when it is missing. +# Only "make $(DOMAIN).pot-update" or "make dist" will force an update. +$(srcdir)/$(DOMAIN).pot: + $(MAKE) $(DOMAIN).pot-update + +# This target rebuilds a PO file if $(DOMAIN).pot has changed. +# Note that a PO file is not touched if it doesn't need to be changed. +$(POFILES): $(srcdir)/$(DOMAIN).pot + @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ + if test -f "$(srcdir)/$${lang}.po"; then \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot"; \ + cd $(srcdir) \ + && { case `$(MSGMERGE_UPDATE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.10 | 0.10.*) \ + $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ + 0.1[1-5] | 0.1[1-5].*) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ + 0.1[6-7] | 0.1[6-7].*) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --previous $${lang}.po $(DOMAIN).pot;; \ + *) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot;; \ + esac; \ + }; \ + else \ + $(MAKE) $${lang}.po-create; \ + fi + + +install-data-local: install-data-local-@USE_NLS@ +install-data-local-no: all-local +install-data-local-yes: all-local + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(MKDIR_P) $(DESTDIR)$$dir; \ + if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ + $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ + echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ + fi; \ + done; \ + done + +installdirs-local: installdirs-local-@USE_NLS@ +installdirs-local-no: +installdirs-local-yes: + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(MKDIR_P) $(DESTDIR)$$dir; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + fi; \ + done; \ + done + +uninstall-local: uninstall-local-@USE_NLS@ +uninstall-local-no: +uninstall-local-yes: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + done; \ + done + +html ID: + +MOSTLYCLEANFILES = +MOSTLYCLEANFILES += stamp-poT +MOSTLYCLEANFILES += core core.* *.stackdump $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po +MOSTLYCLEANFILES += *.o + +MAINTAINERCLEANFILES = $(DOMAIN).pot stamp-po $(GMOFILES) + +EXTRA_DIST = remove-potcdate.sed LINGUAS $(POFILES) $(GMOFILES) + +# Hidden from automake, but really activated. Works around an automake-1.5 bug. +#distdir: distdir1 +distdir1: + $(MAKE) update-po + $(MAKE) $(srcdir)/stamp-po + @if test -f $(srcdir)/$(DOMAIN).pot; then \ + for file in $(DOMAIN).pot stamp-po; do \ + if test -f $$file; then d=.; else d=$(srcdir); fi; \ + cp -p $$d/$$file $(distdir)/$$file || exit 1; \ + done; \ + else \ + case $(XGETTEXT) in \ + :) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because a suitable 'xgettext' program was not found in PATH." 1>&2;; \ + *) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because 'xgettext' found no strings to extract. Check the POTFILES and the XGETTEXT_OPTIONS in the Makefile.am file." 1>&2;; \ + esac; \ + fi + +update-po: Makefile + $(MAKE) $(DOMAIN).pot-update + test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) + $(MAKE) update-gmo + +# General rule for creating PO files. + +.nop.po-create: + @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ + echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ + exit 1 + +# General rule for updating PO files. + +.nop.po-update: + @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --lang=$$lang --previous $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ + cd $(srcdir); \ + if { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.10 | 0.10.*) \ + $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + 0.1[1-5] | 0.1[1-5].*) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + 0.1[6-7] | 0.1[6-7].*) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --previous -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + *) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --lang=$$lang --previous -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + esac; \ + }; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +$(DUMMYPOFILES): + +update-gmo: Makefile $(GMOFILES) + @: diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/af.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..234c78baa112faa895b5d253c671f4d63591fa3c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/af.po @@ -0,0 +1,26 @@ +# Afrikaans translation for Silky +# Copyright (C) 2004 Free Software Foundation, Inc. +# This file is distributed under the same license as the silky package. +# Hanlie Pretorius , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d-0.13.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2003-12-31 10:30+2\n" +"Last-Translator: Ysbeer \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Hierdie program loop as prosesnommer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ast.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..4b4501d7b2175b34f212c4eb55d6b1f6dfe12432 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-d +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marquinos , 2009. +# enolp , 2018. +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-07-16 00:28+0100\n" +"Last-Translator: enolp \n" +"Language-Team: Asturian \n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 2.0\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Esti programa ta executándose como procesu númberu %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/bg.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..c28b1b591bcbefaca0eb816ed514d5a2f18ae761 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-d package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Roumen Petrov , 2010,2014,2015,2019,2023,2024.2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-d 0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-08 19:09+0200\n" +"Last-Translator: Roumen Petrov \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Програмата е пусната под процес номер %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ca.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..d2c59b29fbd59175f638be37381644a68aec9c03 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-d. +# Copyright (C) 2003, 2014, 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ivan Vilata i Balaguer , 2003, 2014, 2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-07-07 08:36+0200\n" +"Last-Translator: Ivan Vilata i Balaguer \n" +"Language-Team: Catalan \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Aquest programa està corrent amb el número de procés %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/cs.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..fcf099b3aba318f4729b8f7253f1fb3a277eb5ba --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/cs.po @@ -0,0 +1,29 @@ +# The Czech translation for the gettext package. +# Copyright (C) 2011 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marek Černocký , 2011. +# Petr Písař , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 20:05+02:00\n" +"Last-Translator: Petr Pisar \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Tento program běží jako proces číslo %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/da.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..74cdb5a8e08a89db4830c0018046aff2c7daa6cb --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-d. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Jan Djærv , 2003, 2006. +# Keld Simonsen , 2011. +# Joe Hansen , 2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-27 12:39+0100\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Dette program kører som proces nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/de.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..5893a5e86f2b9e54b1a77df884cf5cdca8e84443 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-d. +# Copyright © 2003, 2013 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Bruno Haible , 2003. +# Karl Eichwalder , 2003. +# Jakob Kramer , 2013. +# Mario Blättermann , 2014, 2023, 2025. +# Philipp Thomas , 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 17:15+0200\n" +"Last-Translator: Mario Blättermann \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 25.04.0\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Dieses Programm läuft mit der Prozess-Nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/el.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..44521379def641e22c964d83c7e45aad6ca9803e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-d +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.14.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2005-01-06 18:50+0000\n" +"Last-Translator: Simos Xenitellis \n" +"Language-Team: Greek \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.3.1\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/eo.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..d0f2b1758d3457116f0d7eb05e7b99f0106808a2 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/eo.po @@ -0,0 +1,28 @@ +# La teksto por la mesaĝoj de la programo "gettext". +# Copyright (C) 2006, 2016 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Edmund GRIMLEY EVANS , 2006. +# Felipe CASTRO , 2016, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-23 19:00-0300\n" +"Last-Translator: Felipe Castro \n" +"Language-Team: Esperanto \n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Ĉi tiu programo rulas kiel procez-numero %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/es.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..e18ab908f6ae97e7e8e985d649f0ff9b54db4ec0 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/es.po @@ -0,0 +1,30 @@ +# Mensajes en español para GNU gettext. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# This file is distributed under the same license as the gettext package. +# +# Max de Mendizábal , 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004. +# Antonio Ceballos , 2014, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-02-23 17:01+0100\n" +"Last-Translator: Antonio Ceballos \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Este programa está corriendo como el proceso número %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/fi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..5a39801f42859ae7e9e52a43b1d8fa173615f6a9 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/fi.po @@ -0,0 +1,29 @@ +# Finnish messages for GNU Gettext examples. +# This file is distributed under the same license as the gettext package. +# Copyright © 2007, 2014, 2015 Yoyodyne, Inc. (msgids) +# Lauri Nurmi , 2007. +# Jorma Karvonen , 2014-2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-09-01 16:59+0300\n" +"Last-Translator: Jorma Karvonen \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 1.5.4\n" + +# Tämä nimenomainen käännös valittu GNU Hellon mukaisesti. +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Tämän ohjelman prosessinumero on %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/fr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..89d8ac93855f43407814dec85120e5cc5fc07588 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/fr.po @@ -0,0 +1,32 @@ +# Messages français pour GNU gettext. +# Copyright (C) 2006 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Michel Robitaille , 2006. +# Christophe Combelles , 2006 +# Stéphane Aulery , 2015 +# Christian Wiatr , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-28 16:25+0200\n" +"Last-Translator: Christian Wiatr \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Ce programme est exécuté en tant que processus numéro %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ga.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..6abba8d5692c35dec6e1ac00dda7f7e34bd3e18c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-d. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Kevin Patrick Scannell , 2004, 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2017-01-10 12:09-0500\n" +"Last-Translator: Kevin Patrick Scannell \n" +"Language-Team: Irish \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Tá an clár seo ag rith mar phróiseas %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/gl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..453ec16c929494a24cca91da9b41c23b4dc1854e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-d package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Leandro Regueiro , 2010-2014. +# +# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas +# colaborar connosco, podes atopar máis información en +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.19-rc1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2014-05-10 16:34+0100\n" +"Last-Translator: Leandro Regueiro \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Este programa estase executando como o proceso número %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/hr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..25aca719ae723dfd6567dae0fc151b72db37069b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-d to Croatian. +# Copyright (C) 2003, 2004, 2014, 2015, 2019 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Permission is granted to freely copy and distribute +# this file and modified versions, provided that this +# header is not removed and modified versions are marked +# as such. +# +# Tomislav Krznar , 2012. +# Božidar Putanec , 2018-2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-d 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:15-0700\n" +"Last-Translator: Božidar Putanec \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Ovaj program se izvršava kao proces broj %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/hu.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..440a7b547a8cccbc97c4a16ef3199166f59a21b8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-d. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# Tamás Kiss , 2005. +# Balázs Úr , 2014, 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-23 20:31+0200\n" +"Last-Translator: Balázs Úr \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 1.2\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Ez a program a(z) %d folyamatazonosítóval fut." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/id.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..caddd0c18c7542ba3632b341cd0c60379115db1e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-d-0.15-pre5.po to Indonesian +# Copyright (C) 2006 Yoyodyne, Inc. +# This file is distributed under the same license as the PACKAGE package. +# +# Tedi Heriyanto , 2006. +msgid "" +msgstr "" +"Project-Id-Version: hello-d-0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-09-27 20:19+0700\n" +"Last-Translator: Tedi Heriyanto \n" +"Language-Team: Indonesian \n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.11.2\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Program ini berjalan sebagai proses nomor %d" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/it.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..099f2bd50278a2af34219ace796dc7821de02201 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-d. +# Copyright (C) 2005, 2006 Yoyodyne, Inc. (msgids) +# Copyright (C) 2024 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Marco Colombo , 2005, 2006, 2015. +# Michele Locati , 2024, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-d 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-04 18:28+0200\n" +"Last-Translator: Michele Locati \n" +"Language-Team: Italian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Questo programma è in esecuzione con numero di processo %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ja.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..42902e01d752b223a1b4492727474457fa887f46 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-d' messages to Japanese. +# Copyright (C) 2005, 2006, 2014, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Masahito Yamaga , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-d 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:59+0900\n" +"Last-Translator: Masahito Yamaga \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "このプログラムはプロセス番号 %d で動いています." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ka.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..2c93d8f71bcc0476eb782ab02ea95fb96ba8392f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ka.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Temuri Doghonadze , 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2022-05-22 05:04+0200\n" +"Last-Translator: Temuri Doghonadze \n" +"Language-Team: Georgian <(nothing)>\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0.1\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ky.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..fe0a96e45ade30bb597308ca733c88942ccc4cae --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-d' messages to Kirghiz. +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ilyas Bakirov , 2007. +# Ilyas Bakirov , 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-02-15 18:26+0600\n" +"Last-Translator: Ilyas Bakirov \n" +"Language-Team: Kirghiz \n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.0.6\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Бул программа %d процесс номери катары иштеп жатат." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/lv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..f954f4fed24ff43c65a7ce568835de26ead1609a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-d +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Arvis Lācis , 2009. +# Rihards Priedītis , 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-09 11:44+0000\n" +"Last-Translator: Rihards Priedītis \n" +"Language-Team: Latvian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Šī programma darbojas ar procesa numuru %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ms.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..378adf0dcfcf43653ef942e5dc26e16d71f4c22d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ms.po @@ -0,0 +1,28 @@ +# hello-d Bahasa Melayu (Malay) (ms). +# Copyright (C) 2006, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2006, 2015, 2023, 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Sharuzzaman Ahmat Raslan , 2006, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-03 21:10+0800\n" +"Last-Translator: Sharuzzaman Ahmat Raslan \n" +"Language-Team: Malay \n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Program ini dilaksanakan sebagai proses bernombor %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/mt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..933fa9490df234475b09f1ca128d404919beb6e5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/mt.po @@ -0,0 +1,27 @@ +# hello-d-0.16.2-pre5. +# Copyright (C) 2008 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Clyde Meli , 2001-2008. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.16.2-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2008-11-18 17:27+0100\n" +"Last-Translator: Clyde Meli \n" +"Language-Team: Maltese \n" +"Language: mt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Dal-programm qed jaħdem taħt il-proċess numru %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/nb.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..659b873b42cf59d26a491c80b454c6c0d1a9619a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-d package. +# Copyright (C) 2012 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Johnny A. Solbu , 2012-2024 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-01-06 16:33+0100\n" +"Last-Translator: Johnny A. Solbu \n" +"Language-Team: Norwegian Bokmaal \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Dette programmet kjører som prosess nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/nl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..dc1f2732c94fbeab3c12d2b37e916003f722e4da --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-d. +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# "There are three basic rules for writing a novel. +# Unfortunately nobody knows what they are." +# +# Benno Schulenberg , 2007, 2014, 2015, 2019, 2025. +# Elros Cyriatan , 2004. +msgid "" +msgstr "" +"Project-Id-Version: hello-d-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-01 14:51+0100\n" +"Last-Translator: Benno Schulenberg \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Dit programma draait als proces nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/nn.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..a7b8252a8a2ccf5409daf66c2ae705069bc0fa26 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-d +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Karl Ove Hufthammer , 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-d-0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-05-04 18:58+0200\n" +"Last-Translator: Karl Ove Hufthammer \n" +"Language-Team: Norwegian Nynorsk \n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 20.04.0\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Dette programmet køyrer som prosess nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/pl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..b333cac402ba7a4a45b440f377fb295dee72dab5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-d domain +# Copyright (C) 2010, 2014, 2015, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Rafał Maszkowski , 2003, 2010, 2014, 2015, 2025 +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-d 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-25 17:16+0200\n" +"Last-Translator: Rafał Maszkowski \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Ten program działa jako proces o numerze %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/pt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..9b560d06a13244131e60a7c175163f6665e47517 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-d' package. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Pedro Albuquerque , 2019, 2020, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 11:24+0100\n" +"Last-Translator: Pedro Albuquerque \n" +"Language-Team: Portuguese \n" +"Language: 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;\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Este programa está em execução como processo nº %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/pt_BR.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..e2c3666e2908000c1094aa90a31fc7e96caef5ea --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/pt_BR.po @@ -0,0 +1,31 @@ +# Brazilian Portuguese translations for gettext-example +# Traduções em português brasileiro para gettext-example +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Rafael Fontenelle , 2013-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:24-0300\n" +"Last-Translator: Rafael Fontenelle \n" +"Language-Team: Brazilian Portuguese \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" +"X-Generator: Gtranslator 48.0\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Este programa está sendo executado com número de processo %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ro.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..b0d198757efbb077b3ed145fc1da2964820f685d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-d" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-d. +# Copyright © 2015, 2019, 2022, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Eugen Hoancă , 2003. +# Mihai Cristescu , 2015 - 2019. +# Remus-Gabriel Chelu , 2022 - 2025. +# +# Cronologia traducerii fișierului „hello-d”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-d 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-d 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-d 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-d 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-d-0.20.2.pot”. +# Actualizare a algoritmului formelor de plural (de la „trei-vechi” la „trei-actual”). +# NU și a mesajelor traduse (acestea au rămas neschimbate). +# Eliminare a mesajelor ce-au dispărut în ultima versiune. +# Actualizări realizate de Remus-Gabriel Chelu , 15.01.2022. +# Actualizare a traducerii pentru versiunea 0.20.2 făcută de R-GC, ian-2022. +# Actualizare a traducerii pentru versiunea 0.22 făcută de R-GC, iun-2023. +# Revizuire și corectare a traducerii pentru versiunea 0.23-pre1 făcută de R-GC, oct-2024. +# Actualizare a traducerii pentru versiunea 0.24-pre1 făcută de R-GC, feb-2025. +# Actualizare a traducerii pentru versiunea 0.25-pre1 făcută de R-GC, apr-2025. +# Actualizare a traducerii pentru versiunea Y, făcută de X, Z(luna-anul). +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 00:25+0200\n" +"Last-Translator: Remus-Gabriel Chelu \n" +"Language-Team: Romanian \n" +"Language: ro\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==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Acest program rulează ca procesul numărul %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ru.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..7d6e0bfaba842ff0bcdc13a693bbaad19a3ab02b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-d-0.14.1.po to Russian +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Pavel Maryanov , 2004. +# SPDX-FileCopyrightText: 2014, 2015, 2023, 2025 Yuri Kozlov +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-02 09:17+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Lokalize 24.12.0\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" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Эта программа выполняется как процесс под номером %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/sk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..e9ad3000f699aa0ead99e93ff0b080ef02eb82fa --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-d package. +# Copyright (C) 2003, 2004, 2014, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Marcel Telka , 2003, 2004, 2014, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-d 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:53+0200\n" +"Last-Translator: Marcel Telka \n" +"Language-Team: Slovak \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Tento program beží ako proces s číslom %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/sl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..6c621ee55fb85e3a958370925bb411578723f444 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/sl.po @@ -0,0 +1,29 @@ +# -*- mode: po; coding: utf-8; -*- Slovenian message catalog for GNU gettext-example +# Copyright (C) 2005 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Primož Peterlin , 2005, 2014, 2015, 2024. +# $Id: hello-d-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-03-28 18:02+0100\n" +"Last-Translator: Primož Peterlin \n" +"Language-Team: Slovenian \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " +"n%100==4 ? 3 : 0);\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Ta program teče kot proces številka %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/sq.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..558b5561e53ec84846b0bbe6c2a009054b50f6f9 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/sq.po @@ -0,0 +1,28 @@ +# Albanian translation of gettext-example. +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Besnik Bleta , 2020,2023,2024,2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d-0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:56+0300\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.2.2\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Ky program po xhiron si procesi numër %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/sr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..83c06fac1820f79352e1f0e7af2b74d3e3bf2ceb --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-d. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Aleksandar Jelenak , 2004. +# Мирослав Николић , 2014-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-02 16:51+0100\n" +"Last-Translator: Мирослав Николић \n" +"Language-Team: Serbian <(nothing)>\n" +"Language: sr\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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Овај програм се извршава као процес број %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/sv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..ebe06ca9bae2fb2cc2cd40856c4031d75bbda673 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-d. +# Copyright © 2006, 2014, 2016, 2019, 2020, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Jan Djärv , 2003, 2006, 2014. +# Göran Uddeborg , 2016, 2019, 2020, 2023, 2024, 2025. +# Luna Jernberg , 2025. +# $Revision: 1.12 $ +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 12:18+0200\n" +"Last-Translator: Luna Jernberg \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Detta program kör som process nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ta.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..2f10eefa5dac514bf6cf6a7c304e91ddc011a27d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/ta.po @@ -0,0 +1,28 @@ +# Tamil messages for GNU gettext. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# List of contributors follow: +# Poorajith , 2018. +# Arun Isaac , 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-19 00:06+0100\n" +"Last-Translator: Arun Isaac \n" +"Language-Team: Tamil \n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "இந்நிரல் செயலாக்க எண் %d ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/tr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..7472779f44a623a22f4908e921f6ef5953783fe0 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-d. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2017 Yoyodyne, Inc. (msgids) +# Copyright (C) 2004 Free Software Foundation, Inc. +# Nilgün Belma Bugüner , 2003,2004 +# Mehmet Kececi , 2017, 2019, 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-04-17 13:10+0300\n" +"Last-Translator: Mehmet Kececi \n" +"Language-Team: Turkish \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" +"X-Generator: Poedit 2.3\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Bu yazılım %d işlem numarası ile çalışıyor." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/uk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..dbca74b3ed35aa46601d7b4e3547617d76263bba --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-d +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Maxim V. Dziumanenko , 2004-2007. +# Yuri Chornoivan , 2014, 2015, 2023, 2025. +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:56+0300\n" +"Last-Translator: Yuri Chornoivan \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\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" +"X-Generator: Lokalize 23.04.3\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Ця програма виконується як процес з номером %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/vi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..a9af302b1339d0b45529026dd3a3a0b57613d565 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/vi.po @@ -0,0 +1,30 @@ +# Vietnamese Translation for Gettext Examples. +# Bản dịch tiếng Việt dành cho các ví dụ của gói gettext. +# Copyright © 2015 Yoyodyne, Inc. (msgids) +# Copyright © 2015 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Clytie Siddall , 2005-2010. +# Trần Ngọc Quân , 2012-2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-24 09:10+0700\n" +"Last-Translator: Trần Ngọc Quân \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "Chương trình này đang chạy với mã số tiến trình %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/zh_CN.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..e7f13973fad964781895620e8307e9134816c74a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-d. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Funda Wang , 2003. +# Ji ZhengYu , 2015. +# Boyuan Yang <073plan@gmail.com>, 2019, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 15:56-0400\n" +"Last-Translator: Boyuan Yang <073plan@gmail.com>\n" +"Language-Team: Chinese (simplified) \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "此程序正以进程号 %d 运行。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/zh_HK.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..c95e424766fcab1929bbc6905c904b1818139f52 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-d. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-07-05 15:40+0800\n" +"Last-Translator: Abel Cheung \n" +"Language-Team: Chinese (Hong Kong) \n" +"Language: zh_HK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "你好!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行中,進程編號為 %d。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/zh_TW.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..12df6bf0ae6fc47c4efbeaad9cc6b9715e81866f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-d/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-d. +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Abel Cheung , 2005. +# Wei-Lun Chao , 2013, 2015. +# Yi-Jyun Pan , 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-d 0.23-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-11-30 14:14+0800\n" +"Last-Translator: Yi-Jyun Pan \n" +"Language-Team: Chinese (traditional) \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.d.in:27 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.d.in:28 +#, d-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行,行程編號為 %d。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/INSTALL b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..1a4f2df334357c5bebe434b075cd08098e101533 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/INSTALL @@ -0,0 +1,10 @@ +This example relies on gawk (GNU awk). + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..b76e71d94a2fe75afa8bf3b55bef12edf344ed34 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/Makefile.am @@ -0,0 +1,17 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# General automake options. +AUTOMAKE_OPTIONS = foreign +ACLOCAL_AMFLAGS = -I m4 + +# The list of subdirectories containing Makefiles. +SUBDIRS = m4 po + +# The list of programs that are built. +bin_SCRIPTS = hello + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/autoclean.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..8655a871726b2a31a935332f3e7cbba7b36928e8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/autoclean.sh @@ -0,0 +1,30 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for cleaning all autogenerated files. + +test ! -f Makefile || make distclean +rm -rf autom4te.cache + +# Brought in by explicit copy. +rm -f m4/nls.m4 +rm -f m4/po.m4 +rm -f m4/progtest.m4 +rm -f po/remove-potcdate.sed + +# Generated by aclocal. +rm -f aclocal.m4 + +# Generated by autoconf. +rm -f configure + +# Generated or brought in by automake. +rm -f Makefile.in +rm -f m4/Makefile.in +rm -f po/Makefile.in +rm -f install-sh +rm -f missing +rm -f po/*.pot +rm -f po/stamp-po +rm -f po/*.gmo diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/autogen.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..a972da8041799c1ddf0a23303c0660eb9fb827bc --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/autogen.sh @@ -0,0 +1,44 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for regenerating all autogenerated files. + +if test -r ../Makefile.am; then + # Inside the gettext source directory. + GETTEXT_TOPSRCDIR=../../.. +else + if test -r ../Makefile; then + # Inside a gettext build directory. + GETTEXT_TOOLS_SRCDIR=`sed -n -e 's,^top_srcdir *= *\(.*\)$,\1,p' ../Makefile` + # Adjust a relative top_srcdir. + case $GETTEXT_TOOLS_SRCDIR in + /*) ;; + *) GETTEXT_TOOLS_SRCDIR=../$GETTEXT_TOOLS_SRCDIR ;; + esac + GETTEXT_TOPSRCDIR=$GETTEXT_TOOLS_SRCDIR/../.. + else + # Installed under ${prefix}/share/doc/gettext/examples. + . ../installpaths + fi +fi + +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/nls.m4 m4/nls.m4 +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/po.m4 m4/po.m4 +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/progtest.m4 m4/progtest.m4 +cp -p ${GETTEXTSRCPODIR-$GETTEXT_TOPSRCDIR/gettext-runtime/po}/remove-potcdate.sed po/remove-potcdate.sed + +aclocal -I m4 + +autoconf + +automake -a -c + +cd po +for f in *.po; do + if test -r "$f"; then + lang=`echo $f | sed -e 's,\.po$,,'` + msgfmt -c -o $lang.gmo $lang.po + fi +done +cd .. diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/configure.ac b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..39d195b79864627b19cb7d23cfed35729e3c06d2 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/configure.ac @@ -0,0 +1,39 @@ +dnl Example for use of GNU gettext. +dnl This file is in the public domain. +dnl +dnl Configuration file - processed by autoconf. + +AC_INIT([hello-gawk], [0]) +AC_CONFIG_SRCDIR([hello.awk]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Check for availability of GNU awk. +AC_PATH_PROG([GAWK], [gawk]) +if test -z "$GAWK"; then + echo "*** Essential program gawk not found" 1>&2 + exit 1 +fi +AC_SUBST([GAWK]) + +dnl The installed program must know where to find its message catalogs. +dnl Unfortunately, prefix gets only finally determined at the end of configure. +if test "X$prefix" = "XNONE"; then + final_prefix="$ac_default_prefix" +else + final_prefix="$prefix" +fi +save_prefix="$prefix" +prefix="$final_prefix" +eval "datarootdir=\"${datarootdir}\"" +eval "localedir=\"${datarootdir}/locale\"" +prefix="$save_prefix" +AC_SUBST([localedir]) + +dnl Support for the po directory. +AM_PO_SUBDIRS + +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([hello:hello.awk], [chmod a+x hello]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/hello.awk b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/hello.awk new file mode 100644 index 0000000000000000000000000000000000000000..0e49fe666beb5b43b4d02ac26517b7435f41c968 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/hello.awk @@ -0,0 +1,14 @@ +#!@GAWK@ -f +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Source code of the GNU awk program. + +BEGIN { + TEXTDOMAIN = "hello-gawk" + bindtextdomain ("@localedir@") + + print _"Hello, world!" + printf _"This program is running as process number %d.", PROCINFO["pid"] + print +} diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/m4/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..8a841b31f12ff3bd59428fbba049f50825d91510 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/m4/Makefile.am @@ -0,0 +1,2 @@ +EXTRA_DIST = \ + nls.m4 po.m4 diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/LINGUAS b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/LINGUAS @@ -0,0 +1,5 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Set of available languages. +af ast bg ca cs da de el eo es fi fr ga gl hr hu id it ja ka ky lv ms mt nb nl nn pl pt pt_BR ro ru sk sl sq sr sv ta tr uk vi zh_CN zh_HK zh_TW diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..26d04996f3b8f24ee226596addb32fd9b1eff903 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/Makefile.am @@ -0,0 +1,434 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# List of files which contain translatable strings. +POTFILES = \ + hello.awk + +# Usually the message domain is the same as the package name. +DOMAIN = $(PACKAGE) + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgid strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Yoyodyne, Inc. + +# This tells whether or not to prepend "GNU " prefix to the package +# name that gets inserted into the header of the $(DOMAIN).pot file. +# Possible values are "yes", "no", or empty. If it is empty, try to +# detect it automatically by scanning the files in $(top_srcdir) for +# "GNU packagename" string. +PACKAGE_GNU = no + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = bug-gettext@gnu.org + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = + +# These options get passed to msgmerge. +# Useful options are in particular: +# --previous to keep previous msgids of translated messages +MSGMERGE_OPTIONS = + +# These options get passed to msginit. +# If you want to disable line wrapping when writing PO files, add +# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and +# MSGINIT_OPTIONS. +MSGINIT_OPTIONS = + +MSGMERGE = @MSGMERGE@ +MSGMERGE_UPDATE = @MSGMERGE@ --update +MSGMERGE_FOR_MSGFMT_OPTION = @MSGMERGE_FOR_MSGFMT_OPTION@ +MSGINIT = msginit +MSGCONV = msgconv +MSGFILTER = msgfilter + +# This is computed as $(foreach file, $(POTFILES), $(top_srcdir)/$(file)) +POTFILES_DEPS != for file in $(POTFILES); do echo $(top_srcdir)/$$file; done + +# The set of available translations. +ALL_LINGUAS != if test -f $(srcdir)/LINGUAS; then \ + sed -e '/^\#/d' < $(srcdir)/LINGUAS; \ + else \ + echo $(LINGUAS); \ + fi +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) +POFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$$lang.po; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) +GMOFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$$lang.gmo; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) +UPDATEPOFILES != for lang in $(ALL_LINGUAS); do echo $$lang.po-update; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) +DUMMYPOFILES != for lang in $(ALL_LINGUAS); do echo $$lang.nop; done + +# The set of desired translations, as specified by the installer or distributor. +DESIRED_LINGUAS = @DESIRED_LINGUAS@ +# The set of translations to install. This is computed based on $(ALL_LINGUAS) +# and $(DESIRED_LINGUAS). It is a subset of $(ALL_LINGUAS). +# We use the presentlang catalog if desiredlang is +# a. equal to presentlang, or +# b. a variant of presentlang (because in this case, presentlang can be used +# as a fallback for messages which are not translated in the desiredlang +# catalog). +INST_LINGUAS != for presentlang in $(ALL_LINGUAS); do \ + useit=false; \ + for desiredlang in $(DESIRED_LINGUAS); do \ + case "$$desiredlang" in \ + "$$presentlang" | "$$presentlang"_* | "$$presentlang".* | "$$presentlang"@*) \ + useit=true ;; \ + esac; \ + done; \ + if $$useit; then echo $$presentlang; fi; \ + done +# This is computed as $(foreach lang, $(INST_LINGUAS), $(lang).gmo) +CATALOGS != for lang in $(INST_LINGUAS); do echo $$lang.gmo; done + +SUFFIXES = .po .gmo .nop .po-create .po-update + +# The .pot file, stamp-po, .po files, and .gmo files appear in release tarballs. +# The GNU Coding Standards say in +# : +# "GNU distributions usually contain some files which are not source files +# ... . Since these files normally appear in the source directory, they +# should always appear in the source directory, not in the build directory. +# So Makefile rules to update them should put the updated files in the +# source directory." +# Therefore we put these files in the source directory, not the build directory. + +# During .po -> .gmo conversion, take into account the most recent changes to +# the .pot file. This eliminates the need to update the .po files when the +# .pot file has changed, which would be troublesome if the .po files are put +# under version control. +$(GMOFILES): $(srcdir)/$(DOMAIN).pot +.po.gmo: + @lang=`echo $* | sed -e 's,.*/,,'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}rm -f $${lang}.gmo && $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $${lang}.po $(DOMAIN).pot && $(GMSGFMT) -c --statistics --verbose -o $${lang}.gmo $${lang}.1po && rm -f $${lang}.1po"; \ + cd $(srcdir) && \ + rm -f $${lang}.gmo && \ + $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $${lang}.po $(DOMAIN).pot && \ + $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.1po && \ + mv t-$${lang}.gmo $${lang}.gmo && \ + rm -f $${lang}.1po + + +all-local: all-local-@USE_NLS@ + +all-local-yes: $(srcdir)/stamp-po +all-local-no: + +# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no +# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because +# we don't want to bother translators with empty POT files). We assume that +# LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty. +# In this case, $(srcdir)/stamp-po is a nop (i.e. a phony target). + +# $(srcdir)/stamp-po is a timestamp denoting the last time at which the CATALOGS +# have been loosely updated. Its purpose is that when a developer or translator +# checks out the package from a version control system, and the $(DOMAIN).pot +# file is not under version control, "make" will update the $(DOMAIN).pot and +# the $(CATALOGS), but subsequent invocations of "make" will do nothing. This +# timestamp would not be necessary if updating the $(CATALOGS) would always +# touch them; however, the rule for $(POFILES) has been designed to not touch +# files that don't need to be changed. +$(srcdir)/stamp-po: $(srcdir)/$(DOMAIN).pot + test ! -f $(srcdir)/$(DOMAIN).pot || \ + test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) + @test ! -f $(srcdir)/$(DOMAIN).pot || { \ + echo "touch $(srcdir)/stamp-po" && \ + echo timestamp > $(srcdir)/stamp-poT && \ + mv $(srcdir)/stamp-poT $(srcdir)/stamp-po; \ + } + +# This target rebuilds $(DOMAIN).pot; it is an expensive operation. +# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. +# The determination of whether the package xyz is a GNU one is based on the +# heuristic whether some file in the top level directory mentions "GNU xyz". +# If GNU 'find' is available, we avoid grepping through monster files. +$(DOMAIN).pot-update: $(POTFILES_DEPS) + package_gnu="$(PACKAGE_GNU)"; \ + test -n "$$package_gnu" || { \ + if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \ + LC_ALL=C find -L $(top_srcdir) -maxdepth 1 -type f -size -10000000c -exec grep -i 'GNU $(PACKAGE)' /dev/null '{}' ';' 2>/dev/null; \ + else \ + LC_ALL=C grep -i 'GNU $(PACKAGE)' $(top_srcdir)/* 2>/dev/null; \ + fi; \ + } | grep -v 'libtool:' >/dev/null; then \ + package_gnu=yes; \ + else \ + package_gnu=no; \ + fi; \ + }; \ + if test "$$package_gnu" = "yes"; then \ + package_prefix='GNU '; \ + else \ + package_prefix=''; \ + fi; \ + if test -n '$(MSGID_BUGS_ADDRESS)'; then \ + msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ + else \ + msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ + fi; \ + case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ + $(POTFILES) \ + ;; \ + *) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --package-name="$${package_prefix}$(PACKAGE)" \ + --package-version='$(VERSION)' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ + $(POTFILES) \ + ;; \ + esac + test ! -f $(DOMAIN).po || { \ + if test -f $(srcdir)/$(DOMAIN).pot-header; then \ + sed -e '1,/^#$$/d' < $(DOMAIN).po > $(DOMAIN).1po && \ + cat $(srcdir)/$(DOMAIN).pot-header $(DOMAIN).1po > $(DOMAIN).po && \ + rm -f $(DOMAIN).1po \ + || exit 1; \ + fi; \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + sed -f $(srcdir)/remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ + sed -f $(srcdir)/remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ + if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ + else \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + else \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + } + +# This rule has no dependencies: we don't need to update $(DOMAIN).pot at +# every "make" invocation, only create it when it is missing. +# Only "make $(DOMAIN).pot-update" or "make dist" will force an update. +$(srcdir)/$(DOMAIN).pot: + $(MAKE) $(DOMAIN).pot-update + +# This target rebuilds a PO file if $(DOMAIN).pot has changed. +# Note that a PO file is not touched if it doesn't need to be changed. +$(POFILES): $(srcdir)/$(DOMAIN).pot + @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ + if test -f "$(srcdir)/$${lang}.po"; then \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot"; \ + cd $(srcdir) \ + && { case `$(MSGMERGE_UPDATE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.10 | 0.10.*) \ + $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ + 0.1[1-5] | 0.1[1-5].*) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ + 0.1[6-7] | 0.1[6-7].*) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --previous $${lang}.po $(DOMAIN).pot;; \ + *) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot;; \ + esac; \ + }; \ + else \ + $(MAKE) $${lang}.po-create; \ + fi + + +install-data-local: install-data-local-@USE_NLS@ +install-data-local-no: all-local +install-data-local-yes: all-local + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(MKDIR_P) $(DESTDIR)$$dir; \ + if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ + $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ + echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ + fi; \ + done; \ + done + +installdirs-local: installdirs-local-@USE_NLS@ +installdirs-local-no: +installdirs-local-yes: + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(MKDIR_P) $(DESTDIR)$$dir; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + fi; \ + done; \ + done + +uninstall-local: uninstall-local-@USE_NLS@ +uninstall-local-no: +uninstall-local-yes: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + done; \ + done + +html ID: + +MOSTLYCLEANFILES = +MOSTLYCLEANFILES += stamp-poT +MOSTLYCLEANFILES += core core.* *.stackdump $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po +MOSTLYCLEANFILES += *.o + +MAINTAINERCLEANFILES = $(DOMAIN).pot stamp-po $(GMOFILES) + +EXTRA_DIST = remove-potcdate.sed LINGUAS $(POFILES) $(GMOFILES) + +# Hidden from automake, but really activated. Works around an automake-1.5 bug. +#distdir: distdir1 +distdir1: + $(MAKE) update-po + $(MAKE) $(srcdir)/stamp-po + @if test -f $(srcdir)/$(DOMAIN).pot; then \ + for file in $(DOMAIN).pot stamp-po; do \ + if test -f $$file; then d=.; else d=$(srcdir); fi; \ + cp -p $$d/$$file $(distdir)/$$file || exit 1; \ + done; \ + else \ + case $(XGETTEXT) in \ + :) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because a suitable 'xgettext' program was not found in PATH." 1>&2;; \ + *) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because 'xgettext' found no strings to extract. Check the POTFILES and the XGETTEXT_OPTIONS in the Makefile.am file." 1>&2;; \ + esac; \ + fi + +update-po: Makefile + $(MAKE) $(DOMAIN).pot-update + test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) + $(MAKE) update-gmo + +# General rule for creating PO files. + +.nop.po-create: + @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ + echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ + exit 1 + +# General rule for updating PO files. + +.nop.po-update: + @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --lang=$$lang --previous $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ + cd $(srcdir); \ + if { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.10 | 0.10.*) \ + $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + 0.1[1-5] | 0.1[1-5].*) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + 0.1[6-7] | 0.1[6-7].*) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --previous -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + *) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --lang=$$lang --previous -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + esac; \ + }; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +$(DUMMYPOFILES): + +update-gmo: Makefile $(GMOFILES) + @: diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/af.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..5c48dff6996451b1318a02c48b786d8c4f329cc1 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/af.po @@ -0,0 +1,26 @@ +# Afrikaans translation for Silky +# Copyright (C) 2004 Free Software Foundation, Inc. +# This file is distributed under the same license as the silky package. +# Hanlie Pretorius , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk-0.13.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2003-12-31 10:30+2\n" +"Last-Translator: Ysbeer \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Hierdie program loop as prosesnommer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ast.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..f75657c5c6660e05668dd2919dc43e61602eee4f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-gawk +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marquinos , 2009. +# enolp , 2018. +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-07-16 00:28+0100\n" +"Last-Translator: enolp \n" +"Language-Team: Asturian \n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 2.0\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Esti programa ta executándose como procesu númberu %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/bg.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..2a4c71b105fbbec60b6926b93a85177a8057fa21 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-gawk package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Roumen Petrov , 2010,2014,2015,2019,2023,2024.2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-gawk 0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-08 19:09+0200\n" +"Last-Translator: Roumen Petrov \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Програмата е пусната под процес номер %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ca.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..53984735293183bf6aaa16dc52fdff1e16e3a2ce --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-gawk. +# Copyright (C) 2003, 2014, 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ivan Vilata i Balaguer , 2003, 2014, 2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-07-07 08:36+0200\n" +"Last-Translator: Ivan Vilata i Balaguer \n" +"Language-Team: Catalan \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Aquest programa està corrent amb el número de procés %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/cs.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..08df3f709956b8c75634db82b4ea9aca97cdf20a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/cs.po @@ -0,0 +1,29 @@ +# The Czech translation for the gettext package. +# Copyright (C) 2011 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marek Černocký , 2011. +# Petr Písař , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 20:05+02:00\n" +"Last-Translator: Petr Pisar \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Tento program běží jako proces číslo %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/da.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..0393db16dd271dd2d213f71a6eda21e2ad59090f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-gawk. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Jan Djærv , 2003, 2006. +# Keld Simonsen , 2011. +# Joe Hansen , 2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-27 12:39+0100\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Dette program kører som proces nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/de.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..fa6805a4502274b1bb9b5b12bd09595c46a52abd --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-gawk. +# Copyright © 2003, 2013 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Bruno Haible , 2003. +# Karl Eichwalder , 2003. +# Jakob Kramer , 2013. +# Mario Blättermann , 2014, 2023, 2025. +# Philipp Thomas , 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 17:15+0200\n" +"Last-Translator: Mario Blättermann \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 25.04.0\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Dieses Programm läuft mit der Prozess-Nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/el.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..12407bab26a5a31400d29481593121803163af06 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-gawk +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.14.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2005-01-06 18:50+0000\n" +"Last-Translator: Simos Xenitellis \n" +"Language-Team: Greek \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.3.1\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/eo.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..253e2c326d38c184c5ac7534859ff36f004d1878 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/eo.po @@ -0,0 +1,28 @@ +# La teksto por la mesaĝoj de la programo "gettext". +# Copyright (C) 2006, 2016 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Edmund GRIMLEY EVANS , 2006. +# Felipe CASTRO , 2016, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-23 19:00-0300\n" +"Last-Translator: Felipe Castro \n" +"Language-Team: Esperanto \n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Ĉi tiu programo rulas kiel procez-numero %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/es.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..242665f3771feab57b608b942f925c832f3a6d95 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/es.po @@ -0,0 +1,30 @@ +# Mensajes en español para GNU gettext. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# This file is distributed under the same license as the gettext package. +# +# Max de Mendizábal , 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004. +# Antonio Ceballos , 2014, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-02-23 17:01+0100\n" +"Last-Translator: Antonio Ceballos \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Este programa está corriendo como el proceso número %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/fi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..c1f145c484859b8be9691b5718d29cb91a541dda --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/fi.po @@ -0,0 +1,29 @@ +# Finnish messages for GNU Gettext examples. +# This file is distributed under the same license as the gettext package. +# Copyright © 2007, 2014, 2015 Yoyodyne, Inc. (msgids) +# Lauri Nurmi , 2007. +# Jorma Karvonen , 2014-2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-09-01 16:59+0300\n" +"Last-Translator: Jorma Karvonen \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 1.5.4\n" + +# Tämä nimenomainen käännös valittu GNU Hellon mukaisesti. +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Tämän ohjelman prosessinumero on %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/fr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..c5bbb7bfe4996f0995cb74ccff7fe267ca91952d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/fr.po @@ -0,0 +1,32 @@ +# Messages français pour GNU gettext. +# Copyright (C) 2006 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Michel Robitaille , 2006. +# Christophe Combelles , 2006 +# Stéphane Aulery , 2015 +# Christian Wiatr , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-28 16:25+0200\n" +"Last-Translator: Christian Wiatr \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Ce programme est exécuté en tant que processus numéro %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ga.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..7f3e87a7a2d4a0409b5ab90536ddae3b5d12768b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-gawk. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Kevin Patrick Scannell , 2004, 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2017-01-10 12:09-0500\n" +"Last-Translator: Kevin Patrick Scannell \n" +"Language-Team: Irish \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Tá an clár seo ag rith mar phróiseas %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/gl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..009028ed4e8851308330a90665eeed43e737bff2 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-gawk package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Leandro Regueiro , 2010-2014. +# +# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas +# colaborar connosco, podes atopar máis información en +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.19-rc1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2014-05-10 16:34+0100\n" +"Last-Translator: Leandro Regueiro \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Este programa estase executando como o proceso número %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/hr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..526737782acc12b1a5d505ee1afbcb52041852b2 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-gawk to Croatian. +# Copyright (C) 2003, 2004, 2014, 2015, 2019 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Permission is granted to freely copy and distribute +# this file and modified versions, provided that this +# header is not removed and modified versions are marked +# as such. +# +# Tomislav Krznar , 2012. +# Božidar Putanec , 2018-2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-gawk 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:15-0700\n" +"Last-Translator: Božidar Putanec \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Ovaj program se izvršava kao proces broj %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/hu.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..603292734c731d75caee2063cd83c418e9693980 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-gawk. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# Tamás Kiss , 2005. +# Balázs Úr , 2014, 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-23 20:31+0200\n" +"Last-Translator: Balázs Úr \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 1.2\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Ez a program a(z) %d folyamatazonosítóval fut." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/id.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..0a244ef36bcb6a6b556d5c168b15f3fd47558519 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-gawk-0.15-pre5.po to Indonesian +# Copyright (C) 2006 Yoyodyne, Inc. +# This file is distributed under the same license as the PACKAGE package. +# +# Tedi Heriyanto , 2006. +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk-0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-09-27 20:19+0700\n" +"Last-Translator: Tedi Heriyanto \n" +"Language-Team: Indonesian \n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.11.2\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Program ini berjalan sebagai proses nomor %d" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/it.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..083af2f18563bb813c5c0700dfefa9e9b06ae0a6 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-gawk. +# Copyright (C) 2005, 2006 Yoyodyne, Inc. (msgids) +# Copyright (C) 2024 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Marco Colombo , 2005, 2006, 2015. +# Michele Locati , 2024, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-gawk 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-04 18:28+0200\n" +"Last-Translator: Michele Locati \n" +"Language-Team: Italian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Questo programma è in esecuzione con numero di processo %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ja.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..7d14983921191ca16d6fe7ea070965a5e5568fae --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-gawk' messages to Japanese. +# Copyright (C) 2005, 2006, 2014, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Masahito Yamaga , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-gawk 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:59+0900\n" +"Last-Translator: Masahito Yamaga \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "このプログラムはプロセス番号 %d で動いています." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ka.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..ba9b6c67eb97d7d48d5d9da4d12b26a137e251d5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ka.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Temuri Doghonadze , 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2022-05-22 05:04+0200\n" +"Last-Translator: Temuri Doghonadze \n" +"Language-Team: Georgian <(nothing)>\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0.1\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ky.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..4fdeccc3326cd98147bbe3993cc6cb0b7c248e32 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-gawk' messages to Kirghiz. +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ilyas Bakirov , 2007. +# Ilyas Bakirov , 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-02-15 18:26+0600\n" +"Last-Translator: Ilyas Bakirov \n" +"Language-Team: Kirghiz \n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.0.6\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Бул программа %d процесс номери катары иштеп жатат." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/lv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..dbbd51c216701fb3218cb24dbf50174b355e9a43 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-gawk +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Arvis Lācis , 2009. +# Rihards Priedītis , 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-09 11:44+0000\n" +"Last-Translator: Rihards Priedītis \n" +"Language-Team: Latvian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Šī programma darbojas ar procesa numuru %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ms.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..6b2f28ff1e079475673b25d15c1b881858b764a1 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ms.po @@ -0,0 +1,28 @@ +# hello-gawk Bahasa Melayu (Malay) (ms). +# Copyright (C) 2006, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2006, 2015, 2023, 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Sharuzzaman Ahmat Raslan , 2006, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-03 21:10+0800\n" +"Last-Translator: Sharuzzaman Ahmat Raslan \n" +"Language-Team: Malay \n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Program ini dilaksanakan sebagai proses bernombor %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/mt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..4575fc28a9d47c3d5ce482ce2c75c660d7299689 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/mt.po @@ -0,0 +1,27 @@ +# hello-gawk-0.16.2-pre5. +# Copyright (C) 2008 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Clyde Meli , 2001-2008. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.16.2-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2008-11-18 17:27+0100\n" +"Last-Translator: Clyde Meli \n" +"Language-Team: Maltese \n" +"Language: mt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Dal-programm qed jaħdem taħt il-proċess numru %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/nb.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..018d39bbc5dcceb48e08173635e83d1b5def53be --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-gawk package. +# Copyright (C) 2012 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Johnny A. Solbu , 2012-2024 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-01-06 16:33+0100\n" +"Last-Translator: Johnny A. Solbu \n" +"Language-Team: Norwegian Bokmaal \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Dette programmet kjører som prosess nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/nl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..d30afb5bd217eff9515647f8fe418fae5e2cad60 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-gawk. +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# "There are three basic rules for writing a novel. +# Unfortunately nobody knows what they are." +# +# Benno Schulenberg , 2007, 2014, 2015, 2019, 2025. +# Elros Cyriatan , 2004. +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-01 14:51+0100\n" +"Last-Translator: Benno Schulenberg \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Dit programma draait als proces nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/nn.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..44bd5611fe5b5e75abb70ffe305ffd2800659be7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-gawk +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Karl Ove Hufthammer , 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk-0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-05-04 18:58+0200\n" +"Last-Translator: Karl Ove Hufthammer \n" +"Language-Team: Norwegian Nynorsk \n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 20.04.0\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Dette programmet køyrer som prosess nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/pl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..13f027c7c717ca601bacb985d03e5ffa50b47a95 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-gawk domain +# Copyright (C) 2010, 2014, 2015, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Rafał Maszkowski , 2003, 2010, 2014, 2015, 2025 +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-gawk 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-25 17:16+0200\n" +"Last-Translator: Rafał Maszkowski \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Ten program działa jako proces o numerze %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/pt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..b59d4bb34d1859884fa08cd334c0f92b2916cb6e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-gawk' package. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Pedro Albuquerque , 2019, 2020, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 11:24+0100\n" +"Last-Translator: Pedro Albuquerque \n" +"Language-Team: Portuguese \n" +"Language: 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;\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Este programa está em execução como processo nº %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/pt_BR.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..bb8510758921fbf5773c4d86600c44e42c25c16d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/pt_BR.po @@ -0,0 +1,31 @@ +# Brazilian Portuguese translations for gettext-example +# Traduções em português brasileiro para gettext-example +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Rafael Fontenelle , 2013-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:24-0300\n" +"Last-Translator: Rafael Fontenelle \n" +"Language-Team: Brazilian Portuguese \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" +"X-Generator: Gtranslator 48.0\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Este programa está sendo executado com número de processo %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ro.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..a349c2dac911019bdca3c587ed3edbd304e086ae --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-gawk" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-gawk. +# Copyright © 2015, 2019, 2022, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Eugen Hoancă , 2003. +# Mihai Cristescu , 2015 - 2019. +# Remus-Gabriel Chelu , 2022 - 2025. +# +# Cronologia traducerii fișierului „hello-gawk”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-gawk 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-gawk 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-gawk 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-gawk 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-gawk-0.20.2.pot”. +# Actualizare a algoritmului formelor de plural (de la „trei-vechi” la „trei-actual”). +# NU și a mesajelor traduse (acestea au rămas neschimbate). +# Eliminare a mesajelor ce-au dispărut în ultima versiune. +# Actualizări realizate de Remus-Gabriel Chelu , 15.01.2022. +# Actualizare a traducerii pentru versiunea 0.20.2 făcută de R-GC, ian-2022. +# Actualizare a traducerii pentru versiunea 0.22 făcută de R-GC, iun-2023. +# Revizuire și corectare a traducerii pentru versiunea 0.23-pre1 făcută de R-GC, oct-2024. +# Actualizare a traducerii pentru versiunea 0.24-pre1 făcută de R-GC, feb-2025. +# Actualizare a traducerii pentru versiunea 0.25-pre1 făcută de R-GC, apr-2025. +# Actualizare a traducerii pentru versiunea Y, făcută de X, Z(luna-anul). +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 00:25+0200\n" +"Last-Translator: Remus-Gabriel Chelu \n" +"Language-Team: Romanian \n" +"Language: ro\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==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Acest program rulează ca procesul numărul %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ru.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..d14583934517d3804dc7f161c43614f4c78cd5fb --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-gawk-0.14.1.po to Russian +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Pavel Maryanov , 2004. +# SPDX-FileCopyrightText: 2014, 2015, 2023, 2025 Yuri Kozlov +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-02 09:17+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Lokalize 24.12.0\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" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Эта программа выполняется как процесс под номером %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/sk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..cf1987bba73dc85d12c39e321a29ab30c12b8ed3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-gawk package. +# Copyright (C) 2003, 2004, 2014, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Marcel Telka , 2003, 2004, 2014, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-gawk 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:53+0200\n" +"Last-Translator: Marcel Telka \n" +"Language-Team: Slovak \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Tento program beží ako proces s číslom %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/sl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..72a4edf01ad1b986a92f0678b3368fc9c4a38933 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/sl.po @@ -0,0 +1,29 @@ +# -*- mode: po; coding: utf-8; -*- Slovenian message catalog for GNU gettext-example +# Copyright (C) 2005 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Primož Peterlin , 2005, 2014, 2015, 2024. +# $Id: hello-gawk-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-03-28 18:02+0100\n" +"Last-Translator: Primož Peterlin \n" +"Language-Team: Slovenian \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " +"n%100==4 ? 3 : 0);\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Ta program teče kot proces številka %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/sq.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..f47b4cdefb25f843877581b0778f72fb0abca32b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/sq.po @@ -0,0 +1,28 @@ +# Albanian translation of gettext-example. +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Besnik Bleta , 2020,2023,2024,2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk-0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:56+0300\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.2.2\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Ky program po xhiron si procesi numër %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/sr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..30c7d9fad14715f99edd3fe4a25775c3ceeb3b51 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-gawk. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Aleksandar Jelenak , 2004. +# Мирослав Николић , 2014-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-02 16:51+0100\n" +"Last-Translator: Мирослав Николић \n" +"Language-Team: Serbian <(nothing)>\n" +"Language: sr\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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Овај програм се извршава као процес број %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/sv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..e5789d3899f5f5b258eec70466d2c11fb639f0e0 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-gawk. +# Copyright © 2006, 2014, 2016, 2019, 2020, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Jan Djärv , 2003, 2006, 2014. +# Göran Uddeborg , 2016, 2019, 2020, 2023, 2024, 2025. +# Luna Jernberg , 2025. +# $Revision: 1.12 $ +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 12:18+0200\n" +"Last-Translator: Luna Jernberg \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Detta program kör som process nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ta.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..a2334fddd61fa75bd36e2426ef016232852bb99b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/ta.po @@ -0,0 +1,28 @@ +# Tamil messages for GNU gettext. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# List of contributors follow: +# Poorajith , 2018. +# Arun Isaac , 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-19 00:06+0100\n" +"Last-Translator: Arun Isaac \n" +"Language-Team: Tamil \n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "இந்நிரல் செயலாக்க எண் %d ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/tr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..d10b80ac35ed4736d7e1cd1afbd7e5797984b78b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-gawk. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2017 Yoyodyne, Inc. (msgids) +# Copyright (C) 2004 Free Software Foundation, Inc. +# Nilgün Belma Bugüner , 2003,2004 +# Mehmet Kececi , 2017, 2019, 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-04-17 13:10+0300\n" +"Last-Translator: Mehmet Kececi \n" +"Language-Team: Turkish \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" +"X-Generator: Poedit 2.3\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Bu yazılım %d işlem numarası ile çalışıyor." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/uk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..4d56e7c4638212ff218f88327fcd86a782e8272e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-gawk +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Maxim V. Dziumanenko , 2004-2007. +# Yuri Chornoivan , 2014, 2015, 2023, 2025. +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:56+0300\n" +"Last-Translator: Yuri Chornoivan \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\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" +"X-Generator: Lokalize 23.04.3\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Ця програма виконується як процес з номером %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/vi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..95fa8b62c81eca44adf850ac987288b3a927b947 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/vi.po @@ -0,0 +1,30 @@ +# Vietnamese Translation for Gettext Examples. +# Bản dịch tiếng Việt dành cho các ví dụ của gói gettext. +# Copyright © 2015 Yoyodyne, Inc. (msgids) +# Copyright © 2015 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Clytie Siddall , 2005-2010. +# Trần Ngọc Quân , 2012-2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-24 09:10+0700\n" +"Last-Translator: Trần Ngọc Quân \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "Chương trình này đang chạy với mã số tiến trình %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/zh_CN.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..8bd7efa8f77f98fdb089a619a3340c943e5cfc10 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-gawk. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Funda Wang , 2003. +# Ji ZhengYu , 2015. +# Boyuan Yang <073plan@gmail.com>, 2019, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 15:56-0400\n" +"Last-Translator: Boyuan Yang <073plan@gmail.com>\n" +"Language-Team: Chinese (simplified) \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "此程序正以进程号 %d 运行。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/zh_HK.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..052f2b55d7014bf6d8fce4addc736eb8111001d1 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-gawk. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-07-05 15:40+0800\n" +"Last-Translator: Abel Cheung \n" +"Language-Team: Chinese (Hong Kong) \n" +"Language: zh_HK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "你好!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行中,進程編號為 %d。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/zh_TW.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..fd731033cf0ec2421c82da97c624179e460f2576 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-gawk/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-gawk. +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Abel Cheung , 2005. +# Wei-Lun Chao , 2013, 2015. +# Yi-Jyun Pan , 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-gawk 0.23-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-11-30 14:14+0800\n" +"Last-Translator: Yi-Jyun Pan \n" +"Language-Team: Chinese (traditional) \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: hello.awk:11 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.awk:12 +#, awk-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行,行程編號為 %d。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/INSTALL b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..f53900b3157a4e0d2654ca6d79209bbfed6b8fb3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/INSTALL @@ -0,0 +1,10 @@ +This example relies on Go (package: golang-go, if available, or gccgo). + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..d3c05459d078e744f5026fb19ba32a7d070be496 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/Makefile.am @@ -0,0 +1,16 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# General automake options. +AUTOMAKE_OPTIONS = foreign +ACLOCAL_AMFLAGS = -I m4 + +# The list of subdirectories containing Makefiles. +SUBDIRS = example1 m4 po + +DISTCLEANFILES = gocomp.sh + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/autoclean.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..675e15db95f5268fd428f7d12d3ae48d2c2fc37c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/autoclean.sh @@ -0,0 +1,37 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for cleaning all autogenerated files. + +test ! -f Makefile || make distclean +# Do the equivalent of "make maintainer-clean", even without the Makefile. +rm -f */go.sum +rm -rf autom4te.cache + +# Brought in by explicit copy. +rm -f m4/nls.m4 +rm -f m4/po.m4 +rm -f m4/progtest.m4 +rm -f po/remove-potcdate.sed + +# Brought in by explicit copy. +rm -f m4/gocomp.m4 +rm -f gocomp.sh.in + +# Generated by aclocal. +rm -f aclocal.m4 + +# Generated by autoconf. +rm -f configure + +# Generated or brought in by automake. +rm -f Makefile.in +rm -f example1/Makefile.in +rm -f m4/Makefile.in +rm -f po/Makefile.in +rm -f install-sh +rm -f missing +rm -f po/*.pot +rm -f po/stamp-po +rm -f po/*.gmo diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/autogen.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..9022bd8ad3876d14c25a5326a5cb499ce82ca978 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/autogen.sh @@ -0,0 +1,47 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for regenerating all autogenerated files. + +if test -r ../Makefile.am; then + # Inside the gettext source directory. + GETTEXT_TOPSRCDIR=../../.. +else + if test -r ../Makefile; then + # Inside a gettext build directory. + GETTEXT_TOOLS_SRCDIR=`sed -n -e 's,^top_srcdir *= *\(.*\)$,\1,p' ../Makefile` + # Adjust a relative top_srcdir. + case $GETTEXT_TOOLS_SRCDIR in + /*) ;; + *) GETTEXT_TOOLS_SRCDIR=../$GETTEXT_TOOLS_SRCDIR ;; + esac + GETTEXT_TOPSRCDIR=$GETTEXT_TOOLS_SRCDIR/../.. + else + # Installed under ${prefix}/share/doc/gettext/examples. + . ../installpaths + fi +fi + +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/nls.m4 m4/nls.m4 +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/po.m4 m4/po.m4 +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/progtest.m4 m4/progtest.m4 +cp -p ${GETTEXTSRCPODIR-$GETTEXT_TOPSRCDIR/gettext-runtime/po}/remove-potcdate.sed po/remove-potcdate.sed + +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/gettext-tools/gnulib-m4}/gocomp.m4 m4/gocomp.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/build-aux}/gocomp.sh.in gocomp.sh.in + +aclocal -I m4 + +autoconf + +automake -a -c + +cd po +for f in *.po; do + if test -r "$f"; then + lang=`echo $f | sed -e 's,\.po$,,'` + msgfmt -c -o $lang.gmo $lang.po + fi +done +cd .. diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/configure.ac b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..807ed96aede50f79b93b6fc0f12ada22fdb48005 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/configure.ac @@ -0,0 +1,42 @@ +dnl Example for use of GNU gettext. +dnl This file is in the public domain. +dnl +dnl Configuration file - processed by autoconf. + +AC_INIT([hello-go-http], [0]) +AC_CONFIG_SRCDIR([example1/go.mod.in]) +AM_INIT_AUTOMAKE([1.11]) + +gt_GOCOMP +if test -z "$GO"; then + echo "*** Essential program go or go- not found" 1>&2 + exit 1 +fi + +dnl The installed program must know where to find its message catalogs. +dnl Unfortunately, prefix gets only finally determined at the end of configure. +if test "X$prefix" = "XNONE"; then + final_prefix="$ac_default_prefix" +else + final_prefix="$prefix" +fi +save_prefix="$prefix" +prefix="$final_prefix" +eval "datarootdir=\"${datarootdir}\"" +eval "localedir=\"${datarootdir}/locale\"" +prefix="$save_prefix" +AC_SUBST([localedir]) + +dnl Support for the po directory. +AM_PO_SUBDIRS + +AC_CONFIG_FILES([Makefile]) +dnl Support for VPATH builds: +dnl We need a copy of go.mod in the build directory, otherwise we get an error +dnl "go.mod file not found in current directory or any parent directory; +dnl see 'go help modules'". +AC_CONFIG_FILES([example1/Makefile example1/go.mod example1/hello1ml.go]) +AC_CONFIG_FILES([gocomp.sh]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/example1/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/example1/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..b83b5124d444fa9b3f023b20d1196495d810bc96 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/example1/Makefile.am @@ -0,0 +1,22 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# The list of programs that are built. +bin_PROGRAMS = hello1ml + +# The source files of the 'hello1ml' program. +nodist_hello1ml_SOURCES = hello1ml.go + +EXTRA_DIST = go.mod.in + +CLEANFILES = go.sum + +# Rules for compiling the programs. + +go.sum: + $(GO) mod download github.com/leonelquinteros/gotext + +hello1ml$(EXEEXT): $(nodist_hello1ml_SOURCES) go.sum + $(SHELL) ../gocomp.sh $(nodist_hello1ml_SOURCES) diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/example1/go.mod.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/example1/go.mod.in new file mode 100644 index 0000000000000000000000000000000000000000..e659ac0dab8a8db23cec153599dc6591a78065dc --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/example1/go.mod.in @@ -0,0 +1,3 @@ +module hello +go 1.11 +require github.com/leonelquinteros/gotext v1.6.0 diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/example1/hello1ml.go.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/example1/hello1ml.go.in new file mode 100644 index 0000000000000000000000000000000000000000..fb14fff92a89c363af35263078aa80578078f62f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/example1/hello1ml.go.in @@ -0,0 +1,127 @@ +// Example for use of GNU gettext. +// This file is in the public domain. + +// Source code of a Go web server showing the use of a multi-locale API. + + +package main + +import ( + // Documentation: https://pkg.go.dev/fmt + "fmt" + // Documentation: https://pkg.go.dev/github.com/leonelquinteros/gotext + "github.com/leonelquinteros/gotext" + // Other Go packages + "context" + "log" + "net/http" + "strings" +) + +var localizer_table map[string]*gotext.Locale + +// key under which to store the language in the context +const langKey string = "userLanguage" + +// Middleware to extract language from request and store in context +func languageMiddleware(next http.Handler) http.Handler { + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + acceptLang := r.Header.Get("Accept-Language") // Extract language from header + // Spec: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Language + lang := "en" // Default to English + if acceptLang != "" { + for _, l := range strings.Split(acceptLang, ",") { + l = strings.TrimSpace(strings.Split(l, ";")[0]) // Remove quality values + if _, exists := localizer_table[l]; exists { + lang = l + break + } + } + } + + // Store language in the context + ctx := context.WithValue(r.Context(), langKey, lang) + + // Pass request with new context to the next handler + next.ServeHTTP(w, r.WithContext(ctx)) + }) +} + +// Handler that retrieves the per-goroutine language from the context +func handler(w http.ResponseWriter, r *http.Request) { + // Retrieve language from the context + lang, _ := r.Context().Value(langKey).(string) + + fmt.Fprintf(w, "Detected language: %s\n", lang) + + localizer := localizer_table[lang] + + fmt.Fprintln(w, localizer.Get("Hello, world!")) + fmt.Fprintln(w, localizer.Get("Hello %s", "Dolly")) +} + +func main() { + // Preload all the existing translations into the localizer_table. + // This leads to faster response times than allocating the localizer + // lazily, for each HTTP request. + localizer_table = make(map[string]*gotext.Locale) + for _, language := range []string { + "en_US", + "ast_ES", + "bg_BG", + "ca_ES", + "cs_CZ", + "da_DK", + "de_DE", + "el_GR", + "eo", + "es_ES", + "fi_FI", + "fr_FR", + "ga_IE", + "gl_ES", + "hr_HR", + "hu_HU", + "id_ID", + "it_IT", + "ja_JP", + "ka_GE", + "ky_KG", + "lv_LV", + "ms_MY", + "mt_MT", + "nb_NO", + "nl_NL", + "nn_NO", + "pl_PL", + "pt_PT", + "pt_BR", + "ro_RO", + "ru_RU", + "sk_SK", + "sl_SI", + "sq_AL", + "sr_RS", + "sv_SE", + "ta_IN", + "tr_TR", + "uk_UA", + "vi_VN", + "zh_CN", + "zh_HK", + "zh_TW", + } { + // Specify localedir, locale. + localizer := gotext.NewLocale("@localedir@", language) + // Specify domain. + localizer.AddDomain("hello-go-http") + localizer_table[strings.Split(language, "_")[0]] = localizer + } + + mux := http.NewServeMux() + mux.Handle("/", languageMiddleware(http.HandlerFunc(handler))) + + port := 8080 + fmt.Printf("Server listening on port %d\n", port) + log.Fatal(http.ListenAndServe(fmt.Sprintf(":%d", port), mux)) +} diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/m4/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..a41b47ed6fad9f934b8096c534837473a521c4ef --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/m4/Makefile.am @@ -0,0 +1,3 @@ +EXTRA_DIST = \ + nls.m4 po.m4 \ + gocomp.m4 diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/LINGUAS b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/LINGUAS @@ -0,0 +1,5 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Set of available languages. +af ast bg ca cs da de el eo es fi fr ga gl hr hu id it ja ka ky lv ms mt nb nl nn pl pt pt_BR ro ru sk sl sq sr sv ta tr uk vi zh_CN zh_HK zh_TW diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..ba5a3fdab9f5d2694faf90efa552c61c96c6dca5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/Makefile.am @@ -0,0 +1,434 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# List of files which contain translatable strings. +POTFILES = \ + example1/hello1ml.go.in + +# Usually the message domain is the same as the package name. +DOMAIN = $(PACKAGE) + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgid strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Yoyodyne, Inc. + +# This tells whether or not to prepend "GNU " prefix to the package +# name that gets inserted into the header of the $(DOMAIN).pot file. +# Possible values are "yes", "no", or empty. If it is empty, try to +# detect it automatically by scanning the files in $(top_srcdir) for +# "GNU packagename" string. +PACKAGE_GNU = no + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = bug-gettext@gnu.org + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = + +# These options get passed to msgmerge. +# Useful options are in particular: +# --previous to keep previous msgids of translated messages +MSGMERGE_OPTIONS = + +# These options get passed to msginit. +# If you want to disable line wrapping when writing PO files, add +# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and +# MSGINIT_OPTIONS. +MSGINIT_OPTIONS = + +MSGMERGE = @MSGMERGE@ +MSGMERGE_UPDATE = @MSGMERGE@ --update +MSGMERGE_FOR_MSGFMT_OPTION = @MSGMERGE_FOR_MSGFMT_OPTION@ +MSGINIT = msginit +MSGCONV = msgconv +MSGFILTER = msgfilter + +# This is computed as $(foreach file, $(POTFILES), $(top_srcdir)/$(file)) +POTFILES_DEPS != for file in $(POTFILES); do echo $(top_srcdir)/$$file; done + +# The set of available translations. +ALL_LINGUAS != if test -f $(srcdir)/LINGUAS; then \ + sed -e '/^\#/d' < $(srcdir)/LINGUAS; \ + else \ + echo $(LINGUAS); \ + fi +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) +POFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$$lang.po; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) +GMOFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$$lang.gmo; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) +UPDATEPOFILES != for lang in $(ALL_LINGUAS); do echo $$lang.po-update; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) +DUMMYPOFILES != for lang in $(ALL_LINGUAS); do echo $$lang.nop; done + +# The set of desired translations, as specified by the installer or distributor. +DESIRED_LINGUAS = @DESIRED_LINGUAS@ +# The set of translations to install. This is computed based on $(ALL_LINGUAS) +# and $(DESIRED_LINGUAS). It is a subset of $(ALL_LINGUAS). +# We use the presentlang catalog if desiredlang is +# a. equal to presentlang, or +# b. a variant of presentlang (because in this case, presentlang can be used +# as a fallback for messages which are not translated in the desiredlang +# catalog). +INST_LINGUAS != for presentlang in $(ALL_LINGUAS); do \ + useit=false; \ + for desiredlang in $(DESIRED_LINGUAS); do \ + case "$$desiredlang" in \ + "$$presentlang" | "$$presentlang"_* | "$$presentlang".* | "$$presentlang"@*) \ + useit=true ;; \ + esac; \ + done; \ + if $$useit; then echo $$presentlang; fi; \ + done +# This is computed as $(foreach lang, $(INST_LINGUAS), $(lang).gmo) +CATALOGS != for lang in $(INST_LINGUAS); do echo $$lang.gmo; done + +SUFFIXES = .po .gmo .nop .po-create .po-update + +# The .pot file, stamp-po, .po files, and .gmo files appear in release tarballs. +# The GNU Coding Standards say in +# : +# "GNU distributions usually contain some files which are not source files +# ... . Since these files normally appear in the source directory, they +# should always appear in the source directory, not in the build directory. +# So Makefile rules to update them should put the updated files in the +# source directory." +# Therefore we put these files in the source directory, not the build directory. + +# During .po -> .gmo conversion, take into account the most recent changes to +# the .pot file. This eliminates the need to update the .po files when the +# .pot file has changed, which would be troublesome if the .po files are put +# under version control. +$(GMOFILES): $(srcdir)/$(DOMAIN).pot +.po.gmo: + @lang=`echo $* | sed -e 's,.*/,,'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}rm -f $${lang}.gmo && $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $${lang}.po $(DOMAIN).pot && $(GMSGFMT) -c --statistics --verbose -o $${lang}.gmo $${lang}.1po && rm -f $${lang}.1po"; \ + cd $(srcdir) && \ + rm -f $${lang}.gmo && \ + $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $${lang}.po $(DOMAIN).pot && \ + $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.1po && \ + mv t-$${lang}.gmo $${lang}.gmo && \ + rm -f $${lang}.1po + + +all-local: all-local-@USE_NLS@ + +all-local-yes: $(srcdir)/stamp-po +all-local-no: + +# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no +# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because +# we don't want to bother translators with empty POT files). We assume that +# LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty. +# In this case, $(srcdir)/stamp-po is a nop (i.e. a phony target). + +# $(srcdir)/stamp-po is a timestamp denoting the last time at which the CATALOGS +# have been loosely updated. Its purpose is that when a developer or translator +# checks out the package from a version control system, and the $(DOMAIN).pot +# file is not under version control, "make" will update the $(DOMAIN).pot and +# the $(CATALOGS), but subsequent invocations of "make" will do nothing. This +# timestamp would not be necessary if updating the $(CATALOGS) would always +# touch them; however, the rule for $(POFILES) has been designed to not touch +# files that don't need to be changed. +$(srcdir)/stamp-po: $(srcdir)/$(DOMAIN).pot + test ! -f $(srcdir)/$(DOMAIN).pot || \ + test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) + @test ! -f $(srcdir)/$(DOMAIN).pot || { \ + echo "touch $(srcdir)/stamp-po" && \ + echo timestamp > $(srcdir)/stamp-poT && \ + mv $(srcdir)/stamp-poT $(srcdir)/stamp-po; \ + } + +# This target rebuilds $(DOMAIN).pot; it is an expensive operation. +# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. +# The determination of whether the package xyz is a GNU one is based on the +# heuristic whether some file in the top level directory mentions "GNU xyz". +# If GNU 'find' is available, we avoid grepping through monster files. +$(DOMAIN).pot-update: $(POTFILES_DEPS) + package_gnu="$(PACKAGE_GNU)"; \ + test -n "$$package_gnu" || { \ + if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \ + LC_ALL=C find -L $(top_srcdir) -maxdepth 1 -type f -size -10000000c -exec grep -i 'GNU $(PACKAGE)' /dev/null '{}' ';' 2>/dev/null; \ + else \ + LC_ALL=C grep -i 'GNU $(PACKAGE)' $(top_srcdir)/* 2>/dev/null; \ + fi; \ + } | grep -v 'libtool:' >/dev/null; then \ + package_gnu=yes; \ + else \ + package_gnu=no; \ + fi; \ + }; \ + if test "$$package_gnu" = "yes"; then \ + package_prefix='GNU '; \ + else \ + package_prefix=''; \ + fi; \ + if test -n '$(MSGID_BUGS_ADDRESS)'; then \ + msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ + else \ + msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ + fi; \ + case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ + $(POTFILES) \ + ;; \ + *) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --package-name="$${package_prefix}$(PACKAGE)" \ + --package-version='$(VERSION)' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ + $(POTFILES) \ + ;; \ + esac + test ! -f $(DOMAIN).po || { \ + if test -f $(srcdir)/$(DOMAIN).pot-header; then \ + sed -e '1,/^#$$/d' < $(DOMAIN).po > $(DOMAIN).1po && \ + cat $(srcdir)/$(DOMAIN).pot-header $(DOMAIN).1po > $(DOMAIN).po && \ + rm -f $(DOMAIN).1po \ + || exit 1; \ + fi; \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + sed -f $(srcdir)/remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ + sed -f $(srcdir)/remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ + if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ + else \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + else \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + } + +# This rule has no dependencies: we don't need to update $(DOMAIN).pot at +# every "make" invocation, only create it when it is missing. +# Only "make $(DOMAIN).pot-update" or "make dist" will force an update. +$(srcdir)/$(DOMAIN).pot: + $(MAKE) $(DOMAIN).pot-update + +# This target rebuilds a PO file if $(DOMAIN).pot has changed. +# Note that a PO file is not touched if it doesn't need to be changed. +$(POFILES): $(srcdir)/$(DOMAIN).pot + @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ + if test -f "$(srcdir)/$${lang}.po"; then \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot"; \ + cd $(srcdir) \ + && { case `$(MSGMERGE_UPDATE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.10 | 0.10.*) \ + $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ + 0.1[1-5] | 0.1[1-5].*) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ + 0.1[6-7] | 0.1[6-7].*) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --previous $${lang}.po $(DOMAIN).pot;; \ + *) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot;; \ + esac; \ + }; \ + else \ + $(MAKE) $${lang}.po-create; \ + fi + + +install-data-local: install-data-local-@USE_NLS@ +install-data-local-no: all-local +install-data-local-yes: all-local + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(MKDIR_P) $(DESTDIR)$$dir; \ + if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ + $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ + echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ + fi; \ + done; \ + done + +installdirs-local: installdirs-local-@USE_NLS@ +installdirs-local-no: +installdirs-local-yes: + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(MKDIR_P) $(DESTDIR)$$dir; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + fi; \ + done; \ + done + +uninstall-local: uninstall-local-@USE_NLS@ +uninstall-local-no: +uninstall-local-yes: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + done; \ + done + +html ID: + +MOSTLYCLEANFILES = +MOSTLYCLEANFILES += stamp-poT +MOSTLYCLEANFILES += core core.* *.stackdump $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po +MOSTLYCLEANFILES += *.o + +MAINTAINERCLEANFILES = $(DOMAIN).pot stamp-po $(GMOFILES) + +EXTRA_DIST = remove-potcdate.sed LINGUAS $(POFILES) $(GMOFILES) + +# Hidden from automake, but really activated. Works around an automake-1.5 bug. +#distdir: distdir1 +distdir1: + $(MAKE) update-po + $(MAKE) $(srcdir)/stamp-po + @if test -f $(srcdir)/$(DOMAIN).pot; then \ + for file in $(DOMAIN).pot stamp-po; do \ + if test -f $$file; then d=.; else d=$(srcdir); fi; \ + cp -p $$d/$$file $(distdir)/$$file || exit 1; \ + done; \ + else \ + case $(XGETTEXT) in \ + :) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because a suitable 'xgettext' program was not found in PATH." 1>&2;; \ + *) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because 'xgettext' found no strings to extract. Check the POTFILES and the XGETTEXT_OPTIONS in the Makefile.am file." 1>&2;; \ + esac; \ + fi + +update-po: Makefile + $(MAKE) $(DOMAIN).pot-update + test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) + $(MAKE) update-gmo + +# General rule for creating PO files. + +.nop.po-create: + @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ + echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ + exit 1 + +# General rule for updating PO files. + +.nop.po-update: + @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --lang=$$lang --previous $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ + cd $(srcdir); \ + if { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.10 | 0.10.*) \ + $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + 0.1[1-5] | 0.1[1-5].*) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + 0.1[6-7] | 0.1[6-7].*) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --previous -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + *) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --lang=$$lang --previous -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + esac; \ + }; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +$(DUMMYPOFILES): + +update-gmo: Makefile $(GMOFILES) + @: diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/af.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..5eff7ca8c38db40a591288352c9425b41b501127 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/af.po @@ -0,0 +1,26 @@ +# Afrikaans translation for Silky +# Copyright (C) 2004 Free Software Foundation, Inc. +# This file is distributed under the same license as the silky package. +# Hanlie Pretorius , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http-0.13.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2003-12-31 10:30+2\n" +"Last-Translator: Ysbeer \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ast.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..afd3f91237bab04fcaf4372d9e97010c649d8702 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-go-http +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marquinos , 2009. +# enolp , 2018. +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-07-16 00:28+0100\n" +"Last-Translator: enolp \n" +"Language-Team: Asturian \n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 2.0\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Hola" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/bg.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..0085c6f06a1189b3fed6736f1295e0102a38e7f3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-go-http package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Roumen Petrov , 2010,2014,2015,2019,2023,2024.2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-go-http 0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-08 19:09+0200\n" +"Last-Translator: Roumen Petrov \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Здравейте" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ca.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..e9e934af8672992ad7c3f1751ef797c3ab58ae6c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-go-http. +# Copyright (C) 2003, 2014, 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ivan Vilata i Balaguer , 2003, 2014, 2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-07-07 08:36+0200\n" +"Last-Translator: Ivan Vilata i Balaguer \n" +"Language-Team: Catalan \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Hola" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/cs.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..a1fbbfcf449b410bad343b95d71ee2451825b408 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/cs.po @@ -0,0 +1,29 @@ +# The Czech translation for the gettext package. +# Copyright (C) 2011 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marek Černocký , 2011. +# Petr Písař , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 20:05+02:00\n" +"Last-Translator: Petr Pisar \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "Ahoj %s" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/da.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..ab5bb54a5702909c994e49eb6010ca1260399437 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-go-http. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Jan Djærv , 2003, 2006. +# Keld Simonsen , 2011. +# Joe Hansen , 2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-27 12:39+0100\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Hej" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/de.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..f4538f19691c250dfafc94b94d2eb06be305e1f0 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-go-http. +# Copyright © 2003, 2013 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Bruno Haible , 2003. +# Karl Eichwalder , 2003. +# Jakob Kramer , 2013. +# Mario Blättermann , 2014, 2023, 2025. +# Philipp Thomas , 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 17:15+0200\n" +"Last-Translator: Mario Blättermann \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 25.04.0\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "Hallo %s" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/el.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..98f549de4d89fd53560e2cc65037735e35a0646c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-go-http +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.14.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2005-01-06 18:50+0000\n" +"Last-Translator: Simos Xenitellis \n" +"Language-Team: Greek \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.3.1\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/eo.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..f85caabac624c6823e7caa204380baf260777abb --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/eo.po @@ -0,0 +1,28 @@ +# La teksto por la mesaĝoj de la programo "gettext". +# Copyright (C) 2006, 2016 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Edmund GRIMLEY EVANS , 2006. +# Felipe CASTRO , 2016, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-23 19:00-0300\n" +"Last-Translator: Felipe Castro \n" +"Language-Team: Esperanto \n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.4.2\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Saluton" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/es.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..ada75f28dceaa7a26c7a55e3092d7ed1bb66c889 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/es.po @@ -0,0 +1,30 @@ +# Mensajes en español para GNU gettext. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# This file is distributed under the same license as the gettext package. +# +# Max de Mendizábal , 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004. +# Antonio Ceballos , 2014, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-02-23 17:01+0100\n" +"Last-Translator: Antonio Ceballos \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Hola" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/fi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..83bc79092f429a583d221f5960b54d562133475a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/fi.po @@ -0,0 +1,29 @@ +# Finnish messages for GNU Gettext examples. +# This file is distributed under the same license as the gettext package. +# Copyright © 2007, 2014, 2015 Yoyodyne, Inc. (msgids) +# Lauri Nurmi , 2007. +# Jorma Karvonen , 2014-2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-09-01 16:59+0300\n" +"Last-Translator: Jorma Karvonen \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 1.5.4\n" + +# Tämä nimenomainen käännös valittu GNU Hellon mukaisesti. +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Hei" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/fr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..9d7a7260708e4e75a4fbe7955f23edf4f68ec9e7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/fr.po @@ -0,0 +1,32 @@ +# Messages français pour GNU gettext. +# Copyright (C) 2006 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Michel Robitaille , 2006. +# Christophe Combelles , 2006 +# Stéphane Aulery , 2015 +# Christian Wiatr , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-28 16:25+0200\n" +"Last-Translator: Christian Wiatr \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Bonjour" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ga.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..339354bf29074429cabd9af8e8fe6a9a4201a9b9 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-go-http. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Kevin Patrick Scannell , 2004, 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2017-01-10 12:09-0500\n" +"Last-Translator: Kevin Patrick Scannell \n" +"Language-Team: Irish \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Dia dhuit" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/gl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..9408358bb5e43dcf4352eeffeeefb145165c93c2 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-go-http package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Leandro Regueiro , 2010-2014. +# +# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas +# colaborar connosco, podes atopar máis información en +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.19-rc1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2014-05-10 16:34+0100\n" +"Last-Translator: Leandro Regueiro \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/hr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..f6a17244c821ade6e2c0b3c51c73e3cbc1036025 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-go-http to Croatian. +# Copyright (C) 2003, 2004, 2014, 2015, 2019 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Permission is granted to freely copy and distribute +# this file and modified versions, provided that this +# header is not removed and modified versions are marked +# as such. +# +# Tomislav Krznar , 2012. +# Božidar Putanec , 2018-2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-go-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:15-0700\n" +"Last-Translator: Božidar Putanec \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "Pozdrav %s" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/hu.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..5d216ba9f0febca5435f35a9e700bfe24f7ef06c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-go-http. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# Tamás Kiss , 2005. +# Balázs Úr , 2014, 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-23 20:31+0200\n" +"Last-Translator: Balázs Úr \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 1.2\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Helló" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/id.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..356274f0c9663e853115e7882e301ce9c0973f95 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-go-http-0.15-pre5.po to Indonesian +# Copyright (C) 2006 Yoyodyne, Inc. +# This file is distributed under the same license as the PACKAGE package. +# +# Tedi Heriyanto , 2006. +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http-0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-09-27 20:19+0700\n" +"Last-Translator: Tedi Heriyanto \n" +"Language-Team: Indonesian \n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.11.2\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/it.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..7963bcb7aaa79e9b9d1471dd5eaa79da8e660130 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-go-http. +# Copyright (C) 2005, 2006 Yoyodyne, Inc. (msgids) +# Copyright (C) 2024 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Marco Colombo , 2005, 2006, 2015. +# Michele Locati , 2024, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-go-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-04 18:28+0200\n" +"Last-Translator: Michele Locati \n" +"Language-Team: Italian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "Ciao %s" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ja.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..609a758e87ef12b0a5e1d898bb5a428078877e33 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-go-http' messages to Japanese. +# Copyright (C) 2005, 2006, 2014, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Masahito Yamaga , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-go-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:59+0900\n" +"Last-Translator: Masahito Yamaga \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "こんにちは %s" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ka.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..ee3f08b879e80a2f7649dc88f07628a9d1e33a32 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ka.po @@ -0,0 +1,28 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Temuri Doghonadze , 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2022-05-22 05:04+0200\n" +"Last-Translator: Temuri Doghonadze \n" +"Language-Team: Georgian <(nothing)>\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0.1\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "გამარჯობა" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ky.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..622cb1ff59f7177a0b5af1dad8166d9f6d534dec --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-go-http' messages to Kirghiz. +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ilyas Bakirov , 2007. +# Ilyas Bakirov , 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-02-15 18:26+0600\n" +"Last-Translator: Ilyas Bakirov \n" +"Language-Team: Kirghiz \n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.0.6\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Салам" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/lv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..b333f4439b9585bd14d79308d0e71308402ce8b2 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-go-http +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Arvis Lācis , 2009. +# Rihards Priedītis , 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-09 11:44+0000\n" +"Last-Translator: Rihards Priedītis \n" +"Language-Team: Latvian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Sveiki" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ms.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..cb3c842d12e6329bb2a6f17cb26610ff1f9b578a --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ms.po @@ -0,0 +1,28 @@ +# hello-go-http Bahasa Melayu (Malay) (ms). +# Copyright (C) 2006, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2006, 2015, 2023, 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Sharuzzaman Ahmat Raslan , 2006, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-03 21:10+0800\n" +"Last-Translator: Sharuzzaman Ahmat Raslan \n" +"Language-Team: Malay \n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "Hello %s" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/mt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..16d89820add5058af37005a27aa43871615ab249 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/mt.po @@ -0,0 +1,27 @@ +# hello-go-http-0.16.2-pre5. +# Copyright (C) 2008 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Clyde Meli , 2001-2008. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.16.2-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2008-11-18 17:27+0100\n" +"Last-Translator: Clyde Meli \n" +"Language-Team: Maltese \n" +"Language: mt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/nb.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..41862bfc4f670a068549e120a6a4e16b90d02319 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-go-http package. +# Copyright (C) 2012 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Johnny A. Solbu , 2012-2024 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-01-06 16:33+0100\n" +"Last-Translator: Johnny A. Solbu \n" +"Language-Team: Norwegian Bokmaal \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Hallo" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/nl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..e335f9df3c89db0bf9b4c5e5d63eda260fce4b67 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-go-http. +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# "There are three basic rules for writing a novel. +# Unfortunately nobody knows what they are." +# +# Benno Schulenberg , 2007, 2014, 2015, 2019, 2025. +# Elros Cyriatan , 2004. +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-01 14:51+0100\n" +"Last-Translator: Benno Schulenberg \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Hallo" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/nn.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..838fc780ee8f696179c2a1c8969e3044c829f222 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-go-http +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Karl Ove Hufthammer , 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http-0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-05-04 18:58+0200\n" +"Last-Translator: Karl Ove Hufthammer \n" +"Language-Team: Norwegian Nynorsk \n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 20.04.0\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Hei" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/pl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..acada9ad8c73996bd1bb15e15a708ea441efb479 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-go-http domain +# Copyright (C) 2010, 2014, 2015, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Rafał Maszkowski , 2003, 2010, 2014, 2015, 2025 +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-go-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-25 17:16+0200\n" +"Last-Translator: Rafał Maszkowski \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "Cześć, %s" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/pt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..f51dc34465bc61c6473863bcd55312ca3394d305 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-go-http' package. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Pedro Albuquerque , 2019, 2020, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 11:24+0100\n" +"Last-Translator: Pedro Albuquerque \n" +"Language-Team: Portuguese \n" +"Language: 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;\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "Olá %s" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/pt_BR.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..c8ac031e8d1975860c1034e2aa645d05fe113167 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/pt_BR.po @@ -0,0 +1,31 @@ +# Brazilian Portuguese translations for gettext-example +# Traduções em português brasileiro para gettext-example +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Rafael Fontenelle , 2013-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:24-0300\n" +"Last-Translator: Rafael Fontenelle \n" +"Language-Team: Brazilian Portuguese \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" +"X-Generator: Gtranslator 48.0\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "Olá %s" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ro.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..a4a4b9d31e460b0620ce72957bafbb62eb2377ed --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-go-http" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-go-http. +# Copyright © 2015, 2019, 2022, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Eugen Hoancă , 2003. +# Mihai Cristescu , 2015 - 2019. +# Remus-Gabriel Chelu , 2022 - 2025. +# +# Cronologia traducerii fișierului „hello-go-http”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-go-http 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-go-http 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-go-http 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-go-http 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-go-http-0.20.2.pot”. +# Actualizare a algoritmului formelor de plural (de la „trei-vechi” la „trei-actual”). +# NU și a mesajelor traduse (acestea au rămas neschimbate). +# Eliminare a mesajelor ce-au dispărut în ultima versiune. +# Actualizări realizate de Remus-Gabriel Chelu , 15.01.2022. +# Actualizare a traducerii pentru versiunea 0.20.2 făcută de R-GC, ian-2022. +# Actualizare a traducerii pentru versiunea 0.22 făcută de R-GC, iun-2023. +# Revizuire și corectare a traducerii pentru versiunea 0.23-pre1 făcută de R-GC, oct-2024. +# Actualizare a traducerii pentru versiunea 0.24-pre1 făcută de R-GC, feb-2025. +# Actualizare a traducerii pentru versiunea 0.25-pre1 făcută de R-GC, apr-2025. +# Actualizare a traducerii pentru versiunea Y, făcută de X, Z(luna-anul). +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 00:25+0200\n" +"Last-Translator: Remus-Gabriel Chelu \n" +"Language-Team: Romanian \n" +"Language: ro\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==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "Salut %s" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ru.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..7752995ecedf55ee869cb3e9f4b430e8b96af21c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-go-http-0.14.1.po to Russian +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Pavel Maryanov , 2004. +# SPDX-FileCopyrightText: 2014, 2015, 2023, 2025 Yuri Kozlov +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-02 09:17+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Lokalize 24.12.0\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" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "Здравствуйте %s" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/sk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..cbc7ceb16bcb941a27864e175bd89c6bcac324aa --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-go-http package. +# Copyright (C) 2003, 2004, 2014, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Marcel Telka , 2003, 2004, 2014, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-go-http 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:53+0200\n" +"Last-Translator: Marcel Telka \n" +"Language-Team: Slovak \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "Ahoj, %s" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/sl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..5cf4bad8b546f934a3356811e3267986952817a7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go-http/po/sl.po @@ -0,0 +1,29 @@ +# -*- mode: po; coding: utf-8; -*- Slovenian message catalog for GNU gettext-example +# Copyright (C) 2005 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Primož Peterlin , 2005, 2014, 2015, 2024. +# $Id: hello-go-http-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-go-http 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-03-28 18:02+0100\n" +"Last-Translator: Primož Peterlin \n" +"Language-Team: Slovenian \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " +"n%100==4 ? 3 : 0);\n" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Zdravo" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/INSTALL b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..f53900b3157a4e0d2654ca6d79209bbfed6b8fb3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/INSTALL @@ -0,0 +1,10 @@ +This example relies on Go (package: golang-go, if available, or gccgo). + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..c504b1335dce01a054a493de85f87ea0aa0dd197 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/Makefile.am @@ -0,0 +1,16 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# General automake options. +AUTOMAKE_OPTIONS = foreign +ACLOCAL_AMFLAGS = -I m4 + +# The list of subdirectories containing Makefiles. +SUBDIRS = example1 example2 example3 m4 po + +DISTCLEANFILES = gocomp.sh + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/autoclean.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..44f41b5824c98f2f9d63b7455e5106b22e587830 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/autoclean.sh @@ -0,0 +1,39 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for cleaning all autogenerated files. + +test ! -f Makefile || make distclean +# Do the equivalent of "make maintainer-clean", even without the Makefile. +rm -f */go.sum +rm -rf autom4te.cache + +# Brought in by explicit copy. +rm -f m4/nls.m4 +rm -f m4/po.m4 +rm -f m4/progtest.m4 +rm -f po/remove-potcdate.sed + +# Brought in by explicit copy. +rm -f m4/gocomp.m4 +rm -f gocomp.sh.in + +# Generated by aclocal. +rm -f aclocal.m4 + +# Generated by autoconf. +rm -f configure + +# Generated or brought in by automake. +rm -f Makefile.in +rm -f example1/Makefile.in +rm -f example2/Makefile.in +rm -f example3/Makefile.in +rm -f m4/Makefile.in +rm -f po/Makefile.in +rm -f install-sh +rm -f missing +rm -f po/*.pot +rm -f po/stamp-po +rm -f po/*.gmo diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/autogen.sh b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..9022bd8ad3876d14c25a5326a5cb499ce82ca978 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/autogen.sh @@ -0,0 +1,47 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for regenerating all autogenerated files. + +if test -r ../Makefile.am; then + # Inside the gettext source directory. + GETTEXT_TOPSRCDIR=../../.. +else + if test -r ../Makefile; then + # Inside a gettext build directory. + GETTEXT_TOOLS_SRCDIR=`sed -n -e 's,^top_srcdir *= *\(.*\)$,\1,p' ../Makefile` + # Adjust a relative top_srcdir. + case $GETTEXT_TOOLS_SRCDIR in + /*) ;; + *) GETTEXT_TOOLS_SRCDIR=../$GETTEXT_TOOLS_SRCDIR ;; + esac + GETTEXT_TOPSRCDIR=$GETTEXT_TOOLS_SRCDIR/../.. + else + # Installed under ${prefix}/share/doc/gettext/examples. + . ../installpaths + fi +fi + +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/nls.m4 m4/nls.m4 +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/po.m4 m4/po.m4 +cp -p ${ACLOCALDIR-$GETTEXT_TOPSRCDIR/gettext-runtime/m4}/progtest.m4 m4/progtest.m4 +cp -p ${GETTEXTSRCPODIR-$GETTEXT_TOPSRCDIR/gettext-runtime/po}/remove-potcdate.sed po/remove-potcdate.sed + +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/gettext-tools/gnulib-m4}/gocomp.m4 m4/gocomp.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/build-aux}/gocomp.sh.in gocomp.sh.in + +aclocal -I m4 + +autoconf + +automake -a -c + +cd po +for f in *.po; do + if test -r "$f"; then + lang=`echo $f | sed -e 's,\.po$,,'` + msgfmt -c -o $lang.gmo $lang.po + fi +done +cd .. diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/configure.ac b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..f2f7acfff35578b0baca9ae5f638614cb51191b7 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/configure.ac @@ -0,0 +1,44 @@ +dnl Example for use of GNU gettext. +dnl This file is in the public domain. +dnl +dnl Configuration file - processed by autoconf. + +AC_INIT([hello-go], [0]) +AC_CONFIG_SRCDIR([example1/go.mod.in]) +AM_INIT_AUTOMAKE([1.11]) + +gt_GOCOMP +if test -z "$GO"; then + echo "*** Essential program go or go- not found" 1>&2 + exit 1 +fi + +dnl The installed program must know where to find its message catalogs. +dnl Unfortunately, prefix gets only finally determined at the end of configure. +if test "X$prefix" = "XNONE"; then + final_prefix="$ac_default_prefix" +else + final_prefix="$prefix" +fi +save_prefix="$prefix" +prefix="$final_prefix" +eval "datarootdir=\"${datarootdir}\"" +eval "localedir=\"${datarootdir}/locale\"" +prefix="$save_prefix" +AC_SUBST([localedir]) + +dnl Support for the po directory. +AM_PO_SUBDIRS + +AC_CONFIG_FILES([Makefile]) +dnl Support for VPATH builds: +dnl We need a copy of go.mod in the build directory, otherwise we get an error +dnl "go.mod file not found in current directory or any parent directory; +dnl see 'go help modules'". +AC_CONFIG_FILES([example1/Makefile example1/go.mod example1/hello1ml.go example1/hello1sl.go]) +AC_CONFIG_FILES([example2/Makefile example2/go.mod example2/hello2sl.go]) +AC_CONFIG_FILES([example3/Makefile example3/go.mod example3/hello3ml.go]) +AC_CONFIG_FILES([gocomp.sh]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example1/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example1/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..77eb7a58a0058887d242a5c54d6ddebe455aa2f5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example1/Makefile.am @@ -0,0 +1,28 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# The list of programs that are built. +bin_PROGRAMS = hello1ml hello1sl + +# The source files of the 'hello1ml' program. +nodist_hello1ml_SOURCES = hello1ml.go + +# The source files of the 'hello1sl' program. +nodist_hello1sl_SOURCES = hello1sl.go + +EXTRA_DIST = go.mod.in + +CLEANFILES = go.sum + +# Rules for compiling the programs. + +go.sum: + $(GO) mod download github.com/leonelquinteros/gotext + +hello1ml$(EXEEXT): $(nodist_hello1ml_SOURCES) go.sum + $(SHELL) ../gocomp.sh $(nodist_hello1ml_SOURCES) + +hello1sl$(EXEEXT): $(nodist_hello1sl_SOURCES) go.sum + $(SHELL) ../gocomp.sh $(nodist_hello1sl_SOURCES) diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example1/go.mod.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example1/go.mod.in new file mode 100644 index 0000000000000000000000000000000000000000..e659ac0dab8a8db23cec153599dc6591a78065dc --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example1/go.mod.in @@ -0,0 +1,3 @@ +module hello +go 1.11 +require github.com/leonelquinteros/gotext v1.6.0 diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example1/hello1ml.go.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example1/hello1ml.go.in new file mode 100644 index 0000000000000000000000000000000000000000..13f464bfdbd01eea8f6c89a3a025c16be447e2e6 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example1/hello1ml.go.in @@ -0,0 +1,45 @@ +// Example for use of GNU gettext. +// This file is in the public domain. + +// Source code of a Go program showing the use of a multi-locale API. + + +package main + +import ( + // Documentation: https://pkg.go.dev/fmt + "fmt" + // Documentation: https://pkg.go.dev/github.com/leonelquinteros/gotext + "github.com/leonelquinteros/gotext" + // Documentation: https://pkg.go.dev/os + "os" +) + +// Returns the language in the form "ll_CC". +// Alternatives: +// - https://pkg.go.dev/github.com/Xuanwo/go-locale +// - https://pkg.go.dev/github.com/jeandeaual/go-locale +func getUserLanguage() string { + // Look at the POSIX environment variables. + for _, variable := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} { + if value := os.Getenv(variable); value != "" { + return gotext.SimplifiedLocale(value) + } + } + // The "C" locale is essentially the same as the en-US locale. + return "en_US" +} + +func main () { + // Specify locale. + language := getUserLanguage() + + // Specify localedir. + localizer := gotext.NewLocale("@localedir@", language) + // Specify domain. + localizer.AddDomain("hello-go") + + fmt.Println(localizer.Get("Hello, world!")) + fmt.Println(localizer.Get("This program is running as process number %d.", + os.Getpid())) +} diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example1/hello1sl.go.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example1/hello1sl.go.in new file mode 100644 index 0000000000000000000000000000000000000000..833245f5171384bd4cb30d622556c16ddd8e651d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example1/hello1sl.go.in @@ -0,0 +1,43 @@ +// Example for use of GNU gettext. +// This file is in the public domain. + +// Source code of a Go program showing the use of a single-locale API. + + +package main + +import ( + // Documentation: https://pkg.go.dev/fmt + "fmt" + // Documentation: https://pkg.go.dev/github.com/leonelquinteros/gotext + "github.com/leonelquinteros/gotext" + // Documentation: https://pkg.go.dev/os + "os" +) + +// Returns the language in the form "ll_CC". +// Alternatives: +// - https://pkg.go.dev/github.com/Xuanwo/go-locale +// - https://pkg.go.dev/github.com/jeandeaual/go-locale +func getUserLanguage() string { + // Look at the POSIX environment variables. + for _, variable := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} { + if value := os.Getenv(variable); value != "" { + return gotext.SimplifiedLocale(value) + } + } + // The "C" locale is essentially the same as the en-US locale. + return "en_US" +} + +func main () { + // Specify locale. + language := getUserLanguage() + + // Specify localedir, domain. + gotext.Configure("@localedir@", language, "hello-go") + + fmt.Println(gotext.Get("Hello, world!")) + fmt.Println(gotext.Get("This program is running as process number %d.", + os.Getpid())) +} diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example2/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example2/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..145b5f7c6e5f9b34e5d3c910732d143001f55aeb --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example2/Makefile.am @@ -0,0 +1,22 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# The list of programs that are built. +bin_PROGRAMS = hello2sl + +# The source files of the 'hello2sl' program. +nodist_hello2sl_SOURCES = hello2sl.go + +EXTRA_DIST = go.mod.in + +CLEANFILES = go.sum + +# Rules for compiling the programs. + +go.sum: + $(GO) mod download github.com/gosexy/gettext + +hello2sl$(EXEEXT): $(nodist_hello2sl_SOURCES) go.sum + $(SHELL) ../gocomp.sh $(nodist_hello2sl_SOURCES) diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example2/go.mod.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example2/go.mod.in new file mode 100644 index 0000000000000000000000000000000000000000..d41b1cdb2db2c5fa1b4b1fd7b634acb077456b23 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example2/go.mod.in @@ -0,0 +1,3 @@ +module hello +go 1.11 +require github.com/gosexy/gettext v0.0.0-20160830220431-74466a0a0c4a diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example2/hello2sl.go.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example2/hello2sl.go.in new file mode 100644 index 0000000000000000000000000000000000000000..d4701659699c4fc810d588c1db69675e08e92e67 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example2/hello2sl.go.in @@ -0,0 +1,31 @@ +// Example for use of GNU gettext. +// This file is in the public domain. + +// Source code of a Go program showing the use of a single-locale API. + + +package main + +import ( + // Documentation: https://pkg.go.dev/fmt + "fmt" + // Documentation: https://pkg.go.dev/github.com/gosexy/gettext + "github.com/gosexy/gettext" + // Documentation: https://pkg.go.dev/os + "os" +) + +func main () { + // Specify domain, localedir. + domain := "hello-go" + gettext.BindTextdomain(domain, "@localedir@") + gettext.Textdomain(domain) + + // Specify locale. + locale := "" // looks at the POSIX environment variables + gettext.SetLocale(gettext.LcAll, locale) + + fmt.Println(gettext.Gettext("Hello, world!")) + fmt.Println(fmt.Sprintf(gettext.Gettext("This program is running as process number %d."), + os.Getpid())) +} diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example3/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example3/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..19370aedb7a1de0c8adea5e3ed3dbcd050380e7f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example3/Makefile.am @@ -0,0 +1,22 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# The list of programs that are built. +bin_PROGRAMS = hello3ml + +# The source files of the 'hello3ml' program. +nodist_hello3ml_SOURCES = hello3ml.go + +EXTRA_DIST = go.mod.in + +CLEANFILES = go.sum + +# Rules for compiling the programs. + +go.sum: + $(GO) mod download github.com/snapcore/go-gettext + +hello3ml$(EXEEXT): $(nodist_hello3ml_SOURCES) go.sum + $(SHELL) ../gocomp.sh $(nodist_hello3ml_SOURCES) diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example3/go.mod.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example3/go.mod.in new file mode 100644 index 0000000000000000000000000000000000000000..55630f4403aaaab7e793fcbe20f4b958cecdec8b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example3/go.mod.in @@ -0,0 +1,3 @@ +module hello +go 1.11 +require github.com/snapcore/go-gettext v0.0.0-20230721153050-9082cdc2db05 diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example3/hello3ml.go.in b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example3/hello3ml.go.in new file mode 100644 index 0000000000000000000000000000000000000000..9a1dcc7a1363713a13b0093969b7cca95918513d --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/example3/hello3ml.go.in @@ -0,0 +1,47 @@ +// Example for use of GNU gettext. +// This file is in the public domain. + +// Source code of a Go program showing the use of a multi-locale API. + + +package main + +import ( + // Documentation: https://pkg.go.dev/fmt + "fmt" + // Documentation: https://pkg.go.dev/github.com/snapcore/go-gettext + "github.com/snapcore/go-gettext" + // Documentation: https://pkg.go.dev/os + "os" +) + +// Alternatives: +// - gettext.getUserLanguages() +// - https://pkg.go.dev/github.com/Xuanwo/go-locale +// - https://pkg.go.dev/github.com/jeandeaual/go-locale +func getUserLanguage() string { + // Look at the POSIX environment variables. + for _, variable := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} { + if value := os.Getenv(variable); value != "" { + return value + } + } + // The "C" locale is essentially the same as the en-US locale. + return "en-US" +} + +func main () { + // Specify locale. + locale := getUserLanguage() + + // Specify domain, localedir. + domain := &gettext.TextDomain{ + Name: "hello-go", + LocaleDir: "@localedir@", + } + gettext := domain.Locale(locale) + + fmt.Println(gettext.Gettext("Hello, world!")) + fmt.Println(fmt.Sprintf(gettext.Gettext("This program is running as process number %d."), + os.Getpid())) +} diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/m4/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..a41b47ed6fad9f934b8096c534837473a521c4ef --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/m4/Makefile.am @@ -0,0 +1,3 @@ +EXTRA_DIST = \ + nls.m4 po.m4 \ + gocomp.m4 diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/LINGUAS b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/LINGUAS @@ -0,0 +1,5 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Set of available languages. +af ast bg ca cs da de el eo es fi fr ga gl hr hu id it ja ka ky lv ms mt nb nl nn pl pt pt_BR ro ru sk sl sq sr sv ta tr uk vi zh_CN zh_HK zh_TW diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/Makefile.am b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..341ba0a4cc14f1295ee555f6f00f42a6afbb3251 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/Makefile.am @@ -0,0 +1,437 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile configuration - processed by automake. + +# List of files which contain translatable strings. +POTFILES = \ + example1/hello1ml.go.in \ + example1/hello1sl.go.in \ + example2/hello2sl.go.in \ + example3/hello3ml.go.in + +# Usually the message domain is the same as the package name. +DOMAIN = $(PACKAGE) + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgid strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Yoyodyne, Inc. + +# This tells whether or not to prepend "GNU " prefix to the package +# name that gets inserted into the header of the $(DOMAIN).pot file. +# Possible values are "yes", "no", or empty. If it is empty, try to +# detect it automatically by scanning the files in $(top_srcdir) for +# "GNU packagename" string. +PACKAGE_GNU = no + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = bug-gettext@gnu.org + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = + +# These options get passed to msgmerge. +# Useful options are in particular: +# --previous to keep previous msgids of translated messages +MSGMERGE_OPTIONS = + +# These options get passed to msginit. +# If you want to disable line wrapping when writing PO files, add +# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and +# MSGINIT_OPTIONS. +MSGINIT_OPTIONS = + +MSGMERGE = @MSGMERGE@ +MSGMERGE_UPDATE = @MSGMERGE@ --update +MSGMERGE_FOR_MSGFMT_OPTION = @MSGMERGE_FOR_MSGFMT_OPTION@ +MSGINIT = msginit +MSGCONV = msgconv +MSGFILTER = msgfilter + +# This is computed as $(foreach file, $(POTFILES), $(top_srcdir)/$(file)) +POTFILES_DEPS != for file in $(POTFILES); do echo $(top_srcdir)/$$file; done + +# The set of available translations. +ALL_LINGUAS != if test -f $(srcdir)/LINGUAS; then \ + sed -e '/^\#/d' < $(srcdir)/LINGUAS; \ + else \ + echo $(LINGUAS); \ + fi +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) +POFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$$lang.po; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) +GMOFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$$lang.gmo; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) +UPDATEPOFILES != for lang in $(ALL_LINGUAS); do echo $$lang.po-update; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) +DUMMYPOFILES != for lang in $(ALL_LINGUAS); do echo $$lang.nop; done + +# The set of desired translations, as specified by the installer or distributor. +DESIRED_LINGUAS = @DESIRED_LINGUAS@ +# The set of translations to install. This is computed based on $(ALL_LINGUAS) +# and $(DESIRED_LINGUAS). It is a subset of $(ALL_LINGUAS). +# We use the presentlang catalog if desiredlang is +# a. equal to presentlang, or +# b. a variant of presentlang (because in this case, presentlang can be used +# as a fallback for messages which are not translated in the desiredlang +# catalog). +INST_LINGUAS != for presentlang in $(ALL_LINGUAS); do \ + useit=false; \ + for desiredlang in $(DESIRED_LINGUAS); do \ + case "$$desiredlang" in \ + "$$presentlang" | "$$presentlang"_* | "$$presentlang".* | "$$presentlang"@*) \ + useit=true ;; \ + esac; \ + done; \ + if $$useit; then echo $$presentlang; fi; \ + done +# This is computed as $(foreach lang, $(INST_LINGUAS), $(lang).gmo) +CATALOGS != for lang in $(INST_LINGUAS); do echo $$lang.gmo; done + +SUFFIXES = .po .gmo .nop .po-create .po-update + +# The .pot file, stamp-po, .po files, and .gmo files appear in release tarballs. +# The GNU Coding Standards say in +# : +# "GNU distributions usually contain some files which are not source files +# ... . Since these files normally appear in the source directory, they +# should always appear in the source directory, not in the build directory. +# So Makefile rules to update them should put the updated files in the +# source directory." +# Therefore we put these files in the source directory, not the build directory. + +# During .po -> .gmo conversion, take into account the most recent changes to +# the .pot file. This eliminates the need to update the .po files when the +# .pot file has changed, which would be troublesome if the .po files are put +# under version control. +$(GMOFILES): $(srcdir)/$(DOMAIN).pot +.po.gmo: + @lang=`echo $* | sed -e 's,.*/,,'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}rm -f $${lang}.gmo && $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $${lang}.po $(DOMAIN).pot && $(GMSGFMT) -c --statistics --verbose -o $${lang}.gmo $${lang}.1po && rm -f $${lang}.1po"; \ + cd $(srcdir) && \ + rm -f $${lang}.gmo && \ + $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $${lang}.po $(DOMAIN).pot && \ + $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.1po && \ + mv t-$${lang}.gmo $${lang}.gmo && \ + rm -f $${lang}.1po + + +all-local: all-local-@USE_NLS@ + +all-local-yes: $(srcdir)/stamp-po +all-local-no: + +# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no +# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because +# we don't want to bother translators with empty POT files). We assume that +# LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty. +# In this case, $(srcdir)/stamp-po is a nop (i.e. a phony target). + +# $(srcdir)/stamp-po is a timestamp denoting the last time at which the CATALOGS +# have been loosely updated. Its purpose is that when a developer or translator +# checks out the package from a version control system, and the $(DOMAIN).pot +# file is not under version control, "make" will update the $(DOMAIN).pot and +# the $(CATALOGS), but subsequent invocations of "make" will do nothing. This +# timestamp would not be necessary if updating the $(CATALOGS) would always +# touch them; however, the rule for $(POFILES) has been designed to not touch +# files that don't need to be changed. +$(srcdir)/stamp-po: $(srcdir)/$(DOMAIN).pot + test ! -f $(srcdir)/$(DOMAIN).pot || \ + test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) + @test ! -f $(srcdir)/$(DOMAIN).pot || { \ + echo "touch $(srcdir)/stamp-po" && \ + echo timestamp > $(srcdir)/stamp-poT && \ + mv $(srcdir)/stamp-poT $(srcdir)/stamp-po; \ + } + +# This target rebuilds $(DOMAIN).pot; it is an expensive operation. +# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. +# The determination of whether the package xyz is a GNU one is based on the +# heuristic whether some file in the top level directory mentions "GNU xyz". +# If GNU 'find' is available, we avoid grepping through monster files. +$(DOMAIN).pot-update: $(POTFILES_DEPS) + package_gnu="$(PACKAGE_GNU)"; \ + test -n "$$package_gnu" || { \ + if { if (LC_ALL=C find --version) 2>/dev/null | grep GNU >/dev/null; then \ + LC_ALL=C find -L $(top_srcdir) -maxdepth 1 -type f -size -10000000c -exec grep -i 'GNU $(PACKAGE)' /dev/null '{}' ';' 2>/dev/null; \ + else \ + LC_ALL=C grep -i 'GNU $(PACKAGE)' $(top_srcdir)/* 2>/dev/null; \ + fi; \ + } | grep -v 'libtool:' >/dev/null; then \ + package_gnu=yes; \ + else \ + package_gnu=no; \ + fi; \ + }; \ + if test "$$package_gnu" = "yes"; then \ + package_prefix='GNU '; \ + else \ + package_prefix=''; \ + fi; \ + if test -n '$(MSGID_BUGS_ADDRESS)'; then \ + msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ + else \ + msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ + fi; \ + case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ + $(POTFILES) \ + ;; \ + *) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --package-name="$${package_prefix}$(PACKAGE)" \ + --package-version='$(VERSION)' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ + $(POTFILES) \ + ;; \ + esac + test ! -f $(DOMAIN).po || { \ + if test -f $(srcdir)/$(DOMAIN).pot-header; then \ + sed -e '1,/^#$$/d' < $(DOMAIN).po > $(DOMAIN).1po && \ + cat $(srcdir)/$(DOMAIN).pot-header $(DOMAIN).1po > $(DOMAIN).po && \ + rm -f $(DOMAIN).1po \ + || exit 1; \ + fi; \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + sed -f $(srcdir)/remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ + sed -f $(srcdir)/remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ + if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ + else \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + else \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + } + +# This rule has no dependencies: we don't need to update $(DOMAIN).pot at +# every "make" invocation, only create it when it is missing. +# Only "make $(DOMAIN).pot-update" or "make dist" will force an update. +$(srcdir)/$(DOMAIN).pot: + $(MAKE) $(DOMAIN).pot-update + +# This target rebuilds a PO file if $(DOMAIN).pot has changed. +# Note that a PO file is not touched if it doesn't need to be changed. +$(POFILES): $(srcdir)/$(DOMAIN).pot + @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ + if test -f "$(srcdir)/$${lang}.po"; then \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot"; \ + cd $(srcdir) \ + && { case `$(MSGMERGE_UPDATE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.10 | 0.10.*) \ + $(MSGMERGE_UPDATE) $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ + 0.1[1-5] | 0.1[1-5].*) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) $${lang}.po $(DOMAIN).pot;; \ + 0.1[6-7] | 0.1[6-7].*) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --previous $${lang}.po $(DOMAIN).pot;; \ + *) \ + $(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot;; \ + esac; \ + }; \ + else \ + $(MAKE) $${lang}.po-create; \ + fi + + +install-data-local: install-data-local-@USE_NLS@ +install-data-local-no: all-local +install-data-local-yes: all-local + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(MKDIR_P) $(DESTDIR)$$dir; \ + if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ + $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ + echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ + fi; \ + done; \ + done + +installdirs-local: installdirs-local-@USE_NLS@ +installdirs-local-no: +installdirs-local-yes: + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(MKDIR_P) $(DESTDIR)$$dir; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + fi; \ + done; \ + done + +uninstall-local: uninstall-local-@USE_NLS@ +uninstall-local-no: +uninstall-local-yes: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + done; \ + done + +html ID: + +MOSTLYCLEANFILES = +MOSTLYCLEANFILES += stamp-poT +MOSTLYCLEANFILES += core core.* *.stackdump $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po +MOSTLYCLEANFILES += *.o + +MAINTAINERCLEANFILES = $(DOMAIN).pot stamp-po $(GMOFILES) + +EXTRA_DIST = remove-potcdate.sed LINGUAS $(POFILES) $(GMOFILES) + +# Hidden from automake, but really activated. Works around an automake-1.5 bug. +#distdir: distdir1 +distdir1: + $(MAKE) update-po + $(MAKE) $(srcdir)/stamp-po + @if test -f $(srcdir)/$(DOMAIN).pot; then \ + for file in $(DOMAIN).pot stamp-po; do \ + if test -f $$file; then d=.; else d=$(srcdir); fi; \ + cp -p $$d/$$file $(distdir)/$$file || exit 1; \ + done; \ + else \ + case $(XGETTEXT) in \ + :) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because a suitable 'xgettext' program was not found in PATH." 1>&2;; \ + *) echo "Warning: Creating a tarball without '$(DOMAIN).pot', because 'xgettext' found no strings to extract. Check the POTFILES and the XGETTEXT_OPTIONS in the Makefile.am file." 1>&2;; \ + esac; \ + fi + +update-po: Makefile + $(MAKE) $(DOMAIN).pot-update + test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) + $(MAKE) update-gmo + +# General rule for creating PO files. + +.nop.po-create: + @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ + echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ + exit 1 + +# General rule for updating PO files. + +.nop.po-update: + @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --lang=$$lang --previous $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ + cd $(srcdir); \ + if { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ + '' | 0.[0-9] | 0.[0-9].* | 0.10 | 0.10.*) \ + $(MSGMERGE) $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + 0.1[1-5] | 0.1[1-5].*) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + 0.1[6-7] | 0.1[6-7].*) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --previous -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + *) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --lang=$$lang --previous -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + esac; \ + }; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +$(DUMMYPOFILES): + +update-gmo: Makefile $(GMOFILES) + @: diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/af.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..43fb4f23ed3e2981e7d63e818ee06bdf6be9cba0 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/af.po @@ -0,0 +1,28 @@ +# Afrikaans translation for Silky +# Copyright (C) 2004 Free Software Foundation, Inc. +# This file is distributed under the same license as the silky package. +# Hanlie Pretorius , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-0.13.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2003-12-31 10:30+2\n" +"Last-Translator: Ysbeer \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Hierdie program loop as prosesnommer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ast.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..05b5f4aee214e6283b7aefe2c71c03ba9facf616 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ast.po @@ -0,0 +1,31 @@ +# Asturian translation for hello-go +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marquinos , 2009. +# enolp , 2018. +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-07-16 00:28+0100\n" +"Last-Translator: enolp \n" +"Language-Team: Asturian \n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 2.0\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Esti programa ta executándose como procesu númberu %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/bg.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..da4c7c2ab6e6ecb26504570dc2277625764ca93c --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/bg.po @@ -0,0 +1,28 @@ +# Bulgarian translations for hello-go package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Roumen Petrov , 2010,2014,2015,2019,2023,2024.2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-go 0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-08 19:09+0200\n" +"Last-Translator: Roumen Petrov \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Програмата е пусната под процес номер %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ca.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..d1f0ecf6e43365ed2a51e95ac3222c91893eb9ae --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ca.po @@ -0,0 +1,29 @@ +# Catalan messages for GNU hello-go. +# Copyright (C) 2003, 2014, 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ivan Vilata i Balaguer , 2003, 2014, 2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-07-07 08:36+0200\n" +"Last-Translator: Ivan Vilata i Balaguer \n" +"Language-Team: Catalan \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Aquest programa està corrent amb el número de procés %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/cs.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..731df769ee5afd51f22dd92208af593ccee9150e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/cs.po @@ -0,0 +1,31 @@ +# The Czech translation for the gettext package. +# Copyright (C) 2011 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Marek Černocký , 2011. +# Petr Písař , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 20:05+02:00\n" +"Last-Translator: Petr Pisar \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Tento program běží jako proces číslo %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/da.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..5e581e0df6ba844d81011afccc010b03a651eeef --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/da.po @@ -0,0 +1,30 @@ +# Danish messages for hello-go. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Jan Djærv , 2003, 2006. +# Keld Simonsen , 2011. +# Joe Hansen , 2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-27 12:39+0100\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Dette program kører som proces nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/de.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..9f85546d506726c54a80cf2c107a555548152a1e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/de.po @@ -0,0 +1,34 @@ +# German messages for hello-go. +# Copyright © 2003, 2013 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Bruno Haible , 2003. +# Karl Eichwalder , 2003. +# Jakob Kramer , 2013. +# Mario Blättermann , 2014, 2023, 2025. +# Philipp Thomas , 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 17:15+0200\n" +"Last-Translator: Mario Blättermann \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 25.04.0\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Dieses Programm läuft mit der Prozess-Nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/el.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..ae5fd1a61643cfda5de52263bc6db6a07fe6b9b8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/el.po @@ -0,0 +1,28 @@ +# Greek translation of hello-go +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.14.1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2005-01-06 18:50+0000\n" +"Last-Translator: Simos Xenitellis \n" +"Language-Team: Greek \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.3.1\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/eo.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..ab9e64bd0df6e430dfd1788afe20eacad2d2b7a6 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/eo.po @@ -0,0 +1,30 @@ +# La teksto por la mesaĝoj de la programo "gettext". +# Copyright (C) 2006, 2016 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Edmund GRIMLEY EVANS , 2006. +# Felipe CASTRO , 2016, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-23 19:00-0300\n" +"Last-Translator: Felipe Castro \n" +"Language-Team: Esperanto \n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.4.2\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Ĉi tiu programo rulas kiel procez-numero %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/es.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..81415cd87f4205c9f4c1458af0edc55d42c9140f --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/es.po @@ -0,0 +1,32 @@ +# Mensajes en español para GNU gettext. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# This file is distributed under the same license as the gettext package. +# +# Max de Mendizábal , 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004. +# Antonio Ceballos , 2014, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-02-23 17:01+0100\n" +"Last-Translator: Antonio Ceballos \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Este programa está corriendo como el proceso número %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/fi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..34a4a1431937ec09dc74a007a4b9577645cc5de5 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/fi.po @@ -0,0 +1,31 @@ +# Finnish messages for GNU Gettext examples. +# This file is distributed under the same license as the gettext package. +# Copyright © 2007, 2014, 2015 Yoyodyne, Inc. (msgids) +# Lauri Nurmi , 2007. +# Jorma Karvonen , 2014-2015. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-09-01 16:59+0300\n" +"Last-Translator: Jorma Karvonen \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 1.5.4\n" + +# Tämä nimenomainen käännös valittu GNU Hellon mukaisesti. +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Tämän ohjelman prosessinumero on %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/fr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..c930bbf880af726d216f8b018d2bb29135fac245 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/fr.po @@ -0,0 +1,34 @@ +# Messages français pour GNU gettext. +# Copyright (C) 2006 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Michel Robitaille , 2006. +# Christophe Combelles , 2006 +# Stéphane Aulery , 2015 +# Christian Wiatr , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-28 16:25+0200\n" +"Last-Translator: Christian Wiatr \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Ce programme est exécuté en tant que processus numéro %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ga.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..b7f7896031bde76e49c1601629f101625693ae27 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ga.po @@ -0,0 +1,28 @@ +# Irish translations for hello-go. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Kevin Patrick Scannell , 2004, 2017. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2017-01-10 12:09-0500\n" +"Last-Translator: Kevin Patrick Scannell \n" +"Language-Team: Irish \n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Tá an clár seo ag rith mar phróiseas %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/gl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..3f171cebdb51b7d007e3450a44080ae1a3d05900 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/gl.po @@ -0,0 +1,33 @@ +# Galician translation for hello-go package. +# Copyright (C) 2010 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Leandro Regueiro , 2010-2014. +# +# Proxecto Trasno - Adaptación do software libre á lingua galega: Se desexas +# colaborar connosco, podes atopar máis información en +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.19-rc1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2014-05-10 16:34+0100\n" +"Last-Translator: Leandro Regueiro \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Este programa estase executando como o proceso número %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/hr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..08cfbcf7e049525bbc704cb3846f2f336b3ac574 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/hr.po @@ -0,0 +1,35 @@ +# Translation of hello-go to Croatian. +# Copyright (C) 2003, 2004, 2014, 2015, 2019 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Permission is granted to freely copy and distribute +# this file and modified versions, provided that this +# header is not removed and modified versions are marked +# as such. +# +# Tomislav Krznar , 2012. +# Božidar Putanec , 2018-2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-go 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:15-0700\n" +"Last-Translator: Božidar Putanec \n" +"Language-Team: Croatian \n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Ovaj program se izvršava kao proces broj %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/hu.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..3d9ea18bf378c33cb9ca4f87312e4742d80d60b8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/hu.po @@ -0,0 +1,31 @@ +# Hungarian translation for hello-go. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# +# Tamás Kiss , 2005. +# Balázs Úr , 2014, 2015. +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2015-06-23 20:31+0200\n" +"Last-Translator: Balázs Úr \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 1.2\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Ez a program a(z) %d folyamatazonosítóval fut." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/id.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..e175305a08935421b5e458ce3726c5d76633b3a8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/id.po @@ -0,0 +1,29 @@ +# translation of hello-go-0.15-pre5.po to Indonesian +# Copyright (C) 2006 Yoyodyne, Inc. +# This file is distributed under the same license as the PACKAGE package. +# +# Tedi Heriyanto , 2006. +msgid "" +msgstr "" +"Project-Id-Version: hello-go-0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-09-27 20:19+0700\n" +"Last-Translator: Tedi Heriyanto \n" +"Language-Team: Indonesian \n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: KBabel 1.11.2\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Program ini berjalan sebagai proses nomor %d" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/it.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..ab5dd9af11e59cbecf3e43a4e8668a67b7c42774 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/it.po @@ -0,0 +1,31 @@ +# Italian messages for hello-go. +# Copyright (C) 2005, 2006 Yoyodyne, Inc. (msgids) +# Copyright (C) 2024 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Marco Colombo , 2005, 2006, 2015. +# Michele Locati , 2024, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-go 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-04 18:28+0200\n" +"Last-Translator: Michele Locati \n" +"Language-Team: Italian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Questo programma è in esecuzione con numero di processo %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ja.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..78b66c0fefd874f9916c521403b274d786ea3325 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ja.po @@ -0,0 +1,28 @@ +# Translation of `hello-go' messages to Japanese. +# Copyright (C) 2005, 2006, 2014, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Masahito Yamaga , 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-go 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:59+0900\n" +"Last-Translator: Masahito Yamaga \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "このプログラムはプロセス番号 %d で動いています." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ka.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..faaa9b471c3a6ba678727dfdbc56700b44386698 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ka.po @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2022 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Temuri Doghonadze , 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2022-05-22 05:04+0200\n" +"Last-Translator: Temuri Doghonadze \n" +"Language-Team: Georgian <(nothing)>\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0.1\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ky.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..137a8c5276f4efb3f9d3f3790710af27cd557b98 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ky.po @@ -0,0 +1,30 @@ +# Translation of 'hello-go' messages to Kirghiz. +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Ilyas Bakirov , 2007. +# Ilyas Bakirov , 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.19.4.73\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2018-02-15 18:26+0600\n" +"Last-Translator: Ilyas Bakirov \n" +"Language-Team: Kirghiz \n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 2.0.6\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Бул программа %d процесс номери катары иштеп жатат." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/lv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..ad23733199d8ff50de12171771f3b9d5562a2a88 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/lv.po @@ -0,0 +1,32 @@ +# Latvian translation of hello-go +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Arvis Lācis , 2009. +# Rihards Priedītis , 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-09 11:44+0000\n" +"Last-Translator: Rihards Priedītis \n" +"Language-Team: Latvian \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Šī programma darbojas ar procesa numuru %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ms.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..abd8c6285740906b8cf5f2fe1b292b6628684d1b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ms.po @@ -0,0 +1,30 @@ +# hello-go Bahasa Melayu (Malay) (ms). +# Copyright (C) 2006, 2015, 2023, 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2006, 2015, 2023, 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Sharuzzaman Ahmat Raslan , 2006, 2015, 2023, 2025 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-03 21:10+0800\n" +"Last-Translator: Sharuzzaman Ahmat Raslan \n" +"Language-Team: Malay \n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Program ini dilaksanakan sebagai proses bernombor %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/mt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..cacd69366f94d4bffa6d70b4820651a6173e05be --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/mt.po @@ -0,0 +1,29 @@ +# hello-go-0.16.2-pre5. +# Copyright (C) 2008 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Clyde Meli , 2001-2008. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.16.2-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2008-11-18 17:27+0100\n" +"Last-Translator: Clyde Meli \n" +"Language-Team: Maltese \n" +"Language: mt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Dal-programm qed jaħdem taħt il-proċess numru %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/nb.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..14bd96f43591c99532081d7104f1cc46995971c6 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/nb.po @@ -0,0 +1,31 @@ +# Norwegian Bokmal translations for hello-go package. +# Copyright (C) 2012 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Johnny A. Solbu , 2012-2024 +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-01-06 16:33+0100\n" +"Last-Translator: Johnny A. Solbu \n" +"Language-Team: Norwegian Bokmaal \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.4.2\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Dette programmet kjører som prosess nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/nl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..aa6723e27ebe92a6daf716ed02f1e5a9cd4fd2a6 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/nl.po @@ -0,0 +1,33 @@ +# Dutch translations for GNU hello-go. +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# "There are three basic rules for writing a novel. +# Unfortunately nobody knows what they are." +# +# Benno Schulenberg , 2007, 2014, 2015, 2019, 2025. +# Elros Cyriatan , 2004. +msgid "" +msgstr "" +"Project-Id-Version: hello-go-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-01 14:51+0100\n" +"Last-Translator: Benno Schulenberg \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Dit programma draait als proces nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/nn.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..761f91bd3fc99dacce6fb4f07dc49196309886f1 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/nn.po @@ -0,0 +1,30 @@ +# Norwegian Nynorsk translation of GNU hello-go +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Karl Ove Hufthammer , 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-go-0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-05-04 18:58+0200\n" +"Last-Translator: Karl Ove Hufthammer \n" +"Language-Team: Norwegian Nynorsk \n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 20.04.0\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Dette programmet køyrer som prosess nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/pl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..277a5f7cea278df28821b0bf094b9f27e8dcecc9 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/pl.po @@ -0,0 +1,29 @@ +# Polish translations for the GNU gettext messages, hello-go domain +# Copyright (C) 2010, 2014, 2015, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Rafał Maszkowski , 2003, 2010, 2014, 2015, 2025 +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-go 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-25 17:16+0200\n" +"Last-Translator: Rafał Maszkowski \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Ten program działa jako proces o numerze %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/pt.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..6ed3ba85829853b5be2b0735b6f48d1f589adb52 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/pt.po @@ -0,0 +1,30 @@ +# Portuguese (Portugal) translation of 'hello-go' package. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Pedro Albuquerque , 2019, 2020, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 11:24+0100\n" +"Last-Translator: Pedro Albuquerque \n" +"Language-Team: Portuguese \n" +"Language: 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;\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Este programa está em execução como processo nº %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/pt_BR.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..9f8c1989882b65d2541a2721fc4c9928694ed6bb --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/pt_BR.po @@ -0,0 +1,33 @@ +# Brazilian Portuguese translations for gettext-example +# Traduções em português brasileiro para gettext-example +# Copyright (C) 2025 Yoyodyne, Inc. (msgids) +# Copyright (C) 2025 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Rafael Fontenelle , 2013-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 10:24-0300\n" +"Last-Translator: Rafael Fontenelle \n" +"Language-Team: Brazilian Portuguese \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" +"X-Generator: Gtranslator 48.0\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Este programa está sendo executado com número de processo %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ro.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..10591a4c0def7519cedbd9f7796dc8119fcd68c8 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ro.po @@ -0,0 +1,52 @@ +# Translation of "hello-go" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-go. +# Copyright © 2015, 2019, 2022, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Eugen Hoancă , 2003. +# Mihai Cristescu , 2015 - 2019. +# Remus-Gabriel Chelu , 2022 - 2025. +# +# Cronologia traducerii fișierului „hello-go”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-go 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-go 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-go 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-go 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-go-0.20.2.pot”. +# Actualizare a algoritmului formelor de plural (de la „trei-vechi” la „trei-actual”). +# NU și a mesajelor traduse (acestea au rămas neschimbate). +# Eliminare a mesajelor ce-au dispărut în ultima versiune. +# Actualizări realizate de Remus-Gabriel Chelu , 15.01.2022. +# Actualizare a traducerii pentru versiunea 0.20.2 făcută de R-GC, ian-2022. +# Actualizare a traducerii pentru versiunea 0.22 făcută de R-GC, iun-2023. +# Revizuire și corectare a traducerii pentru versiunea 0.23-pre1 făcută de R-GC, oct-2024. +# Actualizare a traducerii pentru versiunea 0.24-pre1 făcută de R-GC, feb-2025. +# Actualizare a traducerii pentru versiunea 0.25-pre1 făcută de R-GC, apr-2025. +# Actualizare a traducerii pentru versiunea Y, făcută de X, Z(luna-anul). +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 00:25+0200\n" +"Last-Translator: Remus-Gabriel Chelu \n" +"Language-Team: Romanian \n" +"Language: ro\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==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Acest program rulează ca procesul numărul %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ru.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..3eff797f41a3576ae492ca9d5c29ba244361242e --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ru.po @@ -0,0 +1,32 @@ +# Translation of hello-go-0.14.1.po to Russian +# Copyright (C) 2004 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Pavel Maryanov , 2004. +# SPDX-FileCopyrightText: 2014, 2015, 2023, 2025 Yuri Kozlov +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-05-02 09:17+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Lokalize 24.12.0\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" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Эта программа выполняется как процесс под номером %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/sk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..7f3a6bb55bea8289f4df9d00d9e07fee133dab4b --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/sk.po @@ -0,0 +1,28 @@ +# Slovak translations GNU for hello-go package. +# Copyright (C) 2003, 2004, 2014, 2023, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Marcel Telka , 2003, 2004, 2014, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: GNU hello-go 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:53+0200\n" +"Last-Translator: Marcel Telka \n" +"Language-Team: Slovak \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Tento program beží ako proces s číslom %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/sl.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..24ed93f0667fcda3de139f228a03fe3f7361f5cf --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/sl.po @@ -0,0 +1,31 @@ +# -*- mode: po; coding: utf-8; -*- Slovenian message catalog for GNU gettext-example +# Copyright (C) 2005 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Primož Peterlin , 2005, 2014, 2015, 2024. +# $Id: hello-go-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-03-28 18:02+0100\n" +"Last-Translator: Primož Peterlin \n" +"Language-Team: Slovenian \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " +"n%100==4 ? 3 : 0);\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Ta program teče kot proces številka %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/sq.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..fc87d4fa643705f5d72d4373411073216990d900 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/sq.po @@ -0,0 +1,30 @@ +# Albanian translation of gettext-example. +# Copyright (C) 2020 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Besnik Bleta , 2020,2023,2024,2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 19:56+0300\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.2.2\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Ky program po xhiron si procesi numër %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/sr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..0fd6230c0cf0e02412305696cfb61d635cb995de --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/sr.po @@ -0,0 +1,32 @@ +# Serbian translation of hello-go. +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Aleksandar Jelenak , 2004. +# Мирослав Николић , 2014-2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go-0.24-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-03-02 16:51+0100\n" +"Last-Translator: Мирослав Николић \n" +"Language-Team: Serbian <(nothing)>\n" +"Language: sr\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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Овај програм се извршава као процес број %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/sv.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..47ce95d2dfef3273bac6246b14a23b7053f108e1 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/sv.po @@ -0,0 +1,32 @@ +# Swedish messages for hello-go. +# Copyright © 2006, 2014, 2016, 2019, 2020, 2023, 2024, 2025 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Jan Djärv , 2003, 2006, 2014. +# Göran Uddeborg , 2016, 2019, 2020, 2023, 2024, 2025. +# Luna Jernberg , 2025. +# $Revision: 1.12 $ +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 12:18+0200\n" +"Last-Translator: Luna Jernberg \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Detta program kör som process nummer %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ta.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..5785217ef2bdf520af85f49a133347b0b1b7b4fa --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/ta.po @@ -0,0 +1,30 @@ +# Tamil messages for GNU gettext. +# Copyright (C) 2018 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# List of contributors follow: +# Poorajith , 2018. +# Arun Isaac , 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-19 00:06+0100\n" +"Last-Translator: Arun Isaac \n" +"Language-Team: Tamil \n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "இந்நிரல் செயலாக்க எண் %d ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/tr.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..ceac7de56351e2293a13b145b26fcfd7e3d879db --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/tr.po @@ -0,0 +1,31 @@ +# Turkish translation for hello-go. +# This file is distributed under the same license as the gettext package. +# Copyright (C) 2017 Yoyodyne, Inc. (msgids) +# Copyright (C) 2004 Free Software Foundation, Inc. +# Nilgün Belma Bugüner , 2003,2004 +# Mehmet Kececi , 2017, 2019, 2020. +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.20.2\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2020-04-17 13:10+0300\n" +"Last-Translator: Mehmet Kececi \n" +"Language-Team: Turkish \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" +"X-Generator: Poedit 2.3\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Bu yazılım %d işlem numarası ile çalışıyor." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/uk.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..50b6145ef772a30cc8c2e61fa547b103eabd4651 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/uk.po @@ -0,0 +1,32 @@ +# Ukrainian translation to hello-go +# Copyright (C) 2014 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# +# Maxim V. Dziumanenko , 2004-2007. +# Yuri Chornoivan , 2014, 2015, 2023, 2025. +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-28 13:56+0300\n" +"Last-Translator: Yuri Chornoivan \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\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" +"X-Generator: Lokalize 23.04.3\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Ця програма виконується як процес з номером %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/vi.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..4fd900063d7ab85776afb14e4611fcc42c4992d3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/vi.po @@ -0,0 +1,32 @@ +# Vietnamese Translation for Gettext Examples. +# Bản dịch tiếng Việt dành cho các ví dụ của gói gettext. +# Copyright © 2015 Yoyodyne, Inc. (msgids) +# Copyright © 2015 Free Software Foundation, Inc. +# This file is distributed under the same license as the gettext package. +# Clytie Siddall , 2005-2010. +# Trần Ngọc Quân , 2012-2015, 2023. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.22\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2023-06-24 09:10+0700\n" +"Last-Translator: Trần Ngọc Quân \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" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "Chương trình này đang chạy với mã số tiến trình %d." diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/zh_CN.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..dfdfb37d831d27da192aea87acbe6998aadb8cd1 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/zh_CN.po @@ -0,0 +1,31 @@ +# zh_CN translation for hello-go. +# Copyright (C) 2015 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Funda Wang , 2003. +# Ji ZhengYu , 2015. +# Boyuan Yang <073plan@gmail.com>, 2019, 2023, 2025. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.25-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2025-04-29 15:56-0400\n" +"Last-Translator: Boyuan Yang <073plan@gmail.com>\n" +"Language-Team: Chinese (simplified) \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.6\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "此程序正以进程号 %d 运行。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/zh_HK.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..9200d7153f5755020b1b2aec58e793b45acb2166 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/zh_HK.po @@ -0,0 +1,27 @@ +# Chinese (Hong Kong) translation of hello-go. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.15-pre5\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2006-07-05 15:40+0800\n" +"Last-Translator: Abel Cheung \n" +"Language-Team: Chinese (Hong Kong) \n" +"Language: zh_HK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "你好!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行中,進程編號為 %d。" diff --git a/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/zh_TW.po b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..ccac942b3ff7860d479601859567adf95c8195f3 --- /dev/null +++ b/miniconda3/pkgs/gettext-0.25.1-h92eb808_0/share/doc/gettext/examples/hello-go/po/zh_TW.po @@ -0,0 +1,31 @@ +# Traditional Chinese translation of hello-go. +# Copyright (C) 2009 Yoyodyne, Inc. (msgids) +# This file is distributed under the same license as the gettext package. +# Abel Cheung , 2005. +# Wei-Lun Chao , 2013, 2015. +# Yi-Jyun Pan , 2024. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-go 0.23-pre1\n" +"Report-Msgid-Bugs-To: bug-gettext@gnu.org\n" +"PO-Revision-Date: 2024-11-30 14:14+0800\n" +"Last-Translator: Yi-Jyun Pan \n" +"Language-Team: Chinese (traditional) \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.5\n" + +#: example1/hello1ml.go.in:42 example1/hello1sl.go.in:40 +#: example2/hello2sl.go.in:28 example3/hello3ml.go.in:44 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: example1/hello1ml.go.in:43 example1/hello1sl.go.in:41 +#: example2/hello2sl.go.in:29 example3/hello3ml.go.in:45 +#, go-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行,行程編號為 %d。"