diff --git a/miniconda3/share/doc/gettext/examples/hello-go-http/INSTALL b/miniconda3/share/doc/gettext/examples/hello-go-http/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..f53900b3157a4e0d2654ca6d79209bbfed6b8fb3 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-go-http/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..d3c05459d078e744f5026fb19ba32a7d070be496 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-go-http/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..675e15db95f5268fd428f7d12d3ae48d2c2fc37c --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-go-http/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..9022bd8ad3876d14c25a5326a5cb499ce82ca978 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/configure.ac b/miniconda3/share/doc/gettext/examples/hello-go-http/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..807ed96aede50f79b93b6fc0f12ada22fdb48005 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/example1/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-go-http/example1/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..b83b5124d444fa9b3f023b20d1196495d810bc96 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/example1/go.mod.in b/miniconda3/share/doc/gettext/examples/hello-go-http/example1/go.mod.in new file mode 100644 index 0000000000000000000000000000000000000000..e659ac0dab8a8db23cec153599dc6591a78065dc --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/example1/hello1ml.go.in b/miniconda3/share/doc/gettext/examples/hello-go-http/example1/hello1ml.go.in new file mode 100644 index 0000000000000000000000000000000000000000..fb14fff92a89c363af35263078aa80578078f62f --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-go-http/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..a41b47ed6fad9f934b8096c534837473a521c4ef --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-go-http/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-go-http/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..ba5a3fdab9f5d2694faf90efa552c61c96c6dca5 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/af.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..5eff7ca8c38db40a591288352c9425b41b501127 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..afd3f91237bab04fcaf4372d9e97010c649d8702 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..0085c6f06a1189b3fed6736f1295e0102a38e7f3 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..e9e934af8672992ad7c3f1751ef797c3ab58ae6c --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..a1fbbfcf449b410bad343b95d71ee2451825b408 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/da.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..ab5bb54a5702909c994e49eb6010ca1260399437 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/de.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..f4538f19691c250dfafc94b94d2eb06be305e1f0 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/el.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..98f549de4d89fd53560e2cc65037735e35a0646c --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..f85caabac624c6823e7caa204380baf260777abb --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/es.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..ada75f28dceaa7a26c7a55e3092d7ed1bb66c889 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..83bc79092f429a583d221f5960b54d562133475a --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..9d7a7260708e4e75a4fbe7955f23edf4f68ec9e7 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..339354bf29074429cabd9af8e8fe6a9a4201a9b9 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..9408358bb5e43dcf4352eeffeeefb145165c93c2 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..f6a17244c821ade6e2c0b3c51c73e3cbc1036025 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..5d216ba9f0febca5435f35a9e700bfe24f7ef06c --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/id.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..356274f0c9663e853115e7882e301ce9c0973f95 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/it.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..7963bcb7aaa79e9b9d1471dd5eaa79da8e660130 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..609a758e87ef12b0a5e1d898bb5a428078877e33 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..ee3f08b879e80a2f7649dc88f07628a9d1e33a32 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..622cb1ff59f7177a0b5af1dad8166d9f6d534dec --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..b333f4439b9585bd14d79308d0e71308402ce8b2 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..cb3c842d12e6329bb2a6f17cb26610ff1f9b578a --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..16d89820add5058af37005a27aa43871615ab249 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..41862bfc4f670a068549e120a6a4e16b90d02319 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..e335f9df3c89db0bf9b4c5e5d63eda260fce4b67 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..838fc780ee8f696179c2a1c8969e3044c829f222 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..acada9ad8c73996bd1bb15e15a708ea441efb479 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..f51dc34465bc61c6473863bcd55312ca3394d305 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..c8ac031e8d1975860c1034e2aa645d05fe113167 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..a4a4b9d31e460b0620ce72957bafbb62eb2377ed --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..7752995ecedf55ee869cb3e9f4b430e8b96af21c --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..cbc7ceb16bcb941a27864e175bd89c6bcac324aa --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..5cf4bad8b546f934a3356811e3267986952817a7 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go-http/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..4eddf89c32fb0c5d976f7e60fba14102d85c55d1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-go-http/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-go-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" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "Tungjatjeta %s" diff --git a/miniconda3/share/doc/gettext/examples/hello-go-http/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..7d867edddf2b89218cf5f4b7e8e1fdee29fc3ad8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-go-http/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-go-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-go-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" + +#: 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/share/doc/gettext/examples/hello-go-http/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..955ac05d74d74fbe919c695057504bcdb7b5285a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-go-http/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-go-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-go-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" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "Hej %s" diff --git a/miniconda3/share/doc/gettext/examples/hello-go-http/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..6a61530161b376279883d90fa99e9bc8c53bdfdf --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-go-http/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-go-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" + +#: 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/share/doc/gettext/examples/hello-go-http/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..09b332f3e445f323049614530def5ea4766e4e8f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-go-http/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-go-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-go-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" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Merhaba" diff --git a/miniconda3/share/doc/gettext/examples/hello-go-http/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..bca817c619724d919906bae5cbc97166702f0d2a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-go-http/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-go-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-go-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" + +#: 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/share/doc/gettext/examples/hello-go-http/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..2b52c7834df243f35dbb4b2e9e797b65b488e3f7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-go-http/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-go-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" + +#: example1/hello1ml.go.in:59 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: example1/hello1ml.go.in:60 +#, fuzzy, go-format +msgid "Hello %s" +msgstr "Chào" diff --git a/miniconda3/share/doc/gettext/examples/hello-go-http/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..b74e315689c241343f8b6f0a41751e2774c00ede --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-go-http/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-go-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-go-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" + +#: 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/share/doc/gettext/examples/hello-go-http/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..1fb0dc94a92bbb68ff2f71f0d817e134c3b14a30 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-go-http/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-go-http. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 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-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:59 +msgid "Hello, world!" +msgstr "你好!" + +#: example1/hello1ml.go.in:60 +#, go-format +msgid "Hello %s" +msgstr "" diff --git a/miniconda3/share/doc/gettext/examples/hello-go-http/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-go-http/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..3e49db9b3ac93eecec716e7b331335eb256d59d9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-go-http/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-go-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-go-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" + +#: 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/share/doc/gettext/examples/hello-go/example1/hello1sl.go.in b/miniconda3/share/doc/gettext/examples/hello-go/example1/hello1sl.go.in new file mode 100644 index 0000000000000000000000000000000000000000..833245f5171384bd4cb30d622556c16ddd8e651d --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/example2/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-go/example2/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..145b5f7c6e5f9b34e5d3c910732d143001f55aeb --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/example2/go.mod.in b/miniconda3/share/doc/gettext/examples/hello-go/example2/go.mod.in new file mode 100644 index 0000000000000000000000000000000000000000..d41b1cdb2db2c5fa1b4b1fd7b634acb077456b23 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/example2/hello2sl.go.in b/miniconda3/share/doc/gettext/examples/hello-go/example2/hello2sl.go.in new file mode 100644 index 0000000000000000000000000000000000000000..d4701659699c4fc810d588c1db69675e08e92e67 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/example3/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-go/example3/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..19370aedb7a1de0c8adea5e3ed3dbcd050380e7f --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/example3/go.mod.in b/miniconda3/share/doc/gettext/examples/hello-go/example3/go.mod.in new file mode 100644 index 0000000000000000000000000000000000000000..55630f4403aaaab7e793fcbe20f4b958cecdec8b --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/example3/hello3ml.go.in b/miniconda3/share/doc/gettext/examples/hello-go/example3/hello3ml.go.in new file mode 100644 index 0000000000000000000000000000000000000000..9a1dcc7a1363713a13b0093969b7cca95918513d --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-go/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..a41b47ed6fad9f934b8096c534837473a521c4ef --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-go/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-go/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..341ba0a4cc14f1295ee555f6f00f42a6afbb3251 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/af.po b/miniconda3/share/doc/gettext/examples/hello-go/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..43fb4f23ed3e2981e7d63e818ee06bdf6be9cba0 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-go/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..05b5f4aee214e6283b7aefe2c71c03ba9facf616 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-go/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..da4c7c2ab6e6ecb26504570dc2277625764ca93c --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-go/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..d1f0ecf6e43365ed2a51e95ac3222c91893eb9ae --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-go/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..731df769ee5afd51f22dd92208af593ccee9150e --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/da.po b/miniconda3/share/doc/gettext/examples/hello-go/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..5e581e0df6ba844d81011afccc010b03a651eeef --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/de.po b/miniconda3/share/doc/gettext/examples/hello-go/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..9f85546d506726c54a80cf2c107a555548152a1e --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/el.po b/miniconda3/share/doc/gettext/examples/hello-go/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..ae5fd1a61643cfda5de52263bc6db6a07fe6b9b8 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-go/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..ab9e64bd0df6e430dfd1788afe20eacad2d2b7a6 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/es.po b/miniconda3/share/doc/gettext/examples/hello-go/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..81415cd87f4205c9f4c1458af0edc55d42c9140f --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-go/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..34a4a1431937ec09dc74a007a4b9577645cc5de5 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-go/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..c930bbf880af726d216f8b018d2bb29135fac245 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-go/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..b7f7896031bde76e49c1601629f101625693ae27 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-go/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..3f171cebdb51b7d007e3450a44080ae1a3d05900 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-go/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..08cfbcf7e049525bbc704cb3846f2f336b3ac574 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-go/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..3d9ea18bf378c33cb9ca4f87312e4742d80d60b8 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/id.po b/miniconda3/share/doc/gettext/examples/hello-go/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..e175305a08935421b5e458ce3726c5d76633b3a8 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/it.po b/miniconda3/share/doc/gettext/examples/hello-go/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..ab5dd9af11e59cbecf3e43a4e8668a67b7c42774 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-go/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..78b66c0fefd874f9916c521403b274d786ea3325 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-go/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..faaa9b471c3a6ba678727dfdbc56700b44386698 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-go/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..137a8c5276f4efb3f9d3f3790710af27cd557b98 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-go/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..ad23733199d8ff50de12171771f3b9d5562a2a88 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-go/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..abd8c6285740906b8cf5f2fe1b292b6628684d1b --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-go/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..cacd69366f94d4bffa6d70b4820651a6173e05be --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-go/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..14bd96f43591c99532081d7104f1cc46995971c6 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-go/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..aa6723e27ebe92a6daf716ed02f1e5a9cd4fd2a6 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-go/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..761f91bd3fc99dacce6fb4f07dc49196309886f1 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-go/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..277a5f7cea278df28821b0bf094b9f27e8dcecc9 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-go/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..6ed3ba85829853b5be2b0735b6f48d1f589adb52 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-go/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..9f8c1989882b65d2541a2721fc4c9928694ed6bb --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-go/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..10591a4c0def7519cedbd9f7796dc8119fcd68c8 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-go/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..3eff797f41a3576ae492ca9d5c29ba244361242e --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-go/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..7f3a6bb55bea8289f4df9d00d9e07fee133dab4b --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-go/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..24ed93f0667fcda3de139f228a03fe3f7361f5cf --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-go/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..fc87d4fa643705f5d72d4373411073216990d900 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-go/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..0fd6230c0cf0e02412305696cfb61d635cb995de --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-go/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..47ce95d2dfef3273bac6246b14a23b7053f108e1 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-go/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..5785217ef2bdf520af85f49a133347b0b1b7b4fa --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-go/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..ceac7de56351e2293a13b145b26fcfd7e3d879db --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-go/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..50b6145ef772a30cc8c2e61fa547b103eabd4651 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-go/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..4fd900063d7ab85776afb14e4611fcc42c4992d3 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-go/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..dfdfb37d831d27da192aea87acbe6998aadb8cd1 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-go/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..9200d7153f5755020b1b2aec58e793b45acb2166 --- /dev/null +++ b/miniconda3/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/share/doc/gettext/examples/hello-go/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-go/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..ccac942b3ff7860d479601859567adf95c8195f3 --- /dev/null +++ b/miniconda3/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。" diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/INSTALL b/miniconda3/share/doc/gettext/examples/hello-guile/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..c48052f1697be28ca0def6151cbe870b119998e1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/INSTALL @@ -0,0 +1,10 @@ +This example relies on GNU guile. + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-guile/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..b76e71d94a2fe75afa8bf3b55bef12edf344ed34 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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/share/doc/gettext/examples/hello-guile/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-guile/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..8655a871726b2a31a935332f3e7cbba7b36928e8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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/share/doc/gettext/examples/hello-guile/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-guile/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..a972da8041799c1ddf0a23303c0660eb9fb827bc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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/share/doc/gettext/examples/hello-guile/configure.ac b/miniconda3/share/doc/gettext/examples/hello-guile/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..103ead380e678c9424f503c6964b91a0ee7fafbb --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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-guile], [0]) +AC_CONFIG_SRCDIR([hello.scm]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Check for availability of the guile interpreter. +AC_PATH_PROG([GUILE], [guile]) +if test -z "$GUILE"; then + echo "*** Essential program guile not found" 1>&2 + exit 1 +fi +AC_SUBST([GUILE]) + +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.scm], [chmod a+x hello]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/hello.scm b/miniconda3/share/doc/gettext/examples/hello-guile/hello.scm new file mode 100644 index 0000000000000000000000000000000000000000..43c367e546edea64381e2de520ed701987490fae --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/hello.scm @@ -0,0 +1,18 @@ +#!@GUILE@ -s +!# +;;; Example for use of GNU gettext. +;;; This file is in the public domain. + +;;; Source code of the GNU guile program. + +(use-modules (ice-9 format)) + +(catch #t (lambda () (setlocale LC_ALL "")) (lambda args #f)) +(textdomain "hello-guile") +(bindtextdomain "hello-guile" "@localedir@") +(define _ gettext) + +(display (_ "Hello, world!")) +(newline) +(format #t (_ "This program is running as process number ~D.") (getpid)) +(newline) diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-guile/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..8a841b31f12ff3bd59428fbba049f50825d91510 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/m4/Makefile.am @@ -0,0 +1,2 @@ +EXTRA_DIST = \ + nls.m4 po.m4 diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-guile/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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/share/doc/gettext/examples/hello-guile/po/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-guile/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..5f605c68a5c84c39d78c8349ea0240c1892a881d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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.scm + +# 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-scheme-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/share/doc/gettext/examples/hello-guile/po/af.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..0e14e1f2e7a4dbe9c5dcc1d41e768713a3072f90 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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-guile-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.scm:15 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Hierdie program loop as prosesnommer ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..b1ae5198cdefa1740ccba3436a2796f790a498ff --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-guile +# 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.scm:17 +#, scheme-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/share/doc/gettext/examples/hello-guile/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..da17ce35a06027ba5a591c68337a8e12890da56d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-guile 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Програмата е пусната под процес номер ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..b1da2af67c5ac74e3aae6a081370e69605ea40a5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-guile. +# 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.scm:17 +#, scheme-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/share/doc/gettext/examples/hello-guile/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..88899ab51b32ed6579c349128f84f117b3954417 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Tento program běží jako proces číslo ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/da.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..7e38321ea201e2c1c83191ed71d40bc9c862d9be --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-guile. +# 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Dette program kører som proces nummer ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/de.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..9b26578398632b5e2f20c58ff755a53b2bd9e005 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-guile. +# 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Dieses Programm läuft mit der Prozess-Nummer ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/el.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..2ca67162afb702b1d78ddfa396a92dda08cc0c7a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-guile +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..c2387fbed2ad892c2fbd6e07e503e584c2f05119 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Ĉi tiu programo rulas kiel procez-numero ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/es.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..130e7fcc440bf48c9a537b3fcbd52785029f444f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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-guile-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.scm:15 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.scm:17 +#, scheme-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/share/doc/gettext/examples/hello-guile/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..d03ea4b486cd7ac5f6367dcc11cff8065505df30 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Tämän ohjelman prosessinumero on ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..b55b42750006d8d94240e153449cc8dbe57769c1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.scm:17 +#, scheme-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/share/doc/gettext/examples/hello-guile/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..24ff194a331f3d0a796a4913bb0d65e2c085b721 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-guile. +# 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.scm:17 +#, scheme-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/share/doc/gettext/examples/hello-guile/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..b4b13aa99045dc52a69c1f4c9fee74c932d4c3e9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-guile 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.scm:17 +#, scheme-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/share/doc/gettext/examples/hello-guile/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..46ea9ce622b2a9726a9aaebef2eb300db631906c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-guile 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Ovaj program se izvršava kao proces broj ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..8a04307c0b857f83fc48140b67edacec9328540b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-guile. +# 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.scm:17 +#, scheme-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/share/doc/gettext/examples/hello-guile/po/id.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..d82ea24ac68869930e29cbde62cac590a8269e4b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-guile-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-guile-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.scm:15 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Program ini berjalan sebagai proses nomor ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/it.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..6415b48030ddf6c4a389e75d9da5156ffd0fc284 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-guile. +# 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Questo programma è in esecuzione con numero di processo ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..aa3e124060c6f57fb283541626e9482ca0e91c08 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-guile' 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "このプログラムはプロセス番号 ~D で動いています." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..5601da8d1fa16650b712b47a50175967ab26ac46 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..9411db7dd1962c6f593c956a12e1958a3a4b13d3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-guile' 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Бул программа ~D процесс номери катары иштеп жатат." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..74a74ae9844a6702223f48e146a50b02cf90f751 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-guile +# 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-guile-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.scm:15 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Šī programma darbojas ar procesa numuru ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..adc0f612d02f902c733ae804787a8d43995b109f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/ms.po @@ -0,0 +1,28 @@ +# hello-guile 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Program ini dilaksanakan sebagai proses bernombor ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..575751b5af7a95a15a33f1896214239285653e19 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/mt.po @@ -0,0 +1,27 @@ +# hello-guile-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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.scm:17 +#, scheme-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/share/doc/gettext/examples/hello-guile/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..7974f4b52b88ec947f4f7b84c5733c6ef7cc7860 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-guile 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Dette programmet kjører som prosess nummer ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..9e1b85b87fcdc464e56f6d832bd427457cdb8452 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-guile. +# 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-guile-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.scm:15 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Dit programma draait als proces nummer ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..3321e3a18b8a02b92964b96913736a0f7c37233b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-guile +# 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-guile-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.scm:15 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Dette programmet køyrer som prosess nummer ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..ad20ac46b2d77d1ed15e0f7259bf65ca8685558b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-guile 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Ten program działa jako proces o numerze ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..6937dc698d5e6daf8e25775f2f1f136f62e3d561 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-guile' 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.scm:17 +#, scheme-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/share/doc/gettext/examples/hello-guile/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..ca18bb60488c73e9c26654b54d29f9fa71ccc763 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.scm:17 +#, scheme-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/share/doc/gettext/examples/hello-guile/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..5f9f01f1f1b4d8cc96cbb1685ad7779fe8f5db03 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-guile" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-guile. +# 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-guile”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-guile 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-guile 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-guile 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-guile 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-guile-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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Acest program rulează ca procesul numărul ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..8e990b0024c6c2b302eac177f198ccd508edb6c6 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-guile-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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Эта программа выполняется как процесс под номером ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..da8131833226426f8d3f8b008b99c6111be45de4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-guile 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Tento program beží ako proces s číslom ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..d56660c9c05d885d835cc1c45872bdce9e0a15b1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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-guile-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Ta program teče kot proces številka ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..87db05255a25b1c7fc88d0bf2900e5a090aa04cd --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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-guile-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.scm:15 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Ky program po xhiron si procesi numër ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..e4b7d5ced6e9726d8545010fe3f8ccb1c3a7f21c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-guile. +# 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-guile-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.scm:15 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Овај програм се извршава као процес број ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..0e6aa54d3f9a4336866977ebb9a051f8694f3c70 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-guile. +# 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Detta program kör som process nummer ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..e52540c44c80f9d5822b58acfb78d18bb937802a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "இந்நிரல் செயலாக்க எண் ~D ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..2dabda59b2c14693195525d7e13fad1a08006997 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-guile. +# 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.scm:17 +#, scheme-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/share/doc/gettext/examples/hello-guile/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..851fd024aba21cf322ea8fe6789216130a1061b8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-guile +# 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "Ця програма виконується як процес з номером ~D." diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..50e6709fe84ca84f8eca5f1a53897d701409f9bb --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.scm:17 +#, scheme-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/share/doc/gettext/examples/hello-guile/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..520158680dedf05ce8e3ca55bc52f0e956bcc655 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-guile. +# 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "此程序正以进程号 ~D 运行。" diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..cdb581c7e532e603e0de331f7476e1c3df10bc2a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-guile. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-guile 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.scm:15 +msgid "Hello, world!" +msgstr "你好!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "本程式正在執行中,進程編號為 ~D。" diff --git a/miniconda3/share/doc/gettext/examples/hello-guile/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-guile/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..2f44abe4e58df0f8fa17c1711e099ab3759d99d3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-guile/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-guile. +# 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-guile 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.scm:15 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.scm:17 +#, scheme-format +msgid "This program is running as process number ~D." +msgstr "本程式正在執行,行程編號為 ~D。" diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/BUGS b/miniconda3/share/doc/gettext/examples/hello-java-awt/BUGS new file mode 100644 index 0000000000000000000000000000000000000000..42eb7684750eb08c6e034f4a050715343a2ee60b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/BUGS @@ -0,0 +1,5 @@ +Correct display of characters depends on the JVM and its locale-dependent font +configuration. For example, on Linux/x86, in + Sun JDK 1.3.1 de_DE works - zh_CN doesn't work + IBM JDK 1.3.0 de_DE works - ja_JP, sr_YU, zh_CN don't work + Sun JDK 1.4.2 de_DE, ja_JP work - sr_YU, zh_CN don't work diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/Hello.java b/miniconda3/share/doc/gettext/examples/hello-java-awt/Hello.java new file mode 100644 index 0000000000000000000000000000000000000000..e10202b39262b51b5b794eede9e883808b7b572d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/Hello.java @@ -0,0 +1,66 @@ +// Example for use of GNU gettext. +// This file is in the public domain. +// +// Source code of the Java/AWT program. + +import java.util.*; +import java.io.*; +import java.text.*; +import java.awt.*; +import java.awt.event.*; +import gnu.gettext.*; + +public class Hello { + public static void main (String[] args) { + ResourceBundle catalog = ResourceBundle.getBundle("hello-java-awt"); + Frame frame = new Frame("Hello example"); + frame.addWindowListener( + new WindowAdapter() { + public void windowClosing (WindowEvent event) { + System.exit(0); + } + }); + Label label1 = new Label(GettextResource.gettext(catalog,"Hello, world!")); + Label label2 = + new Label( + MessageFormat.format( + GettextResource.gettext(catalog, + "This program is running as process number {0}."), + new Object[] { getPid() })); + Button button = new Button("OK"); + button.addActionListener( + new ActionListener() { + public void actionPerformed (ActionEvent event) { + System.exit(0); + } + }); + Container labels = new Container(); + labels.setLayout(new GridLayout(2, 1)); + labels.add(label1); + labels.add(label2); + Container buttons = new Container(); + buttons.setLayout(new FlowLayout(FlowLayout.RIGHT)); + buttons.add(button); + frame.setLayout(new BorderLayout()); + frame.add(labels, BorderLayout.CENTER); + frame.add(buttons, BorderLayout.SOUTH); + frame.pack(); + frame.setVisible(true); + } + + /* Return the process ID of the current process. */ + private static String getPid () { + try { + String[] args = new String[] { "/bin/sh", "-c", "echo $PPID" }; + Process p = Runtime.getRuntime().exec(args); + InputStream p_out = p.getInputStream(); + String s = (new BufferedReader(new InputStreamReader(p_out))).readLine(); + p.destroy(); + if (s != null) + return s; + } catch (IOException e) { + e.printStackTrace(); + } + return "???"; + } +} diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/INSTALL b/miniconda3/share/doc/gettext/examples/hello-java-awt/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..693f30244ddf6952180d766c29d4cb6a78659b06 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/INSTALL @@ -0,0 +1,11 @@ +This example relies on: + - a Java implementation with AWT + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-java-awt/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..a567df6909d035a3d239a05bd0aea49598d57811 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/Makefile.am @@ -0,0 +1,85 @@ +# 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_JAVAPROGRAMS = hello + +# The source files of the 'hello' program. +hello_SOURCES = Hello.java +hello_CLASSES = Hello.class + +# The entry point of the 'hello' program. +hello_MAINCLASS = Hello + +# The link dependencies of the 'hello' program. +hello_JAVALIBS = @LIBINTL_JAR@ + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh + + +# ----------------- General rules for compiling Java programs ----------------- + +jardir = $(datadir)/$(PACKAGE) +pkgdatadir = $(datadir)/$(PACKAGE) +pkglibdir = $(libdir)/$(PACKAGE) + +JAR = @JAR@ +JAVACOMP = $(SHELL) javacomp.sh + +EXTRA_DIST += $(hello_SOURCES) +CLEANFILES = +DISTCLEANFILES = javacomp.sh javaexec.sh + + +# Rules for compiling Java programs as jar libraries. +# This is the preferred mode during development, because you can easily test +# the program without installing it, simply by doing "java -jar hello.jar". + +all-local: hello.jar hello.sh + +hello.jar: $(hello_CLASSES) + { echo "Manifest-Version: 1.0"; echo "Main-Class: $(hello_MAINCLASS)"; echo 'Class-Path: @LIBINTL_JAR@'; } > Manifest.mf + $(JAR) cfm $@ Manifest.mf Hello*.class + rm -f Manifest.mf + abs_jar=`pwd`/$@; (cd po && $(MAKE)) && catalogs=`GNUMAKEFLAGS=--no-print-directory $(MAKE) -s -C po echo-catalogs`; test -n "$$catalogs" && (cd $(srcdir)/po && $(JAR) uf "$$abs_jar" $$catalogs) || { rm -f $@ jartmp*; exit 1; } + +Hello.class: $(srcdir)/Hello.java + CLASSPATH=.@CLASSPATH_SEPARATOR@$(hello_JAVALIBS) $(JAVACOMP) -d . $(srcdir)/Hello.java + +hello.sh: + { echo '#!/bin/sh'; \ + echo "CLASSPATH='$(jardir)/hello.jar@CLASSPATH_SEPARATOR@$(hello_JAVALIBS)'\$${CLASSPATH+\"@CLASSPATH_SEPARATOR@\$$CLASSPATH\"}"; \ + echo "export CLASSPATH"; \ + echo "exec /bin/sh '$(pkgdatadir)/javaexec.sh' $(hello_MAINCLASS) \"\$$@\""; \ + } > $@ + +install-exec-local: all-local + $(MKDIR_P) $(DESTDIR)$(bindir) + $(INSTALL_SCRIPT) hello.sh $(DESTDIR)$(bindir)/hello + +install-data-local: all-local + $(MKDIR_P) $(DESTDIR)$(jardir) + $(INSTALL_DATA) hello.jar $(DESTDIR)$(jardir)/hello.jar + $(MKDIR_P) $(DESTDIR)$(pkgdatadir) + $(INSTALL_DATA) javaexec.sh $(DESTDIR)$(pkgdatadir)/javaexec.sh + +installdirs-local: + $(MKDIR_P) $(DESTDIR)$(jardir) + $(MKDIR_P) $(DESTDIR)$(pkgdatadir) + +uninstall-local: + rm -f $(DESTDIR)$(bindir)/hello + rm -f $(DESTDIR)$(jardir)/hello.jar + rm -f $(DESTDIR)$(pkgdatadir)/javaexec.sh + +CLEANFILES += hello.jar Hello*.class Manifest.mf hello.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-java-awt/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..d38a4183cc35c0391f5428f33d859d9bb49e0cda --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/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 +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/javacomp.m4 +rm -f m4/javaexec.m4 +rm -f javacomp.sh.in +rm -f javaexec.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 po/*.pot +rm -f po/stamp-po +rm -f po/hello-java-awt*.properties diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-java-awt/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..2d62267d817a2890c6f719354b8450b91b2e5f33 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/autogen.sh @@ -0,0 +1,46 @@ +#!/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}/javacomp.m4 m4/javacomp.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/gettext-tools/gnulib-m4}/javaexec.m4 m4/javaexec.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/build-aux}/javacomp.sh.in javacomp.sh.in +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/build-aux}/javaexec.sh.in javaexec.sh.in + +aclocal -I m4 + +autoconf + +automake -a -c + +./configure +cd po +make update-po +cd .. +make distclean diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/configure.ac b/miniconda3/share/doc/gettext/examples/hello-java-awt/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..b625e465e8a7a4b086cb6f2355d827464d59dc15 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/configure.ac @@ -0,0 +1,53 @@ +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-java-awt], [0]) +AC_CONFIG_SRCDIR([Hello.java]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Check whether we can execute Java programs. +gt_JAVAEXEC([TestAWT], [$srcdir/m4]) +dnl Check whether we can build Java programs. +gt_JAVACOMP([1.8]) +AC_CHECK_PROG([JAR], [jar], [jar]) +if test -n "$HAVE_JAVACOMP" && test -n "$JAR"; then + BUILDJAVA=yes +else + BUILDJAVA=no +fi +AC_SUBST([BUILDJAVA]) +if test -n "$HAVE_JAVAEXEC" && test "$BUILDJAVA" = yes; then + TESTJAVA=yes +else + TESTJAVA=no +fi +AC_SUBST([TESTJAVA]) + +dnl Checks for compiler output filename suffixes. +AC_OBJEXT +AC_EXEEXT + +dnl Checks for needed libraries. +AM_PATH_PROG_WITH_TEST([GETTEXT_WITH_LIBINTL_JAR], [gettext], + [{ basedir=`echo "$ac_dir" | sed -e 's,/bin$,,'`; test -r "$basedir"/share/gettext/libintl.jar; }]) +if test -z "$GETTEXT_WITH_LIBINTL_JAR"; then + echo "Required library libintl.jar not found." 1>&2 + exit 1 +fi +changequote(,)dnl +basedir=`echo "$GETTEXT_WITH_LIBINTL_JAR" | sed -e 's,/[^/]*$,,' | sed -e 's,/bin$,,'` +changequote([, ])dnl +LIBINTL_JAR="$basedir"/share/gettext/libintl.jar +AC_SUBST([LIBINTL_JAR]) + +dnl Support for the po directory. +AM_PO_SUBDIRS + +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([javacomp.sh]) +AC_CONFIG_FILES([javaexec.sh]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-java-awt/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..dea6fde278eb5322c2f9b805bfcc117386271490 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/m4/Makefile.am @@ -0,0 +1,3 @@ +EXTRA_DIST = \ + nls.m4 po.m4 \ + javacomp.m4 javaexec.m4 TestAWT.java TestAWT.class diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/m4/TestAWT.class b/miniconda3/share/doc/gettext/examples/hello-java-awt/m4/TestAWT.class new file mode 100644 index 0000000000000000000000000000000000000000..1c993c51eeedc42ef390988064abc493c36d649b Binary files /dev/null and b/miniconda3/share/doc/gettext/examples/hello-java-awt/m4/TestAWT.class differ diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/m4/TestAWT.java b/miniconda3/share/doc/gettext/examples/hello-java-awt/m4/TestAWT.java new file mode 100644 index 0000000000000000000000000000000000000000..5c403225ebf21c215615e4b144b8e430f861a3a7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/m4/TestAWT.java @@ -0,0 +1,15 @@ +// Test for working AWT. +// This file is in the public domain. +/** + * @author Bruno Haible + */ +public class TestAWT { + public static void main (String[] args) { + try { + java.awt.Toolkit.getDefaultToolkit(); + } catch (Throwable e) { + System.exit(1); + } + System.exit(0); + } +} diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/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/share/doc/gettext/examples/hello-java-awt/po/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..0e41b794aa8672803bb9fc1a4b5777743690d23f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/Makefile.am @@ -0,0 +1,394 @@ +# 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.java + +# 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 = + +MSGMERGE = @MSGMERGE@ +MSGMERGE_UPDATE = @MSGMERGE@ --update +MSGMERGE_FOR_MSGFMT_OPTION = @MSGMERGE_FOR_MSGFMT_OPTION@ +MSGCAT = msgcat +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)/$(DOMAIN)_$(lang).properties) +PROPERTIESFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$(DOMAIN)_$$lang.properties; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(DOMAIN)_$(lang).class) +CLASSFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$(DOMAIN)_$$lang.class; 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), $(DOMAIN)_$(lang).properties) +CATALOGS != for lang in $(INST_LINGUAS); do echo $(DOMAIN)_$$lang.properties; done + +SUFFIXES = .po .nop .po-create .po-update + +# The .pot file, stamp-po, .po files, and .properties or .class 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: $(srcdir)/stamp-po + +# $(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 $(PROPERTIESFILES) 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 || \ + $(MAKE) update-properties + @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 + + +html ID: + +MOSTLYCLEANFILES = +MOSTLYCLEANFILES += stamp-poT +MOSTLYCLEANFILES += core core.* *.stackdump $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po + +MAINTAINERCLEANFILES = \ + $(DOMAIN).pot stamp-po \ + $(DOMAIN).properties $(PROPERTIESFILES) $(CLASSFILES) + +EXTRA_DIST = remove-potcdate.sed LINGUAS $(POFILES) $(DOMAIN).properties $(PROPERTIESFILES) + +# 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-properties + +# 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): + +# During .po -> .properties or .class 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. + +update-properties: Makefile $(srcdir)/$(DOMAIN).pot $(POFILES) + @echo "$(MSGINIT) -i $(srcdir)/$(DOMAIN).pot --no-translator -l en --properties-output -o $(srcdir)/$(DOMAIN).properties"; \ + $(MSGINIT) -i $(srcdir)/$(DOMAIN).pot --no-translator -l en --properties-output -o $(DOMAIN).properties || { rm -f $(DOMAIN).properties; exit 1; } +# Move $(DOMAIN).properties into $(srcdir). But don't provoke a gratuitous error +# in a VPATH build with read-only $(srcdir). + @if test '$(srcdir)' != .; then \ + if test -f $(srcdir)/$(DOMAIN).properties && cmp $(DOMAIN).properties $(srcdir)/$(DOMAIN).properties >/dev/null; then \ + rm -f $(DOMAIN).properties; \ + else \ + mv -f $(DOMAIN).properties $(srcdir)/$(DOMAIN).properties; \ + fi; \ + fi + @for f in $(POFILES); do \ + lang=`echo $$f | sed -e 's,.*/,,' -e 's,\.po$$,,'`; \ + echo "$(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $(srcdir)/$${lang}.po $(srcdir)/$(DOMAIN).pot"; \ + $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $(srcdir)/$${lang}.po $(srcdir)/$(DOMAIN).pot || exit 1; \ + echo "$(GMSGFMT) -c --statistics --verbose -o /dev/null $${lang}.1po"; \ + $(GMSGFMT) -c --statistics --verbose -o /dev/null $${lang}.1po || exit 1; \ + echo "$(MSGCAT) --properties-output -o $(srcdir)/$(DOMAIN)_$$lang.properties $${lang}.1po"; \ + $(MSGCAT) --properties-output -o $(DOMAIN)_$$lang.properties.tmp $${lang}.1po || exit 1; \ + if test '$(srcdir)' = .; then \ + mv -f $(DOMAIN)_$$lang.properties.tmp $(DOMAIN)_$$lang.properties || exit 1; \ + else \ + if test -f $(srcdir)/$(DOMAIN)_$$lang.properties && cmp $(DOMAIN)_$$lang.properties.tmp $(srcdir)/$(DOMAIN)_$$lang.properties >/dev/null; then \ + rm -f $(DOMAIN)_$$lang.properties.tmp; \ + else \ + mv -f $(DOMAIN)_$$lang.properties.tmp $(srcdir)/$(DOMAIN)_$$lang.properties || exit 1; \ + fi; \ + fi; \ + rm -f $${lang}.1po; \ + done + +# Alternatively, we could create classes instead of properties files. +update-classes: Makefile $(srcdir)/$(DOMAIN).pot $(POFILES) + @echo "$(MSGINIT) -i $(srcdir)/$(DOMAIN).pot --no-translator -l en --properties-output -o $(srcdir)/$(DOMAIN).properties"; \ + $(MSGINIT) -i $(srcdir)/$(DOMAIN).pot --no-translator -l en --properties-output -o $(DOMAIN).properties || { rm -f $(DOMAIN).properties; exit 1; } +# Move $(DOMAIN).properties into $(srcdir). But don't provoke a gratuitous error +# in a VPATH build with read-only $(srcdir). + @if test '$(srcdir)' != .; then \ + if test -f $(srcdir)/$(DOMAIN).properties && cmp $(DOMAIN).properties $(srcdir)/$(DOMAIN).properties >/dev/null; then \ + rm -f $(DOMAIN).properties; \ + else \ + mv -f $(DOMAIN).properties $(srcdir)/$(DOMAIN).properties; \ + fi; \ + fi + @for f in $(POFILES); do \ + lang=`echo $$f | sed -e 's,.*/,,' -e 's,\.po$$,,'`; \ + echo "$(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $(srcdir)/$${lang}.po $(srcdir)/$(DOMAIN).pot"; \ + $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $(srcdir)/$${lang}.po $(srcdir)/$(DOMAIN).pot || exit 1; \ + echo "$(GMSGFMT) -c --statistics --verbose -j -d $(srcdir) -r $(DOMAIN) -l $${lang} $${lang}.1po"; \ + $(GMSGFMT) -c --statistics --verbose -j -d . -r $(DOMAIN) -l $${lang} $${lang}.1po || exit 1; \ + if test '$(srcdir)' != .; then \ + if test -f $(srcdir)/$(DOMAIN)_$$lang.class && cmp $(DOMAIN)_$$lang.class $(srcdir)/$(DOMAIN)_$$lang.class >/dev/null; then \ + rm -f $(DOMAIN)_$$lang.class; \ + else \ + mv -f $(DOMAIN)_$$lang.class $(srcdir)/$(DOMAIN)_$$lang.class || exit 1; \ + fi; \ + fi; \ + rm -f $${lang}.1po; \ + done + +echo-catalogs: +# When packaging the catalogs for installation, include the fallback catalog always. + @echo $(DOMAIN).properties $(CATALOGS) diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/af.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..778e1a5bc7300e74b6968700fb271ad95aeec442 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/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-java-awt-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.java:23 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Hierdie program loop as prosesnommer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..e97d29315f255454bac339c87f5b3a07c9052107 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-java-awt +# 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: Hello.java:28 +#, java-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/share/doc/gettext/examples/hello-java-awt/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..869c35888b1d6dd2d461eb3903169ac793d59135 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-java-awt 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Програмата е пусната под процес номер {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..ad9ad41d86916bab2cda4bafa1e510b34a0b3491 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-java-awt. +# 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: Hello.java:28 +#, java-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/share/doc/gettext/examples/hello-java-awt/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..8c85d281297f34f3a427fb286801042a16b7f4c8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Tento program běží jako proces číslo {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/da.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..ca7dbc2a141c4c9d5869195ede9d8fa50fe0f582 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-java-awt. +# 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dette program kører som proces nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/de.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..e9aa8ce54dd39a2ca2486b4a1fb838aedad1d96b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-java-awt. +# 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dieses Programm läuft mit der Prozess-Nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/el.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..fabad8b0af9d7ecb80c6196cba3a8eb940f9f5f3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-java-awt +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..4b9db7703786d6ca549bda3e126507925cd460c4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ĉi tiu programo rulas kiel procez-numero {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/es.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..a3d062e449004fbb879f62e713c9de6b8aed9741 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/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-java-awt-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.java:23 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: Hello.java:28 +#, java-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/share/doc/gettext/examples/hello-java-awt/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..65cc0446ef3f17f8693702e9b480d4b409469b12 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Tämän ohjelman prosessinumero on {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..db7799746dff3f5229a02fef1dbb43dfd5fa28b7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: Hello.java:28 +#, java-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/share/doc/gettext/examples/hello-java-awt/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..a7607554b764917cd313570ac56ee2a87ed91b2c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-java-awt. +# 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: Hello.java:28 +#, java-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/share/doc/gettext/examples/hello-java-awt/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..bc6a0a50cb96ddf73835b5e02ee8cd929e4fa16a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-java-awt 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: Hello.java:28 +#, java-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/share/doc/gettext/examples/hello-java-awt/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..ac27e1534a04a4d792efcdcd8c86281dd27a1d73 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-java-awt 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ovaj program se izvršava kao proces broj {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..ec0071c63ceb35459796c8d146d7179b38de8ea8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-java-awt. +# 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: Hello.java:28 +#, java-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/share/doc/gettext/examples/hello-java-awt/po/id.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..3f64ae5633206c35cae2d0c7831dd2b304613f60 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-java-awt-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-java-awt-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.java:23 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Program ini berjalan sebagai proses nomor {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/it.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..7b63834f4e500b86ece19c80eb39d0aca57ba2d7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-java-awt. +# 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Questo programma è in esecuzione con numero di processo {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..09d9f2bc8b3267d4d276f08a8b9ebbaf789eacb8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-java-awt' 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "このプログラムはプロセス番号 {0} で動いています." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..ec6eb8e0ca70cbf6c5f106303147c703d339bd46 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..0991f8ab2b0aecccde6b80378c66c0668fcd4d70 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-java-awt' 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Бул программа {0} процесс номери катары иштеп жатат." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..709a07dff1f89926a0f99d4f213944fca30013f3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-java-awt +# 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-java-awt-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.java:23 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Šī programma darbojas ar procesa numuru {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..c7f720d841c3f866b5c5bc42747e76073b380e61 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ms.po @@ -0,0 +1,28 @@ +# hello-java-awt 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Program ini dilaksanakan sebagai proses bernombor {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..93bf50dad01816e1a3e2dd6188fe826414b8f838 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/mt.po @@ -0,0 +1,27 @@ +# hello-java-awt-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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: Hello.java:28 +#, java-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/share/doc/gettext/examples/hello-java-awt/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..a43392a85b02b9471f43a67bcfa34bf0cfddfa3f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-java-awt 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dette programmet kjører som prosess nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..239b48660ecd8c3c5e986b9b55e23ef79fd5c360 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-java-awt. +# 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-java-awt-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.java:23 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dit programma draait als proces nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..f5faf238d7b78df9dfdb44e01e272c74045761a7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-java-awt +# 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-java-awt-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.java:23 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dette programmet køyrer som prosess nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..3b08927636749c17dc9b0012f74deb5b17d34658 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-java-awt 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ten program działa jako proces o numerze {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..faf9004fb6824c8131afef12eae2de7fee462780 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-java-awt' 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: Hello.java:28 +#, java-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/share/doc/gettext/examples/hello-java-awt/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..d56b72fa4fc3ce806066b70c20e49b4e0cef3aed --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: Hello.java:28 +#, java-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/share/doc/gettext/examples/hello-java-awt/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..f70539cd602a244d99a3deb772c88f5218b1f309 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-java-awt" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-java-awt. +# 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-java-awt”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-java-awt 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-java-awt 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-java-awt 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-java-awt 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-java-awt-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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Acest program rulează ca procesul numărul {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..2ea99c352d3204a9bebaac3fabf7699288a9db9a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-java-awt-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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Эта программа выполняется как процесс под номером {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..41936ac456ad241c92550e5e962d50bdc569827f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-java-awt 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Tento program beží ako proces s číslom {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..470ea9d046794ee787301c688ec85c13371a9141 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/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-java-awt-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ta program teče kot proces številka {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..215b4c2d15e11b27a6788dca80fcf61e54ff9f9b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/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-java-awt-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.java:23 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ky program po xhiron si procesi numër {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..8593a9d5333a4d7eed811b37551c00ec55394f8f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-java-awt. +# 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-java-awt-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.java:23 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Овај програм се извршава као процес број {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..cfed6dda8d30a5813dd0bb163cc55e2148d0510d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-java-awt. +# 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Detta program kör som process nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..804737d2924075db1f9dc7c5b58e2ebc91a06dcf --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "இந்நிரல் செயலாக்க எண் {0} ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..68d9cace4b5295ff9ecc642948908f5b139a331c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-java-awt. +# 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: Hello.java:28 +#, java-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/share/doc/gettext/examples/hello-java-awt/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..2f052de2d3c5a2cccabd5b511b23f2a80c81b9b9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-java-awt +# 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ця програма виконується як процес з номером {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..fc575cb93c3ec5a5158c4f8ef9370679e81b30c9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: Hello.java:28 +#, java-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/share/doc/gettext/examples/hello-java-awt/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..6c374dc61b87fb8e1ef9128206fc99884422624e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-java-awt. +# 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "此程序正以进程号 {0} 运行。" diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..4612d8b857467579ed09263cd1b3ac3eaed03248 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-java-awt. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "你好!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "本程式正在執行中,進程編號為 {0}。" diff --git a/miniconda3/share/doc/gettext/examples/hello-java-awt/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..cf3e6335a18dc2c514113fa8a21e9cc5bd04a381 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-awt/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-java-awt. +# 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-java-awt 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.java:23 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: Hello.java:28 +#, java-format +msgid "This program is running as process number {0}." +msgstr "本程式正在執行,行程編號為 {0}。" diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/BUGS b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/BUGS new file mode 100644 index 0000000000000000000000000000000000000000..c0053e9eeabaccdb34f468802f46117d8c2b6522 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/BUGS @@ -0,0 +1,2 @@ +Qt looks only at the LANG and LC_ALL values and ignores LC_MESSAGES if LC_ALL is unset. +Therefore, to make it work, you have to set LC_ALL to the same value as LC_MESSAGES. diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/Hello.java b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/Hello.java new file mode 100644 index 0000000000000000000000000000000000000000..9fc8baa39212592a92ed51c5395cf51055a6ba74 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/Hello.java @@ -0,0 +1,73 @@ +// Example for use of GNU gettext. +// This file is in the public domain. +// +// Source code of the Java/QtJambi program. + +import java.util.*; +import java.io.*; +import java.text.*; +import com.trolltech.qt.core.*; +import com.trolltech.qt.gui.*; +import gnu.gettext.*; + +public class Hello { + public static void main (String[] args) { + ResourceBundle catalog = ResourceBundle.getBundle("hello-java-qtjambi"); + + QApplication.initialize(args); + + QMainWindow window = new QMainWindow(); + window.setWindowTitle("Hello example"); + + QWidget panel = new QWidget(); + QVBoxLayout panelLayout = new QVBoxLayout(); + panelLayout.setSpacing(2); + + QLabel label1 = + new QLabel(GettextResource.gettext(catalog,"Hello, world!")); + panelLayout.addWidget(label1); + + QLabel label2 = + new QLabel( + MessageFormat.format( + GettextResource.gettext(catalog, + "This program is running as process number {0}."), + new Object[] { getPid() })); + panelLayout.addWidget(label2); + + QWidget buttonBar = new QWidget(); + QHBoxLayout buttonBarLayout = new QHBoxLayout(); + QWidget filler = new QWidget(); // makes the button right-aligned + buttonBarLayout.addWidget(filler); + QPushButton button = new QPushButton("OK"); + button.setMaximumWidth(button.sizeHint().width()+20); + button.clicked.connect(window, "close()"); + buttonBarLayout.addWidget(button); + buttonBar.setLayout(buttonBarLayout); + panelLayout.addWidget(buttonBar); + + panel.setLayout(panelLayout); + + window.setCentralWidget(panel); + + window.show(); + + QApplication.exec(); + } + + /* Return the process ID of the current process. */ + private static String getPid () { + try { + String[] args = new String[] { "/bin/sh", "-c", "echo $PPID" }; + Process p = Runtime.getRuntime().exec(args); + InputStream p_out = p.getInputStream(); + String s = (new BufferedReader(new InputStreamReader(p_out))).readLine(); + p.destroy(); + if (s != null) + return s; + } catch (IOException e) { + e.printStackTrace(); + } + return "???"; + } +} diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/INSTALL b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..fd166ed3bb76d41328c5fe9b35da2afb21a66562 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/INSTALL @@ -0,0 +1,17 @@ +This example relies on: + - a recent Java implementation + (i.e. when using Sun's JDK: at least JDK 1.5) + - the Qt4/Java binding (libqtjambi) + - Qt4 (libQtGui, libQtCore) and its dependencies: libpng, zlib (libz) + - the C++ runtime libraries (libstdc++) + +Installation: + ./autogen.sh + export LD_LIBRARY_PATH= + export CLASSPATH=.:.../qtjambi.jar:.../libintl.jar + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..2e80750a9e13591db5076ec7955a7f4c5c2f7cb4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/Makefile.am @@ -0,0 +1,85 @@ +# 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_JAVAPROGRAMS = hello + +# The source files of the 'hello' program. +hello_SOURCES = Hello.java +hello_CLASSES = Hello.class + +# The entry point of the 'hello' program. +hello_MAINCLASS = Hello + +# The link dependencies of the 'hello' program. +hello_JAVALIBS = @LIBINTL_JAR@ + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh + + +# ----------------- General rules for compiling Java programs ----------------- + +jardir = $(datadir)/$(PACKAGE) +pkgdatadir = $(datadir)/$(PACKAGE) +pkglibdir = $(libdir)/$(PACKAGE) + +JAR = @JAR@ +JAVACOMP = $(SHELL) javacomp.sh + +EXTRA_DIST += $(hello_SOURCES) +CLEANFILES = +DISTCLEANFILES = javacomp.sh javaexec.sh + + +# Rules for compiling Java programs as jar libraries. +# This is the preferred mode during development, because you can easily test +# the program without installing it, simply by doing "java -jar hello.jar". + +all-local: hello.jar hello.sh + +hello.jar: $(hello_CLASSES) + { echo "Manifest-Version: 1.0"; echo "Main-Class: $(hello_MAINCLASS)"; echo 'Class-Path: @LIBINTL_JAR@'; } > Manifest.mf + $(JAR) cfm $@ Manifest.mf Hello*.class + rm -f Manifest.mf + abs_jar=`pwd`/$@; (cd po && $(MAKE)) && catalogs=`GNUMAKEFLAGS=--no-print-directory $(MAKE) -s -C po echo-catalogs`; test -n "$$catalogs" && (cd $(srcdir)/po && $(JAR) uf "$$abs_jar" $$catalogs) || { rm -f $@ jartmp*; exit 1; } + +Hello.class: $(srcdir)/Hello.java + CLASSPATH=.@CLASSPATH_SEPARATOR@$(hello_JAVALIBS)@CLASSPATH_SEPARATOR@$$CLASSPATH $(JAVACOMP) -d . $(srcdir)/Hello.java + +hello.sh: + { echo '#!/bin/sh'; \ + echo "CLASSPATH='$(jardir)/hello.jar@CLASSPATH_SEPARATOR@$(hello_JAVALIBS)'\$${CLASSPATH+\"@CLASSPATH_SEPARATOR@\$$CLASSPATH\"}"; \ + echo "export CLASSPATH"; \ + echo "exec /bin/sh '$(pkgdatadir)/javaexec.sh' $(hello_MAINCLASS) \"\$$@\""; \ + } > $@ + +install-exec-local: all-local + $(MKDIR_P) $(DESTDIR)$(bindir) + $(INSTALL_SCRIPT) hello.sh $(DESTDIR)$(bindir)/hello + +install-data-local: all-local + $(MKDIR_P) $(DESTDIR)$(jardir) + $(INSTALL_DATA) hello.jar $(DESTDIR)$(jardir)/hello.jar + $(MKDIR_P) $(DESTDIR)$(pkgdatadir) + $(INSTALL_DATA) javaexec.sh $(DESTDIR)$(pkgdatadir)/javaexec.sh + +installdirs-local: + $(MKDIR_P) $(DESTDIR)$(jardir) + $(MKDIR_P) $(DESTDIR)$(pkgdatadir) + +uninstall-local: + rm -f $(DESTDIR)$(bindir)/hello + rm -f $(DESTDIR)$(jardir)/hello.jar + rm -f $(DESTDIR)$(pkgdatadir)/javaexec.sh + +CLEANFILES += hello.jar Hello*.class Manifest.mf hello.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..956ca531ca187f4e95c005e1bfd3673529e079a7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/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 +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/javacomp.m4 +rm -f m4/javaexec.m4 +rm -f javacomp.sh.in +rm -f javaexec.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 po/*.pot +rm -f po/stamp-po +rm -f po/hello-java-qtjambi*.properties diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..2d62267d817a2890c6f719354b8450b91b2e5f33 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/autogen.sh @@ -0,0 +1,46 @@ +#!/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}/javacomp.m4 m4/javacomp.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/gettext-tools/gnulib-m4}/javaexec.m4 m4/javaexec.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/build-aux}/javacomp.sh.in javacomp.sh.in +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/build-aux}/javaexec.sh.in javaexec.sh.in + +aclocal -I m4 + +autoconf + +automake -a -c + +./configure +cd po +make update-po +cd .. +make distclean diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/configure.ac b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..0d4a23cdd60cb380792ce4d84fb14371f2a01a8d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/configure.ac @@ -0,0 +1,53 @@ +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-java-qtjambi], [0]) +AC_CONFIG_SRCDIR([Hello.java]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Check whether we can execute Java programs. +gt_JAVAEXEC([Test15], [$srcdir/m4]) +dnl Check whether we can build Java programs. +gt_JAVACOMP([1.5], [1.6]) +AC_CHECK_PROG([JAR], [jar], [jar]) +if test -n "$HAVE_JAVACOMP" && test -n "$JAR"; then + BUILDJAVA=yes +else + BUILDJAVA=no +fi +AC_SUBST([BUILDJAVA]) +if test -n "$HAVE_JAVAEXEC" && test "$BUILDJAVA" = yes; then + TESTJAVA=yes +else + TESTJAVA=no +fi +AC_SUBST([TESTJAVA]) + +dnl Checks for compiler output filename suffixes. +AC_OBJEXT +AC_EXEEXT + +dnl Checks for needed libraries. +AM_PATH_PROG_WITH_TEST([GETTEXT_WITH_LIBINTL_JAR], [gettext], + [{ basedir=`echo "$ac_dir" | sed -e 's,/bin$,,'`; test -r "$basedir"/share/gettext/libintl.jar; }]) +if test -z "$GETTEXT_WITH_LIBINTL_JAR"; then + echo "Required library libintl.jar not found." 1>&2 + exit 1 +fi +changequote(,)dnl +basedir=`echo "$GETTEXT_WITH_LIBINTL_JAR" | sed -e 's,/[^/]*$,,' | sed -e 's,/bin$,,'` +changequote([, ])dnl +LIBINTL_JAR="$basedir"/share/gettext/libintl.jar +AC_SUBST([LIBINTL_JAR]) + +dnl Support for the po directory. +AM_PO_SUBDIRS + +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([javacomp.sh]) +AC_CONFIG_FILES([javaexec.sh]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..1beb8a92658b8f0d294b690010c73b305a691877 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/m4/Makefile.am @@ -0,0 +1,3 @@ +EXTRA_DIST = \ + nls.m4 po.m4 \ + javacomp.m4 javaexec.m4 Test15.java Test15.class diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/m4/Test15.class b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/m4/Test15.class new file mode 100644 index 0000000000000000000000000000000000000000..17812cc32b2b7d14738b2675e19e0a216660730b Binary files /dev/null and b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/m4/Test15.class differ diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/m4/Test15.java b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/m4/Test15.java new file mode 100644 index 0000000000000000000000000000000000000000..fce492536604afc578d2bbf73dc3c256378ee0c5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/m4/Test15.java @@ -0,0 +1,30 @@ +// Test for Java 1.5 or newer. +// This file is in the public domain. +import java.util.*; +/** + * @author Bruno Haible + */ +public class Test15 { + public static void main (String[] args) { + try { + foo(); + } catch (Throwable e) { + System.exit(1); + } + // Check the JVM version is at least 1.5. + String version = System.getProperty("java.specification.version"); + int i = 0; + while (i < version.length() + && (Character.isDigit(version.charAt(i)) || version.charAt(i)=='.')) + i++; + float fversion = Float.valueOf(version.substring(0,i)); + if (!(fversion >= 1.5f)) System.exit(1); + // Check the VM is not GNU libgcj. + String vm = System.getProperty("java.vm.name"); + if (vm.startsWith("GNU")) System.exit(1); + System.exit(0); + } + private static List foo() { + return new ArrayList(); + } +} diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/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/share/doc/gettext/examples/hello-java-qtjambi/po/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..0e41b794aa8672803bb9fc1a4b5777743690d23f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/Makefile.am @@ -0,0 +1,394 @@ +# 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.java + +# 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 = + +MSGMERGE = @MSGMERGE@ +MSGMERGE_UPDATE = @MSGMERGE@ --update +MSGMERGE_FOR_MSGFMT_OPTION = @MSGMERGE_FOR_MSGFMT_OPTION@ +MSGCAT = msgcat +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)/$(DOMAIN)_$(lang).properties) +PROPERTIESFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$(DOMAIN)_$$lang.properties; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(DOMAIN)_$(lang).class) +CLASSFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$(DOMAIN)_$$lang.class; 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), $(DOMAIN)_$(lang).properties) +CATALOGS != for lang in $(INST_LINGUAS); do echo $(DOMAIN)_$$lang.properties; done + +SUFFIXES = .po .nop .po-create .po-update + +# The .pot file, stamp-po, .po files, and .properties or .class 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: $(srcdir)/stamp-po + +# $(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 $(PROPERTIESFILES) 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 || \ + $(MAKE) update-properties + @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 + + +html ID: + +MOSTLYCLEANFILES = +MOSTLYCLEANFILES += stamp-poT +MOSTLYCLEANFILES += core core.* *.stackdump $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po + +MAINTAINERCLEANFILES = \ + $(DOMAIN).pot stamp-po \ + $(DOMAIN).properties $(PROPERTIESFILES) $(CLASSFILES) + +EXTRA_DIST = remove-potcdate.sed LINGUAS $(POFILES) $(DOMAIN).properties $(PROPERTIESFILES) + +# 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-properties + +# 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): + +# During .po -> .properties or .class 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. + +update-properties: Makefile $(srcdir)/$(DOMAIN).pot $(POFILES) + @echo "$(MSGINIT) -i $(srcdir)/$(DOMAIN).pot --no-translator -l en --properties-output -o $(srcdir)/$(DOMAIN).properties"; \ + $(MSGINIT) -i $(srcdir)/$(DOMAIN).pot --no-translator -l en --properties-output -o $(DOMAIN).properties || { rm -f $(DOMAIN).properties; exit 1; } +# Move $(DOMAIN).properties into $(srcdir). But don't provoke a gratuitous error +# in a VPATH build with read-only $(srcdir). + @if test '$(srcdir)' != .; then \ + if test -f $(srcdir)/$(DOMAIN).properties && cmp $(DOMAIN).properties $(srcdir)/$(DOMAIN).properties >/dev/null; then \ + rm -f $(DOMAIN).properties; \ + else \ + mv -f $(DOMAIN).properties $(srcdir)/$(DOMAIN).properties; \ + fi; \ + fi + @for f in $(POFILES); do \ + lang=`echo $$f | sed -e 's,.*/,,' -e 's,\.po$$,,'`; \ + echo "$(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $(srcdir)/$${lang}.po $(srcdir)/$(DOMAIN).pot"; \ + $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $(srcdir)/$${lang}.po $(srcdir)/$(DOMAIN).pot || exit 1; \ + echo "$(GMSGFMT) -c --statistics --verbose -o /dev/null $${lang}.1po"; \ + $(GMSGFMT) -c --statistics --verbose -o /dev/null $${lang}.1po || exit 1; \ + echo "$(MSGCAT) --properties-output -o $(srcdir)/$(DOMAIN)_$$lang.properties $${lang}.1po"; \ + $(MSGCAT) --properties-output -o $(DOMAIN)_$$lang.properties.tmp $${lang}.1po || exit 1; \ + if test '$(srcdir)' = .; then \ + mv -f $(DOMAIN)_$$lang.properties.tmp $(DOMAIN)_$$lang.properties || exit 1; \ + else \ + if test -f $(srcdir)/$(DOMAIN)_$$lang.properties && cmp $(DOMAIN)_$$lang.properties.tmp $(srcdir)/$(DOMAIN)_$$lang.properties >/dev/null; then \ + rm -f $(DOMAIN)_$$lang.properties.tmp; \ + else \ + mv -f $(DOMAIN)_$$lang.properties.tmp $(srcdir)/$(DOMAIN)_$$lang.properties || exit 1; \ + fi; \ + fi; \ + rm -f $${lang}.1po; \ + done + +# Alternatively, we could create classes instead of properties files. +update-classes: Makefile $(srcdir)/$(DOMAIN).pot $(POFILES) + @echo "$(MSGINIT) -i $(srcdir)/$(DOMAIN).pot --no-translator -l en --properties-output -o $(srcdir)/$(DOMAIN).properties"; \ + $(MSGINIT) -i $(srcdir)/$(DOMAIN).pot --no-translator -l en --properties-output -o $(DOMAIN).properties || { rm -f $(DOMAIN).properties; exit 1; } +# Move $(DOMAIN).properties into $(srcdir). But don't provoke a gratuitous error +# in a VPATH build with read-only $(srcdir). + @if test '$(srcdir)' != .; then \ + if test -f $(srcdir)/$(DOMAIN).properties && cmp $(DOMAIN).properties $(srcdir)/$(DOMAIN).properties >/dev/null; then \ + rm -f $(DOMAIN).properties; \ + else \ + mv -f $(DOMAIN).properties $(srcdir)/$(DOMAIN).properties; \ + fi; \ + fi + @for f in $(POFILES); do \ + lang=`echo $$f | sed -e 's,.*/,,' -e 's,\.po$$,,'`; \ + echo "$(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $(srcdir)/$${lang}.po $(srcdir)/$(DOMAIN).pot"; \ + $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $(srcdir)/$${lang}.po $(srcdir)/$(DOMAIN).pot || exit 1; \ + echo "$(GMSGFMT) -c --statistics --verbose -j -d $(srcdir) -r $(DOMAIN) -l $${lang} $${lang}.1po"; \ + $(GMSGFMT) -c --statistics --verbose -j -d . -r $(DOMAIN) -l $${lang} $${lang}.1po || exit 1; \ + if test '$(srcdir)' != .; then \ + if test -f $(srcdir)/$(DOMAIN)_$$lang.class && cmp $(DOMAIN)_$$lang.class $(srcdir)/$(DOMAIN)_$$lang.class >/dev/null; then \ + rm -f $(DOMAIN)_$$lang.class; \ + else \ + mv -f $(DOMAIN)_$$lang.class $(srcdir)/$(DOMAIN)_$$lang.class || exit 1; \ + fi; \ + fi; \ + rm -f $${lang}.1po; \ + done + +echo-catalogs: +# When packaging the catalogs for installation, include the fallback catalog always. + @echo $(DOMAIN).properties $(CATALOGS) diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/af.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..1e62630260cf65ec816e0d67112a7c0564234073 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/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-java-qtjambi-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.java:27 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Hierdie program loop as prosesnommer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..bc50a0de5f50aad89a6e4e814fda15cef91176cb --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-java-qtjambi +# 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: Hello.java:34 +#, java-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/share/doc/gettext/examples/hello-java-qtjambi/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..a71284d6a88cd393a8cb96bf4e81c3814e85296f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-java-qtjambi 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Програмата е пусната под процес номер {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..c91c75bbae8811377ccd36cfc458a0bbf93e92ae --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-java-qtjambi. +# 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: Hello.java:34 +#, java-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/share/doc/gettext/examples/hello-java-qtjambi/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..f33f2e593b27b22d2eb028791491469255bf87c6 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Tento program běží jako proces číslo {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/da.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..89cca70d0682d3b1f667c6a8f32975856befc486 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-java-qtjambi. +# 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dette program kører som proces nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/de.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..d46b0c629f8fb34c2255f2c04ebbba4cb98a64f6 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-java-qtjambi. +# 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dieses Programm läuft mit der Prozess-Nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/el.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..71f69533beb4d73272f4eb9c565745a0abee745d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-java-qtjambi +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..109b5d14ebd060a9c531ba2802d575b1d201b3f9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ĉi tiu programo rulas kiel procez-numero {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/es.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..1b934d3dc318c2bd580535385fc6e6ca8a433919 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/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-java-qtjambi-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.java:27 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: Hello.java:34 +#, java-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/share/doc/gettext/examples/hello-java-qtjambi/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..37d99d30b09ee79c422e271a4e90cfe2243cefc0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Tämän ohjelman prosessinumero on {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..4da2c6d1e7429cb5aa8434aa5720486f6de41798 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: Hello.java:34 +#, java-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/share/doc/gettext/examples/hello-java-qtjambi/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..486b880bd33f3e66197095c90852393fa439eb65 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-java-qtjambi. +# 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: Hello.java:34 +#, java-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/share/doc/gettext/examples/hello-java-qtjambi/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..1d55dbf404011a716c07d8c4b7c22479c578cc53 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-java-qtjambi 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: Hello.java:34 +#, java-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/share/doc/gettext/examples/hello-java-qtjambi/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..d7341fda026e690f7fb938ac5c3e741c9e956b43 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-java-qtjambi 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ovaj program se izvršava kao proces broj {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..29c4bb57572f2f755789c974f6a43b28cc8d414e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-java-qtjambi. +# 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: Hello.java:34 +#, java-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/share/doc/gettext/examples/hello-java-qtjambi/po/id.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..bbbd8362102b8a24f65fe26b42ac3189cb873cd1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-java-qtjambi-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-java-qtjambi-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.java:27 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Program ini berjalan sebagai proses nomor {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/it.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..6b5b8aae1b78d98e32274784c0637ceaa1f350d6 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-java-qtjambi. +# 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Questo programma è in esecuzione con numero di processo {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..e6c357e0ce4444ca9dd727e90f1d785ba60691b8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-java-qtjambi' 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "このプログラムはプロセス番号 {0} で動いています." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..1117ed52d2ee5c8c9c1cd0b232593e0fb1d1dd06 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..6ac18767f0e6fc4dd5fd1d353d9b3023fbcb13a8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-java-qtjambi' 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Бул программа {0} процесс номери катары иштеп жатат." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..2545b1fe7310d86d1bc328df641f08da15cf4548 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-java-qtjambi +# 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-java-qtjambi-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.java:27 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Šī programma darbojas ar procesa numuru {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..00d0c1c6c073faafb58093c26e9dcbb84e283184 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ms.po @@ -0,0 +1,28 @@ +# hello-java-qtjambi 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Program ini dilaksanakan sebagai proses bernombor {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..e6bb853a2b0da3e97652eb46c025aed57784c9a9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/mt.po @@ -0,0 +1,27 @@ +# hello-java-qtjambi-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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: Hello.java:34 +#, java-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/share/doc/gettext/examples/hello-java-qtjambi/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..6adf759e620f89ef2fdec1e3d00c0d66196ebdf1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-java-qtjambi 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dette programmet kjører som prosess nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..3cb6201c44f4ae9b9d7d67efd3b8541de26b2f8a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-java-qtjambi. +# 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-java-qtjambi-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.java:27 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dit programma draait als proces nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..a3af09e69fe20d4fca0ba64acb80ff415dd96705 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-java-qtjambi +# 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-java-qtjambi-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.java:27 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dette programmet køyrer som prosess nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..458ebb759baf4b4a2b9f08c98c616dfa52d66365 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-java-qtjambi 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ten program działa jako proces o numerze {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..e06b6bba558dda32e62d48c6db18814d972da732 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-java-qtjambi' 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: Hello.java:34 +#, java-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/share/doc/gettext/examples/hello-java-qtjambi/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..e9525c4fd24c0fe447ebde5f0808ca35385fcd20 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: Hello.java:34 +#, java-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/share/doc/gettext/examples/hello-java-qtjambi/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..d7a25801f028bbb3954ffc11682352e86c0ed368 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-java-qtjambi" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-java-qtjambi. +# 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-java-qtjambi”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-java-qtjambi 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-java-qtjambi 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-java-qtjambi 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-java-qtjambi 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-java-qtjambi-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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Acest program rulează ca procesul numărul {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..c6b88f7853e28606edceb0edae6fc2cea583b249 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-java-qtjambi-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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Эта программа выполняется как процесс под номером {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..ee407e6afe4a9f369da419575a0c613df397eaf1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-java-qtjambi 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Tento program beží ako proces s číslom {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..629f299d42ae9888f9dffc43c7205b9884de5b6d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/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-java-qtjambi-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ta program teče kot proces številka {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..31bffce5d5fe9478eab2ab3eaa55210ee324a630 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/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-java-qtjambi-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.java:27 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ky program po xhiron si procesi numër {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..b4d883406b2688747356994d10166f2275787caa --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-java-qtjambi. +# 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-java-qtjambi-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.java:27 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Овај програм се извршава као процес број {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..0ad6c3555191b755db888cbabb9d05526dbc5f9f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-java-qtjambi. +# 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Detta program kör som process nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..de1603096953110dd94d941962762ab64a7a3d35 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "இந்நிரல் செயலாக்க எண் {0} ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..217a85ea82969811efae9b6e8bd554322e9fb2fe --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-java-qtjambi. +# 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: Hello.java:34 +#, java-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/share/doc/gettext/examples/hello-java-qtjambi/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..05f61d823fe1c10f2c08a184032af54f261d1206 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-java-qtjambi +# 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ця програма виконується як процес з номером {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..c559abba8c70b3c39085e7ad77d7962b2964083e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: Hello.java:34 +#, java-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/share/doc/gettext/examples/hello-java-qtjambi/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..b645285606cfcb3f6f27976b962604f0cbf481a9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-java-qtjambi. +# 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "此程序正以进程号 {0} 运行。" diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..a9331f9ccd1d3a7615bb802260e498a4da39214f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-java-qtjambi. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "你好!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "本程式正在執行中,進程編號為 {0}。" diff --git a/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..6fd2f1c7df0fdb5f39a0ff55b48a653ec8cc293b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-qtjambi/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-java-qtjambi. +# 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-java-qtjambi 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.java:27 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: Hello.java:34 +#, java-format +msgid "This program is running as process number {0}." +msgstr "本程式正在執行,行程編號為 {0}。" diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/BUGS b/miniconda3/share/doc/gettext/examples/hello-java-swing/BUGS new file mode 100644 index 0000000000000000000000000000000000000000..085ef9e18add4fefb2639eccd310acb560510235 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/BUGS @@ -0,0 +1,5 @@ +Correct display of characters depends on the JVM and its locale-dependent font +configuration. For example, on Linux/x86, in + Sun JDK 1.3.1 de_DE, zh_CN work + IBM JDK 1.3.0 de_DE, sr_YU work - ja_JP, zh_CN don't work (displays squares) + Sun JDK 1.4.2 de_DE, sr_YU work - ja_JP, zh_CN don't work (displays squares) diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/Hello.java b/miniconda3/share/doc/gettext/examples/hello-java-swing/Hello.java new file mode 100644 index 0000000000000000000000000000000000000000..7bdef7ede433e9da7b712df7bf98668495bbbf9f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/Hello.java @@ -0,0 +1,63 @@ +// Example for use of GNU gettext. +// This file is in the public domain. +// +// Source code of the Java/Swing program. + +import java.util.*; +import java.io.*; +import java.text.*; +import java.awt.*; +import java.awt.event.*; +import javax.swing.*; +import gnu.gettext.*; + +public class Hello { + public static void main (String[] args) { + ResourceBundle catalog = ResourceBundle.getBundle("hello-java-swing"); + JFrame frame = new JFrame("Hello example"); + frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); + JLabel label1 = + new JLabel(GettextResource.gettext(catalog,"Hello, world!")); + JLabel label2 = + new JLabel( + MessageFormat.format( + GettextResource.gettext(catalog, + "This program is running as process number {0}."), + new Object[] { getPid() })); + JButton button = new JButton("OK"); + button.addActionListener( + new ActionListener() { + public void actionPerformed (ActionEvent event) { + System.exit(0); + } + }); + JPanel labels = new JPanel(); + labels.setLayout(new GridLayout(2, 1)); + labels.add(label1); + labels.add(label2); + JPanel buttons = new JPanel(); + buttons.setLayout(new FlowLayout(FlowLayout.RIGHT)); + buttons.add(button); + frame.getContentPane().setLayout(new BorderLayout()); + frame.getContentPane().add(labels, BorderLayout.CENTER); + frame.getContentPane().add(buttons, BorderLayout.SOUTH); + frame.pack(); + frame.setVisible(true); + } + + /* Return the process ID of the current process. */ + private static String getPid () { + try { + String[] args = new String[] { "/bin/sh", "-c", "echo $PPID" }; + Process p = Runtime.getRuntime().exec(args); + InputStream p_out = p.getInputStream(); + String s = (new BufferedReader(new InputStreamReader(p_out))).readLine(); + p.destroy(); + if (s != null) + return s; + } catch (IOException e) { + e.printStackTrace(); + } + return "???"; + } +} diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/INSTALL b/miniconda3/share/doc/gettext/examples/hello-java-swing/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..79edfa77aca499fa68928ed72915dcb53cc0cac3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/INSTALL @@ -0,0 +1,12 @@ +This example relies on: + - a Java implementation with AWT and Swing + (i.e. when using Sun's JDK: at least JDK 1.2) + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-java-swing/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..a567df6909d035a3d239a05bd0aea49598d57811 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/Makefile.am @@ -0,0 +1,85 @@ +# 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_JAVAPROGRAMS = hello + +# The source files of the 'hello' program. +hello_SOURCES = Hello.java +hello_CLASSES = Hello.class + +# The entry point of the 'hello' program. +hello_MAINCLASS = Hello + +# The link dependencies of the 'hello' program. +hello_JAVALIBS = @LIBINTL_JAR@ + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh + + +# ----------------- General rules for compiling Java programs ----------------- + +jardir = $(datadir)/$(PACKAGE) +pkgdatadir = $(datadir)/$(PACKAGE) +pkglibdir = $(libdir)/$(PACKAGE) + +JAR = @JAR@ +JAVACOMP = $(SHELL) javacomp.sh + +EXTRA_DIST += $(hello_SOURCES) +CLEANFILES = +DISTCLEANFILES = javacomp.sh javaexec.sh + + +# Rules for compiling Java programs as jar libraries. +# This is the preferred mode during development, because you can easily test +# the program without installing it, simply by doing "java -jar hello.jar". + +all-local: hello.jar hello.sh + +hello.jar: $(hello_CLASSES) + { echo "Manifest-Version: 1.0"; echo "Main-Class: $(hello_MAINCLASS)"; echo 'Class-Path: @LIBINTL_JAR@'; } > Manifest.mf + $(JAR) cfm $@ Manifest.mf Hello*.class + rm -f Manifest.mf + abs_jar=`pwd`/$@; (cd po && $(MAKE)) && catalogs=`GNUMAKEFLAGS=--no-print-directory $(MAKE) -s -C po echo-catalogs`; test -n "$$catalogs" && (cd $(srcdir)/po && $(JAR) uf "$$abs_jar" $$catalogs) || { rm -f $@ jartmp*; exit 1; } + +Hello.class: $(srcdir)/Hello.java + CLASSPATH=.@CLASSPATH_SEPARATOR@$(hello_JAVALIBS) $(JAVACOMP) -d . $(srcdir)/Hello.java + +hello.sh: + { echo '#!/bin/sh'; \ + echo "CLASSPATH='$(jardir)/hello.jar@CLASSPATH_SEPARATOR@$(hello_JAVALIBS)'\$${CLASSPATH+\"@CLASSPATH_SEPARATOR@\$$CLASSPATH\"}"; \ + echo "export CLASSPATH"; \ + echo "exec /bin/sh '$(pkgdatadir)/javaexec.sh' $(hello_MAINCLASS) \"\$$@\""; \ + } > $@ + +install-exec-local: all-local + $(MKDIR_P) $(DESTDIR)$(bindir) + $(INSTALL_SCRIPT) hello.sh $(DESTDIR)$(bindir)/hello + +install-data-local: all-local + $(MKDIR_P) $(DESTDIR)$(jardir) + $(INSTALL_DATA) hello.jar $(DESTDIR)$(jardir)/hello.jar + $(MKDIR_P) $(DESTDIR)$(pkgdatadir) + $(INSTALL_DATA) javaexec.sh $(DESTDIR)$(pkgdatadir)/javaexec.sh + +installdirs-local: + $(MKDIR_P) $(DESTDIR)$(jardir) + $(MKDIR_P) $(DESTDIR)$(pkgdatadir) + +uninstall-local: + rm -f $(DESTDIR)$(bindir)/hello + rm -f $(DESTDIR)$(jardir)/hello.jar + rm -f $(DESTDIR)$(pkgdatadir)/javaexec.sh + +CLEANFILES += hello.jar Hello*.class Manifest.mf hello.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-java-swing/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..294f08516688be5b6506ceeb80e6b78c34704c7a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/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 +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/javacomp.m4 +rm -f m4/javaexec.m4 +rm -f javacomp.sh.in +rm -f javaexec.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 po/*.pot +rm -f po/stamp-po +rm -f po/hello-java-swing*.properties diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-java-swing/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..2d62267d817a2890c6f719354b8450b91b2e5f33 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/autogen.sh @@ -0,0 +1,46 @@ +#!/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}/javacomp.m4 m4/javacomp.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/gettext-tools/gnulib-m4}/javaexec.m4 m4/javaexec.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/build-aux}/javacomp.sh.in javacomp.sh.in +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/build-aux}/javaexec.sh.in javaexec.sh.in + +aclocal -I m4 + +autoconf + +automake -a -c + +./configure +cd po +make update-po +cd .. +make distclean diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/configure.ac b/miniconda3/share/doc/gettext/examples/hello-java-swing/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..494dd84cc8715da578f4d57883236ec3a5ae59cc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/configure.ac @@ -0,0 +1,53 @@ +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-java-swing], [0]) +AC_CONFIG_SRCDIR([Hello.java]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Check whether we can execute Java programs. +gt_JAVAEXEC([TestAWT], [$srcdir/m4]) +dnl Check whether we can build Java programs. +gt_JAVACOMP([1.8]) +AC_CHECK_PROG([JAR], [jar], [jar]) +if test -n "$HAVE_JAVACOMP" && test -n "$JAR"; then + BUILDJAVA=yes +else + BUILDJAVA=no +fi +AC_SUBST([BUILDJAVA]) +if test -n "$HAVE_JAVAEXEC" && test "$BUILDJAVA" = yes; then + TESTJAVA=yes +else + TESTJAVA=no +fi +AC_SUBST([TESTJAVA]) + +dnl Checks for compiler output filename suffixes. +AC_OBJEXT +AC_EXEEXT + +dnl Checks for needed libraries. +AM_PATH_PROG_WITH_TEST([GETTEXT_WITH_LIBINTL_JAR], [gettext], + [{ basedir=`echo "$ac_dir" | sed -e 's,/bin$,,'`; test -r "$basedir"/share/gettext/libintl.jar; }]) +if test -z "$GETTEXT_WITH_LIBINTL_JAR"; then + echo "Required library libintl.jar not found." 1>&2 + exit 1 +fi +changequote(,)dnl +basedir=`echo "$GETTEXT_WITH_LIBINTL_JAR" | sed -e 's,/[^/]*$,,' | sed -e 's,/bin$,,'` +changequote([, ])dnl +LIBINTL_JAR="$basedir"/share/gettext/libintl.jar +AC_SUBST([LIBINTL_JAR]) + +dnl Support for the po directory. +AM_PO_SUBDIRS + +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([javacomp.sh]) +AC_CONFIG_FILES([javaexec.sh]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-java-swing/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..dea6fde278eb5322c2f9b805bfcc117386271490 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/m4/Makefile.am @@ -0,0 +1,3 @@ +EXTRA_DIST = \ + nls.m4 po.m4 \ + javacomp.m4 javaexec.m4 TestAWT.java TestAWT.class diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/m4/TestAWT.class b/miniconda3/share/doc/gettext/examples/hello-java-swing/m4/TestAWT.class new file mode 100644 index 0000000000000000000000000000000000000000..1c993c51eeedc42ef390988064abc493c36d649b Binary files /dev/null and b/miniconda3/share/doc/gettext/examples/hello-java-swing/m4/TestAWT.class differ diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/m4/TestAWT.java b/miniconda3/share/doc/gettext/examples/hello-java-swing/m4/TestAWT.java new file mode 100644 index 0000000000000000000000000000000000000000..5c403225ebf21c215615e4b144b8e430f861a3a7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/m4/TestAWT.java @@ -0,0 +1,15 @@ +// Test for working AWT. +// This file is in the public domain. +/** + * @author Bruno Haible + */ +public class TestAWT { + public static void main (String[] args) { + try { + java.awt.Toolkit.getDefaultToolkit(); + } catch (Throwable e) { + System.exit(1); + } + System.exit(0); + } +} diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/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/share/doc/gettext/examples/hello-java-swing/po/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..0e41b794aa8672803bb9fc1a4b5777743690d23f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/Makefile.am @@ -0,0 +1,394 @@ +# 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.java + +# 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 = + +MSGMERGE = @MSGMERGE@ +MSGMERGE_UPDATE = @MSGMERGE@ --update +MSGMERGE_FOR_MSGFMT_OPTION = @MSGMERGE_FOR_MSGFMT_OPTION@ +MSGCAT = msgcat +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)/$(DOMAIN)_$(lang).properties) +PROPERTIESFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$(DOMAIN)_$$lang.properties; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(DOMAIN)_$(lang).class) +CLASSFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$(DOMAIN)_$$lang.class; 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), $(DOMAIN)_$(lang).properties) +CATALOGS != for lang in $(INST_LINGUAS); do echo $(DOMAIN)_$$lang.properties; done + +SUFFIXES = .po .nop .po-create .po-update + +# The .pot file, stamp-po, .po files, and .properties or .class 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: $(srcdir)/stamp-po + +# $(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 $(PROPERTIESFILES) 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 || \ + $(MAKE) update-properties + @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 + + +html ID: + +MOSTLYCLEANFILES = +MOSTLYCLEANFILES += stamp-poT +MOSTLYCLEANFILES += core core.* *.stackdump $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po + +MAINTAINERCLEANFILES = \ + $(DOMAIN).pot stamp-po \ + $(DOMAIN).properties $(PROPERTIESFILES) $(CLASSFILES) + +EXTRA_DIST = remove-potcdate.sed LINGUAS $(POFILES) $(DOMAIN).properties $(PROPERTIESFILES) + +# 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-properties + +# 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): + +# During .po -> .properties or .class 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. + +update-properties: Makefile $(srcdir)/$(DOMAIN).pot $(POFILES) + @echo "$(MSGINIT) -i $(srcdir)/$(DOMAIN).pot --no-translator -l en --properties-output -o $(srcdir)/$(DOMAIN).properties"; \ + $(MSGINIT) -i $(srcdir)/$(DOMAIN).pot --no-translator -l en --properties-output -o $(DOMAIN).properties || { rm -f $(DOMAIN).properties; exit 1; } +# Move $(DOMAIN).properties into $(srcdir). But don't provoke a gratuitous error +# in a VPATH build with read-only $(srcdir). + @if test '$(srcdir)' != .; then \ + if test -f $(srcdir)/$(DOMAIN).properties && cmp $(DOMAIN).properties $(srcdir)/$(DOMAIN).properties >/dev/null; then \ + rm -f $(DOMAIN).properties; \ + else \ + mv -f $(DOMAIN).properties $(srcdir)/$(DOMAIN).properties; \ + fi; \ + fi + @for f in $(POFILES); do \ + lang=`echo $$f | sed -e 's,.*/,,' -e 's,\.po$$,,'`; \ + echo "$(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $(srcdir)/$${lang}.po $(srcdir)/$(DOMAIN).pot"; \ + $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $(srcdir)/$${lang}.po $(srcdir)/$(DOMAIN).pot || exit 1; \ + echo "$(GMSGFMT) -c --statistics --verbose -o /dev/null $${lang}.1po"; \ + $(GMSGFMT) -c --statistics --verbose -o /dev/null $${lang}.1po || exit 1; \ + echo "$(MSGCAT) --properties-output -o $(srcdir)/$(DOMAIN)_$$lang.properties $${lang}.1po"; \ + $(MSGCAT) --properties-output -o $(DOMAIN)_$$lang.properties.tmp $${lang}.1po || exit 1; \ + if test '$(srcdir)' = .; then \ + mv -f $(DOMAIN)_$$lang.properties.tmp $(DOMAIN)_$$lang.properties || exit 1; \ + else \ + if test -f $(srcdir)/$(DOMAIN)_$$lang.properties && cmp $(DOMAIN)_$$lang.properties.tmp $(srcdir)/$(DOMAIN)_$$lang.properties >/dev/null; then \ + rm -f $(DOMAIN)_$$lang.properties.tmp; \ + else \ + mv -f $(DOMAIN)_$$lang.properties.tmp $(srcdir)/$(DOMAIN)_$$lang.properties || exit 1; \ + fi; \ + fi; \ + rm -f $${lang}.1po; \ + done + +# Alternatively, we could create classes instead of properties files. +update-classes: Makefile $(srcdir)/$(DOMAIN).pot $(POFILES) + @echo "$(MSGINIT) -i $(srcdir)/$(DOMAIN).pot --no-translator -l en --properties-output -o $(srcdir)/$(DOMAIN).properties"; \ + $(MSGINIT) -i $(srcdir)/$(DOMAIN).pot --no-translator -l en --properties-output -o $(DOMAIN).properties || { rm -f $(DOMAIN).properties; exit 1; } +# Move $(DOMAIN).properties into $(srcdir). But don't provoke a gratuitous error +# in a VPATH build with read-only $(srcdir). + @if test '$(srcdir)' != .; then \ + if test -f $(srcdir)/$(DOMAIN).properties && cmp $(DOMAIN).properties $(srcdir)/$(DOMAIN).properties >/dev/null; then \ + rm -f $(DOMAIN).properties; \ + else \ + mv -f $(DOMAIN).properties $(srcdir)/$(DOMAIN).properties; \ + fi; \ + fi + @for f in $(POFILES); do \ + lang=`echo $$f | sed -e 's,.*/,,' -e 's,\.po$$,,'`; \ + echo "$(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $(srcdir)/$${lang}.po $(srcdir)/$(DOMAIN).pot"; \ + $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $(srcdir)/$${lang}.po $(srcdir)/$(DOMAIN).pot || exit 1; \ + echo "$(GMSGFMT) -c --statistics --verbose -j -d $(srcdir) -r $(DOMAIN) -l $${lang} $${lang}.1po"; \ + $(GMSGFMT) -c --statistics --verbose -j -d . -r $(DOMAIN) -l $${lang} $${lang}.1po || exit 1; \ + if test '$(srcdir)' != .; then \ + if test -f $(srcdir)/$(DOMAIN)_$$lang.class && cmp $(DOMAIN)_$$lang.class $(srcdir)/$(DOMAIN)_$$lang.class >/dev/null; then \ + rm -f $(DOMAIN)_$$lang.class; \ + else \ + mv -f $(DOMAIN)_$$lang.class $(srcdir)/$(DOMAIN)_$$lang.class || exit 1; \ + fi; \ + fi; \ + rm -f $${lang}.1po; \ + done + +echo-catalogs: +# When packaging the catalogs for installation, include the fallback catalog always. + @echo $(DOMAIN).properties $(CATALOGS) diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/af.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..9c5f1b5626cb3ad7eb9c4365e54c41944be44058 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/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-java-swing-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.java:20 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Hierdie program loop as prosesnommer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..56f0acf8c9fad3e3f4b733c938d020be260d8312 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-java-swing +# 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: Hello.java:25 +#, java-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/share/doc/gettext/examples/hello-java-swing/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..caf8cca76ae4cd014f1c6b4868877f279e400799 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-java-swing 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Програмата е пусната под процес номер {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..286053222c9ae2278f4c246d9c066efefc4832f3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-java-swing. +# 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: Hello.java:25 +#, java-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/share/doc/gettext/examples/hello-java-swing/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..ff90c3dc1e7558ba4baee09ada62628108ad5487 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Tento program běží jako proces číslo {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/da.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..ce0496673ccd9c6fff0e4d3289a2ce340fff69ed --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-java-swing. +# 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dette program kører som proces nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/de.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..d9a9c55895944262501805460848b5fd7ca7cfc6 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-java-swing. +# 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dieses Programm läuft mit der Prozess-Nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/el.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..8cabb341e94685eee8299ebfe83e31e49f4405fa --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-java-swing +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..6b4fb53a916cacefdf4c423db7c4ca0d62d29be4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ĉi tiu programo rulas kiel procez-numero {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/es.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..2a2d83ed3d528e414a7d5d26b63786c99ada88ef --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/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-java-swing-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.java:20 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: Hello.java:25 +#, java-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/share/doc/gettext/examples/hello-java-swing/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..534b3c89820c0d981ffd3ccdb4e96b73952e9d3d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Tämän ohjelman prosessinumero on {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..3ff0c092b2bc74fec6a7c099fd7b3020084cd729 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: Hello.java:25 +#, java-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/share/doc/gettext/examples/hello-java-swing/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..812c040be9ad4940f551e12c1a434e01db3e8e14 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-java-swing. +# 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: Hello.java:25 +#, java-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/share/doc/gettext/examples/hello-java-swing/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..2a749fa5129c167ef64a415a9043bfa37d19b21c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-java-swing 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: Hello.java:25 +#, java-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/share/doc/gettext/examples/hello-java-swing/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..6546cfe14312691e510da8a0ddd7b70fc23ac8e7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-java-swing 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ovaj program se izvršava kao proces broj {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..b908734d9a5f6df6bfdd6bf109ff120e5b7c1a84 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-java-swing. +# 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: Hello.java:25 +#, java-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/share/doc/gettext/examples/hello-java-swing/po/id.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..fd21f47f380c3b9e5ca7600ca26f6975d38a6745 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-java-swing-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-java-swing-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.java:20 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Program ini berjalan sebagai proses nomor {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/it.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..545016dc893a8358ef3b86f9b1a629c933b46b46 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-java-swing. +# 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Questo programma è in esecuzione con numero di processo {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..1806f65e404623416d7608e8bb5683968f33e87f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-java-swing' 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "このプログラムはプロセス番号 {0} で動いています." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..20edd0bd0c2f6b4eede56a00766365cae290c8d4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..36f91671b825ea318f84f888d9575ace0bb68742 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-java-swing' 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Бул программа {0} процесс номери катары иштеп жатат." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..69970da2b27ff19f35eff7552e23e8c3792ffd2c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-java-swing +# 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-java-swing-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.java:20 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Šī programma darbojas ar procesa numuru {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..1b929bc098c43a771ffec84147988cbc77097b73 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ms.po @@ -0,0 +1,28 @@ +# hello-java-swing 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Program ini dilaksanakan sebagai proses bernombor {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..153c14d16b841e69c2f7019d67935c59011f8e26 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/mt.po @@ -0,0 +1,27 @@ +# hello-java-swing-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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: Hello.java:25 +#, java-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/share/doc/gettext/examples/hello-java-swing/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..1f91741daa1b8309ca12103d56dd0659f4ce7389 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-java-swing 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dette programmet kjører som prosess nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..805a3d013be51ba56bb1048edf8ee65697cc70c0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-java-swing. +# 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-java-swing-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.java:20 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dit programma draait als proces nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..074fa5dd984d1a273c82bee31c089cfd92d4d23d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-java-swing +# 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-java-swing-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.java:20 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dette programmet køyrer som prosess nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..509ae43e8ae6d1368be1b1d70df183de09ea699b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-java-swing 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ten program działa jako proces o numerze {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..447dda98a6a1930096dbde90a3705aaaf6b4eed1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-java-swing' 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: Hello.java:25 +#, java-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/share/doc/gettext/examples/hello-java-swing/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..1bd3b9486d2fc40b4dd70c3951319838f46cd4ec --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: Hello.java:25 +#, java-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/share/doc/gettext/examples/hello-java-swing/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..85b275a9a283b04f05287a47bee9a9179ba68ee8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-java-swing" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-java-swing. +# 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-java-swing”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-java-swing 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-java-swing 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-java-swing 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-java-swing 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-java-swing-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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Acest program rulează ca procesul numărul {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..21ae32dd289de798fdca11dcf85a90dadc9d9299 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-java-swing-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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Эта программа выполняется как процесс под номером {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..cabe994976a9c1121658894269c4d8166cfff286 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-java-swing 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Tento program beží ako proces s číslom {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..9dbd312b456fa04790da486a67ce18fa810bda7a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/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-java-swing-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ta program teče kot proces številka {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..77109ff2856d25b1842b9adbab833e458a184e25 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/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-java-swing-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.java:20 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ky program po xhiron si procesi numër {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..abb236c0781a1e563cdb676d2653893816f9b660 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-java-swing. +# 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-java-swing-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.java:20 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Овај програм се извршава као процес број {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..e5e6a90b3d6d5d12d6c69c2e614dbf0246b48d71 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-java-swing. +# 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Detta program kör som process nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..d3062aea236296c24f3b2cbfbff94dc853e642cd --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "இந்நிரல் செயலாக்க எண் {0} ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..547206fdfc1f36aad5289722d4fa162159dc9daa --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-java-swing. +# 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: Hello.java:25 +#, java-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/share/doc/gettext/examples/hello-java-swing/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..1dfc11febfc384bb90bcfae172095c9a1f4ec2ef --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-java-swing +# 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ця програма виконується як процес з номером {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..7ebad2a7aa8bace5ee7d234eca0927fa213dab71 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: Hello.java:25 +#, java-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/share/doc/gettext/examples/hello-java-swing/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..276e3e8e6b3352837da89014bf5260a1b86f69ad --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-java-swing. +# 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "此程序正以进程号 {0} 运行。" diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..a3bbbdd1bc0a0c33fb7c358da0072227b5608140 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-java-swing. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "你好!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "本程式正在執行中,進程編號為 {0}。" diff --git a/miniconda3/share/doc/gettext/examples/hello-java-swing/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..7401e8e7275b1a292bdb602a7f76d9560383bf15 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java-swing/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-java-swing. +# 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-java-swing 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.java:20 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: Hello.java:25 +#, java-format +msgid "This program is running as process number {0}." +msgstr "本程式正在執行,行程編號為 {0}。" diff --git a/miniconda3/share/doc/gettext/examples/hello-java/Hello.java b/miniconda3/share/doc/gettext/examples/hello-java/Hello.java new file mode 100644 index 0000000000000000000000000000000000000000..bb4c5b31beb71b21751117044b20f6b4a96e2720 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/Hello.java @@ -0,0 +1,37 @@ +// Example for use of GNU gettext. +// This file is in the public domain. +// +// Source code of the Java program. + +import java.util.*; +import java.io.*; +import java.text.*; +import gnu.gettext.*; + +public class Hello { + public static void main (String[] args) { + ResourceBundle catalog = ResourceBundle.getBundle("hello-java"); + System.out.println(GettextResource.gettext(catalog,"Hello, world!")); + System.out.println( + MessageFormat.format( + GettextResource.gettext(catalog, + "This program is running as process number {0}."), + new Object[] { getPid() })); + } + + /* Return the process ID of the current process. */ + private static String getPid () { + try { + String[] args = new String[] { "/bin/sh", "-c", "echo $PPID" }; + Process p = Runtime.getRuntime().exec(args); + InputStream p_out = p.getInputStream(); + String s = (new BufferedReader(new InputStreamReader(p_out))).readLine(); + p.destroy(); + if (s != null) + return s; + } catch (IOException e) { + e.printStackTrace(); + } + return "???"; + } +} diff --git a/miniconda3/share/doc/gettext/examples/hello-java/INSTALL b/miniconda3/share/doc/gettext/examples/hello-java/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..99cf9c808550bcd7c912f2ca7d8aebe44ece75c3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/INSTALL @@ -0,0 +1,11 @@ +This example relies on: + - a Java implementation + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-java/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-java/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..6ea587e5be4b1d01fe6b24604d6583de1813c472 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/Makefile.am @@ -0,0 +1,86 @@ +# 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_JAVAPROGRAMS = hello + +# The source files of the 'hello' program. +hello_SOURCES = Hello.java +hello_CLASSES = Hello.class + +# The entry point of the 'hello' program. +hello_MAINCLASS = Hello + +# The link dependencies of the 'hello' program. +hello_JAVALIBS = @LIBINTL_JAR@ + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh + + +# ----------------- General rules for compiling Java programs ----------------- + +jardir = $(datadir)/$(PACKAGE) +pkgdatadir = $(datadir)/$(PACKAGE) +pkglibdir = $(libdir)/$(PACKAGE) + +JAR = @JAR@ +JAVACOMP = $(SHELL) javacomp.sh +AR = ar + +EXTRA_DIST += $(hello_SOURCES) +CLEANFILES = +DISTCLEANFILES = javacomp.sh javaexec.sh + + +# Rules for compiling Java programs as jar libraries. +# This is the preferred mode during development, because you can easily test +# the program without installing it, simply by doing "java -jar hello.jar". + +all-local: hello.jar hello.sh + +hello.jar: $(hello_CLASSES) + { echo "Manifest-Version: 1.0"; echo "Main-Class: $(hello_MAINCLASS)"; echo 'Class-Path: @LIBINTL_JAR@'; } > Manifest.mf + $(JAR) cfm $@ Manifest.mf Hello*.class + rm -f Manifest.mf + abs_jar=`pwd`/$@; (cd po && $(MAKE)) && catalogs=`GNUMAKEFLAGS=--no-print-directory $(MAKE) -s -C po echo-catalogs`; test -n "$$catalogs" && (cd $(srcdir)/po && $(JAR) uf "$$abs_jar" $$catalogs) || { rm -f $@ jartmp*; exit 1; } + +Hello.class: $(srcdir)/Hello.java + CLASSPATH=.@CLASSPATH_SEPARATOR@$(hello_JAVALIBS) $(JAVACOMP) -d . $(srcdir)/Hello.java + +hello.sh: + { echo '#!/bin/sh'; \ + echo "CLASSPATH='$(jardir)/hello.jar@CLASSPATH_SEPARATOR@$(hello_JAVALIBS)'\$${CLASSPATH+\"@CLASSPATH_SEPARATOR@\$$CLASSPATH\"}"; \ + echo "export CLASSPATH"; \ + echo "exec /bin/sh '$(pkgdatadir)/javaexec.sh' $(hello_MAINCLASS) \"\$$@\""; \ + } > $@ + +install-exec-local: all-local + $(MKDIR_P) $(DESTDIR)$(bindir) + $(INSTALL_SCRIPT) hello.sh $(DESTDIR)$(bindir)/hello + +install-data-local: all-local + $(MKDIR_P) $(DESTDIR)$(jardir) + $(INSTALL_DATA) hello.jar $(DESTDIR)$(jardir)/hello.jar + $(MKDIR_P) $(DESTDIR)$(pkgdatadir) + $(INSTALL_DATA) javaexec.sh $(DESTDIR)$(pkgdatadir)/javaexec.sh + +installdirs-local: + $(MKDIR_P) $(DESTDIR)$(jardir) + $(MKDIR_P) $(DESTDIR)$(pkgdatadir) + +uninstall-local: + rm -f $(DESTDIR)$(bindir)/hello + rm -f $(DESTDIR)$(jardir)/hello.jar + rm -f $(DESTDIR)$(pkgdatadir)/javaexec.sh + +CLEANFILES += hello.jar Hello*.class Manifest.mf hello.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-java/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-java/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..89229cf92f31e0edabe0a92bbdb400bf5b8df8ba --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/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 +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/javacomp.m4 +rm -f m4/javaexec.m4 +rm -f javacomp.sh.in +rm -f javaexec.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 po/*.pot +rm -f po/stamp-po +rm -f po/hello-java*.properties diff --git a/miniconda3/share/doc/gettext/examples/hello-java/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-java/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..2d62267d817a2890c6f719354b8450b91b2e5f33 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/autogen.sh @@ -0,0 +1,46 @@ +#!/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}/javacomp.m4 m4/javacomp.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/gettext-tools/gnulib-m4}/javaexec.m4 m4/javaexec.m4 +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/build-aux}/javacomp.sh.in javacomp.sh.in +cp -p ${EXAMPLESCONFIGDIR-$GETTEXT_TOPSRCDIR/build-aux}/javaexec.sh.in javaexec.sh.in + +aclocal -I m4 + +autoconf + +automake -a -c + +./configure +cd po +make update-po +cd .. +make distclean diff --git a/miniconda3/share/doc/gettext/examples/hello-java/configure.ac b/miniconda3/share/doc/gettext/examples/hello-java/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..9336273422574a642b3b5063c8de01216863ce92 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/configure.ac @@ -0,0 +1,53 @@ +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-java], [0]) +AC_CONFIG_SRCDIR([Hello.java]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Check whether we can execute Java programs. +gt_JAVAEXEC +dnl Check whether we can build Java programs. +gt_JAVACOMP([1.8]) +AC_CHECK_PROG([JAR], [jar], [jar]) +if test -n "$HAVE_JAVACOMP" && test -n "$JAR"; then + BUILDJAVA=yes +else + BUILDJAVA=no +fi +AC_SUBST([BUILDJAVA]) +if test -n "$HAVE_JAVAEXEC" && test "$BUILDJAVA" = yes; then + TESTJAVA=yes +else + TESTJAVA=no +fi +AC_SUBST([TESTJAVA]) + +dnl Checks for compiler output filename suffixes. +AC_OBJEXT +AC_EXEEXT + +dnl Checks for needed libraries. +AM_PATH_PROG_WITH_TEST([GETTEXT_WITH_LIBINTL_JAR], [gettext], + [{ basedir=`echo "$ac_dir" | sed -e 's,/bin$,,'`; test -r "$basedir"/share/gettext/libintl.jar; }]) +if test -z "$GETTEXT_WITH_LIBINTL_JAR"; then + echo "Required library libintl.jar not found." 1>&2 + exit 1 +fi +changequote(,)dnl +basedir=`echo "$GETTEXT_WITH_LIBINTL_JAR" | sed -e 's,/[^/]*$,,' | sed -e 's,/bin$,,'` +changequote([, ])dnl +LIBINTL_JAR="$basedir"/share/gettext/libintl.jar +AC_SUBST([LIBINTL_JAR]) + +dnl Support for the po directory. +AM_PO_SUBDIRS + +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([javacomp.sh]) +AC_CONFIG_FILES([javaexec.sh]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/share/doc/gettext/examples/hello-java/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-java/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..e89cfb5c74e856f5ff61562aac91d367f3ef046b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/m4/Makefile.am @@ -0,0 +1,3 @@ +EXTRA_DIST = \ + nls.m4 po.m4 \ + javacomp.m4 javaexec.m4 diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-java/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/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/share/doc/gettext/examples/hello-java/po/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-java/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..0e41b794aa8672803bb9fc1a4b5777743690d23f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/Makefile.am @@ -0,0 +1,394 @@ +# 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.java + +# 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 = + +MSGMERGE = @MSGMERGE@ +MSGMERGE_UPDATE = @MSGMERGE@ --update +MSGMERGE_FOR_MSGFMT_OPTION = @MSGMERGE_FOR_MSGFMT_OPTION@ +MSGCAT = msgcat +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)/$(DOMAIN)_$(lang).properties) +PROPERTIESFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$(DOMAIN)_$$lang.properties; done +# This is computed as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(DOMAIN)_$(lang).class) +CLASSFILES != for lang in $(ALL_LINGUAS); do echo $(srcdir)/$(DOMAIN)_$$lang.class; 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), $(DOMAIN)_$(lang).properties) +CATALOGS != for lang in $(INST_LINGUAS); do echo $(DOMAIN)_$$lang.properties; done + +SUFFIXES = .po .nop .po-create .po-update + +# The .pot file, stamp-po, .po files, and .properties or .class 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: $(srcdir)/stamp-po + +# $(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 $(PROPERTIESFILES) 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 || \ + $(MAKE) update-properties + @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 + + +html ID: + +MOSTLYCLEANFILES = +MOSTLYCLEANFILES += stamp-poT +MOSTLYCLEANFILES += core core.* *.stackdump $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po + +MAINTAINERCLEANFILES = \ + $(DOMAIN).pot stamp-po \ + $(DOMAIN).properties $(PROPERTIESFILES) $(CLASSFILES) + +EXTRA_DIST = remove-potcdate.sed LINGUAS $(POFILES) $(DOMAIN).properties $(PROPERTIESFILES) + +# 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-properties + +# 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): + +# During .po -> .properties or .class 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. + +update-properties: Makefile $(srcdir)/$(DOMAIN).pot $(POFILES) + @echo "$(MSGINIT) -i $(srcdir)/$(DOMAIN).pot --no-translator -l en --properties-output -o $(srcdir)/$(DOMAIN).properties"; \ + $(MSGINIT) -i $(srcdir)/$(DOMAIN).pot --no-translator -l en --properties-output -o $(DOMAIN).properties || { rm -f $(DOMAIN).properties; exit 1; } +# Move $(DOMAIN).properties into $(srcdir). But don't provoke a gratuitous error +# in a VPATH build with read-only $(srcdir). + @if test '$(srcdir)' != .; then \ + if test -f $(srcdir)/$(DOMAIN).properties && cmp $(DOMAIN).properties $(srcdir)/$(DOMAIN).properties >/dev/null; then \ + rm -f $(DOMAIN).properties; \ + else \ + mv -f $(DOMAIN).properties $(srcdir)/$(DOMAIN).properties; \ + fi; \ + fi + @for f in $(POFILES); do \ + lang=`echo $$f | sed -e 's,.*/,,' -e 's,\.po$$,,'`; \ + echo "$(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $(srcdir)/$${lang}.po $(srcdir)/$(DOMAIN).pot"; \ + $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $(srcdir)/$${lang}.po $(srcdir)/$(DOMAIN).pot || exit 1; \ + echo "$(GMSGFMT) -c --statistics --verbose -o /dev/null $${lang}.1po"; \ + $(GMSGFMT) -c --statistics --verbose -o /dev/null $${lang}.1po || exit 1; \ + echo "$(MSGCAT) --properties-output -o $(srcdir)/$(DOMAIN)_$$lang.properties $${lang}.1po"; \ + $(MSGCAT) --properties-output -o $(DOMAIN)_$$lang.properties.tmp $${lang}.1po || exit 1; \ + if test '$(srcdir)' = .; then \ + mv -f $(DOMAIN)_$$lang.properties.tmp $(DOMAIN)_$$lang.properties || exit 1; \ + else \ + if test -f $(srcdir)/$(DOMAIN)_$$lang.properties && cmp $(DOMAIN)_$$lang.properties.tmp $(srcdir)/$(DOMAIN)_$$lang.properties >/dev/null; then \ + rm -f $(DOMAIN)_$$lang.properties.tmp; \ + else \ + mv -f $(DOMAIN)_$$lang.properties.tmp $(srcdir)/$(DOMAIN)_$$lang.properties || exit 1; \ + fi; \ + fi; \ + rm -f $${lang}.1po; \ + done + +# Alternatively, we could create classes instead of properties files. +update-classes: Makefile $(srcdir)/$(DOMAIN).pot $(POFILES) + @echo "$(MSGINIT) -i $(srcdir)/$(DOMAIN).pot --no-translator -l en --properties-output -o $(srcdir)/$(DOMAIN).properties"; \ + $(MSGINIT) -i $(srcdir)/$(DOMAIN).pot --no-translator -l en --properties-output -o $(DOMAIN).properties || { rm -f $(DOMAIN).properties; exit 1; } +# Move $(DOMAIN).properties into $(srcdir). But don't provoke a gratuitous error +# in a VPATH build with read-only $(srcdir). + @if test '$(srcdir)' != .; then \ + if test -f $(srcdir)/$(DOMAIN).properties && cmp $(DOMAIN).properties $(srcdir)/$(DOMAIN).properties >/dev/null; then \ + rm -f $(DOMAIN).properties; \ + else \ + mv -f $(DOMAIN).properties $(srcdir)/$(DOMAIN).properties; \ + fi; \ + fi + @for f in $(POFILES); do \ + lang=`echo $$f | sed -e 's,.*/,,' -e 's,\.po$$,,'`; \ + echo "$(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $(srcdir)/$${lang}.po $(srcdir)/$(DOMAIN).pot"; \ + $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $(srcdir)/$${lang}.po $(srcdir)/$(DOMAIN).pot || exit 1; \ + echo "$(GMSGFMT) -c --statistics --verbose -j -d $(srcdir) -r $(DOMAIN) -l $${lang} $${lang}.1po"; \ + $(GMSGFMT) -c --statistics --verbose -j -d . -r $(DOMAIN) -l $${lang} $${lang}.1po || exit 1; \ + if test '$(srcdir)' != .; then \ + if test -f $(srcdir)/$(DOMAIN)_$$lang.class && cmp $(DOMAIN)_$$lang.class $(srcdir)/$(DOMAIN)_$$lang.class >/dev/null; then \ + rm -f $(DOMAIN)_$$lang.class; \ + else \ + mv -f $(DOMAIN)_$$lang.class $(srcdir)/$(DOMAIN)_$$lang.class || exit 1; \ + fi; \ + fi; \ + rm -f $${lang}.1po; \ + done + +echo-catalogs: +# When packaging the catalogs for installation, include the fallback catalog always. + @echo $(DOMAIN).properties $(CATALOGS) diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/af.po b/miniconda3/share/doc/gettext/examples/hello-java/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..02178e8034932dc2738615374b904ac69fabde20 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/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-java-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.java:14 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Hierdie program loop as prosesnommer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-java/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..e4e8ab9bef35a409fb68595abb988fb67410b913 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-java +# 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-java 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.java:14 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: Hello.java:18 +#, java-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/share/doc/gettext/examples/hello-java/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-java/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..b5b546a992a9754898095f69bddce3534688a9c1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-java 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Програмата е пусната под процес номер {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-java/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..4d6e7f750527f974fc88e0564aa98276f40dd358 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-java. +# 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: Hello.java:18 +#, java-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/share/doc/gettext/examples/hello-java/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-java/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..cc003dbd7c45646dee9a864c61c812c248002b2e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/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-java 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.java:14 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Tento program běží jako proces číslo {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/da.po b/miniconda3/share/doc/gettext/examples/hello-java/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..d007439f41fce6b870c1ed482e18e5f32cf587ee --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-java. +# 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dette program kører som proces nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/de.po b/miniconda3/share/doc/gettext/examples/hello-java/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..255768f76cb673bd422a1ffbfcb02ccff82c5860 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-java. +# 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dieses Programm läuft mit der Prozess-Nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/el.po b/miniconda3/share/doc/gettext/examples/hello-java/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..9816c1f13de06040f2ca9c6d44a001504af6c3f6 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-java +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-java 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.java:14 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-java/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..0c4bf650523e55b80290944af7b37ff0c1b9ebb0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/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-java 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.java:14 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ĉi tiu programo rulas kiel procez-numero {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/es.po b/miniconda3/share/doc/gettext/examples/hello-java/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..93cd6c39968ec4b8c98170dfcf7744c82f92201a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/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-java-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.java:14 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: Hello.java:18 +#, java-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/share/doc/gettext/examples/hello-java/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-java/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..6a004d70e8d3fe84cc5d8ba580780145f55fe48e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/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-java 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.java:14 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Tämän ohjelman prosessinumero on {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-java/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..459f01ea1c1f56f450a2137b3685340abbaef997 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/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-java 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.java:14 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: Hello.java:18 +#, java-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/share/doc/gettext/examples/hello-java/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-java/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..b35d94b2ab5b445001abb2c462c70018616ce44b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-java. +# 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: Hello.java:18 +#, java-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/share/doc/gettext/examples/hello-java/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-java/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..b941d80c8d1650bfe1801f75d536153924b1364b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-java 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: Hello.java:18 +#, java-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/share/doc/gettext/examples/hello-java/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-java/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..edbd0df4011c6e45a283ee8fbb94507cfd794f8c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-java 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ovaj program se izvršava kao proces broj {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-java/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..f2b9af39abc70bc70b6703ae1fa09fd204b3ade5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-java. +# 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: Hello.java:18 +#, java-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/share/doc/gettext/examples/hello-java/po/id.po b/miniconda3/share/doc/gettext/examples/hello-java/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..ae42d70bf1ce909a11dbba8ce8cd71d869e4ec9c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-java-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-java-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.java:14 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Program ini berjalan sebagai proses nomor {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/it.po b/miniconda3/share/doc/gettext/examples/hello-java/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..095e3a48013d7f2e5235c02e8c4afa0613e6ec6d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-java. +# 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Questo programma è in esecuzione con numero di processo {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-java/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..5914e457d6cb7f698c5eafbcb1cbf29e92b6535b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-java' 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-java 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.java:14 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "このプログラムはプロセス番号 {0} で動いています." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-java/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..d2e4a1f078c82d4e090439c723a90d1f9e6560e1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/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-java 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.java:14 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-java/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..fda27f3f7239d59f5eb599e84657bb44c38a6e41 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-java' 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Бул программа {0} процесс номери катары иштеп жатат." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-java/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..89f02e97ed40706be7288300932bc3625a6afa42 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-java +# 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-java-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.java:14 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Šī programma darbojas ar procesa numuru {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-java/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..f85c41c0fa13135cf676c8479880e19e021681b0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/ms.po @@ -0,0 +1,28 @@ +# hello-java 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Program ini dilaksanakan sebagai proses bernombor {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-java/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..5f5f1439368e2797783d4a8301ec8d07df5dfad5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/mt.po @@ -0,0 +1,27 @@ +# hello-java-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-java 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.java:14 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: Hello.java:18 +#, java-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/share/doc/gettext/examples/hello-java/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-java/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..da88947de905c3dec1115cb2e17d06ae4a866466 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-java 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dette programmet kjører som prosess nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-java/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..31e166641e4975f44bccde5e713c53c9f3fa64d2 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-java. +# 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-java-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.java:14 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dit programma draait als proces nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-java/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..cd314f492e523f849e83f59ce6f7662c9e406a62 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-java +# 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-java-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.java:14 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Dette programmet køyrer som prosess nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-java/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..3fb88d746a67375d981bf20bf1ed017c19250d66 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-java 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ten program działa jako proces o numerze {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-java/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..8ea46bf3c465a084f459f7f111661be174b03dd2 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-java' 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: Hello.java:18 +#, java-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/share/doc/gettext/examples/hello-java/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-java/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..1bec87391011a267f69060ee7ad03200164b68d3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/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-java 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.java:14 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: Hello.java:18 +#, java-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/share/doc/gettext/examples/hello-java/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-java/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..3f93fbb90d46e0d926346739612aabf7f97a0a48 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-java" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-java. +# 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-java”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-java 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-java 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-java 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-java 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-java-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-java 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.java:14 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Acest program rulează ca procesul numărul {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-java/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..75f55b85eb8e6963b60a23b2fe83d49e2e84ae35 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-java-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-java 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.java:14 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Эта программа выполняется как процесс под номером {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-java/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..89fce4a9972b160183ba0426be690bf63f7fd69b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-java 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Tento program beží ako proces s číslom {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-java/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..100512cc900ba1a2df787d779793ce5cb491068d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/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-java-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-java 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.java:14 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ta program teče kot proces številka {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-java/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..e7168c2b8cb6ddd6bb55fa9ed6f31c0c846d8deb --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/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-java-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.java:14 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ky program po xhiron si procesi numër {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-java/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..1160640df2cbd0671c79c10d06016ef714c51560 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-java. +# 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-java-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.java:14 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Овај програм се извршава као процес број {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-java/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..bf7e5a8c38d797bdb474cbab01c48f5c0ef4f987 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-java. +# 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Detta program kör som process nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-java/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..a2b212e3e6f65e35bd437818f5d043ba64610925 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/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-java 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.java:14 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "இந்நிரல் செயலாக்க எண் {0} ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-java/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..c966e07244097ad4eb4bd5e5aeb99d6ee1a6e8ef --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-java. +# 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: Hello.java:18 +#, java-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/share/doc/gettext/examples/hello-java/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-java/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..33b807d31febe9f5f80a710174012cd69e114c06 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-java +# 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-java 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.java:14 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "Ця програма виконується як процес з номером {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-java/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..976325769a1416c0e2628bf2320c1636c548df8b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/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-java 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.java:14 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: Hello.java:18 +#, java-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/share/doc/gettext/examples/hello-java/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-java/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..805a2aba26a11c6227adbfa4c85bfc68a94b9aec --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-java. +# 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-java 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.java:14 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "此程序正以进程号 {0} 运行。" diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-java/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..6facded3a57fcfe4801a5dcf9f92c77d90d3b146 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-java. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-java 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.java:14 +msgid "Hello, world!" +msgstr "你好!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "本程式正在執行中,進程編號為 {0}。" diff --git a/miniconda3/share/doc/gettext/examples/hello-java/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-java/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..a7fe12cdbe719022ce928b80467c5cd233be4d3d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-java/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-java. +# 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-java 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.java:14 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: Hello.java:18 +#, java-format +msgid "This program is running as process number {0}." +msgstr "本程式正在執行,行程編號為 {0}。" diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/INSTALL b/miniconda3/share/doc/gettext/examples/hello-librep/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..c9970d8ba9cf212002049a0eb21165fc95c398f7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/INSTALL @@ -0,0 +1,10 @@ +This example relies on librep. + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-librep/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..86f070868583ba24f610c8c58177e624b146c134 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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 librep programs. +SUFFIXES = .jl .jlc +.jl.jlc: + rep --batch --no-rc -l compiler -f compile-batch $< +CLEANFILES = *.jlc + +# Making a librep program executable. +hello: hello.jlc + (echo '#!@REP@'; echo '!#'; cat $<) > $@ + chmod a+x $@ +CLEANFILES += hello + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-librep/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..8655a871726b2a31a935332f3e7cbba7b36928e8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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/share/doc/gettext/examples/hello-librep/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-librep/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..a972da8041799c1ddf0a23303c0660eb9fb827bc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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/share/doc/gettext/examples/hello-librep/configure.ac b/miniconda3/share/doc/gettext/examples/hello-librep/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..422865dd86edc7e009ce0ee704cd1153f240cbb5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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-librep], [0]) +AC_CONFIG_SRCDIR([hello.jl.in]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Check for availability of the librep interpreter. +AC_PATH_PROG([REP], [rep]) +if test -z "$REP"; then + echo "*** Essential program rep not found" 1>&2 + exit 1 +fi +AC_SUBST([REP]) + +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.jl]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/hello.jl.in b/miniconda3/share/doc/gettext/examples/hello-librep/hello.jl.in new file mode 100644 index 0000000000000000000000000000000000000000..2d321ca4eb5b6f968dde246fb77bf12c51e62e4b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/hello.jl.in @@ -0,0 +1,16 @@ +#| Example for use of GNU gettext. + This file is in the public domain. + + Source code of the librep program. +|# + +(require 'rep.i18n.gettext) + +(textdomain "hello-librep") +(bindtextdomain "hello-librep" "@localedir@") + +(write standard-output (_ "Hello, world!")) +(write standard-output "\n") +(format standard-output (_ "This program is running as process number %d.") + (process-id)) +(write standard-output "\n") diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-librep/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..8a841b31f12ff3bd59428fbba049f50825d91510 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/m4/Makefile.am @@ -0,0 +1,2 @@ +EXTRA_DIST = \ + nls.m4 po.m4 diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-librep/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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/share/doc/gettext/examples/hello-librep/po/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-librep/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..9682cd0e63cd9d310d638b5fe0bee95c2ffb06a1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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.jl.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/share/doc/gettext/examples/hello-librep/po/af.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..fbbf166e7a0f4e5302a0887a09ebd5204c9e4512 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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-librep-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.jl.in:12 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Hierdie program loop as prosesnommer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..d5043ecdb47859ede8a294946f09ec3828df5880 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-librep +# 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.jl.in:14 +#, librep-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/share/doc/gettext/examples/hello-librep/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..34f0dea214c07110779a34be2e680d3713e4c2a3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-librep 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Програмата е пусната под процес номер %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..d22688f9515fc7ae760be4c44e261c642e9399be --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-librep. +# 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.jl.in:14 +#, librep-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/share/doc/gettext/examples/hello-librep/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..271d4421306a4d341d26ccc9c9d3edf5bbd10625 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Tento program běží jako proces číslo %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/da.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..19fb5fe0fe7d39e903c405572cc613e979e1b208 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-librep. +# 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Dette program kører som proces nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/de.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..1cf8930b3453da9878b84b5d714c14564f02add4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-librep. +# 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Dieses Programm läuft mit der Prozess-Nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/el.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..89a6794c11049a1a8e6e4c2c9a2f27301fa5bfaa --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-librep +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..da90b4abcf7322b2ca147a9c485986e476f07f7f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Ĉi tiu programo rulas kiel procez-numero %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/es.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..cb110918396b719f73f4bee957c5f40eb9494561 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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-librep-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.jl.in:12 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.jl.in:14 +#, librep-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/share/doc/gettext/examples/hello-librep/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..40de12666612169141de41539f10340fe4dcb764 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Tämän ohjelman prosessinumero on %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..7188bb455910b89097a1621bb7b2a794c81b76f7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.jl.in:14 +#, librep-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/share/doc/gettext/examples/hello-librep/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..f8e80f24ff350777dd63c204d8348d670957497b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-librep. +# 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.jl.in:14 +#, librep-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/share/doc/gettext/examples/hello-librep/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..d01e8ca2f565d41f57f4f2131d0b160857f0fa53 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-librep 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.jl.in:14 +#, librep-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/share/doc/gettext/examples/hello-librep/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..f0d99ae4fbb1743b83be09b532e848476bf5b0f1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-librep 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Ovaj program se izvršava kao proces broj %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..c4c6b2bf9f5c1d544a7d3e18d700dedf7571e5f2 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-librep. +# 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.jl.in:14 +#, librep-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/share/doc/gettext/examples/hello-librep/po/id.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..189d4e8881908360b154d9aa029e4eb601e62eb8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-librep-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-librep-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.jl.in:12 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Program ini berjalan sebagai proses nomor %d" diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/it.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..142bfbbd2d8f09446adb33d237f2af53b12236ec --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-librep. +# 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Questo programma è in esecuzione con numero di processo %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..99ffd7566f724245041a189d22ab84a79173ba14 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-librep' 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "このプログラムはプロセス番号 %d で動いています." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..d383a049b0bb8fbe32e1dc3bb7e62a77a3b3be85 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..ac2cdadf37fa55bcb51fa0c7f0f26eccb2c50d5f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-librep' 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Бул программа %d процесс номери катары иштеп жатат." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..e31be25805687a7eab7430fe7662d1d750bfe6d6 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-librep +# 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-librep-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.jl.in:12 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Šī programma darbojas ar procesa numuru %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..1a84bc7787f6b971d3cf4b6739852cda3a86dd32 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/ms.po @@ -0,0 +1,28 @@ +# hello-librep 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Program ini dilaksanakan sebagai proses bernombor %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..2d3adae342cc6496b537305665365c0b8fa2cc70 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/mt.po @@ -0,0 +1,27 @@ +# hello-librep-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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.jl.in:14 +#, librep-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/share/doc/gettext/examples/hello-librep/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..b483f178fbf2543fada9ecccac14aff142698e6f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-librep 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Dette programmet kjører som prosess nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..0551bfd9cecfee3d466a18b4eacfef30dd120dc7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-librep. +# 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-librep-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.jl.in:12 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Dit programma draait als proces nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..aecfdc16ad6ca7bd528d05717f7875c45a8f07b2 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-librep +# 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-librep-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.jl.in:12 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Dette programmet køyrer som prosess nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..cdf305d4cadeb0cbbdf8ce9919965a7b8f093d44 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-librep 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Ten program działa jako proces o numerze %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..822e39f74dfc37d39486ac37b153ebd310b8499c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-librep' 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.jl.in:14 +#, librep-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/share/doc/gettext/examples/hello-librep/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..e6468a7a2411fb42a98ce2278bd3456bbe437633 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.jl.in:14 +#, librep-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/share/doc/gettext/examples/hello-librep/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..769111bf8b4e5f2a34de7849b3d50da6bcbaf99c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-librep" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-librep. +# 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-librep”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-librep 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-librep 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-librep 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-librep 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-librep-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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Acest program rulează ca procesul numărul %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..74e72ebb1c44eabbed9a6f38434c66970382acee --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-librep-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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Эта программа выполняется как процесс под номером %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..fcec2d7596f2a186cff2f6a2808ebbbd2cb4268b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-librep 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Tento program beží ako proces s číslom %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..fcdf9ff6d97cbbf586a94838d953f7d2b0a72126 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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-librep-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Ta program teče kot proces številka %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..8cb0caf8f8c8c02fc3d67244f7519c7bb8b7aa97 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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-librep-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.jl.in:12 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Ky program po xhiron si procesi numër %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..118d8f32f350e7786171af1125d4f04bc4e2d540 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-librep. +# 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-librep-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.jl.in:12 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Овај програм се извршава као процес број %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..dc2d47eee85bd41e6b8914ad5dc7b0aad0120529 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-librep. +# 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Detta program kör som process nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..c024477e81502a175819e214f2da4093c80350f2 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "இந்நிரல் செயலாக்க எண் %d ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..79c7083d5d1998ebf729d9dfd4fad179cffdf5d8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-librep. +# 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.jl.in:14 +#, librep-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/share/doc/gettext/examples/hello-librep/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..81ee0f3d742e09e9c8866a669f92d8f5ac0c2aaf --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-librep +# 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "Ця програма виконується як процес з номером %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..c1900f1c3e8a72fb9f9f486f7686fa7f28e3e579 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.jl.in:14 +#, librep-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/share/doc/gettext/examples/hello-librep/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..72d2093369b671eca73fb7672dfbb0dccfae662e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-librep. +# 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "此程序正以进程号 %d 运行。" diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..e54ecb7fe71cc8a61d0709cbef6764fefecc9965 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-librep. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "你好!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行中,進程編號為 %d。" diff --git a/miniconda3/share/doc/gettext/examples/hello-librep/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-librep/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..4e9942e5a36d763c5b3526c3218d620d777d6fd4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-librep/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-librep. +# 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-librep 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.jl.in:12 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.jl.in:14 +#, librep-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行,行程編號為 %d。" diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/INSTALL b/miniconda3/share/doc/gettext/examples/hello-modula2/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..e3e11d2ff49ed5269392fe8a387042f09a1f1e8a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/INSTALL @@ -0,0 +1,10 @@ +This example relies on the GNU Modula-2 compiler (gm2). + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix [--with-m2-libraries-prefix=/some/prefix] + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-modula2/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..05851697412812890e88fab4bc7df791cdb93b07 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/Makefile.am @@ -0,0 +1,37 @@ +# 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.mod + +# Compile time dependencies. +if HAVE_M2_LIBRARIES_PREFIX +# Use the prefix specified as configure option. +m2includedir = $(M2_LIBRARIES_PREFIX)/include/m2 +m2libdir = $(M2_LIBRARIES_EXECPREFIX)/lib +else +# Use the prefix determined by autogen.sh. +include $(srcdir)/m2dirs.mk +endif + +# Link time dependencies. +LDADD = -lintl_m2 @LIBINTL@ + +hello$(EXEEXT): hello.mod + $(M2C) -I$(m2includedir) -L$(m2libdir) -Wl,-rpath,$(m2libdir) $(M2FLAGS) \ + -o hello$(EXEEXT) hello.mod $(LDADD) + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-modula2/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..db13b81bcfce18458a584a7d8d1bd053da5aae8d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/autoclean.sh @@ -0,0 +1,50 @@ +#!/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 + +# Generated by autogen.sh. +rm -f m2dirs.mk + +# 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/modula2comp.m4 + +# 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/share/doc/gettext/examples/hello-modula2/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-modula2/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..3ad9cf86c4e9e583551492209376dfa2e252fb47 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/autogen.sh @@ -0,0 +1,59 @@ +#!/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 || 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 + { echo "m2includedir = "`cd $GETTEXT_TOPSRCDIR/gettext-runtime/intl-modula2 && pwd`; + echo "m2libdir = "`cd $GETTEXT_TOPSRCDIR/gettext-runtime/intl-modula2/.libs && pwd`; + } > m2dirs.mk +else + # Installed under ${prefix}/share/doc/gettext/examples. + . ../installpaths + { echo "m2includedir = ${includedir}/m2"; + echo "m2libdir = ${libdir}"; + } > m2dirs.mk +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}/modula2comp.m4 m4/modula2comp.m4 + +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/share/doc/gettext/examples/hello-modula2/configure.ac b/miniconda3/share/doc/gettext/examples/hello-modula2/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..abe66bafa091e542f974ab65fc8a672f2b7092b6 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/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-modula2], [0]) +AC_CONFIG_SRCDIR([hello.mod.in]) +AM_INIT_AUTOMAKE([1.11]) + +gt_MODULA2COMP +if test -z "$M2C"; then + echo "*** Modula-2 compiler not found" 1>&2 + exit 1 +fi + +M2_LIBRARIES_PREFIX= +M2_LIBRARIES_EXECPREFIX= +AC_ARG_WITH([m2-libraries-prefix], + [[ --with-m2-libraries-prefix=DIR search for Modula-2 libraries in DIR/include/m2, DIR/lib]], + [if test "X$withval" != "X" && test "X$withval" != "Xno"; then + M2_LIBRARIES_PREFIX="$withval" + M2_LIBRARIES_EXECPREFIX="$M2_LIBRARIES_PREFIX" + fi + ]) +AC_SUBST([M2_LIBRARIES_PREFIX]) +AC_SUBST([M2_LIBRARIES_EXECPREFIX]) +AM_CONDITIONAL([HAVE_M2_LIBRARIES_PREFIX], [test -n "$M2_LIBRARIES_PREFIX"]) + +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.mod]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/hello.mod.in b/miniconda3/share/doc/gettext/examples/hello-modula2/hello.mod.in new file mode 100644 index 0000000000000000000000000000000000000000..9ce72fed8dfba54b255ffc3f7ac05847915b69b9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/hello.mod.in @@ -0,0 +1,40 @@ +(* Example for use of GNU gettext. + This file is in the public domain. + + Source code of the Modula-2 program. *) + + +MODULE Hello; + +FROM DynamicStrings IMPORT String, Length, char; +FROM Terminal IMPORT Write, WriteLn; +FROM Libintl IMPORT SetLocale, LC_ALL, TextDomain, BindTextDomain, Gettext; +FROM FormatStrings IMPORT Sprintf1; +FROM libc IMPORT getpid; + +(* Like Terminal.WriteString, except that it takes a String, not an ARRAY OF CHAR. *) +PROCEDURE WriteString (s: String); +VAR + l, i: CARDINAL; +BEGIN + l := Length(s); + i := 0; + WHILE i < l DO + Write(char(s, i)); + INC (i); + END; +END WriteString; + +BEGIN + + SetLocale(LC_ALL, ""); + TextDomain("hello-modula2"); + BindTextDomain("hello-modula2", "@localedir@"); + + WriteString(Gettext("Hello, world!")); + WriteLn; + + WriteString(Sprintf1(Gettext("This program is running as process number %d."), getpid())); + WriteLn; + +END Hello. diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-modula2/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..9dc24c302f23b4191ad62f81d69cb2236a7d2ddc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/m4/Makefile.am @@ -0,0 +1,3 @@ +EXTRA_DIST = \ + nls.m4 po.m4 \ + modula2comp.m4 diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-modula2/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/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/share/doc/gettext/examples/hello-modula2/po/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-modula2/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..ee396b8ae7d494e62b538cdb402ebfbb9f476707 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/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.mod.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/share/doc/gettext/examples/hello-modula2/po/af.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..c141813312b3d063f0d3163d819039dcc2c94843 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/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-modula2-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.mod.in:34 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Hierdie program loop as prosesnommer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..3ca466ae5cb92b2f081b62ce0c07f32d786471de --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-modula2 +# 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.mod.in:37 +#, modula2-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/share/doc/gettext/examples/hello-modula2/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..d03a5150e907ca4c94cd66b709cc6bfdd2b1727a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-modula2 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Програмата е пусната под процес номер %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..22f7564d28e1ad2c851864ed128f69de447a53c5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-modula2. +# 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.mod.in:37 +#, modula2-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/share/doc/gettext/examples/hello-modula2/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..2f2c4a4c7aa1fb77f422379c7a957fbcf708fef1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Tento program běží jako proces číslo %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/da.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..cc535bad82a2be75a1a973a3e667b4c60a1fbda7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-modula2. +# 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Dette program kører som proces nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/de.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..b5cf75ad0b75205448533c3653de2c00c79200b9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-modula2. +# 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Dieses Programm läuft mit der Prozess-Nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/el.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..1eb3a47160f058e70608ebf928c265a468efe061 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-modula2 +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..19c235cb2478c105d55a33d6c5432ac832280646 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Ĉi tiu programo rulas kiel procez-numero %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/es.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..4113561ac5b7247c95ac6df95119606631ef3456 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/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-modula2-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.mod.in:34 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.mod.in:37 +#, modula2-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/share/doc/gettext/examples/hello-modula2/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..eee25d97756ab7ff408f87bebf04bdfc6107aa4f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Tämän ohjelman prosessinumero on %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..057cd35c2e8f11a8ac251a7a06ca34ffcddbe09b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.mod.in:37 +#, modula2-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/share/doc/gettext/examples/hello-modula2/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..c81490f6cd847b1bdbd034ba585c699aa4ddab0a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-modula2. +# 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.mod.in:37 +#, modula2-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/share/doc/gettext/examples/hello-modula2/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..be600969bb573bbad6c19d65c867a215b585a916 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-modula2 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.mod.in:37 +#, modula2-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/share/doc/gettext/examples/hello-modula2/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..8843a20eab86ba2acfc6fdb30d369e4765596430 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-modula2 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Ovaj program se izvršava kao proces broj %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..df9d642313aba6a75d1781f9a08d069ab453f002 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-modula2. +# 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.mod.in:37 +#, modula2-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/share/doc/gettext/examples/hello-modula2/po/id.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..fadcc6f50ee6cf8521b4f738c356fe0c8c85be53 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-modula2-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-modula2-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.mod.in:34 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Program ini berjalan sebagai proses nomor %d" diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/it.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..0fc2d7ddf26430ddec044b21ee4e73ad3c2b6d50 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-modula2. +# 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Questo programma è in esecuzione con numero di processo %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..ef3d0a69c82d540311782e61a3d97c9d6f287fed --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-modula2' 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "このプログラムはプロセス番号 %d で動いています." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..2c7b544a82e32bb5849cd0801ddaa8d9b13fa487 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..7d0776e9bc1bcf2005c486d9b50d498db660957d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-modula2' 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Бул программа %d процесс номери катары иштеп жатат." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..3de0a9ac5acc14f129afbb3762eebf7038f1750d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-modula2 +# 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-modula2-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.mod.in:34 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Šī programma darbojas ar procesa numuru %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..0af7490f252152071d783c28c0981b4bd1eb1f08 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ms.po @@ -0,0 +1,28 @@ +# hello-modula2 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Program ini dilaksanakan sebagai proses bernombor %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..cb44a2627054d1a76d4e82bf64e0ab4ac4b6d37c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/mt.po @@ -0,0 +1,27 @@ +# hello-modula2-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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.mod.in:37 +#, modula2-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/share/doc/gettext/examples/hello-modula2/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..77f21c0e12d53cacbf29420690460b0bb19a076e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-modula2 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Dette programmet kjører som prosess nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..993e1c3327151fa692ed47edf55922a984014d5b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-modula2. +# 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-modula2-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.mod.in:34 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Dit programma draait als proces nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..4a94dfc1ae525da491479efaa4251f2c9af5a20f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-modula2 +# 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-modula2-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.mod.in:34 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Dette programmet køyrer som prosess nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..ebd9bac2f4c2778665579aba926fee2c7a7a1cb5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-modula2 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Ten program działa jako proces o numerze %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..ecb793e16e714779f7dbd866b04ddb8deee23277 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-modula2' 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.mod.in:37 +#, modula2-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/share/doc/gettext/examples/hello-modula2/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..ae0b27f728b4db29198267fbab1df9f60c191906 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.mod.in:37 +#, modula2-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/share/doc/gettext/examples/hello-modula2/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..87ed852cb083dc6be8d3797c17af5192c4f55135 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-modula2" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-modula2. +# 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-modula2”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-modula2 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-modula2 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-modula2 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-modula2 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-modula2-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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Acest program rulează ca procesul numărul %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..e9be804f42611a9b0bf055b45a0ebdd6946f00a0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-modula2-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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Эта программа выполняется как процесс под номером %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..245efbd0e6d4be70b74c60842148a6772c58a24d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-modula2 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Tento program beží ako proces s číslom %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..562a83ea6da84ad99aa882c047226ac6a383ce89 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/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-modula2-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Ta program teče kot proces številka %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..2560a88fde00e97a37e4979ae100fc3ccbcb8914 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/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-modula2-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.mod.in:34 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Ky program po xhiron si procesi numër %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..dab69f7e85565e8f7366aa6afb59ee1108801901 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-modula2. +# 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-modula2-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.mod.in:34 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Овај програм се извршава као процес број %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..8b13e1502f49f0017831bfe7d2e1f74526d44779 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-modula2. +# 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Detta program kör som process nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..b2775e5b18c9c95453b88aff8898cfaa19799f9f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "இந்நிரல் செயலாக்க எண் %d ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..828ba99c0de33448b0d647af1ff30dbb9f004ff3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-modula2. +# 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.mod.in:37 +#, modula2-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/share/doc/gettext/examples/hello-modula2/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..1f06adfbe798f00ebc5bd5bf6aa8c247f9bc7183 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-modula2 +# 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "Ця програма виконується як процес з номером %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..1072133c1bf27ead4c4abe7a504a2e3e4d8e4c2e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.mod.in:37 +#, modula2-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/share/doc/gettext/examples/hello-modula2/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..dc1d0f613ece70f32b8f62eb0b9a9dc6fea83db5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-modula2. +# 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "此程序正以进程号 %d 运行。" diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..3529211fbfb05d742190500086b7331f52c2ac29 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-modula2. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "你好!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行中,進程編號為 %d。" diff --git a/miniconda3/share/doc/gettext/examples/hello-modula2/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-modula2/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..31d7fbba2bfa7fd938e458c5a97bb620b6179733 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-modula2/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-modula2. +# 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-modula2 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.mod.in:34 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.mod.in:37 +#, modula2-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行,行程編號為 %d。" diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/INSTALL b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..1e82f28ee81242483f1f8868aaa750d0b2875749 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/INSTALL @@ -0,0 +1,19 @@ +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 + - the GNOME / Objective C bindings (libobgnome) + - the GTK / Objective C bindings (libobgtk) + - the Objective C runtime libraries (libobjc) + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..5756f6a72c987c646156682898cf5d9b75439b97 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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.m + +# 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 = $(OBGNOME_INCLUDES) $(GNOME_INCLUDEDIR) + +# Link time dependencies. +LDADD = $(GNOME_LIBDIR) $(GNOMEUI_LIBS) -lobgnome -lobgtk -lobjc @LIBINTL@ + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..9b8332fb282055fcc13b321d80e7054f54000af8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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/share/doc/gettext/examples/hello-objc-gnome2/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..cf1a97eec3ac424bd16d58e77382be46b3015993 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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/share/doc/gettext/examples/hello-objc-gnome2/configure.ac b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..f82aec03e236eedf231560eb1d8ac430c1600104 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/configure.ac @@ -0,0 +1,30 @@ +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-objc-gnome2], [0]) +AC_CONFIG_SRCDIR([hello.m]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Test for gobjc before gcc, since that's what the EPEL 9 package 'gcc-objc' +dnl installs (on systems where gcc does not support Objective C). +m4_pushdef([AC_MSG_FAILURE], m4_defn([AC_MSG_WARN])) +AC_PROG_OBJC([gobjc gcc objcc objc cc CC clang]) +m4_popdef([AC_MSG_FAILURE]) + +GNOME_INIT +OBGNOME_INCLUDES= +obgnome_prefix=`obgnome-config --prefix` +if test -n "$obgnome_prefix"; then + OBGNOME_INCLUDES="-I $obgnome_prefix/include" +fi +AC_SUBST([OBGNOME_INCLUDES]) + +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/share/doc/gettext/examples/hello-objc-gnome2/hello.m b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/hello.m new file mode 100644 index 0000000000000000000000000000000000000000..507fbaa97030dc8749907740ef88c91ce26c0b63 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/hello.m @@ -0,0 +1,93 @@ +/* Example for use of GNU gettext. + This file is in the public domain. + + Source code of the Objective 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[]) +{ + Gnome_App *application; + Gtk_Window *window; + Gtk_VBox *panel; + Gtk_Label *label1; + Gtk_Alignment *label1aligned; + Gtk_Label *label2; + Gtk_Alignment *label2aligned; + Gtk_Button *button; + Gtk_ButtonBox *buttonbar; + + /* Initializations. */ + + application = [[Gnome_App alloc] initApp: PACKAGE : VERSION : argc : argv]; + textdomain ("hello-objc-gnome2"); + bindtextdomain ("hello-objc-gnome2", LOCALEDIR); + + /* Create the GUI elements. */ + + window = [[Gtk_Window alloc] initWithWindowInfo: GTK_WINDOW_TOPLEVEL]; + [window set_title: "Hello example"]; + [window realize]; + [window signal_connect: "delete_event" signalFunc: quit_callback funcData: NULL]; + + label1 = [[Gtk_Label alloc] initWithLabelInfo: _("Hello, world!")]; + + label1aligned = [[Gtk_Alignment alloc] initWithAlignmentInfo: 0.0 : 0.5 : 0 : 0]; + [label1aligned add: label1]; + + label2 = [[Gtk_Label alloc] initWithLabelInfo: g_strdup_printf (_("This program is running as process number %d."), getpid ())]; + + label2aligned = [[Gtk_Alignment alloc] initWithAlignmentInfo: 0.0 : 0.5 : 0 : 0]; + [label2aligned add: label2]; + + button = [Gtk_Button alloc]; + [button initWithLabel: "OK"]; + [button signal_connect: "clicked" signalFunc: quit_callback funcData: NULL]; + + buttonbar = [Gtk_HButtonBox new]; + [buttonbar set_layout: GTK_BUTTONBOX_END]; + [buttonbar pack_start_defaults: button]; + + panel = [[Gtk_VBox alloc] initWithVBoxInfo: FALSE : GNOME_PAD_SMALL]; + [panel pack_start_defaults: label1aligned]; + [panel pack_start_defaults: label2aligned]; + [panel pack_start_defaults: buttonbar]; + + [window add: panel]; + + /* Make the GUI elements visible. */ + + [label1 show]; + [label1aligned show]; + [label2 show]; + [label2aligned show]; + [button show]; + [buttonbar show]; + [panel show]; + [window show]; + + /* Start the event loop. */ + + gtk_main (); + + return 0; +} diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..7d516f09ff64e7f731d69696326a8626ca9c4ee0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/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/share/doc/gettext/examples/hello-objc-gnome2/m4/gnome-gnorba-check.m4 b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/m4/gnome-gnorba-check.m4 new file mode 100644 index 0000000000000000000000000000000000000000..dbac0a6cf75be4e9560f4653eed1437962b07710 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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/share/doc/gettext/examples/hello-objc-gnome2/m4/gnome-orbit-check.m4 b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/m4/gnome-orbit-check.m4 new file mode 100644 index 0000000000000000000000000000000000000000..54bf33aa4ba585bdb409732799b2f50f4f773a83 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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/share/doc/gettext/examples/hello-objc-gnome2/m4/gnome.m4 b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/m4/gnome.m4 new file mode 100644 index 0000000000000000000000000000000000000000..659c22c4942dc3411e8cd9a03df2346e2af760b6 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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/share/doc/gettext/examples/hello-objc-gnome2/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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/share/doc/gettext/examples/hello-objc-gnome2/po/Makevars b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/Makevars new file mode 100644 index 0000000000000000000000000000000000000000..c3f465c6825fc1a1d5a5cc56fbf52ae4727db0a3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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/share/doc/gettext/examples/hello-objc-gnome2/po/POTFILES.in b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/POTFILES.in new file mode 100644 index 0000000000000000000000000000000000000000..0f7595d6990bb2101b78fb0535349e80e8312c91 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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.m diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/af.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..69bfdcaa7c262ca8404d5d7e9b4cda2acfb1ea2f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Hierdie program loop as prosesnommer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..611380ca19d0c284244abce3d505db9acd8832a0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..ec244d0b702af40bbc1a11bca2a50474a505e570 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Програмата е пусната под процес номер %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..ba4d2927c1bd90456493268b5b09d6e2074b3263 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..5e253469c584f34808252165ad181be687288daf --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Tento program běží jako proces číslo %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/da.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..a8f16665664ec29054158164325fcd5d6bb67caf --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Dette program kører som proces nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/de.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..c4ca46f2beb0b2cd65f52a25c5c219bc56a748ef --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/el.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..33c8c636064006f711d99632bd3a98d21e8002f5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-objc-gnome2 +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-objc-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.m:52 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..8d317e77e5ad99ea8887b60a15c5e5a1fa05d3e1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Ĉi tiu programo rulas kiel procez-numero %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/es.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..89480faf00ad49272385f0ee41d05784a8295ac6 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..7c05e74663297e92f9e2a8b481be424870577e15 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Tämän ohjelman prosessinumero on %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..1bfbefe9bf46115573d3801f5466c1e4e0fbe070 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..69097feeb727b3d1e65214f02c7c567a99a702a9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..02c8c0ff6ad3b4d79050e7e7d500d738b8d65295 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..7a3bebf8f7904bb82347c9809ebd4440cf558ab3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..4f3df5fed44ad368d70b1ef6c81142124074be40 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/id.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..dbc8651d17771ed8f271deff4b67b23e09c93854 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Program ini berjalan sebagai proses nomor %d" diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/it.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..27b27b4d5901c213a825d895b6152fe938599c93 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..7e5214722946f843c9139243532488712dedff39 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "このプログラムはプロセス番号 %d で動いています." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..853d658fb36e64c01a434a72b430cdfbb2c9eba0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..dff6d2dcef58b2281971fd5f499d67791882c55f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Бул программа %d процесс номери катары иштеп жатат." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..1ca20328ca055b3156683bdaf4011cf68b339029 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Šī programma darbojas ar procesa numuru %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..0633e4fedb7607b5d941a8e994017bd094b2b2aa --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ms.po @@ -0,0 +1,28 @@ +# hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Program ini dilaksanakan sebagai proses bernombor %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..24dcfa43e9abdd947ee5ae53dfb50469a6f45e8e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/mt.po @@ -0,0 +1,27 @@ +# hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..1c43b73c2cb30c3568e37ee5b72c0e1fd8117be0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Dette programmet kjører som prosess nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..51bbabd3887205a53f440328f46a981c807f375c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Dit programma draait als proces nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..19d768449207492c00fdcc2124ab94f44fced47a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Dette programmet køyrer som prosess nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..2793aecdb4c783af84eb1d59090dbea6ec3fcdd5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..c709d832ac975da7e1fff7d228557960028bd049 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..c5dd0f5e02b99e1bcfad94173d074fecf695a9d3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..909e47cac7cb80965b4b29dff94d38c12b79754a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-objc-gnome2" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-objc-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-objc-gnome2”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-objc-gnome2 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-objc-gnome2 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-objc-gnome2 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-objc-gnome2 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Acest program rulează ca procesul numărul %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..94adb6b039b400c6ba8b661742fc2082cd83a151 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Эта программа выполняется как процесс под номером %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..833cf3d5c0a3b5b2fbf2e5c1b11438a9a9376521 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Tento program beží ako proces s číslom %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..962024b5256e00cab32f17255afd8649a4eb8539 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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-objc-gnome2-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-objc-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.m:52 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Ta program teče kot proces številka %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..2c57df89e7e087f3803f5cf1182135efdc109402 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..ab35abd02d88db7b0fd851db28a3c56b4a6ba7b9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Овај програм се извршава као процес број %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..ae9fa991db7130dd094b5d0045eab53f5d412e69 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Detta program kör som process nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..1e650bf3ce0572cdae2223943e3407bc3b0ef158 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "இந்நிரல் செயலாக்க எண் %d ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..b927b90e7b43f385f78927a7e256f71af9ca7961 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..a551b757a0d2e93ad6a1b40656d6ce207e949e71 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "Ця програма виконується як процес з номером %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..44e609c50fcdae3f72e4ce98756fb17cb546e923 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.m:57 +#, 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/share/doc/gettext/examples/hello-objc-gnome2/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..5f6eba86f08ba022684e7e7f1c003dfb7579f37d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "此程序正以进程号 %d 运行。" diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..43a0f243bf75b0fbed4817ee5af169ccc0d9d3a9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-objc-gnome2. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-objc-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.m:52 +msgid "Hello, world!" +msgstr "你好!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行中,進程編號為 %d。" diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..abe37058c3845b4d06261de65354a031c670caa7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnome2/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-objc-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-objc-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.m:52 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.m:57 +#, c-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行,行程編號為 %d。" diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/AppController.h b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/AppController.h new file mode 100644 index 0000000000000000000000000000000000000000..7b1912a709098cefffc37aefddfb0f943e687d46 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/AppController.h @@ -0,0 +1,35 @@ +/* Example for use of GNU gettext. + This file is in the public domain. + + Interface of the AppController class. */ + +#include + +@class Hello; + +@interface AppController : NSObject +{ + Hello *hello; +} + ++ (void)initialize; + +- (id)init; +- (void)dealloc; + +- (void)awakeFromNib; + +- (void)applicationDidFinishLaunching + :(NSNotification *)notif; + +- (BOOL)applicationShouldTerminate:(id)sender; +- (void)applicationWillTerminate:(NSNotification *)notification; + +- (BOOL)application:(NSApplication *)application openFile:(NSString *)fileName; + +- (void)showPrefPanel:(id)sender; +- (void)showInfoPanel:(id)sender; + +- (void)showHelloWindow:(id)sender; + +@end diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/AppController.m b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/AppController.m new file mode 100644 index 0000000000000000000000000000000000000000..96475cd38b7623a74be5005a3b4dbab2f8b6c829 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/AppController.m @@ -0,0 +1,81 @@ +/* Example for use of GNU gettext. + This file is in the public domain. + + Source code of the AppController class. */ + +#include "AppController.h" +#include "Hello.h" + +@implementation AppController + +static NSDictionary *infoDict = nil; + ++ (void)initialize +{ + NSMutableDictionary *defaults = [NSMutableDictionary dictionary]; + + [[NSUserDefaults standardUserDefaults] registerDefaults: defaults]; + [[NSUserDefaults standardUserDefaults] synchronize]; +} + +- (id)init +{ + self = [super init]; + return self; +} + +- (void)dealloc +{ + if (hello) + RELEASE (hello); + + [super dealloc]; +} + +- (void)awakeFromNib +{ +} + +- (void)applicationDidFinishLaunching:(NSNotification *)notif +{ +} + +- (BOOL)applicationShouldTerminate:(id)sender +{ + return YES; +} + +- (void)applicationWillTerminate:(NSNotification *)notification +{ +} + +- (BOOL)application:(NSApplication *)application openFile:(NSString *)fileName +{ +} + +- (void)showPrefPanel:(id)sender +{ +} + +- (void)showInfoPanel:(id)sender +{ + if (!infoDict) + { + NSString *fp; + NSBundle *bundle = [NSBundle mainBundle]; + + fp = [bundle pathForResource: @"Info-project" ofType: @"plist"]; + infoDict = [[NSDictionary dictionaryWithContentsOfFile: fp] retain]; + } + [[NSApplication sharedApplication] orderFrontStandardInfoPanelWithOptions: infoDict]; +} + +- (void)showHelloWindow:(id)sender +{ + if (!hello) + hello = [[Hello alloc] init]; + + [hello makeKeyAndOrderFront]; +} + +@end diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/BUGS b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/BUGS new file mode 100644 index 0000000000000000000000000000000000000000..0120751bf26763282a044737e10e37ec873846cb --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/BUGS @@ -0,0 +1,3 @@ +Correct display of characters depends on the GNUstep display engine; as of +GNUstep-1.8.0, it works only for ISO-8859-1 characters (regardless of whether +GNUSTEP_STRING_ENCODING is set to NSUTF8StringEncoding or not). diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/GNUmakefile b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/GNUmakefile new file mode 100644 index 0000000000000000000000000000000000000000..ba4c565d44a70c74cf755ed58e8af1af3cb80f89 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/GNUmakefile @@ -0,0 +1,39 @@ +# Example for use of GNU gettext. +# This file is in the public domain. + +include $(GNUSTEP_MAKEFILES)/common.make + +# Subprojects +SUBPROJECTS = po + +# Main application +PACKAGE_NAME = Hello +APP_NAME = Hello +GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_LOCAL_ROOT) +Hello_APPLICATION_ICON = + +# Additional libraries +ADDITIONAL_GUI_LIBS += + +# Resource files +Hello_RESOURCE_FILES = +Hello_LOCALIZED_RESOURCE_FILES = Localizable.strings +Hello_LANGUAGES := $(sort English $(shell MAKEFLAGS= $(MAKE) -s -C po echo-languages)) + +# Header files +Hello_HEADERS = AppController.h Hello.h + +# Class files +Hello_OBJC_FILES = main.m AppController.m Hello.m + +# C files +Hello_C_FILES = + +-include GNUmakefile.preamble +-include GNUmakefile.local +include $(GNUSTEP_MAKEFILES)/aggregate.make +include $(GNUSTEP_MAKEFILES)/application.make +-include GNUmakefile.postamble + +internal-distclean:: + rm -rf *.lproj diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/Hello.h b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/Hello.h new file mode 100644 index 0000000000000000000000000000000000000000..89458eda2fcc70f444dd8bdb3f5f50368d552b7b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/Hello.h @@ -0,0 +1,31 @@ +/* Example for use of GNU gettext. + This file is in the public domain. + + Interface of the Hello class. */ + +#include + +@interface Hello : NSObject +{ + NSWindow *window; + + NSTextField *label1; + NSTextField *label2; + + id okButton; +} + +- (id)init; +- (void)dealloc; + +- (void)makeKeyAndOrderFront; + +- (void)done; + +@end + +@interface Hello (UIBuilder) + +- (void)createUI; + +@end diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/Hello.m b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/Hello.m new file mode 100644 index 0000000000000000000000000000000000000000..56f31f63fcea84ff116cfdb8adbb7cfe86e631b1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/Hello.m @@ -0,0 +1,99 @@ +/* Example for use of GNU gettext. + This file is in the public domain. + + Source code of the Hello class. */ + +#include +#include "Hello.h" +#include +#include + +@implementation Hello + +- (id)init +{ + if ((self = [super init])) + [self createUI]; + return self; +} + +- (void)dealloc +{ + RELEASE (window); + [super dealloc]; +} + +- (void)makeKeyAndOrderFront +{ + if (![window isVisible]) + [window center]; + [window makeKeyAndOrderFront:self]; +} + +- (void)done +{ + [window close]; +} + +@end + +@implementation Hello (UIBuilder) + +- (void)createUI +{ + GSVbox *cview; + GSHbox *buttonbar; + int i; + + label1 = [NSTextField new]; + [label1 setStringValue: _(@"Hello, world!")]; + [label1 setAlignment: NSLeftTextAlignment]; + [label1 setBordered: NO]; + [label1 setEditable: NO]; + [label1 setBezeled: NO]; + [label1 setDrawsBackground: NO]; + [label1 sizeToFit]; + + label2 = [NSTextField new]; + [label2 setStringValue: [NSString stringWithFormat: _(@"This program is running as process number %d."), [[NSProcessInfo processInfo] processIdentifier]]]; + [label2 setAlignment: NSLeftTextAlignment]; + [label2 setBordered: NO]; + [label2 setEditable: NO]; + [label2 setBezeled: NO]; + [label2 setDrawsBackground: NO]; + [label2 sizeToFit]; + + okButton = [NSButton new]; + [okButton setTitle: @"OK"]; + [okButton setTarget: self]; + [okButton setAction: @selector(done)]; + [okButton setFrameSize: NSMakeSize(60,22)]; + [okButton setAutoresizingMask: 7]; + + buttonbar = [GSHbox new]; + [buttonbar setAutoresizingMask: NSViewMinXMargin]; + [buttonbar addView: okButton]; + AUTORELEASE (okButton); + + cview = [GSVbox new]; + // GSVbox is flawed: We have to add the controls bottom-up, and mark the + // last one (= the topmost one) as non-resizable in Y direction, so that the + // Y space becomes equally distributed _between_ (not above) the subviews. + [cview addView: buttonbar]; + AUTORELEASE (buttonbar); + [cview addView: label2]; + AUTORELEASE (label2); + [cview addView: label1 enablingYResizing: NO]; + AUTORELEASE (label1); + + window = [[NSWindow alloc] initWithContentRect: NSMakeRect(0,0, [cview frame].size.width, [cview frame].size.height) + styleMask: (NSTitledWindowMask | NSClosableWindowMask | NSMiniaturizableWindowMask) + backing: NSBackingStoreBuffered + defer: NO]; + [window setDelegate: self]; + [window setTitle: @"Hello example"]; + [window setReleasedWhenClosed: NO]; + [window setContentView: cview]; +} + +@end diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/INSTALL b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..8652d6ace91d0426c657882b5bdc88971b9d1307 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/INSTALL @@ -0,0 +1,15 @@ +This example relies on: + - the GNUstep libraries (libgnustep-gui, libgnustep-base) + and their dependencies (libiconv or glibc, and ffcall) + - the Objective C runtime libraries (libobjc) + +GNUstep applications don't need to be configured or installed in order to run; +all you need is to + - Prepare your environment, as described in the GNUstep-HOWTO. E.g. + . /usr/share/GNUstep/Makefiles/GNUstep.sh + - ./autogen.sh + - make + - openapp ./Hello +Cleanup: + - make distclean + - ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..6b48c37f4b6337a0e757afa8f1b21c608fe52780 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/autoclean.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Script for cleaning all autogenerated files. + +make distclean + +rm -f po/remove-potcdate.sed +rm -f po/*.pot +rm -rf *.lproj diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..a17b740080509da19e0d52d8cfdf77b5ba5fed80 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/autogen.sh @@ -0,0 +1,26 @@ +#!/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 ${GETTEXTSRCPODIR-$GETTEXT_TOPSRCDIR/gettext-runtime/po}/remove-potcdate.sed po/remove-potcdate.sed diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/main.m b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/main.m new file mode 100644 index 0000000000000000000000000000000000000000..6da032b4fc4320b8b2a96463c8fdb9d3dc31cf87 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/main.m @@ -0,0 +1,113 @@ +/* Example for use of GNU gettext. + This file is in the public domain. + + Source code of the main program. */ + +#include +#include "AppController.h" + +#define APP_NAME @"Hello" + +/* Create the application's menu. */ +static void +createMenu () +{ + NSMenu *menu; + NSMenu *info; + NSMenu *edit; + NSMenu *services; + NSMenu *windows; + + SEL action = @selector(method:); + + menu = [[NSMenu alloc] initWithTitle: APP_NAME]; + [menu addItemWithTitle: @"Info" + action: action + keyEquivalent: @""]; + [menu addItemWithTitle: @"Edit" + action: action + keyEquivalent: @""]; + [menu addItemWithTitle: @"Hello..." + action: @selector(showHelloWindow:) + keyEquivalent: @""]; + [menu addItemWithTitle: @"Windows" + action: action + keyEquivalent: @""]; + [menu addItemWithTitle: @"Services" + action: action + keyEquivalent: @""]; + [menu addItemWithTitle: @"Hide" + action: @selector(hide:) + keyEquivalent: @"h"]; + [menu addItemWithTitle: @"Quit" + action: @selector(terminate:) + keyEquivalent: @"q"]; + + info = AUTORELEASE ([[NSMenu alloc] init]); + [info addItemWithTitle: @"Info Panel..." + action: @selector(showInfoPanel:) + keyEquivalent: @""]; + [info addItemWithTitle: @"Preferences" + action: @selector(showPrefPanel:) + keyEquivalent: @""]; + [info addItemWithTitle: @"Help" + action: action + keyEquivalent: @"?"]; + [menu setSubmenu: info forItem: [menu itemWithTitle: @"Info"]]; + + edit = AUTORELEASE ([[NSMenu alloc] init]); + [edit addItemWithTitle: @"Cut" + action: @selector(cut:) + keyEquivalent: @"x"]; + [edit addItemWithTitle: @"Copy" + action: @selector(copy:) + keyEquivalent: @"c"]; + [edit addItemWithTitle: @"Paste" + action: @selector(paste:) + keyEquivalent: @"v"]; + [edit addItemWithTitle: @"Delete" + action: @selector(delete:) + keyEquivalent: @""]; + [edit addItemWithTitle: @"Select All" + action: @selector(selectAll:) + keyEquivalent: @"a"]; + [menu setSubmenu: edit forItem: [menu itemWithTitle: @"Edit"]]; + + windows = AUTORELEASE ([[NSMenu alloc] init]); + [windows addItemWithTitle: @"Arrange" + action: @selector(arrangeInFront:) + keyEquivalent: @""]; + [windows addItemWithTitle: @"Miniaturize" + action: @selector(performMiniaturize:) + keyEquivalent: @"m"]; + [windows addItemWithTitle: @"Close" + action: @selector(performClose:) + keyEquivalent: @"w"]; + [menu setSubmenu: windows forItem: [menu itemWithTitle: @"Windows"]]; + + services = AUTORELEASE ([[NSMenu alloc] init]); + [menu setSubmenu: services forItem: [menu itemWithTitle: @"Services"]]; + + [[NSApplication sharedApplication] setMainMenu: menu]; + [[NSApplication sharedApplication] setServicesMenu: services]; + [[NSApplication sharedApplication] setWindowsMenu: windows]; +} + +/* Initialise and go! */ +int +main(int argc, const char *argv[]) +{ + NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + AppController *controller; + + [NSApplication sharedApplication]; + + createMenu (); + + controller = [[AppController alloc] init]; + [NSApp setDelegate:controller]; + + RELEASE (pool); + + return NSApplicationMain (argc, argv); +} diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/GNUmakefile b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/GNUmakefile new file mode 100644 index 0000000000000000000000000000000000000000..cdc2fee28db705be257368c1176f4879df0f38dd --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/GNUmakefile @@ -0,0 +1,261 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Makefile - processed by GNU make. + +# NLS is enabled by default. +USE_NLS = yes + +# List of files which contain translatable strings. +POTFILES = \ + Hello.m + +# Usually the message domain is the same as the package name in lower case. +DOMAIN = hello-objc-gnustep + +# 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 = + +-include $(GNUSTEP_MAKEFILES)/rules.make + +# Main application +PACKAGE_NAME = Hello +PACKAGE_VERSION = 0 + +XGETTEXT = xgettext +MSGMERGE = msgmerge +MSGMERGE_UPDATE = msgmerge --update +MSGMERGE_FOR_MSGFMT_OPTION = --for-msgfmt +MSGINIT = msginit +MSGCONV = msgconv +MSGFILTER = msgfilter + +# Set of available languages. +LINGUAS := $(shell sed -e "/^\#/d" LINGUAS) +# Set of languages which use msgen. +ENLINGUAS := $(filter-out $(LINGUAS), en) + +top_srcdir = .. + +include LocaleAliases + +POTFILES_DEPS = $(foreach file, $(POTFILES), $(top_srcdir)/$(file)) +POFILES = $(foreach lang, $(LINGUAS), $(lang).po) +UPDATEPOFILES = $(foreach lang, $(LINGUAS), $(lang).po-update) +DUMMYPOFILES = $(foreach lang, $(LINGUAS), $(lang).nop) +STRINGSFILES = $(foreach lang, $(LINGUAS), $(top_srcdir)/$(NSLOCALE_$(lang)).lproj/Localizable.strings) +ENSTRINGSFILES = $(foreach lang, $(ENLINGUAS), $(top_srcdir)/$(NSLOCALE_$(lang)).lproj/Localizable.strings) +CATALOGS = $(STRINGSFILES) $(ENSTRINGSFILES) + +.SUFFIXES: .po .nop .po-create .po-update + + +internal-all:: all-local-$(USE_NLS) + +all-local-yes: $(CATALOGS) +all-local-no: + +# 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_NAME)' /dev/null '{}' ';' 2>/dev/null; \ + else \ + LC_ALL=C grep -i 'GNU $(PACKAGE_NAME)' $(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; \ + msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ + 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) \ + $(POTFILES) \ + ;; \ + *) \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --package-name="$${package_prefix}$(PACKAGE_NAME)" \ + --package-version='$(VERSION)' \ + --msgid-bugs-address="$$msgid_bugs_address" \ + $(XGETTEXT_OPTIONS) \ + $(POTFILES) \ + ;; \ + esac + test ! -f $(DOMAIN).po || { \ + if test -f $(DOMAIN).pot-header; then \ + sed -e '1,/^#$$/d' < $(DOMAIN).po > $(DOMAIN).1po && \ + cat $(DOMAIN).pot-header $(DOMAIN).1po > $(DOMAIN).po && \ + rm -f $(DOMAIN).1po \ + || exit 1; \ + fi; \ + if test -f $(DOMAIN).pot; then \ + sed -f remove-potcdate.sed < $(DOMAIN).pot > $(DOMAIN).1po && \ + sed -f 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 $(DOMAIN).pot && \ + mv $(DOMAIN).po $(DOMAIN).pot; \ + fi; \ + else \ + mv $(DOMAIN).po $(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. +$(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): $(DOMAIN).pot + @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ + if test -f $${lang}.po; then \ + echo "$(MSGMERGE_UPDATE) --quiet $(MSGMERGE_OPTIONS) --lang=$${lang} --previous $${lang}.po $(DOMAIN).pot"; \ + 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 + +update-po: + $(MAKE) $(DOMAIN).pot-update + test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) + $(MAKE) update-strings + +# 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:"; \ + echo "$(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --lang=$$lang $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ + 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-7] | 0.1[1-7].*) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) -o $$tmpdir/$$lang.new.po $$lang.po $(DOMAIN).pot;; \ + *) \ + $(MSGMERGE) --quiet $(MSGMERGE_OPTIONS) --lang=$$lang -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-strings: $(CATALOGS) + @: + +# During .po -> .strings 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. +$(STRINGSFILES): $(DOMAIN).pot $(POFILES) + mkdir -p $(patsubst %/,%, $(dir $@)) + $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $@.1po $(UNIXLOCALE_$(patsubst %.lproj,%, $(notdir $(patsubst %/,%, $(dir $@))))).po $(DOMAIN).pot + msgcat --stringtable-output -o $@.tmp $@.1po + mv $@.tmp $@ + rm -f $@.1po + +$(ENSTRINGSFILES): $(DOMAIN).pot + mkdir -p $(patsubst %/,%, $(dir $@)) + $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $(UNIXLOCALE_$(patsubst %.lproj,%, $(notdir $(patsubst %/,%, $(dir $@))))) --stringtable-output -o $@.tmp + mv $@.tmp $@ + +echo-languages: + @echo $(foreach lang, $(LINGUAS), $(NSLOCALE_$(lang))) + diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/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/share/doc/gettext/examples/hello-objc-gnustep/po/LocaleAliases b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/LocaleAliases new file mode 100644 index 0000000000000000000000000000000000000000..bac4e713572b1c2a2e3faf5b5d5bdfa5c6b593b3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/LocaleAliases @@ -0,0 +1,784 @@ +# The correspondence between Unix style and NeXTstep style locale names is +# taken from +# $prefix/System/Library/Libraries/Resources/gnustep-base/Languages/Locale.aliases +# and converted through +# sed -n -e 's,^ *\(..*\) = \(..*\);$,NSLOCALE_\1 = \2,p' < Locale.aliases +# sed -n -e 's,^ *\(..*\) = \(..*\);$,UNIXLOCALE_\2 = \1,p' < Locale.aliases + +NSLOCALE_aa = Afar +NSLOCALE_aa_DJ = DjiboutiAfar +NSLOCALE_aa_ER = EritreaAfar +NSLOCALE_aa_ET = EthiopiaAfar +NSLOCALE_ab = Abkhazian +NSLOCALE_ace = Achinese +NSLOCALE_ach = Acoli +NSLOCALE_ada = Adangme +NSLOCALE_ady = Adyghe +NSLOCALE_af = Afrikaans +NSLOCALE_ak = Akan +NSLOCALE_am = Amharic +NSLOCALE_an = Aragonese +NSLOCALE_anp = Angika +NSLOCALE_ar = Arabic +NSLOCALE_ar_AE = UnitedArabEmiratesArabic +NSLOCALE_ar_BH = BahrainArabic +NSLOCALE_ar_DZ = AlgeriaArabic +NSLOCALE_ar_EG = EgyptArabic +NSLOCALE_ar_IN = IndiaArabic +NSLOCALE_ar_IQ = IraqArabic +NSLOCALE_ar_JO = JordanArabic +NSLOCALE_ar_KW = KuwaitArabic +NSLOCALE_ar_LB = LebanonArabic +NSLOCALE_ar_LY = LibyaArabic +NSLOCALE_ar_MA = MoroccoArabic +NSLOCALE_ar_OM = OmanArabic +NSLOCALE_ar_QA = QatarArabic +NSLOCALE_ar_SA = SaudiArabiaArabic +NSLOCALE_ar_SD = SudanArabic +NSLOCALE_ar_SY = SyriaArabic +NSLOCALE_ar_TN = TunisiaArabic +NSLOCALE_ar_YE = YemenArabic +NSLOCALE_arn = Mapudungun +NSLOCALE_as = Assamese +NSLOCALE_ast = Asturian +NSLOCALE_av = Avaric +NSLOCALE_awa = Awadhi +NSLOCALE_ay = Aymara +NSLOCALE_az = Azerbaijani +NSLOCALE_ba = Bashkir +NSLOCALE_bal = Baluchi +NSLOCALE_ban = Balinese +NSLOCALE_bas = Basa +NSLOCALE_be = Belarusian +NSLOCALE_bej = Beja +NSLOCALE_bem = Bemba +NSLOCALE_bg = Bulgarian +NSLOCALE_bh = Bihari +NSLOCALE_bho = Bhojpuri +NSLOCALE_bi = Bislama +NSLOCALE_bik = Bikol +NSLOCALE_bin = Bini +NSLOCALE_bm = Bambara +NSLOCALE_bn = Bengali +NSLOCALE_bn_BD = BangladeshBengali +NSLOCALE_bn_IN = IndiaBengali +NSLOCALE_bo = Tibetan +NSLOCALE_br = Breton +NSLOCALE_bs = Bosnian +NSLOCALE_bua = Buriat +NSLOCALE_bug = Buginese +NSLOCALE_byn = Blin +NSLOCALE_ca = Catalan +NSLOCALE_ce = Chechen +NSLOCALE_ceb = Cebuano +NSLOCALE_ch = Chamorro +NSLOCALE_chm = Mari +NSLOCALE_co = Corsican +NSLOCALE_cr = Cree +NSLOCALE_crh = CrimeanTatar +NSLOCALE_cs = Czech +NSLOCALE_cu = ChurchSlavic +NSLOCALE_cv = Chuvash +NSLOCALE_cy = Welsh +NSLOCALE_da = Danish +NSLOCALE_de = German +NSLOCALE_de_AT = AustriaGerman +NSLOCALE_de_BE = BelgiumGerman +NSLOCALE_de_CH = SwitzerlandGerman +NSLOCALE_de_LU = LuxemburgGerman +NSLOCALE_din = Dinka +NSLOCALE_doi = Dogri +NSLOCALE_dv = Maldivian +NSLOCALE_dyu = Dyula +NSLOCALE_dz = Bhutani +NSLOCALE_efi = Efik +NSLOCALE_el = Greek +NSLOCALE_el_GR = GreeceGreek +NSLOCALE_en = English +NSLOCALE_en_AU = AustraliaEnglish +NSLOCALE_en_BW = BotswanaEnglish +NSLOCALE_en_CA = CanadaEnglish +NSLOCALE_en_DK = DenmarkEnglish +NSLOCALE_en_GB = BritainEnglish +NSLOCALE_en_HK = HongKongEnglish +NSLOCALE_en_IE = IrelandEnglish +NSLOCALE_en_IN = IndiaEnglish +NSLOCALE_en_NZ = NewZealandEnglish +NSLOCALE_en_PH = PhilippinesEnglish +NSLOCALE_en_SG = SingaporeEnglish +NSLOCALE_en_US = AmericanEnglish +NSLOCALE_en_ZA = SouthAfricaEnglish +NSLOCALE_en_ZW = ZimbabweEnglish +NSLOCALE_eo = Esperanto +NSLOCALE_es = Spanish +NSLOCALE_es_AR = ArgentinaSpanish +NSLOCALE_es_BO = BoliviaSpanish +NSLOCALE_es_CL = ChileSpanish +NSLOCALE_es_CO = ColombiaSpanish +NSLOCALE_es_CR = CostaRicaSpanish +NSLOCALE_es_DO = DominicanRepublicSpanish +NSLOCALE_es_EC = EcuadorSpanish +NSLOCALE_es_ES = SpainSpanish +NSLOCALE_es_GT = GuatemalaSpanish +NSLOCALE_es_HN = HondurasSpanish +NSLOCALE_es_MX = MexicoSpanish +NSLOCALE_es_NI = NicaraguaSpanish +NSLOCALE_es_PA = PanamaSpanish +NSLOCALE_es_PE = PeruSpanish +NSLOCALE_es_PR = PuertoRicoSpanish +NSLOCALE_es_PY = ParaguaySpanish +NSLOCALE_es_SV = ElSalvadorSpanish +NSLOCALE_es_US = USASpanish +NSLOCALE_es_UY = UruguaySpanish +NSLOCALE_es_VE = VenezuelaSpanish +NSLOCALE_et = Estonian +NSLOCALE_et_EE = EstoniaEstonian +NSLOCALE_eu = Basque +NSLOCALE_eu_ES = SpainBasque +NSLOCALE_ewo = Ewondo +NSLOCALE_fa = Persian +NSLOCALE_fan = Fang +NSLOCALE_ff = Fulah +NSLOCALE_fi = Finnish +NSLOCALE_fil = Filipino +NSLOCALE_fj = Fijian +NSLOCALE_fo = Faroese +NSLOCALE_fon = Fon +NSLOCALE_fr = French +NSLOCALE_fr_BE = BelgiumFrench +NSLOCALE_fr_CA = CanadaFrench +NSLOCALE_fr_CH = SwitzerlandFrench +NSLOCALE_fr_LU = LuxemburgFrench +NSLOCALE_fur = Friulian +NSLOCALE_fy = WesternFrisian +NSLOCALE_ga = Irish +NSLOCALE_gaa = Ga +NSLOCALE_gay = Gayo +NSLOCALE_gba = Gbaya +NSLOCALE_gd = Gaelic +NSLOCALE_gd_GB = ScotsGaelic +NSLOCALE_gez = Geez +NSLOCALE_gez_ER = EritreaGeez +NSLOCALE_gez_ET = EthiopiaGeez +NSLOCALE_gl = Gallegan +NSLOCALE_gn = Guarani +NSLOCALE_gon = Gondi +NSLOCALE_gor = Gorontalo +NSLOCALE_grb = Grebo +NSLOCALE_gu = Gujarati +NSLOCALE_gv = Manx +NSLOCALE_ha = Hausa +NSLOCALE_he = Hebrew +NSLOCALE_hi = Hindi +NSLOCALE_hil = Hiligaynon +NSLOCALE_hmn = Hmong +NSLOCALE_ho = HiriMotu +NSLOCALE_hr = Croatian +NSLOCALE_ht = Haitian +NSLOCALE_hu = Hungarian +NSLOCALE_hy = Armenian +NSLOCALE_hz = Herero +NSLOCALE_ia = Interlingua +NSLOCALE_iba = Iban +NSLOCALE_id = Indonesian +NSLOCALE_ie = Interlingue +NSLOCALE_ig = Igbo +NSLOCALE_ii = SichuanYi +NSLOCALE_ik = Inupiak +NSLOCALE_ilo = Iloko +NSLOCALE_inh = Ingush +NSLOCALE_io = Ido +NSLOCALE_is = Icelandic +NSLOCALE_it = Italian +NSLOCALE_it_CH = SwitzerlandItalian +NSLOCALE_iu = Inuktitut +NSLOCALE_iw = Hebrew +NSLOCALE_ja = Japanese +NSLOCALE_jv = Javanese +NSLOCALE_ka = Georgian +NSLOCALE_kaa = KaraKalpak +NSLOCALE_kab = Kabyle +NSLOCALE_kac = Kachin +NSLOCALE_kam = Kamba +NSLOCALE_kbd = Kabardian +NSLOCALE_kg = Kongo +NSLOCALE_kha = Khasi +NSLOCALE_ki = Kikuyu +NSLOCALE_kj = Kwanyama +NSLOCALE_kk = Kazakh +NSLOCALE_kl = Greenlandic +NSLOCALE_km = Cambodian +NSLOCALE_kmb = Kimbundu +NSLOCALE_kn = Kannada +NSLOCALE_ko = Korean +NSLOCALE_kr = Kanuri +NSLOCALE_krc = KarachayBalkar +NSLOCALE_krl = Karelian +NSLOCALE_kru = Kurukh +NSLOCALE_ks = Kashmiri +NSLOCALE_ku = Kurdish +NSLOCALE_kum = Kumyk +NSLOCALE_kv = Komi +NSLOCALE_kw = Cornish +NSLOCALE_ky = Kirghiz +NSLOCALE_la = Latin +NSLOCALE_lad = Ladino +NSLOCALE_lam = Lamba +NSLOCALE_lb = Luxembourgish +NSLOCALE_lez = Lezghian +NSLOCALE_lg = Ganda +NSLOCALE_li = Limburgish +NSLOCALE_ln = Lingala +NSLOCALE_lo = Lao +NSLOCALE_lol = Mongo +NSLOCALE_loz = Lozi +NSLOCALE_lt = Lithuanian +NSLOCALE_lu = LubaKatanga +NSLOCALE_lua = LubaLulua +NSLOCALE_lug = Luganda +NSLOCALE_lun = Lunda +NSLOCALE_luo = Luo +NSLOCALE_lus = Lushai +NSLOCALE_lv = Latvian +NSLOCALE_mad = Madurese +NSLOCALE_mag = Magahi +NSLOCALE_mai = Maithili +NSLOCALE_mak = Makasar +NSLOCALE_man = Mandingo +NSLOCALE_mas = Masai +NSLOCALE_mdf = Moksha +NSLOCALE_mdr = Mandar +NSLOCALE_men = Mende +NSLOCALE_mg = Malagasy +NSLOCALE_mh = Marshallese +NSLOCALE_mi = Maori +NSLOCALE_min = Minangkabau +NSLOCALE_mk = Macedonian +NSLOCALE_ml = Malayalam +NSLOCALE_mn = Mongolian +NSLOCALE_mni = Manipuri +NSLOCALE_mo = Moldavian +NSLOCALE_mos = Mossi +NSLOCALE_mr = Marathi +NSLOCALE_ms = Malay +NSLOCALE_mt = Maltese +NSLOCALE_my = Burmese +NSLOCALE_myv = Erzya +NSLOCALE_na = Nauru +NSLOCALE_nap = Neapolitan +NSLOCALE_nb = NorwegianBokmal +NSLOCALE_nd = NdebeleNorth +NSLOCALE_ne = Nepali +NSLOCALE_new = NepalBhasa +NSLOCALE_ng = Ndonga +NSLOCALE_nia = Nias +NSLOCALE_nl = Dutch +NSLOCALE_nl_BE = BelgiumDutch +NSLOCALE_nl_NL = NetherlandsDutch +NSLOCALE_nn = NorwegianNynorsk +NSLOCALE_no = Norwegian +NSLOCALE_nr = NdebeleSouth +NSLOCALE_nso = Pedi +NSLOCALE_nv = Navajo +NSLOCALE_ny = Chichewa +NSLOCALE_nym = Nyamwezi +NSLOCALE_nyn = Nyankole +NSLOCALE_nyo = Nyoro +NSLOCALE_nzi = Nzima +NSLOCALE_oc = Occitan +NSLOCALE_oj = Ojibwa +NSLOCALE_om = Oromo +NSLOCALE_om_ET = EthiopiaOromo +NSLOCALE_om_KE = KenyaOromo +NSLOCALE_or = Oriya +NSLOCALE_os = Ossetian +NSLOCALE_pa = Punjabi +NSLOCALE_pag = Pangasinan +NSLOCALE_pam = Pampanga +NSLOCALE_pap = Papiamento +NSLOCALE_pi = Pali +NSLOCALE_pl = Polish +NSLOCALE_ps = Pashto +NSLOCALE_pt = Portuguese +NSLOCALE_pt_BR = BrasilPortuguese +NSLOCALE_qu = Quechua +NSLOCALE_raj = Rajasthani +NSLOCALE_rm = Romansh +NSLOCALE_rn = Rundi +NSLOCALE_ro = Romanian +NSLOCALE_ru = Russian +NSLOCALE_ru_UA = UkraineRussian +NSLOCALE_rup = Aromanian +NSLOCALE_rw = Kinyarwanda +NSLOCALE_sa = Sanskrit +NSLOCALE_sah = Yakut +NSLOCALE_sas = Sasak +NSLOCALE_sat = Santali +NSLOCALE_scn = Sicilian +NSLOCALE_sco = Scots +NSLOCALE_sc = Sardinian +NSLOCALE_sd = Sindhi +NSLOCALE_se = NorthernSaami +NSLOCALE_sg = Sango +NSLOCALE_shn = Shan +NSLOCALE_si = Sinhala +NSLOCALE_sid = Sidamo +NSLOCALE_sk = Slovak +NSLOCALE_sl = Slovenian +NSLOCALE_sm = Samoan +NSLOCALE_sn = Shona +NSLOCALE_snk = Soninke +NSLOCALE_so = Somali +NSLOCALE_so_DJ = DjiboutiSomali +NSLOCALE_so_ET = EthiopiaSomali +NSLOCALE_so_KE = KenyaSomali +NSLOCALE_so_SO = SomaliaSomali +NSLOCALE_sq = Albanian +NSLOCALE_sr = Serbian +NSLOCALE_srr = Serer +NSLOCALE_ss = Swati +NSLOCALE_st = Sotho +NSLOCALE_su = Sundanese +NSLOCALE_suk = Sukuma +NSLOCALE_sus = Susu +NSLOCALE_sv = Swedish +NSLOCALE_sv_FI = FinlandSwedish +NSLOCALE_sw = Swahili +NSLOCALE_ta = Tamil +NSLOCALE_te = Telugu +NSLOCALE_tem = Timne +NSLOCALE_tet = Tetum +NSLOCALE_tg = Tajik +NSLOCALE_th = Thai +NSLOCALE_ti = Tigrinya +NSLOCALE_ti_ER = EritreaTigrinya +NSLOCALE_ti_ET = EthiopiaTigrinya +NSLOCALE_tig = Tigre +NSLOCALE_tiv = Tiv +NSLOCALE_tk = Turkmen +NSLOCALE_tl = Tagalog +NSLOCALE_tn = Tswana +NSLOCALE_to = Tonga +NSLOCALE_tog = TongaNyasa +NSLOCALE_tpi = TokPisin +NSLOCALE_tr = Turkish +NSLOCALE_ts = Tsonga +NSLOCALE_tt = Tatar +NSLOCALE_tum = Tumbuka +NSLOCALE_tw = Twi +NSLOCALE_ty = Tahitian +NSLOCALE_tyv = Tuvinian +NSLOCALE_udm = Udmurt +NSLOCALE_ug = Uighur +NSLOCALE_uk = Ukrainian +NSLOCALE_umb = Umbundu +NSLOCALE_ur = Urdu +NSLOCALE_uz = Uzbek +NSLOCALE_vai = Vai +NSLOCALE_ve = Venda +NSLOCALE_vi = Vietnamese +NSLOCALE_wa = Walloon +NSLOCALE_wal = Walamo +NSLOCALE_war = Waray +NSLOCALE_wo = Wolof +NSLOCALE_xal = Kalmyk +NSLOCALE_xh = Xhosa +NSLOCALE_yao = Yao +NSLOCALE_yi = Yiddish +NSLOCALE_yo = Yoruba +NSLOCALE_za = Zhuang +NSLOCALE_zh = Chinese +NSLOCALE_zh_CN = SimplifiedChinese +NSLOCALE_zh_HK = HongKongChinese +NSLOCALE_zh_SG = SingaporeChinese +NSLOCALE_zh_TW = TraditionalChinese +NSLOCALE_zu = Zulu + +UNIXLOCALE_Afar = aa +UNIXLOCALE_DjiboutiAfar = aa_DJ +UNIXLOCALE_EritreaAfar = aa_ER +UNIXLOCALE_EthiopiaAfar = aa_ET +UNIXLOCALE_Abkhazian = ab +UNIXLOCALE_Achinese = ace +UNIXLOCALE_Acoli = ach +UNIXLOCALE_Adangme = ada +UNIXLOCALE_Adyghe = ady +UNIXLOCALE_Afrikaans = af +UNIXLOCALE_Akan = ak +UNIXLOCALE_Amharic = am +UNIXLOCALE_Aragonese = an +UNIXLOCALE_Angika = anp +UNIXLOCALE_Arabic = ar +UNIXLOCALE_UnitedArabEmiratesArabic = ar_AE +UNIXLOCALE_BahrainArabic = ar_BH +UNIXLOCALE_AlgeriaArabic = ar_DZ +UNIXLOCALE_EgyptArabic = ar_EG +UNIXLOCALE_IndiaArabic = ar_IN +UNIXLOCALE_IraqArabic = ar_IQ +UNIXLOCALE_JordanArabic = ar_JO +UNIXLOCALE_KuwaitArabic = ar_KW +UNIXLOCALE_LebanonArabic = ar_LB +UNIXLOCALE_LibyaArabic = ar_LY +UNIXLOCALE_MoroccoArabic = ar_MA +UNIXLOCALE_OmanArabic = ar_OM +UNIXLOCALE_QatarArabic = ar_QA +UNIXLOCALE_SaudiArabiaArabic = ar_SA +UNIXLOCALE_SudanArabic = ar_SD +UNIXLOCALE_SyriaArabic = ar_SY +UNIXLOCALE_TunisiaArabic = ar_TN +UNIXLOCALE_YemenArabic = ar_YE +UNIXLOCALE_Mapudungun = arn +UNIXLOCALE_Assamese = as +UNIXLOCALE_Asturian = ast +UNIXLOCALE_Avaric = av +UNIXLOCALE_Awadhi = awa +UNIXLOCALE_Aymara = ay +UNIXLOCALE_Azerbaijani = az +UNIXLOCALE_Bashkir = ba +UNIXLOCALE_Baluchi = bal +UNIXLOCALE_Balinese = ban +UNIXLOCALE_Basa = bas +UNIXLOCALE_Belarusian = be +UNIXLOCALE_Beja = bej +UNIXLOCALE_Bemba = bem +UNIXLOCALE_Bulgarian = bg +UNIXLOCALE_Bihari = bh +UNIXLOCALE_Bhojpuri = bho +UNIXLOCALE_Bislama = bi +UNIXLOCALE_Bikol = bik +UNIXLOCALE_Bini = bin +UNIXLOCALE_Bambara = bm +UNIXLOCALE_Bengali = bn +UNIXLOCALE_BangladeshBengali = bn_BD +UNIXLOCALE_IndiaBengali = bn_IN +UNIXLOCALE_Tibetan = bo +UNIXLOCALE_Breton = br +UNIXLOCALE_Bosnian = bs +UNIXLOCALE_Buriat = bua +UNIXLOCALE_Buginese = bug +UNIXLOCALE_Blin = byn +UNIXLOCALE_Catalan = ca +UNIXLOCALE_Chechen = ce +UNIXLOCALE_Cebuano = ceb +UNIXLOCALE_Chamorro = ch +UNIXLOCALE_Mari = chm +UNIXLOCALE_Corsican = co +UNIXLOCALE_Cree = cr +UNIXLOCALE_CrimeanTatar = crh +UNIXLOCALE_Czech = cs +UNIXLOCALE_ChurchSlavic = cu +UNIXLOCALE_Chuvash = cv +UNIXLOCALE_Welsh = cy +UNIXLOCALE_Danish = da +UNIXLOCALE_German = de +UNIXLOCALE_AustriaGerman = de_AT +UNIXLOCALE_BelgiumGerman = de_BE +UNIXLOCALE_SwitzerlandGerman = de_CH +UNIXLOCALE_LuxemburgGerman = de_LU +UNIXLOCALE_Dinka = din +UNIXLOCALE_Dogri = doi +UNIXLOCALE_Maldivian = dv +UNIXLOCALE_Dyula = dyu +UNIXLOCALE_Bhutani = dz +UNIXLOCALE_Efik = efi +UNIXLOCALE_Greek = el +UNIXLOCALE_GreeceGreek = el_GR +UNIXLOCALE_English = en +UNIXLOCALE_AustraliaEnglish = en_AU +UNIXLOCALE_BotswanaEnglish = en_BW +UNIXLOCALE_CanadaEnglish = en_CA +UNIXLOCALE_DenmarkEnglish = en_DK +UNIXLOCALE_BritainEnglish = en_GB +UNIXLOCALE_HongKongEnglish = en_HK +UNIXLOCALE_IrelandEnglish = en_IE +UNIXLOCALE_IndiaEnglish = en_IN +UNIXLOCALE_NewZealandEnglish = en_NZ +UNIXLOCALE_PhilippinesEnglish = en_PH +UNIXLOCALE_SingaporeEnglish = en_SG +UNIXLOCALE_AmericanEnglish = en_US +UNIXLOCALE_SouthAfricaEnglish = en_ZA +UNIXLOCALE_ZimbabweEnglish = en_ZW +UNIXLOCALE_Esperanto = eo +UNIXLOCALE_Spanish = es +UNIXLOCALE_ArgentinaSpanish = es_AR +UNIXLOCALE_BoliviaSpanish = es_BO +UNIXLOCALE_ChileSpanish = es_CL +UNIXLOCALE_ColombiaSpanish = es_CO +UNIXLOCALE_CostaRicaSpanish = es_CR +UNIXLOCALE_DominicanRepublicSpanish = es_DO +UNIXLOCALE_EcuadorSpanish = es_EC +UNIXLOCALE_SpainSpanish = es_ES +UNIXLOCALE_GuatemalaSpanish = es_GT +UNIXLOCALE_HondurasSpanish = es_HN +UNIXLOCALE_MexicoSpanish = es_MX +UNIXLOCALE_NicaraguaSpanish = es_NI +UNIXLOCALE_PanamaSpanish = es_PA +UNIXLOCALE_PeruSpanish = es_PE +UNIXLOCALE_PuertoRicoSpanish = es_PR +UNIXLOCALE_ParaguaySpanish = es_PY +UNIXLOCALE_ElSalvadorSpanish = es_SV +UNIXLOCALE_USASpanish = es_US +UNIXLOCALE_UruguaySpanish = es_UY +UNIXLOCALE_VenezuelaSpanish = es_VE +UNIXLOCALE_Estonian = et +UNIXLOCALE_EstoniaEstonian = et_EE +UNIXLOCALE_Basque = eu +UNIXLOCALE_SpainBasque = eu_ES +UNIXLOCALE_Ewondo = ewo +UNIXLOCALE_Persian = fa +UNIXLOCALE_Fang = fan +UNIXLOCALE_Fulah = ff +UNIXLOCALE_Finnish = fi +UNIXLOCALE_Filipino = fil +UNIXLOCALE_Fijian = fj +UNIXLOCALE_Faroese = fo +UNIXLOCALE_Fon = fon +UNIXLOCALE_French = fr +UNIXLOCALE_BelgiumFrench = fr_BE +UNIXLOCALE_CanadaFrench = fr_CA +UNIXLOCALE_SwitzerlandFrench = fr_CH +UNIXLOCALE_LuxemburgFrench = fr_LU +UNIXLOCALE_Friulian = fur +UNIXLOCALE_WesternFrisian = fy +UNIXLOCALE_Irish = ga +UNIXLOCALE_Ga = gaa +UNIXLOCALE_Gayo = gay +UNIXLOCALE_Gbaya = gba +UNIXLOCALE_Gaelic = gd +UNIXLOCALE_ScotsGaelic = gd_GB +UNIXLOCALE_Geez = gez +UNIXLOCALE_EritreaGeez = gez_ER +UNIXLOCALE_EthiopiaGeez = gez_ET +UNIXLOCALE_Gallegan = gl +UNIXLOCALE_Guarani = gn +UNIXLOCALE_Gondi = gon +UNIXLOCALE_Gorontalo = gor +UNIXLOCALE_Grebo = grb +UNIXLOCALE_Gujarati = gu +UNIXLOCALE_Manx = gv +UNIXLOCALE_Hausa = ha +UNIXLOCALE_Hebrew = he +UNIXLOCALE_Hindi = hi +UNIXLOCALE_Hiligaynon = hil +UNIXLOCALE_Hmong = hmn +UNIXLOCALE_HiriMotu = ho +UNIXLOCALE_Croatian = hr +UNIXLOCALE_Haitian = ht +UNIXLOCALE_Hungarian = hu +UNIXLOCALE_Armenian = hy +UNIXLOCALE_Herero = hz +UNIXLOCALE_Interlingua = ia +UNIXLOCALE_Iban = iba +UNIXLOCALE_Indonesian = id +UNIXLOCALE_Interlingue = ie +UNIXLOCALE_Igbo = ig +UNIXLOCALE_SichuanYi = ii +UNIXLOCALE_Inupiak = ik +UNIXLOCALE_Iloko = ilo +UNIXLOCALE_Ingush = inh +UNIXLOCALE_Ido = io +UNIXLOCALE_Icelandic = is +UNIXLOCALE_Italian = it +UNIXLOCALE_SwitzerlandItalian = it_CH +UNIXLOCALE_Inuktitut = iu +UNIXLOCALE_Hebrew = iw +UNIXLOCALE_Japanese = ja +UNIXLOCALE_Javanese = jv +UNIXLOCALE_Georgian = ka +UNIXLOCALE_KaraKalpak = kaa +UNIXLOCALE_Kabyle = kab +UNIXLOCALE_Kachin = kac +UNIXLOCALE_Kamba = kam +UNIXLOCALE_Kabardian = kbd +UNIXLOCALE_Kongo = kg +UNIXLOCALE_Khasi = kha +UNIXLOCALE_Kikuyu = ki +UNIXLOCALE_Kwanyama = kj +UNIXLOCALE_Kazakh = kk +UNIXLOCALE_Greenlandic = kl +UNIXLOCALE_Cambodian = km +UNIXLOCALE_Kimbundu = kmb +UNIXLOCALE_Kannada = kn +UNIXLOCALE_Korean = ko +UNIXLOCALE_Kanuri = kr +UNIXLOCALE_KarachayBalkar = krc +UNIXLOCALE_Karelian = krl +UNIXLOCALE_Kurukh = kru +UNIXLOCALE_Kashmiri = ks +UNIXLOCALE_Kurdish = ku +UNIXLOCALE_Kumyk = kum +UNIXLOCALE_Komi = kv +UNIXLOCALE_Cornish = kw +UNIXLOCALE_Kirghiz = ky +UNIXLOCALE_Latin = la +UNIXLOCALE_Ladino = lad +UNIXLOCALE_Lamba = lam +UNIXLOCALE_Luxembourgish = lb +UNIXLOCALE_Lezghian = lez +UNIXLOCALE_Ganda = lg +UNIXLOCALE_Limburgish = li +UNIXLOCALE_Lingala = ln +UNIXLOCALE_Lao = lo +UNIXLOCALE_Mongo = lol +UNIXLOCALE_Lozi = loz +UNIXLOCALE_Lithuanian = lt +UNIXLOCALE_LubaKatanga = lu +UNIXLOCALE_LubaLulua = lua +UNIXLOCALE_Luganda = lug +UNIXLOCALE_Lunda = lun +UNIXLOCALE_Luo = luo +UNIXLOCALE_Lushai = lus +UNIXLOCALE_Latvian = lv +UNIXLOCALE_Madurese = mad +UNIXLOCALE_Magahi = mag +UNIXLOCALE_Maithili = mai +UNIXLOCALE_Makasar = mak +UNIXLOCALE_Mandingo = man +UNIXLOCALE_Masai = mas +UNIXLOCALE_Moksha = mdf +UNIXLOCALE_Mandar = mdr +UNIXLOCALE_Mende = men +UNIXLOCALE_Malagasy = mg +UNIXLOCALE_Marshallese = mh +UNIXLOCALE_Maori = mi +UNIXLOCALE_Minangkabau = min +UNIXLOCALE_Macedonian = mk +UNIXLOCALE_Malayalam = ml +UNIXLOCALE_Mongolian = mn +UNIXLOCALE_Manipuri = mni +UNIXLOCALE_Moldavian = mo +UNIXLOCALE_Mossi = mos +UNIXLOCALE_Marathi = mr +UNIXLOCALE_Malay = ms +UNIXLOCALE_Maltese = mt +UNIXLOCALE_Burmese = my +UNIXLOCALE_Erzya = myv +UNIXLOCALE_Nauru = na +UNIXLOCALE_Neapolitan = nap +UNIXLOCALE_NorwegianBokmal = nb +UNIXLOCALE_NdebeleNorth = nd +UNIXLOCALE_Nepali = ne +UNIXLOCALE_NepalBhasa = new +UNIXLOCALE_Ndonga = ng +UNIXLOCALE_Nias = nia +UNIXLOCALE_Dutch = nl +UNIXLOCALE_BelgiumDutch = nl_BE +UNIXLOCALE_NetherlandsDutch = nl_NL +UNIXLOCALE_NorwegianNynorsk = nn +UNIXLOCALE_Norwegian = no +UNIXLOCALE_NdebeleSouth = nr +UNIXLOCALE_Pedi = nso +UNIXLOCALE_Navajo = nv +UNIXLOCALE_Chichewa = ny +UNIXLOCALE_Nyamwezi = nym +UNIXLOCALE_Nyankole = nyn +UNIXLOCALE_Nyoro = nyo +UNIXLOCALE_Nzima = nzi +UNIXLOCALE_Occitan = oc +UNIXLOCALE_Ojibwa = oj +UNIXLOCALE_Oromo = om +UNIXLOCALE_EthiopiaOromo = om_ET +UNIXLOCALE_KenyaOromo = om_KE +UNIXLOCALE_Oriya = or +UNIXLOCALE_Ossetian = os +UNIXLOCALE_Punjabi = pa +UNIXLOCALE_Pangasinan = pag +UNIXLOCALE_Pampanga = pam +UNIXLOCALE_Papiamento = pap +UNIXLOCALE_Pali = pi +UNIXLOCALE_Polish = pl +UNIXLOCALE_Pashto = ps +UNIXLOCALE_Portuguese = pt +UNIXLOCALE_BrasilPortuguese = pt_BR +UNIXLOCALE_Quechua = qu +UNIXLOCALE_Rajasthani = raj +UNIXLOCALE_Romansh = rm +UNIXLOCALE_Rundi = rn +UNIXLOCALE_Romanian = ro +UNIXLOCALE_Russian = ru +UNIXLOCALE_UkraineRussian = ru_UA +UNIXLOCALE_Aromanian = rup +UNIXLOCALE_Kinyarwanda = rw +UNIXLOCALE_Sanskrit = sa +UNIXLOCALE_Yakut = sah +UNIXLOCALE_Sasak = sas +UNIXLOCALE_Santali = sat +UNIXLOCALE_Sicilian = scn +UNIXLOCALE_Scots = sco +UNIXLOCALE_Sardinian = sc +UNIXLOCALE_Sindhi = sd +UNIXLOCALE_NorthernSaami = se +UNIXLOCALE_Sango = sg +UNIXLOCALE_Shan = shn +UNIXLOCALE_Sinhala = si +UNIXLOCALE_Sidamo = sid +UNIXLOCALE_Slovak = sk +UNIXLOCALE_Slovenian = sl +UNIXLOCALE_Samoan = sm +UNIXLOCALE_Shona = sn +UNIXLOCALE_Soninke = snk +UNIXLOCALE_Somali = so +UNIXLOCALE_DjiboutiSomali = so_DJ +UNIXLOCALE_EthiopiaSomali = so_ET +UNIXLOCALE_KenyaSomali = so_KE +UNIXLOCALE_SomaliaSomali = so_SO +UNIXLOCALE_Albanian = sq +UNIXLOCALE_Serbian = sr +UNIXLOCALE_Serer = srr +UNIXLOCALE_Swati = ss +UNIXLOCALE_Sotho = st +UNIXLOCALE_Sundanese = su +UNIXLOCALE_Sukuma = suk +UNIXLOCALE_Susu = sus +UNIXLOCALE_Swedish = sv +UNIXLOCALE_FinlandSwedish = sv_FI +UNIXLOCALE_Swahili = sw +UNIXLOCALE_Tamil = ta +UNIXLOCALE_Telugu = te +UNIXLOCALE_Timne = tem +UNIXLOCALE_Tetum = tet +UNIXLOCALE_Tajik = tg +UNIXLOCALE_Thai = th +UNIXLOCALE_Tigrinya = ti +UNIXLOCALE_EritreaTigrinya = ti_ER +UNIXLOCALE_EthiopiaTigrinya = ti_ET +UNIXLOCALE_Tigre = tig +UNIXLOCALE_Tiv = tiv +UNIXLOCALE_Turkmen = tk +UNIXLOCALE_Tagalog = tl +UNIXLOCALE_Tswana = tn +UNIXLOCALE_Tonga = to +UNIXLOCALE_TongaNyasa = tog +UNIXLOCALE_TokPisin = tpi +UNIXLOCALE_Turkish = tr +UNIXLOCALE_Tsonga = ts +UNIXLOCALE_Tatar = tt +UNIXLOCALE_Tumbuka = tum +UNIXLOCALE_Twi = tw +UNIXLOCALE_Tahitian = ty +UNIXLOCALE_Tuvinian = tyv +UNIXLOCALE_Udmurt = udm +UNIXLOCALE_Uighur = ug +UNIXLOCALE_Ukrainian = uk +UNIXLOCALE_Umbundu = umb +UNIXLOCALE_Urdu = ur +UNIXLOCALE_Uzbek = uz +UNIXLOCALE_Vai = vai +UNIXLOCALE_Venda = ve +UNIXLOCALE_Vietnamese = vi +UNIXLOCALE_Walloon = wa +UNIXLOCALE_Walamo = wal +UNIXLOCALE_Waray = war +UNIXLOCALE_Wolof = wo +UNIXLOCALE_Kalmyk = xal +UNIXLOCALE_Xhosa = xh +UNIXLOCALE_Yao = yao +UNIXLOCALE_Yiddish = yi +UNIXLOCALE_Yoruba = yo +UNIXLOCALE_Zhuang = za +UNIXLOCALE_Chinese = zh +UNIXLOCALE_SimplifiedChinese = zh_CN +UNIXLOCALE_HongKongChinese = zh_HK +UNIXLOCALE_SingaporeChinese = zh_SG +UNIXLOCALE_TraditionalChinese = zh_TW +UNIXLOCALE_Zulu = zu diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/af.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..4ea1ce6d8bae77f95a1957ca5bc4b3e98ec27310 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/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-objc-gnustep-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.m:49 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Hierdie program loop as prosesnommer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..c058af121645e531e7a9a1e3a04fcb0ad08d95bb --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-objc-gnustep +# 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: Hello.m:58 +#, objc-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/share/doc/gettext/examples/hello-objc-gnustep/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..6704024de26afed8f9d081447642054f7f09cdb8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-objc-gnustep 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Програмата е пусната под процес номер %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..7d37d7a02b1a8a2e99cdc8062c734b1e2b81c6c4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-objc-gnustep. +# 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: Hello.m:58 +#, objc-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/share/doc/gettext/examples/hello-objc-gnustep/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..ac2f1f5f5179046e2b549b51df8a36be769883b3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Tento program běží jako proces číslo %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/da.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..aa7ee7bb062000ac9ccb53a651ff17b51c6b62e2 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-objc-gnustep. +# 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Dette program kører som proces nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/de.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..0499a0abcd97b6e7cd79ccd576cb83bcf72afdcb --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-objc-gnustep. +# 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Dieses Programm läuft mit der Prozess-Nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/el.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..716b7e1f9c3f59a0161b5a64a947c12f9bb828f8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-objc-gnustep +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..5564d7cd151c1df2e115a939a166dc51ed4d98d1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Ĉi tiu programo rulas kiel procez-numero %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/es.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..900d4eb8c597e448ed1994374264edb93ba2236a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/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-objc-gnustep-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.m:49 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: Hello.m:58 +#, objc-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/share/doc/gettext/examples/hello-objc-gnustep/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..e6545e881a3d205dd9b21def491f61676902835e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Tämän ohjelman prosessinumero on %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..ebeee5f9e9ecc21e6716eaa01d5423daabde701e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: Hello.m:58 +#, objc-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/share/doc/gettext/examples/hello-objc-gnustep/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..690b871cc261b1b6d53d107990d879c8680f96ed --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-objc-gnustep. +# 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: Hello.m:58 +#, objc-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/share/doc/gettext/examples/hello-objc-gnustep/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..04d6e22bbdcf05e43ab3cfa2fdb8f8ec768709d0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-objc-gnustep 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: Hello.m:58 +#, objc-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/share/doc/gettext/examples/hello-objc-gnustep/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..af3dbf8df0aa4a760ffce9065b85f2e26f92f75d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-objc-gnustep 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Ovaj program se izvršava kao proces broj %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..fca4104b74ee2d1c4ed2e049b5bd876456373cba --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-objc-gnustep. +# 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: Hello.m:58 +#, objc-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/share/doc/gettext/examples/hello-objc-gnustep/po/id.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..3dd8aee50259196a47db0e93807592586f34170b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-objc-gnustep-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-objc-gnustep-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.m:49 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Program ini berjalan sebagai proses nomor %d" diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/it.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..dbb1c1e0a7169b9a571ed0a873647c2a56fc58e3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-objc-gnustep. +# 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Questo programma è in esecuzione con numero di processo %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..9eb598e67c39513a3cc5a3448c6efe743b35fe16 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-objc-gnustep' 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "このプログラムはプロセス番号 %d で動いています." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..ad785f31e0145511d725200fbbffaa4f9234af1e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..429d77190aa22c4e837e42f756a3bf5842ee30c2 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-objc-gnustep' 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Бул программа %d процесс номери катары иштеп жатат." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..b80ffcf524bc12dc5df6d423bce6549886abad09 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-objc-gnustep +# 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-objc-gnustep-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.m:49 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Šī programma darbojas ar procesa numuru %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..68ac5cdc175a57f2b1750a31be28540dbe4b9cd6 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ms.po @@ -0,0 +1,28 @@ +# hello-objc-gnustep 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Program ini dilaksanakan sebagai proses bernombor %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..2238ea09dc835126fe06ce2b6c09d97b45e437f7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/mt.po @@ -0,0 +1,27 @@ +# hello-objc-gnustep-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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: Hello.m:58 +#, objc-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/share/doc/gettext/examples/hello-objc-gnustep/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..ce57e8c5fee2bcf418e49d8c57feb9333822f472 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-objc-gnustep 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Dette programmet kjører som prosess nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..b0911ee653d8a81f2026cc30b29f0b5da52a0725 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-objc-gnustep. +# 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-objc-gnustep-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.m:49 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Dit programma draait als proces nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..1ba225dfe1abb3af2f0135a38033b68a999a2ab5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-objc-gnustep +# 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-objc-gnustep-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.m:49 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Dette programmet køyrer som prosess nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..7ec64f8bb502f341139a2b30319903dd5aa37459 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-objc-gnustep 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Ten program działa jako proces o numerze %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..4f0dbf8b41bbc78318db30dd8aa3b824691cbf83 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-objc-gnustep' 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: Hello.m:58 +#, objc-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/share/doc/gettext/examples/hello-objc-gnustep/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..f047372fd2d4b13421e265076496e51ce8204c4d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: Hello.m:58 +#, objc-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/share/doc/gettext/examples/hello-objc-gnustep/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..fdbc637e6a0f8d916f6b0efaf6909bd49afa2783 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-objc-gnustep" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-objc-gnustep. +# 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-objc-gnustep”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-objc-gnustep 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-objc-gnustep 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-objc-gnustep 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-objc-gnustep 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-objc-gnustep-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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Acest program rulează ca procesul numărul %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..d0c0053ea809d14e034a89d85b8ed50473f8421c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-objc-gnustep-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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Эта программа выполняется как процесс под номером %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..66f9a2e1cdb8008fb85af5c45a1788c4b209ec84 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-objc-gnustep 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Tento program beží ako proces s číslom %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..8b2c6b8a5bed9af89a424649b5bf592c63ba6e89 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/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-objc-gnustep-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Ta program teče kot proces številka %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..4502658e43ee0a305c22e71c0074cdec090053b9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/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-objc-gnustep-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.m:49 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Ky program po xhiron si procesi numër %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..421e738fd75f4e95ca5faa2100a66c8985da56b6 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-objc-gnustep. +# 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-objc-gnustep-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.m:49 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Овај програм се извршава као процес број %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..34a4532e47f5505a8a9489a8fd07c441e85a14f6 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-objc-gnustep. +# 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Detta program kör som process nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..7cac0905e1e06beaf973154e5bc27a496f55cb11 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "இந்நிரல் செயலாக்க எண் %d ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..d95152c0155a9f8b91e475693e49447011a51b90 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-objc-gnustep. +# 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: Hello.m:58 +#, objc-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/share/doc/gettext/examples/hello-objc-gnustep/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..42e8db72ed4923d596af13416ff509dcc8c810d4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-objc-gnustep +# 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "Ця програма виконується як процес з номером %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..3c5f2eafbbc9b82494989f49fe9de1535303961d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: Hello.m:58 +#, objc-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/share/doc/gettext/examples/hello-objc-gnustep/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..885194e8188591d566c7d5ca526f959edabbb723 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-objc-gnustep. +# 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "此程序正以进程号 %d 运行。" diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..da6b7d8e6afb68bd9669eaa1c554f2707db5894e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-objc-gnustep. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "你好!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行中,進程編號為 %d。" diff --git a/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..82f2987388137debbf9f6228676f89dbf2cb2acd --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc-gnustep/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-objc-gnustep. +# 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-objc-gnustep 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.m:49 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: Hello.m:58 +#, objc-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行,行程編號為 %d。" diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/INSTALL b/miniconda3/share/doc/gettext/examples/hello-objc/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..6232f1b6accc433304ac296e1a07a1c1b7da76ab --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/INSTALL @@ -0,0 +1,11 @@ +This example relies on: + - the Objective C runtime libraries (libobjc) + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-objc/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..2d7acbb16fa1760f1534781da4df7e653157811e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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.m 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/share/doc/gettext/examples/hello-objc/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-objc/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..1838e8d232aa0fee0d512f9fa715d4e1af1af925 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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/share/doc/gettext/examples/hello-objc/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-objc/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..1ae12f1bee2e1bc4551404250e4072ca70fccc71 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/autogen.sh @@ -0,0 +1,50 @@ +#!/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 + 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/share/doc/gettext/examples/hello-objc/configure.ac b/miniconda3/share/doc/gettext/examples/hello-objc/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..02e15e8af538fd905f1db558466bcbf76e494ca2 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/configure.ac @@ -0,0 +1,22 @@ +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-objc], [0]) +AC_CONFIG_SRCDIR([hello.m]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Test for gobjc before gcc, since that's what the EPEL 9 package 'gcc-objc' +dnl installs (on systems where gcc does not support Objective C). +m4_pushdef([AC_MSG_FAILURE], m4_defn([AC_MSG_WARN])) +AC_PROG_OBJC([gobjc gcc objcc objc cc CC clang]) +m4_popdef([AC_MSG_FAILURE]) + +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/share/doc/gettext/examples/hello-objc/hello.m b/miniconda3/share/doc/gettext/examples/hello-objc/hello.m new file mode 100644 index 0000000000000000000000000000000000000000..88e0067b3f16c6a50120c4fc7b7e1366b2786b14 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/hello.m @@ -0,0 +1,40 @@ +/* Example for use of GNU gettext. + This file is in the public domain. + + Source code of the Objective-C program. */ + + +/* Get setlocale() declaration. */ +#include + +/* Get printf() 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-objc"); + bindtextdomain ("hello-objc", LOCALEDIR); + + printf ("%s\n", _("Hello, world!")); + printf (_("This program is running as process number %d."), getpid ()); + putchar ('\n'); + + return 0; +} diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-objc/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..7d516f09ff64e7f731d69696326a8626ca9c4ee0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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/share/doc/gettext/examples/hello-objc/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-objc/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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/share/doc/gettext/examples/hello-objc/po/Makevars b/miniconda3/share/doc/gettext/examples/hello-objc/po/Makevars new file mode 100644 index 0000000000000000000000000000000000000000..097db7f958cc1e42df4500f9bc82f318f196456a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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/share/doc/gettext/examples/hello-objc/po/POTFILES.in b/miniconda3/share/doc/gettext/examples/hello-objc/po/POTFILES.in new file mode 100644 index 0000000000000000000000000000000000000000..0f7595d6990bb2101b78fb0535349e80e8312c91 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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.m diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/af.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..7c751e518b2ec48b67641aaeb5181d4571dd68f5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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-objc-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.m:35 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Hierdie program loop as prosesnommer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..77c7727792a023c104fccf666cd2b7ed6eb602cd --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-objc +# 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..bcac999ace472289d5083a661719cc8b90771665 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-objc 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Програмата е пусната под процес номер %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..4fde401d03ce4f61518b03abf6b5705fa215afab --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-objc. +# 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..5489b124895b7602d99a1c2fb26f972f71685b38 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Tento program běží jako proces číslo %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/da.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..86aee88127538337bd7c40213b68fc9cb74eced9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-objc. +# 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Dette program kører som proces nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/de.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..2d0928349ad7d71ff556a00c357a24ab04005b38 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-objc. +# 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/el.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..35749a7bc8b5e94f69e6c501a5c72b20b9120900 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-objc +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-objc 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.m:35 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..e4a08112eb098fb0ba8024cff893393a2676c742 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Ĉi tiu programo rulas kiel procez-numero %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/es.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..a3ee1b439a034c0dbed74eba0bb727ee9bfd4a66 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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-objc-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.m:35 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..edec44a5705189d699cde07d5f0b417c07749db7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Tämän ohjelman prosessinumero on %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..6c2bcb48b15f202543c3be76b56c2332b2dc0ddb --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..af251ecf47ba960af73abbbf56a931d655133504 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-objc. +# 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..4b8d6b1e67c16024966ea9b7fe561ccd37e863c3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-objc 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..1ebe84f6d11ce464a124fdc932df08a0920e678e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-objc 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..27456c31edfa77852d1968eb4efb41eb578a5bd3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-objc. +# 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/id.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..80488c6a7d4f2c06def326cfe87999aea92cec35 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-objc-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-objc-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.m:35 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Program ini berjalan sebagai proses nomor %d" diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/it.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..96d2162f7def26e1ab5b22ab55c69e895d46b6f9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-objc. +# 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..30386b49deaf64bf5a7a7f458be731c0ce4f2394 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-objc' 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "このプログラムはプロセス番号 %d で動いています." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..555f39078faaa130b15311f53d1ace0c0432950f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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-objc 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.m:35 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..8065eec33d4965e5826d4b76c63ed56468c19808 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-objc' 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Бул программа %d процесс номери катары иштеп жатат." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..d9a02559ca1c1060eafede2246eb204a052d07ee --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-objc +# 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-objc-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.m:35 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Šī programma darbojas ar procesa numuru %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..fb3bf190542419366578690757d4a50fd793a5ae --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/ms.po @@ -0,0 +1,28 @@ +# hello-objc 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Program ini dilaksanakan sebagai proses bernombor %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..ebfc5a5aaf696973640bb918ad0d3a3e1b758b1f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/mt.po @@ -0,0 +1,27 @@ +# hello-objc-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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..4cb22db43c8b22ca7f3dea0b3bd00d8544e0edf3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-objc 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Dette programmet kjører som prosess nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..a9d2507affd18212ae455a719fea92d1ea46253d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-objc. +# 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-objc-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.m:35 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Dit programma draait als proces nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..f800b78531137420de4d13a6400cf2eaf2011b74 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-objc +# 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-objc-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.m:35 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Dette programmet køyrer som prosess nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..4bb2777a33bf65555e6286de04f2e7e48ed94c8b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-objc 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..aee215ac781c651d35ea70dc8e05cd7244b124f7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-objc' 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..4beb1c599f7bcfa982614f0b79d93ac3a57ca6f7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..8de643722928fca9d6a8af01dcdc4f698b984adc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-objc" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-objc. +# 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-objc”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-objc 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-objc 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-objc 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-objc 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-objc-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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Acest program rulează ca procesul numărul %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..a05e99ebd8562684af993850f7711b21b15ddbda --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-objc-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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Эта программа выполняется как процесс под номером %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..b193c30edbbadf878256685ff5350c1e7d442fb0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-objc 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Tento program beží ako proces s číslom %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..4d8f9467009dc00093c32a5f850aa7c6b8f18e5b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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-objc-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-objc 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.m:35 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Ta program teče kot proces številka %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..2a796872bc38a52da2956147f24ef4f4faf7c37b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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-objc-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.m:35 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..b6051a72b971de6d2e650a5f7817fa1c1e2fdfab --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-objc. +# 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-objc-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.m:35 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Овај програм се извршава као процес број %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..175d2d0413bfaf59608de7992e484b90d6148265 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-objc. +# 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Detta program kör som process nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..aaf4f7344430876a3192fb7f3e9a4a62d23ca641 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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-objc 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.m:35 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "இந்நிரல் செயலாக்க எண் %d ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..98ab56b87fb162ca470e21fadced5e32d1c27e13 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-objc. +# 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..12d6b3965ee2154573c8a9e985fc4e6bece5164d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-objc +# 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "Ця програма виконується як процес з номером %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..eb95308f630819c281cc28768d9afcd902178c13 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/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-objc 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.m:35 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.m:36 +#, 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/share/doc/gettext/examples/hello-objc/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..f7e20d3e76afc969584576f08cdcff592cd56a4e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-objc. +# 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "此程序正以进程号 %d 运行。" diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..1106cacc2c0e027330f3bc3902e225bad01d6533 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-objc. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-objc 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.m:35 +msgid "Hello, world!" +msgstr "你好!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行中,進程編號為 %d。" diff --git a/miniconda3/share/doc/gettext/examples/hello-objc/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-objc/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..77c402aa6c3eace8093f5bb7b699ab9edad7081b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-objc/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-objc. +# 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-objc 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.m:35 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.m:36 +#, c-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行,行程編號為 %d。" diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/INSTALL b/miniconda3/share/doc/gettext/examples/hello-pascal/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..5960428487a60eeba7b09d5ac2fcd20cbac18c60 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/INSTALL @@ -0,0 +1,11 @@ +This example relies on: + - Free Pascal 2.0 or newer (ppc386) + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-pascal/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..012b96f6b47ebea44e4104bb8eafbf1c1d6603fd --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/Makefile.am @@ -0,0 +1,68 @@ +# 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_PASCALPROGRAMS = hello + +# The source files of the 'hello' program. +hello_SOURCES = $(srcdir)/hello.pas + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh + +# ---------------- General rules for compiling Pascal programs ---------------- + +EXTRA_DIST += $(hello_SOURCES) + +# Distribute the RSJ file because it's needed to generate POT files and can +# only be rebuilt on those platforms to which the Pascal compiler is ported. +EXTRA_DIST += hello.rsj +# 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 this file in the source directory, not the build directory. + +# Rules for compiling Pascal programs. + +all-local: hello$(EXEEXT) + +# How to build the 'hello' program. +hello$(EXEEXT) $(srcdir)/hello.rsj: $(hello_SOURCES) + LOCALEDIR='@localedir@' $(PPC) -o./hello$(EXEEXT) $(hello_SOURCES) +# Move hello.rsj into $(srcdir). But don't provoke a gratuitous error in a +# VPATH build with read-only $(srcdir). + if test '$(srcdir)' != .; then \ + if test -f $(srcdir)/hello.rsj && cmp hello.rsj $(srcdir)/hello.rsj >/dev/null; then \ + rm -f hello.rsj; \ + else \ + mv -f hello.rsj $(srcdir)/hello.rsj; \ + fi; \ + fi + +install-exec-local: all-local + $(MKDIR_P) $(DESTDIR)$(bindir) + $(INSTALL_PROGRAM) hello$(EXEEXT) $(DESTDIR)$(bindir)/hello$(EXEEXT) + +installdirs-local: + $(MKDIR_P) $(DESTDIR)$(bindir) + +uninstall-local: + rm -f $(DESTDIR)$(bindir)/hello$(EXEEXT) + +# The list of auxiliary files generated during the compilation. +CLEANFILES = hello.o hello$(EXEEXT) + +MAINTAINERCLEANFILES = hello.rsj diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-pascal/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..ca8714450503d9f0262ac95bfc4677d6d5a89c05 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/autoclean.sh @@ -0,0 +1,33 @@ +#!/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.rsj +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 hello.rsj +rm -f po/*.pot +rm -f po/stamp-po +rm -f po/*.gmo diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-pascal/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..a972da8041799c1ddf0a23303c0660eb9fb827bc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/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/share/doc/gettext/examples/hello-pascal/configure.ac b/miniconda3/share/doc/gettext/examples/hello-pascal/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..fb01e83615804118ef2e32aa1cbe3e509aa81fbf --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/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-pascal], [0]) +AC_CONFIG_SRCDIR([hello.pas]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Check for availability of the Free Pascal Compiler. +AC_PATH_PROGS([PPC], [ppc386 ppcx64]) +if test -z "$PPC"; then + echo "*** Essential program ppc386 or ppcx64 not found" 1>&2 + exit 1 +fi +AC_SUBST([PPC]) + +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([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/hello.pas b/miniconda3/share/doc/gettext/examples/hello-pascal/hello.pas new file mode 100644 index 0000000000000000000000000000000000000000..3a10bdc336c354e8d114ffa6e5c7000c8d398d00 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/hello.pas @@ -0,0 +1,20 @@ +{ Example for use of GNU gettext. + This file is in the public domain. + + Source code of the Pascal program. } + +program hello; +{$mode delphi} + +uses gettext, { translateresourcestrings } + sysutils; { format } + +resourcestring + hello_world = 'Hello, world!'; + running_as = 'This program is running as process number %d.'; + +begin + translateresourcestrings({$i %LOCALEDIR%}+'/%s/LC_MESSAGES/hello-pascal.mo'); + writeln(hello_world); + writeln(format(running_as,[GetProcessID])); +end. diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-pascal/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..8a841b31f12ff3bd59428fbba049f50825d91510 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/m4/Makefile.am @@ -0,0 +1,2 @@ +EXTRA_DIST = \ + nls.m4 po.m4 diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-pascal/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/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/share/doc/gettext/examples/hello-pascal/po/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-pascal/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..21c7e7ea673ccda17ccb068d6a5ba88212c3b4ad --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/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.rsj + +# 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/share/doc/gettext/examples/hello-pascal/po/af.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..81901c5f15670bd5db395938dab0c80350734229 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/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-pascal-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.hello_world +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Hierdie program loop as prosesnommer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..f73b963ac797b4aeb105ff3313bb3e769fb363ce --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-pascal +# 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.running_as +#, object-pascal-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/share/doc/gettext/examples/hello-pascal/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..9eefe87b4de677dfa1de1552d955e1698ed02186 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-pascal 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Програмата е пусната под процес номер %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..e2659cdae95dec027c760d7581972d56af71e919 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-pascal. +# 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.running_as +#, object-pascal-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/share/doc/gettext/examples/hello-pascal/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..95e6746113efadeafdcf95a93581bd1a7287e6a8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Tento program běží jako proces číslo %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/da.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..c6508851fcf04cd24dcaabee7086d62b2f72d042 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-pascal. +# 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Dette program kører som proces nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/de.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..693033bb7f97bd100d20e78081758bfbf94c18dd --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-pascal. +# 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Dieses Programm läuft mit der Prozess-Nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/el.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..fa3ceca9e5c662bc1d7dc00bcee566261e46e851 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-pascal +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..4945c721f6d8f3ba962c80161e3123cd805bc8fd --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Ĉi tiu programo rulas kiel procez-numero %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/es.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..49ea55ddf3f8071b46b4d592450c5f895bd20526 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/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-pascal-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.hello_world +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.running_as +#, object-pascal-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/share/doc/gettext/examples/hello-pascal/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..3847d20e9a7a6f0ae322b810701e632cf9d7c138 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Tämän ohjelman prosessinumero on %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..39662f47937c828b55f9240d320b67e49c9843da --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.running_as +#, object-pascal-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/share/doc/gettext/examples/hello-pascal/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..471360959a4a0938059a1ca98aea14076960f018 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-pascal. +# 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.running_as +#, object-pascal-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/share/doc/gettext/examples/hello-pascal/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..d408a41a43947ebe6ca19c34784914507f4d2c9d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-pascal 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.running_as +#, object-pascal-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/share/doc/gettext/examples/hello-pascal/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..1690796bc7284cabff4eefec0420e9386115d514 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-pascal 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Ovaj program se izvršava kao proces broj %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..b7a7ddd81bd04b5f6030652bfc4c186e5a6bb20a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-pascal. +# 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.running_as +#, object-pascal-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/share/doc/gettext/examples/hello-pascal/po/id.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..0601a8e4eb659bcc80d0666da1b5494e4c552d77 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-pascal-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-pascal-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.hello_world +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Program ini berjalan sebagai proses nomor %d" diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/it.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..b0edb1b5cdff9143bedf7659aa08496a06322d98 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-pascal. +# 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Questo programma è in esecuzione con numero di processo %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..6a6d0d817518b6d36c0dad4fae14edbc64a920aa --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-pascal' 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "このプログラムはプロセス番号 %d で動いています." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..910c6bb23b2a708faca08778803db9062342dffe --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..4832cdce14888bac2ea679f9e064e94a303fee39 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-pascal' 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Бул программа %d процесс номери катары иштеп жатат." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..18ac0cc9a625290e683b29480f9a3d1dc073cc1f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-pascal +# 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-pascal-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.hello_world +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Šī programma darbojas ar procesa numuru %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..29992830df4eb3be37dac9163c518f8faf10e929 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ms.po @@ -0,0 +1,28 @@ +# hello-pascal 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Program ini dilaksanakan sebagai proses bernombor %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..95f322a8fd9b5fc2f12bbe98133f2517ba52ee04 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/mt.po @@ -0,0 +1,27 @@ +# hello-pascal-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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.running_as +#, object-pascal-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/share/doc/gettext/examples/hello-pascal/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..2f9de4fe808b11b511a3c341e29eaba70734d4d8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-pascal 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Dette programmet kjører som prosess nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..1cfc0a6b2f40f6948ad1a864299f9ad69110dc6d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-pascal. +# 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-pascal-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.hello_world +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Dit programma draait als proces nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..f1a7fb8199cc83741d90aa4c9259939c8f34f410 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-pascal +# 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-pascal-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.hello_world +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Dette programmet køyrer som prosess nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..ad38d684ef8e96482cecb5a658ae7657c8f02467 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-pascal 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Ten program działa jako proces o numerze %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..d6bd63dd10fbb9705b4c47f99fa36417411535d5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-pascal' 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.running_as +#, object-pascal-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/share/doc/gettext/examples/hello-pascal/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..3a3aed5499d09cb3c6e1c0aa37b3c1758649898d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.running_as +#, object-pascal-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/share/doc/gettext/examples/hello-pascal/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..8178e81a99c327724a2dfee3c1d60cea3ac724ed --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-pascal" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-pascal. +# 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-pascal”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-pascal 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-pascal 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-pascal 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-pascal 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-pascal-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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Acest program rulează ca procesul numărul %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..53db87830d1b19c4c636440ed20a506893f208dc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-pascal-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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Эта программа выполняется как процесс под номером %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..55b3cab6af1610b1ccf1dfaa32a55df4b39b49a9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-pascal 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Tento program beží ako proces s číslom %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..7a78c6370d63a0dec57cb9e1ed3d1f2da7d28c2b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/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-pascal-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Ta program teče kot proces številka %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..e85220cf8d5fae2db4360b82631a4506596a6312 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/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-pascal-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.hello_world +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Ky program po xhiron si procesi numër %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..f3efda21b0f5c053ccdb10fda44248df5e0448ec --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-pascal. +# 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-pascal-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.hello_world +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Овај програм се извршава као процес број %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..19f4ae8234b83a08b6cd088f259613dca118f733 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-pascal. +# 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Detta program kör som process nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..f912059a6d3dff613ebc2d94f1871c028fea089a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "இந்நிரல் செயலாக்க எண் %d ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..675b38f0b37ace1d707f0ef550c8363279f42fb2 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-pascal. +# 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.running_as +#, object-pascal-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/share/doc/gettext/examples/hello-pascal/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..222ca9bef5b2c104f405d2e3ce8f4a98ed548d97 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-pascal +# 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "Ця програма виконується як процес з номером %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..cb4ee983de5767889ef91c3353709f20f79d15c4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.running_as +#, object-pascal-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/share/doc/gettext/examples/hello-pascal/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..5276de0cedfeb958134db4319de8aff1fb59dee8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-pascal. +# 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "此程序正以进程号 %d 运行。" diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..f7faacbe9af11685ce9fd2b228e096b29d051a1e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-pascal. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-pascal 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.hello_world +msgid "Hello, world!" +msgstr "你好!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行中,進程編號為 %d。" diff --git a/miniconda3/share/doc/gettext/examples/hello-pascal/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-pascal/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..07ec803f9f241af55fda46b6e74f7266b37ebe3f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-pascal/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-pascal. +# 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-pascal 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.hello_world +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.running_as +#, object-pascal-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行,行程編號為 %d。" diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/INSTALL b/miniconda3/share/doc/gettext/examples/hello-perl/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..609157aa264fbed7b0d220e59157aa0d281ebd37 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/INSTALL @@ -0,0 +1,12 @@ +This example relies on: + - Perl (perl) + - libintl-perl 1.09 or newer + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-perl/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..26b49dadf18ca7fa5d35b96bfee19699d7f1523c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/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-1 hello-2 + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-perl/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..8655a871726b2a31a935332f3e7cbba7b36928e8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/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/share/doc/gettext/examples/hello-perl/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-perl/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..a972da8041799c1ddf0a23303c0660eb9fb827bc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/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/share/doc/gettext/examples/hello-perl/configure.ac b/miniconda3/share/doc/gettext/examples/hello-perl/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..4f24092acf3a6bc925495169529e11869f7b6a2a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/configure.ac @@ -0,0 +1,40 @@ +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-perl], [0]) +AC_CONFIG_SRCDIR([hello-1.pl.in]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Check for availability of the Perl interpreter. +AC_PATH_PROG([PERL], [perl]) +if test -z "$PERL"; then + echo "*** Essential program perl not found" 1>&2 + exit 1 +fi +AC_SUBST([PERL]) + +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-1:hello-1.pl.in], [chmod a+x hello-1]) +AC_CONFIG_FILES([hello-2:hello-2.pl.in], [chmod a+x hello-2]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/hello-1.pl.in b/miniconda3/share/doc/gettext/examples/hello-perl/hello-1.pl.in new file mode 100644 index 0000000000000000000000000000000000000000..0b16c8e4c50e1896e04e632642072f69c60b0d56 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/hello-1.pl.in @@ -0,0 +1,20 @@ +#!@PERL@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Source code of the Perl program, using the Locale::Messages API. + +use Locale::Messages qw (textdomain bindtextdomain gettext); +use POSIX qw(getpid); + +binmode STDOUT, ':raw'; # Needed to make it work in UTF-8 locales in Perl-5.8. + +sub _ ($) { &gettext; } + +textdomain "hello-perl"; +bindtextdomain "hello-perl", "@localedir@"; + +print _"Hello, world!"; +print "\n"; +printf _"This program is running as process number %d.", getpid(); +print "\n"; diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/hello-2.pl.in b/miniconda3/share/doc/gettext/examples/hello-perl/hello-2.pl.in new file mode 100644 index 0000000000000000000000000000000000000000..afb9b6a5c671aaf78a993ee2bdcf6952f92580b7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/hello-2.pl.in @@ -0,0 +1,15 @@ +#!@PERL@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Source code of the Perl program, using the Locale::TextDomain API. + +use Locale::TextDomain ("hello-perl" => "@localedir@"); +use POSIX qw(getpid); + +binmode STDOUT, ':raw'; # Needed to make it work in UTF-8 locales in Perl-5.8. + +print __"Hello, world!"; +print "\n"; +print __x ("This program is running as process number {pid}.", pid => getpid()); +print "\n"; diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-perl/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..8a841b31f12ff3bd59428fbba049f50825d91510 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/m4/Makefile.am @@ -0,0 +1,2 @@ +EXTRA_DIST = \ + nls.m4 po.m4 diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-perl/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/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/share/doc/gettext/examples/hello-perl/po/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-perl/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..be499f57c4015b0a4a4b65855e0bfaf85abb62d8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/Makefile.am @@ -0,0 +1,444 @@ +# 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-1.pl.in hello-2.pl.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-perl-format --flag=_:1:pass-perl-brace-format \ + -k__ --flag=__:1:pass-perl-format --flag=__:1:pass-perl-brace-format \ + -k'$$__' --flag='$$__:1:pass-perl-format' --flag='$$__:1:pass-perl-brace-format' \ + -k'%__' --flag=%__:1:pass-perl-format --flag=%__:1:pass-perl-brace-format \ + -k__x --flag=__x:1:perl-brace-format \ + -k__n:1,2 --flag=__n:1:pass-perl-format --flag=__n:1:pass-perl-brace-format \ + --flag=__n:2:pass-perl-format --flag=__n:2:pass-perl-brace-format \ + -k__nx:1,2 --flag=__nx:1:perl-brace-format --flag=__nx:2:perl-brace-format \ + -k__xn:1,2 --flag=__xn:1:perl-brace-format --flag=__xn:2:perl-brace-format \ + -kN__ --flag=N__:1:pass-perl-format --flag=N__:1:pass-perl-brace-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/share/doc/gettext/examples/hello-perl/po/af.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..81135f5435bc1c313abb45acac6255ffe2e828a1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/af.po @@ -0,0 +1,31 @@ +# 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-perl-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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Hierdie program loop as prosesnommer %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Hierdie program loop as prosesnommer {pid}" diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..d9b131053c1880ad6b04816b28d665de59932864 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/ast.po @@ -0,0 +1,34 @@ +# Asturian translation for hello-perl +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Esti programa ta executándose como procesu númberu %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Esti programa ta executándose como procesu númberu {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..aa8971f5b78a20b7b37a9f431b14e1765aea5b5f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/bg.po @@ -0,0 +1,31 @@ +# Bulgarian translations for hello-perl 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Програмата е пусната под процес номер %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Програмата е пусната под процес номер {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..fad66fb9a225a8b7ea0c33a9473c24f4b4b9ad28 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/ca.po @@ -0,0 +1,32 @@ +# Catalan messages for GNU hello-perl. +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Aquest programa està corrent amb el número de procés %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Aquest programa està corrent amb el número de procés {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..411545df45648076441d2c851b86b3280215a4b4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/cs.po @@ -0,0 +1,34 @@ +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Tento program běží jako proces číslo %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Tento program běží jako proces číslo {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/da.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..a988021d9cbebfe70cf4d47cd17549e57a094b26 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/da.po @@ -0,0 +1,33 @@ +# Danish messages for hello-perl. +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Dette program kører som proces nummer %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Dette program kører som proces nummer {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/de.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..5defcbf6875e8193d16fcc3e4091a2e2f8ccf560 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/de.po @@ -0,0 +1,37 @@ +# German messages for hello-perl. +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Dieses Programm läuft mit der Prozess-Nummer %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Dieses Programm läuft mit der Prozess-Nummer {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/el.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..d270328feec5887b5cca7da9cf3eda583cc9082e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/el.po @@ -0,0 +1,31 @@ +# Greek translation of hello-perl +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..be9fa0b15c5f46ebef079e2e3b583e244f53b5b4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/eo.po @@ -0,0 +1,33 @@ +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Ĉi tiu programo rulas kiel procez-numero %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Ĉi tiu programo rulas kiel procez-numero {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/es.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..7ed383e4952786d84adbee1be1358bdf77626f23 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/es.po @@ -0,0 +1,35 @@ +# 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-perl-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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Este programa está corriendo como el proceso número %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Este programa está corriendo como el proceso número {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..c5a1e8cad2c94aeac3cf4b33aae64cd994b868fa --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/fi.po @@ -0,0 +1,34 @@ +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Tämän ohjelman prosessinumero on %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Tämän ohjelman prosessinumero on {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..1b86371b6b4f6c0e6e55918af21a93d4d719388d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/fr.po @@ -0,0 +1,37 @@ +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Ce programme est exécuté en tant que processus numéro %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Ce programme est exécuté en tant que processus numéro {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..55429285a7e4004a28159d8b6e8d869cff39fe78 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/ga.po @@ -0,0 +1,31 @@ +# Irish translations for hello-perl. +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Tá an clár seo ag rith mar phróiseas %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Tá an clár seo ag rith mar phróiseas {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..2968663f4da7b7a01599994fc86108e5c179867c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/gl.po @@ -0,0 +1,36 @@ +# Galician translation for hello-perl 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Este programa estase executando como o proceso número %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Este programa estase executando como o proceso número {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..e34112e478672fe211d105583f22a4928a9d697e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/hr.po @@ -0,0 +1,38 @@ +# Translation of hello-perl 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Ovaj program se izvršava kao proces broj %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Ovaj program se izvršava kao proces broj {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..8645eb1f9f8b8963516e9237bf8344d467a0d29b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/hu.po @@ -0,0 +1,34 @@ +# Hungarian translation for hello-perl. +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Ez a program a(z) %d folyamatazonosítóval fut." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Ez a program a(z) {pid} folyamatazonosítóval fut." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/id.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..3d7a432feb40184228ff4f880bb599059d0390f9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/id.po @@ -0,0 +1,32 @@ +# translation of hello-perl-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-perl-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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Program ini berjalan sebagai proses nomor %d" + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Program ini berjalan sebagai proses nomor {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/it.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..b2b06624f0991ee67c7580dfcbddee8a60304b8e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/it.po @@ -0,0 +1,34 @@ +# Italian messages for hello-perl. +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Questo programma è in esecuzione con numero di processo %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Questo programma è in esecuzione con numero di processo {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..6fce1cb7d6bf0c14c77ca0ad95bbca156fb96f1f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/ja.po @@ -0,0 +1,31 @@ +# Translation of `hello-perl' 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "このプログラムはプロセス番号 %d で動いています." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "このプログラムはプロセス番号 {pid} で動いています." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..0660069ade871e7c7d74fd056f0686a1486c7c1d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/ka.po @@ -0,0 +1,33 @@ +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..d778f4a7d0411e2e722bfc1e605ad818d7941db7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/ky.po @@ -0,0 +1,33 @@ +# Translation of 'hello-perl' 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Бул программа %d процесс номери катары иштеп жатат." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Бул программа {pid} процесс номери катары иштеп жатат." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..46ea55ea48a96d4c2cb149b556aeb88e3d1d5df2 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/lv.po @@ -0,0 +1,35 @@ +# Latvian translation of hello-perl +# 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-perl-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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Šī programma darbojas ar procesa numuru %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Šī programma darbojas ar procesa numuru {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..57bf00847b96bf398e8c0175ae89d2b286b96ad7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/ms.po @@ -0,0 +1,33 @@ +# hello-perl 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Program ini dilaksanakan sebagai proses bernombor %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Program ini dilaksanakan sebagai proses bernombor {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..0cb89d61eba35d9ed2d1a6d006d745ee37f6229f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/mt.po @@ -0,0 +1,32 @@ +# hello-perl-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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Dal-programm qed jaħdem taħt il-proċess numru %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Dal-programm qed jaħdem taħt il-proċess numru {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..87af2ea36a819a4b2640cdd3bcb2666b88aa9539 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/nb.po @@ -0,0 +1,34 @@ +# Norwegian Bokmal translations for hello-perl 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Dette programmet kjører som prosess nummer %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Dette programmet kjører som prosess nummer {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..814ee078cee223b71f85d5bd580fbef8828d6e9b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/nl.po @@ -0,0 +1,36 @@ +# Dutch translations for GNU hello-perl. +# 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-perl-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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Dit programma draait als proces nummer %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Dit programma draait als proces nummer {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..ff48a3e429013dfd1f50fff8b440a4c664ef3ebb --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/nn.po @@ -0,0 +1,33 @@ +# Norwegian Nynorsk translation of GNU hello-perl +# 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-perl-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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Dette programmet køyrer som prosess nummer %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Dette programmet køyrer som prosess nummer {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..95b7e3032045f36a34fa81422e32afa6cd1d0549 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/pl.po @@ -0,0 +1,32 @@ +# Polish translations for the GNU gettext messages, hello-perl 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Ten program działa jako proces o numerze %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Ten program działa jako proces o numerze {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..0213040b315c5a44f9c61dc80f6068642eb184bc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/pt.po @@ -0,0 +1,33 @@ +# Portuguese (Portugal) translation of 'hello-perl' 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Este programa está em execução como processo nº %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Este programa está em execução como processo nº {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..7092a2b8f86a894386bbf3ba460dd35fca07e214 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/pt_BR.po @@ -0,0 +1,36 @@ +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Este programa está sendo executado com número de processo %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Este programa está sendo executado com número de processo {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..b22e8c5b2246d56d39eaddb63ed92dee1876ff83 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/ro.po @@ -0,0 +1,55 @@ +# Translation of "hello-perl" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-perl. +# 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-perl”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-perl 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-perl 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-perl 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-perl 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-perl-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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Acest program rulează ca procesul numărul %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Acest program rulează ca procesul numărul {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..fd012e689077c2b78f865ba4a553e342ca23d867 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/ru.po @@ -0,0 +1,35 @@ +# Translation of hello-perl-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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Эта программа выполняется как процесс под номером %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Эта программа выполняется как процесс под номером {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..fad19ebfb07438878d14f70cb0b0a82da4de7173 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/sk.po @@ -0,0 +1,31 @@ +# Slovak translations GNU for hello-perl 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Tento program beží ako proces s číslom %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Tento program beží ako proces s číslom {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..cc372c7b2f48fd97bcf75ca7bab2412c0643674a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/sl.po @@ -0,0 +1,34 @@ +# -*- 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-perl-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Ta program teče kot proces številka %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Ta program teče kot proces številka {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..4b9b689e400c5186777c1718fd92f583de25e8ac --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/sq.po @@ -0,0 +1,33 @@ +# 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-perl-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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Ky program po xhiron si procesi numër %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Ky program po xhiron si procesi numër {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..ecfcb86695e7be8188bdf4117faa4fae51101736 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/sr.po @@ -0,0 +1,35 @@ +# Serbian translation of hello-perl. +# 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-perl-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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Овај програм се извршава као процес број %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Овај програм се извршава као процес број {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..d4195643e022617e616def1e0032229c1943000e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/sv.po @@ -0,0 +1,35 @@ +# Swedish messages for hello-perl. +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Detta program kör som process nummer %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Detta program kör som process nummer {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..1dc82fc98ad987e6a09745cd3ddfb4cf61b900b8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/ta.po @@ -0,0 +1,33 @@ +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "இந்நிரல் செயலாக்க எண் %d ஆக இயங்கிக்கொண்டிருக்கிறது." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "இந்நிரல் செயலாக்க எண் {pid} ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..151161e103eb6d7dff2c4333aa3ffe9ca33794c0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/tr.po @@ -0,0 +1,34 @@ +# Turkish translation for hello-perl. +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Bu yazılım %d işlem numarası ile çalışıyor." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Bu program işlem numarası {pid} olarak çalışıyor." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..3bfe9c8339ae66fe16d7233bf41add24f83760ef --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/uk.po @@ -0,0 +1,35 @@ +# Ukrainian translation to hello-perl +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "Ця програма виконується як процес з номером %d." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Ця програма виконується як процес з номером {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..9370fb634adec356d79d0f81d1a806928f15a422 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/vi.po @@ -0,0 +1,35 @@ +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello-1.pl.in:19 +#, perl-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." + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "Chương trình này đang chạy với mã số tiến trình {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..517a39cf321ad96c60ea90009edd05106b4101f8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/zh_CN.po @@ -0,0 +1,34 @@ +# zh_CN translation for hello-perl. +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "此程序正以进程号 %d 运行。" + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "此程序正以进程号 {pid} 运行。" diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..e4fdec3a719884dbf1c39c86b1ca010128c3148c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/zh_HK.po @@ -0,0 +1,30 @@ +# Chinese (Hong Kong) translation of hello-perl. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "你好!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行中,進程編號為 %d。" + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "本程式正在執行中,進程編號為 {pid}。" diff --git a/miniconda3/share/doc/gettext/examples/hello-perl/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-perl/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..052525ecf8b4185f4466c360dbd30cbe8f657a52 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-perl/po/zh_TW.po @@ -0,0 +1,34 @@ +# Traditional Chinese translation of hello-perl. +# 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-perl 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-1.pl.in:17 hello-2.pl.in:12 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello-1.pl.in:19 +#, perl-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行,行程編號為 %d。" + +#: hello-2.pl.in:14 +#, perl-brace-format +msgid "This program is running as process number {pid}." +msgstr "本程式正在執行,行程編號為 {pid}。" diff --git a/miniconda3/share/doc/gettext/examples/hello-php/INSTALL b/miniconda3/share/doc/gettext/examples/hello-php/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..5e2792e510b20736aa0268e9f508598b5f3e0b92 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/INSTALL @@ -0,0 +1,10 @@ +This example relies on PHP. + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-php/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-php/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..b76e71d94a2fe75afa8bf3b55bef12edf344ed34 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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/share/doc/gettext/examples/hello-php/README b/miniconda3/share/doc/gettext/examples/hello-php/README new file mode 100644 index 0000000000000000000000000000000000000000..1658db36d1a02af0b5c0510959df068a4d2b2b10 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/README @@ -0,0 +1,5 @@ +The gettext/PHP binding has a limitation: While it works fine for standalone +PHP programs, it cannot be used inside a web server, to translate parts of web +pages into the preferred encoding of user that makes a HTTP connection. The +reason is that a web server usually is multithreaded, and the gettext() API +relies on the process' global locale. diff --git a/miniconda3/share/doc/gettext/examples/hello-php/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-php/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..8655a871726b2a31a935332f3e7cbba7b36928e8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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/share/doc/gettext/examples/hello-php/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-php/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..a972da8041799c1ddf0a23303c0660eb9fb827bc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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/share/doc/gettext/examples/hello-php/configure.ac b/miniconda3/share/doc/gettext/examples/hello-php/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..9b492caceb2cfd4331082be474c62e2b1c47b601 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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-php], [0]) +AC_CONFIG_SRCDIR([hello.php]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Check for availability of the PHP system. +AC_PATH_PROG([PHP], [php]) +if test -z "$PHP"; then + echo "*** Essential program php not found" 1>&2 + exit 1 +fi +AC_SUBST([PHP]) + +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.php], [chmod a+x hello]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/share/doc/gettext/examples/hello-php/hello.php b/miniconda3/share/doc/gettext/examples/hello-php/hello.php new file mode 100644 index 0000000000000000000000000000000000000000..6c68a78c312493ef9283a79ad6311c3797b050be --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/hello.php @@ -0,0 +1,16 @@ +#!@PHP@ -q + diff --git a/miniconda3/share/doc/gettext/examples/hello-php/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-php/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..8a841b31f12ff3bd59428fbba049f50825d91510 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/m4/Makefile.am @@ -0,0 +1,2 @@ +EXTRA_DIST = \ + nls.m4 po.m4 diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-php/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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/share/doc/gettext/examples/hello-php/po/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-php/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..c8d72c65b6b9e98879c36927889fa3980722e9e5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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.php + +# 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/share/doc/gettext/examples/hello-php/po/af.po b/miniconda3/share/doc/gettext/examples/hello-php/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..31d04adef3b0a68599ff7511bc864273d732c402 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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-php-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.php:12 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Hierdie program loop as prosesnommer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-php/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..fb3b62d04692363e38560cbb47d76dc1899e6bff --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-php +# 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-php 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.php:12 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.php:14 +#, php-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/share/doc/gettext/examples/hello-php/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-php/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..90a5d9f9a3a1e7c4bd67a6558aed65363ffbd035 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-php 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Програмата е пусната под процес номер %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-php/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..6d250b475e14a4b28b9ce2204effb1495fd07d86 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-php. +# 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.php:14 +#, php-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/share/doc/gettext/examples/hello-php/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-php/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..2e750d47b82916a994109e78613fb929ee801ebc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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-php 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.php:12 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Tento program běží jako proces číslo %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/da.po b/miniconda3/share/doc/gettext/examples/hello-php/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..26741cde7ea03b324cda8d418c619b883386d019 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-php. +# 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Dette program kører som proces nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/de.po b/miniconda3/share/doc/gettext/examples/hello-php/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..540c0d93edd53d7e8505f5633dd1d431c759b590 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-php. +# 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Dieses Programm läuft mit der Prozess-Nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/el.po b/miniconda3/share/doc/gettext/examples/hello-php/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..6167c9d6fc542559d1620be2fb7a8a88837291c4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-php +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-php 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.php:12 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-php/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..17a12b5113f1e7102df0ea9aa76aa74ea97d4923 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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-php 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.php:12 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Ĉi tiu programo rulas kiel procez-numero %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/es.po b/miniconda3/share/doc/gettext/examples/hello-php/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..c3c619eb3d8d3eb8258f883254565d410158ebd7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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-php-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.php:12 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.php:14 +#, php-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/share/doc/gettext/examples/hello-php/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-php/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..4fa128f4337db3c4e6a801323ac5e1d5343c9578 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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-php 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.php:12 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Tämän ohjelman prosessinumero on %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-php/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..c3dcd182d19e64df626ef6c84e7a107dfe079cee --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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-php 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.php:12 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.php:14 +#, php-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/share/doc/gettext/examples/hello-php/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-php/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..059d690cb7752c2bc27f5f0994ab7f960e84b9f8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-php. +# 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.php:14 +#, php-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/share/doc/gettext/examples/hello-php/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-php/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..40703881e59b43d621584de20bd7d643f4a65b4e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-php 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.php:14 +#, php-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/share/doc/gettext/examples/hello-php/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-php/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..80393c16df0dce43325651868192fec327e4cdcb --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-php 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Ovaj program se izvršava kao proces broj %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-php/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..4a9e5146617e59d8f2fcdcd9225c288f59ca7a98 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-php. +# 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.php:14 +#, php-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/share/doc/gettext/examples/hello-php/po/id.po b/miniconda3/share/doc/gettext/examples/hello-php/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..b7d023e8c1bc60925f4464bb6b74e3ac2afdf42c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-php-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-php-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.php:12 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Program ini berjalan sebagai proses nomor %d" diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/it.po b/miniconda3/share/doc/gettext/examples/hello-php/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..fd27f335f8062cdf2c303938a2b3030497c6b79c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-php. +# 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Questo programma è in esecuzione con numero di processo %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-php/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..26554d87f1d1e5246ed35d9e4949a83dbec493df --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-php' 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-php 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.php:12 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "このプログラムはプロセス番号 %d で動いています." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-php/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..1324f6ece36bd4320045c67f3ac6c24e740615c2 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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-php 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.php:12 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-php/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..ca591fc67870c05a9af3a96d3c67bc0f6e905db5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-php' 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Бул программа %d процесс номери катары иштеп жатат." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-php/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..60ac0129a521a32e61e992300a37589162b80cc7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-php +# 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-php-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.php:12 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Šī programma darbojas ar procesa numuru %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-php/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..5559db4dfe44c86174dc4644baa19187683aadbe --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/ms.po @@ -0,0 +1,28 @@ +# hello-php 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Program ini dilaksanakan sebagai proses bernombor %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-php/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..0e2782651a1dd5be8b1e788600cc17df1519c0d9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/mt.po @@ -0,0 +1,27 @@ +# hello-php-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-php 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.php:12 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.php:14 +#, php-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/share/doc/gettext/examples/hello-php/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-php/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..7e99c4a071fa583eaa0105f52d5602f949762951 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-php 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Dette programmet kjører som prosess nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-php/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..850b11a3c12486ce75e91625a49b9932576847be --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-php. +# 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-php-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.php:12 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Dit programma draait als proces nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-php/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..3df89a31dcf99ea8094d0fec7186f7b438560b00 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-php +# 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-php-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.php:12 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Dette programmet køyrer som prosess nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-php/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..effec23343cd51463093af22b2649ccbd857c53b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-php 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Ten program działa jako proces o numerze %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-php/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..58a76ab1dcf5b5cc6e947d33b8217d18fbd0a7c4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-php' 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.php:14 +#, php-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/share/doc/gettext/examples/hello-php/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-php/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..a389e2903e3ba8a6f09528d6dff0621641c77c99 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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-php 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.php:12 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.php:14 +#, php-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/share/doc/gettext/examples/hello-php/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-php/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..03e1049fe9a7d09f6dde449818582f4921f59d34 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-php" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-php. +# 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-php”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-php 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-php 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-php 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-php 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-php-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-php 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.php:12 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Acest program rulează ca procesul numărul %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-php/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..98a518a012049e049c7d2a0b4af000b9a3ab6f7b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-php-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-php 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.php:12 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Эта программа выполняется как процесс под номером %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-php/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..3379ccf9860805771ca6cc12132d76be0046a087 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-php 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Tento program beží ako proces s číslom %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-php/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..2385915a8b0392408bd9a1c75e5453c44bc67ec7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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-php-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-php 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.php:12 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Ta program teče kot proces številka %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-php/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..b1f7654a73384fa5ed16351cee6e551a0f1fb3da --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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-php-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.php:12 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Ky program po xhiron si procesi numër %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-php/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..088f593f289d3ffb5ce57c272bbe5d227bafcb6d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-php. +# 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-php-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.php:12 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Овај програм се извршава као процес број %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-php/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..0b525305977a689c61818cf7ec8fddf2cbebf012 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-php. +# 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Detta program kör som process nummer %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-php/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..2ee1a309f77c59d3f55b01a1d5c7cfeee0997238 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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-php 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.php:12 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "இந்நிரல் செயலாக்க எண் %d ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-php/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..defdedbf0727df87f1a8e79c59ff9f39fe4da07d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-php. +# 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.php:14 +#, php-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/share/doc/gettext/examples/hello-php/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-php/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..d5e028036babdb262784717e2b1674726ec94e8a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-php +# 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-php 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.php:12 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "Ця програма виконується як процес з номером %d." diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-php/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..c2df6323f70e8ba80da95cbc305102946b378a08 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/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-php 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.php:12 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.php:14 +#, php-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/share/doc/gettext/examples/hello-php/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-php/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..3b3d5aa700d64f43df69015829f202b376d50929 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-php. +# 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-php 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.php:12 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "此程序正以进程号 %d 运行。" diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-php/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..e2d6d187e2109c26c8af0e6dcb5851e80907aab3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-php. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-php 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.php:12 +msgid "Hello, world!" +msgstr "你好!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行中,進程編號為 %d。" diff --git a/miniconda3/share/doc/gettext/examples/hello-php/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-php/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..38eff5394d27c36fe792091e02d1ca763a9f21e2 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-php/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-php. +# 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-php 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.php:12 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.php:14 +#, php-format +msgid "This program is running as process number %d." +msgstr "本程式正在執行,行程編號為 %d。" diff --git a/miniconda3/share/doc/gettext/examples/hello-python/INSTALL b/miniconda3/share/doc/gettext/examples/hello-python/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..cb9ecf7ca6d5f8bbd8b9b52758edba2f62a7c423 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/INSTALL @@ -0,0 +1,10 @@ +This example relies on Python 2.0 or newer. + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-python/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-python/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..009e9f3f9e3378ec65efebd9b66edd45797f59b0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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 +ACLOCAL_AMFLAGS = -I m4 + +# The list of subdirectories containing Makefiles. +SUBDIRS = m4 po + +# The list of programs that are built. +bin_SCRIPTS = hello + +# Making a Python program executable. +# FIXME: How to make a compiled python program (output of automake's +# py-compile command) executable? +hello: hello.py + (echo '#!@PYTHON@'; cat $<) > $@ + chmod a+x $@ +CLEANFILES = hello +#CLEANFILES += *.pyc *.pyo + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-python/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-python/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..8655a871726b2a31a935332f3e7cbba7b36928e8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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/share/doc/gettext/examples/hello-python/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-python/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..a972da8041799c1ddf0a23303c0660eb9fb827bc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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/share/doc/gettext/examples/hello-python/configure.ac b/miniconda3/share/doc/gettext/examples/hello-python/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..d7aa65652d6eb2d500789e6211cd0e153bb01b3f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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-python], [0]) +AC_CONFIG_SRCDIR([hello.py.in]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Check for availability of the Python interpreter. +AM_PATH_PYTHON +if test -z "$PYTHON"; then + echo "*** Essential program python 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 hello.py]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/share/doc/gettext/examples/hello-python/hello.py.in b/miniconda3/share/doc/gettext/examples/hello-python/hello.py.in new file mode 100644 index 0000000000000000000000000000000000000000..39f9ed7765d86b65101866e8f0eb0a07d65d831c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/hello.py.in @@ -0,0 +1,14 @@ +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Source code of the Python program. + +import gettext +import os + +gettext.textdomain('hello-python') +gettext.bindtextdomain('hello-python', '@localedir@') + +print(gettext.gettext("Hello, world!")) +print(gettext.gettext("This program is running as process number %(pid)d.") + % { 'pid': os.getpid() }) diff --git a/miniconda3/share/doc/gettext/examples/hello-python/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-python/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..8a841b31f12ff3bd59428fbba049f50825d91510 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/m4/Makefile.am @@ -0,0 +1,2 @@ +EXTRA_DIST = \ + nls.m4 po.m4 diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-python/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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/share/doc/gettext/examples/hello-python/po/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-python/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..9823860ee0fcced0a3b8f03dc9beca4357b429b9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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.py.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/share/doc/gettext/examples/hello-python/po/af.po b/miniconda3/share/doc/gettext/examples/hello-python/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..5819217a4ba6bc48c6fc0767b7161cf0573d7185 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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-python-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.py.in:12 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Hierdie program loop as prosesnommer %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-python/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..e381f61ecac5978e72bb44da540892f66d64c5c4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-python +# 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Esti programa ta executándose como procesu númberu %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-python/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..03628ec11f08ac89c1891214475d1947a54e67af --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-python 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Програмата е пусната под процес номер %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-python/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..3be45a74fc71d7b22c4fcb6fd13b304a0bfe9d7a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-python. +# 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Aquest programa està corrent amb el número de procés %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-python/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..ea717014ffa35e0b40b47b16bd93b7af8ae9d4ad --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Tento program běží jako proces číslo %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/da.po b/miniconda3/share/doc/gettext/examples/hello-python/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..6ad80cdf7afc565a0b868f5cfb40bf9f1a4fff13 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-python. +# 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Dette program kører som proces nummer %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/de.po b/miniconda3/share/doc/gettext/examples/hello-python/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..595aaba808ce21923a8458dde76bab9ff7112919 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-python. +# 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Dieses Programm läuft mit der Prozess-Nummer %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/el.po b/miniconda3/share/doc/gettext/examples/hello-python/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..ff4f194e12f8a0dfce80e82c987123939a10e273 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-python +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-python/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..062182cf3cbf1fe72ec1e3f1b767750d450f62b0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Ĉi tiu programo rulas kiel procez-numero %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/es.po b/miniconda3/share/doc/gettext/examples/hello-python/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..87cd47cb06554a713815d147446227c575b3ac4d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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-python-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.py.in:12 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Este programa está corriendo como el proceso número %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-python/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..c4e26e34e870beb8672b0b00da505782df2fd54e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Tämän ohjelman prosessinumero on %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-python/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..45424577e6dbe50a053fbceded6225fdfdb0c32b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Ce programme est exécuté en tant que processus numéro %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-python/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..c4b930d8a0d86ccb5c2358a424cfc449a9deb744 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-python. +# 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Tá an clár seo ag rith mar phróiseas %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-python/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..0c21cda2ce24ae7a6a5008f332ffb5131569c0a0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-python 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Este programa estase executando como o proceso número %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-python/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..0f7cf2eb58fa50d332a82557c2dc507288119f6a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-python 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Ovaj program se izvršava kao proces broj %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-python/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..b2f29b7cc81c515d0ceb9c1ea5fce8161d63dafc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-python. +# 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Ez a program a(z) %(pid)d folyamatazonosítóval fut." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/id.po b/miniconda3/share/doc/gettext/examples/hello-python/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..2e0bd53b990b1b93b39ae81c122173084562f3b2 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-python-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-python-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.py.in:12 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Program ini berjalan sebagai proses nomor %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/it.po b/miniconda3/share/doc/gettext/examples/hello-python/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..a280eed88ff5151953c83d870d1db9bec5e6d629 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-python. +# 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Questo programma è in esecuzione con numero di processo %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-python/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..444837aeb66264063265cb8f3dc3fa93239c1afa --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-python' 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "このプログラムはプロセス番号 %(pid)d で動いています." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-python/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..695716d6825bcd49ec9679afb5fdc2668cf9dff8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-python/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..a16336db19d1be5171da6c2fbe9542dda536592f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-python' 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Бул программа %(pid)d процесс номери катары иштеп жатат." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-python/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..9674890a9320b8e5a0bfd7459184ff5f0f832a68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-python +# 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-python-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.py.in:12 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Šī programma darbojas ar procesa numuru %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-python/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..4db57fa6e02b61ffc694206a572b66e390b76dd5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/ms.po @@ -0,0 +1,28 @@ +# hello-python 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Program ini dilaksanakan sebagai proses bernombor %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-python/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..cf4c34824ef40eef17a23828d857b90c2e6ea659 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/mt.po @@ -0,0 +1,27 @@ +# hello-python-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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Dal-programm qed jaħdem taħt il-proċess numru %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-python/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..40cf27144d0301019a7d733733cfdc86412bbbd1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-python 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Dette programmet kjører som prosess nummer %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-python/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..4a60e21eaf24edc4885a9e1f2743b2b4f522239c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-python. +# 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-python-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.py.in:12 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Dit programma draait als proces nummer %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-python/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..3a4056dff68396fa8db04b38f0d3894533fbd65e --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-python +# 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-python-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.py.in:12 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Dette programmet køyrer som prosess nummer %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-python/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..2662a26418eed43fc788590ec64eb249d87ed4cc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-python 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Ten program działa jako proces o numerze %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-python/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..929ddd4611749c8bd1652f89fb680906e475ecf9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-python' 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Este programa está em execução como processo nº %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-python/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..3766706ea30573f29c5b7678cf1dc40a47cdbe19 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Este programa está sendo executado com número de processo %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-python/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..764d3cd5d776915e74fb634cc98b8770de993fb7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-python" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-python. +# 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-python”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-python 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-python 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-python 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-python 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-python-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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Acest program rulează ca procesul numărul %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-python/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..90fecc981460cef2df06aca61504b845241f65e2 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-python-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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Эта программа выполняется как процесс под номером %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-python/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..642fa24d250a644088d3d52b6e35afd4ba3ad6a9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-python 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Tento program beží ako proces s číslom %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-python/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..6fe35e65526a5f6556020ba18a1dcd077332c8b4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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-python-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Ta program teče kot proces številka %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-python/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..b9c31abbfecd498d1096a6c1fd5424b0a46e3783 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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-python-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.py.in:12 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Ky program po xhiron si procesi numër %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-python/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..29e272c2ba02a5f66d4a165ed22beb36da86db5d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-python. +# 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-python-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.py.in:12 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Овај програм се извршава као процес број %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-python/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..74367946ebb65e7288726c6cde514584011c52cf --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-python. +# 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Detta program kör som process nummer %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-python/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..57abfea01e400c0c394f58c24fbcb2a19b2dbced --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "இந்நிரல் செயலாக்க எண் %(pid)d ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-python/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..cf8cda8cc5d4390d07579710d2238db5057d4981 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-python. +# 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Bu yazılım %(pid)d süreç numarası ile çalışıyor." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-python/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..d6dcc349ba819ad7e9d066f9b698491db67f591a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-python +# 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Ця програма виконується як процес з номером %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-python/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..e326010fdf352cbcf33b30b9a82132ac0af908b3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "Chương trình này đang chạy với mã số tiến trình %(pid)d." diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-python/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..905ac357cc4a9c80792367f893bba5a98c659d21 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-python. +# 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "此程序正以进程号 %(pid)d 运行。" diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-python/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..b5fc94c4feedf9f3ceb50ec89039e9673e50c650 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-python. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-python 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.py.in:12 +msgid "Hello, world!" +msgstr "你好!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "本程式正在執行中,進程編號為 %(pid)d。" diff --git a/miniconda3/share/doc/gettext/examples/hello-python/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-python/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..c74e639d16e8c3b1256553031c5724a01c22c103 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-python/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-python. +# 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-python 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.py.in:12 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.py.in:13 +#, python-format +msgid "This program is running as process number %(pid)d." +msgstr "本程式正在執行,行程編號為 %(pid)d。" diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/INSTALL b/miniconda3/share/doc/gettext/examples/hello-ruby/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..aabcad2444b0a3436e4aa3e4a9844c572a76add2 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/INSTALL @@ -0,0 +1,10 @@ +This example relies on Ruby and ruby-gettext (not fast_xgettext). + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-ruby/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..b76e71d94a2fe75afa8bf3b55bef12edf344ed34 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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/share/doc/gettext/examples/hello-ruby/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-ruby/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..8655a871726b2a31a935332f3e7cbba7b36928e8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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/share/doc/gettext/examples/hello-ruby/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-ruby/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..a972da8041799c1ddf0a23303c0660eb9fb827bc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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/share/doc/gettext/examples/hello-ruby/configure.ac b/miniconda3/share/doc/gettext/examples/hello-ruby/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..c17f6abf59918016de33c0a8f256f40025fa1311 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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-ruby], [0]) +AC_CONFIG_SRCDIR([hello.rb]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Check for availability of the Ruby interpreter. +AC_PATH_PROG([RUBY], [ruby]) +if test -z "$RUBY"; then + echo "*** Essential program ruby not found" 1>&2 + exit 1 +fi +AC_SUBST([RUBY]) + +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.rb], [chmod a+x hello]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/hello.rb b/miniconda3/share/doc/gettext/examples/hello-ruby/hello.rb new file mode 100644 index 0000000000000000000000000000000000000000..4aafeb8d5b0d8da794679e495a5f093c0b284be5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/hello.rb @@ -0,0 +1,8 @@ +#!@RUBY@ +require 'gettext' +include GetText + +bindtextdomain("hello-ruby", :path => "@localedir@") + +puts _("Hello, world!") +puts _("This program is running as process number %{pid}.") % { :pid => Process.pid } diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-ruby/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..8a841b31f12ff3bd59428fbba049f50825d91510 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/m4/Makefile.am @@ -0,0 +1,2 @@ +EXTRA_DIST = \ + nls.m4 po.m4 diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-ruby/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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/share/doc/gettext/examples/hello-ruby/po/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-ruby/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..fc68f5a053bc87e7c1c032ee861ee81d3b59f8f9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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.rb + +# 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/share/doc/gettext/examples/hello-ruby/po/af.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..64782971178fc3edf0cfc7c2d7c9a0e431b9a7de --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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-ruby-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.rb:7 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Hierdie program loop as prosesnommer {pid}" diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..1059833bcbaf5f0cf4ad67c1ef392abe41f867ad --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-ruby +# 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Esti programa ta executándose como procesu númberu {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..d12d26b83489e334d9e016b5d164a01345099254 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-ruby 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Програмата е пусната под процес номер %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..3f49296a24163979065e1ed095c4f5d4a3cea93c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-ruby. +# 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Aquest programa està corrent amb el número de procés {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..6f24fa1438d6274a9b8c1566b40549fdc4ff2d47 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Tento program běží jako proces číslo %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/da.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..ce6d8ce20b36e32a218fc71b9dcaee50c95c48f8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-ruby. +# 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Dette program kører som proces nummer {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/de.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..38839dcd76c3df606e8a21a302eddc1a5a0ac44a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-ruby. +# 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Dieses Programm läuft mit der Prozess-Nummer %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/el.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..0d56379fde2d066f014708004250426130a1860f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-ruby +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..c6adcbdfbbea42e601ae97a7c6f6dd02a5d0e839 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Ĉi tiu programo rulas kiel procez-numero {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/es.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..16b5ae745e93cc5e6873c05dc784c463dd27ec6b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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-ruby-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.rb:7 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Este programa está corriendo como el proceso número %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..a83fc23817ba03671e7ed25fe451a26b71b319c5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Tämän ohjelman prosessinumero on {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..ea1416a36eb4dd844a5a9cf7887fb075705d8b02 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Ce programme est exécuté en tant que processus numéro {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..7a071042a167f6b1d22800e46254db9a4d219b71 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-ruby. +# 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Tá an clár seo ag rith mar phróiseas {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..cde5c56dcf86cf2b8fec8becfc09af6a42a36c4d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-ruby 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Este programa estase executando como o proceso número {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..824c76c1d0710db114c59a3403a238e5d014bdd0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-ruby 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Ovaj program se izvršava kao proces broj %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..14fa345fa70a9398d80e1e37393293058ed84ed8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-ruby. +# 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Ez a program a(z) {pid} folyamatazonosítóval fut." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/id.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..e7224cce73e76e06b3fb46c5155b390a4cbd37e4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-ruby-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-ruby-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.rb:7 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Program ini berjalan sebagai proses nomor {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/it.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..29d1a9696c247ca1b9935dbd72a1611cc9bff2b0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-ruby. +# 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Questo programma è in esecuzione con numero di processo %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..4a2ad58f988af2c518cedbcfc35e0aefd47df280 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-ruby' 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "このプログラムはプロセス番号 %{pid} で動いています." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..1d1bd9c463e41de4f43fa9845235cd790ae21db4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..445d58f4c640bbfcee7692ff01b58794a07b13e0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-ruby' 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Бул программа {pid} процесс номери катары иштеп жатат." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..f4145e96eac24222131339f6cf58abd297207a60 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-ruby +# 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-ruby-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.rb:7 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Šī programma darbojas ar procesa numuru %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..f941bf86978bd8f6360f52ebb4de4c9bc3d6f7d7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ms.po @@ -0,0 +1,28 @@ +# hello-ruby 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Program ini dilaksanakan sebagai proses bernombor %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..89103f634e3e6e8ffa13a1a1c6fa6c220beb983c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/mt.po @@ -0,0 +1,27 @@ +# hello-ruby-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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Dal-programm qed jaħdem taħt il-proċess numru {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..44442902f3d2faaa43069b33c551010c1eba6557 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-ruby 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Dette programmet kjører som prosess nummer {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..a730a4681c7ba7a97a4c81eb6d9916b504326a71 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-ruby. +# 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-ruby-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.rb:7 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Dit programma draait als proces nummer %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..d28f76b34b5e64923a7d975047730f0385adebc9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-ruby +# 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-ruby-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.rb:7 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Dette programmet køyrer som prosess nummer {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..a2283cde538a6ce7a2200494cca410e35d252b65 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-ruby 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Ten program działa jako proces o numerze %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..6e61d75349d6ddac1fb33bbf410211a1a6824d1d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-ruby' 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Este programa está em execução como processo nº %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..2a334e4d4465390b9dab76ca8aa9b5441fb7a752 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Este programa está sendo executado com número de processo %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..f97111574208fb98bbdce11224bfcca6fba327f2 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-ruby" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-ruby. +# 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-ruby”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-ruby 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-ruby 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-ruby 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-ruby 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-ruby-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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Acest program rulează ca procesul numărul %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..fc58441d8c49466efdc30eff20c874d6068ae616 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-ruby-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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Эта программа выполняется как процесс под номером %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..4f0b608637192d5db5eea368e4c58e50d7121f8a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-ruby 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Tento program beží ako proces s číslom %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..7755224d344245e26a468134e6142174d2ec9a3d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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-ruby-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Ta program teče kot proces številka {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..2fbf2fcea6cd1bb01f0867357edfe759d13696e3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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-ruby-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.rb:7 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Ky program po xhiron si procesi numër %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..d6c28e7b29d2b96e47d3de573a1f4ceaf9ad1eaf --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-ruby. +# 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-ruby-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.rb:7 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Овај програм се извршава као процес број %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..1531937d7db3bb0569603bec7c3cc4c9ea10f683 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-ruby. +# 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Detta program kör som process nummer %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..8ef418f7f650f1a94596f3055975603d30a44ac8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "இந்நிரல் செயலாக்க எண் {pid} ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..bfb9bc79e843684dab09d3825d374f897c715b3d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-ruby. +# 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Bu program işlem numarası {pid} olarak çalışıyor." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..fded0405d8c6c3b3dbe7d6fce70d2f9723cef9f9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-ruby +# 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Ця програма виконується як процес з номером %{pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..da16c4f041166f0936a87c3529016db9474cd3a1 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "Chương trình này đang chạy với mã số tiến trình {pid}." diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..7b96f3c92acacd5999ba2e6d087808f4a7a0e1fb --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-ruby. +# 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: hello.rb:8 +#, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "此程序正以进程号 %{pid} 运行。" diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..4b4b396e11653f30e96fe57c89fe99664a569756 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-ruby. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "你好!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "本程式正在執行中,進程編號為 {pid}。" diff --git a/miniconda3/share/doc/gettext/examples/hello-ruby/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-ruby/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..d668a30190e020ef42ec37c0f5b522229ab1fe93 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-ruby/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-ruby. +# 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-ruby 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.rb:7 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: hello.rb:8 +#, fuzzy, ruby-format +msgid "This program is running as process number %{pid}." +msgstr "本程式正在執行,行程編號為 {pid}。" diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/Cargo.toml.in b/miniconda3/share/doc/gettext/examples/hello-rust/Cargo.toml.in new file mode 100644 index 0000000000000000000000000000000000000000..9938ff241b7399c78c5fe7b50308f6660c81080f --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/Cargo.toml.in @@ -0,0 +1,8 @@ +[package] +name = "hello" +version = "0.0.0" +edition = "2021" + +[dependencies] +gettext-rs = "0.7.2" +formatx = "0.2.3" diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/INSTALL b/miniconda3/share/doc/gettext/examples/hello-rust/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..6e23c62091016f7999f4006296df1a64c8d45293 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/INSTALL @@ -0,0 +1,13 @@ +This example relies on Rust (programs: rustc, cargo) +and the following crates: + - gettext-rs (not 'gettext', not 'xtr'), + - formatx (not 'strfmt'). + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-rust/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..0502c395072e007494793fe06cc8392917d8d1bf --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/Makefile.am @@ -0,0 +1,62 @@ +# 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_RUSTPROGRAMS = hello + +# The source files of the 'hello' program. +hello_SOURCES = src/main.rs + +DISTCLEANFILES = + +# Additional files to be distributed. +EXTRA_DIST = autogen.sh autoclean.sh + + +# ----------------- General rules for compiling Rust programs ----------------- + +# Support for VPATH builds. +DISTCLEANFILES += Cargo.toml +EXTRA_DIST += Cargo.toml.in + +DISTCLEANFILES += Cargo.lock + + +# Rules for compiling Rust programs. + +all-local: Cargo.toml $(hello_SOURCES) + $(CARGO) build + +check-local: + $(CARGO) test + +# The target/ directory takes 2.5 to 5 minutes to rebuild. Therefore +# we delete it only at "make maintainer-clean", not at "make distclean". +maintainer-clean-local: +# $(CARGO) clean + rm -rf target +# Customize "make distcheck" accordingly. +distcleancheck_listfiles = \ + find . \( -type f \ + -a \! \( -name .nfs* -o -name .smb* -o -name .__afs* \) \ + -a '!' -path './target/*' \) \ + -print + +install-exec-local: all-local + $(MKDIR_P) $(DESTDIR)$(bindir) + $(INSTALL_PROGRAM) target/debug/hello$(EXEEXT) $(DESTDIR)$(bindir)/hello + +installdirs-local: + $(MKDIR_P) $(DESTDIR)$(bindir) + +uninstall-local: + rm -f $(DESTDIR)$(bindir)/hello diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-rust/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..c17d7ef9d755f60f5b1804b3348fefd7e6a3e8f4 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/autoclean.sh @@ -0,0 +1,32 @@ +#!/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 -rf target +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/share/doc/gettext/examples/hello-rust/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-rust/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..a972da8041799c1ddf0a23303c0660eb9fb827bc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/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/share/doc/gettext/examples/hello-rust/configure.ac b/miniconda3/share/doc/gettext/examples/hello-rust/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..67cf39d4d2d7839f300ed378ded9402a214a8d4d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/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-rust], [0]) +AC_CONFIG_SRCDIR([src/main.rs.in]) +AM_INIT_AUTOMAKE([1.11]) + +dnl Check for availability of the Cargo program. +AC_PATH_PROG([CARGO], [cargo]) +if test -z "$CARGO"; then + echo "*** Essential program 'cargo' not found" 1>&2 + exit 1 +fi +AC_SUBST([CARGO]) + +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 src/main.rs]) +dnl Support for VPATH builds: +dnl We need a copy of Cargo.toml in the build directory, because +dnl - Cargo.lock needs to reside in the build directory and +dnl - src/main.rs is in the build directory as well. +dnl Cf. . +AC_CONFIG_FILES([Cargo.toml]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-rust/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..8a841b31f12ff3bd59428fbba049f50825d91510 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/m4/Makefile.am @@ -0,0 +1,2 @@ +EXTRA_DIST = \ + nls.m4 po.m4 diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-rust/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/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/share/doc/gettext/examples/hello-rust/po/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-rust/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..2f1fd6f7e760e1ae0a89ea9d38b023805e8efb8b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/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 = \ + src/main.rs.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/share/doc/gettext/examples/hello-rust/po/af.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..a55f30ba6f773ca6f1fcf0918f08dd076f267297 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/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-rust-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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Hierdie program loop as prosesnommer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..c067f7315a4eaaaabed993513cdf37a3abad359a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-rust +# 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Esti programa ta executándose como procesu númberu {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..eb926c9879d75b0d1658e262baf5061990fb86ae --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-rust 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Програмата е пусната под процес номер {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..82f5b1bbe2ddd6d01bfb220290efea64d445d0f7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-rust. +# 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Aquest programa està corrent amb el número de procés {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..4466496e7a7205f757f68d9059a772ae2cce6957 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Tento program běží jako proces číslo {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/da.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..61f731e3893e82e8f42c466c45c9b0d01c86f79a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-rust. +# 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Dette program kører som proces nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/de.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..dd370a120559248a773d19f58202bc93ad062cf9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-rust. +# 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Dieses Programm läuft mit der Prozess-Nummer {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/el.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..4610bff462f113a7bddef4472a9600a4cb56d501 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-rust +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..02030369859b85e7feaadb4a353c3d2ffceded12 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Ĉi tiu programo rulas kiel procez-numero {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/es.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..e932ab9c8d03f8028522248e1333ae40d420963a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/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-rust-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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Este programa está corriendo como el proceso número {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..a42cdfcf13a707880612e6a95102579ccf3ed2ae --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/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-rust 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. +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Tämän ohjelman prosessinumero on {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..8597c7bb64ad2a11f75d9ac7fc353b5c0e9c9d74 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Ce programme est exécuté en tant que processus numéro {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..dbd187e78849776bb2f5eb8a07a6e99f5d2474fe --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-rust. +# 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Tá an clár seo ag rith mar phróiseas {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/gl.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/gl.po new file mode 100644 index 0000000000000000000000000000000000000000..f70a5a08f55e3461386fd9f7b36a75dd04265588 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/gl.po @@ -0,0 +1,31 @@ +# Galician translation for hello-rust 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Ola, mundo!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Este programa estase executando como o proceso número {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/hr.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/hr.po new file mode 100644 index 0000000000000000000000000000000000000000..45471b111bcd63fdb20db898731c1122aa11dda3 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/hr.po @@ -0,0 +1,33 @@ +# Translation of hello-rust 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Pozdrav, svijete!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Ovaj program se izvršava kao proces broj {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/hu.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/hu.po new file mode 100644 index 0000000000000000000000000000000000000000..bb27c00e02feb899f99f2f33042af8c449f96f8b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/hu.po @@ -0,0 +1,29 @@ +# Hungarian translation for hello-rust. +# 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Hello, világ!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Ez a program a(z) {0} folyamatazonosítóval fut." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/id.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/id.po new file mode 100644 index 0000000000000000000000000000000000000000..b7ebcc48788f8a0ba80df690fbb2cfec949bf0de --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/id.po @@ -0,0 +1,27 @@ +# translation of hello-rust-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-rust-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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Hello, world!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Program ini berjalan sebagai proses nomor {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/it.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/it.po new file mode 100644 index 0000000000000000000000000000000000000000..199f12a9a16ade1d72d6530c18372d825ff54f2d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/it.po @@ -0,0 +1,29 @@ +# Italian messages for hello-rust. +# 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Ciao, mondo!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Questo programma è in esecuzione con numero di processo {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/ja.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/ja.po new file mode 100644 index 0000000000000000000000000000000000000000..1b2de1525e419681e78d3ba779eea0c41819380b --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/ja.po @@ -0,0 +1,26 @@ +# Translation of `hello-rust' 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "世界よ, こんにちは!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "このプログラムはプロセス番号 {} で動いています." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/ka.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/ka.po new file mode 100644 index 0000000000000000000000000000000000000000..344ca3b822606c5a21511a9e435ba810b30ee8ba --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "გამარჯობა სამყაროვ!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "პროგრამა გაშვებულია პროცესის ნომრით {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/ky.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/ky.po new file mode 100644 index 0000000000000000000000000000000000000000..b6e8fd420d56a88cdccfd650a9307d3abc38c448 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/ky.po @@ -0,0 +1,28 @@ +# Translation of 'hello-rust' 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Салам дүйнө!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Бул программа {0} процесс номери катары иштеп жатат." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/lv.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/lv.po new file mode 100644 index 0000000000000000000000000000000000000000..ccfa7fc4bdc6282a78f8450df8fcd75fd8be8e90 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/lv.po @@ -0,0 +1,30 @@ +# Latvian translation of hello-rust +# 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-rust-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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Sveika, pasaule!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Šī programma darbojas ar procesa numuru {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/ms.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/ms.po new file mode 100644 index 0000000000000000000000000000000000000000..d0d3554d4e95ae9ddb22bd63712ac6409855fb6a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/ms.po @@ -0,0 +1,28 @@ +# hello-rust 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Hello, dunia!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Program ini dilaksanakan sebagai proses bernombor {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/mt.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/mt.po new file mode 100644 index 0000000000000000000000000000000000000000..72ce0560c19b6c5bbfdbb4638d247d03b2bfc3f5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/mt.po @@ -0,0 +1,27 @@ +# hello-rust-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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Hello, lil kulħadd!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Dal-programm qed jaħdem taħt il-proċess numru {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/nb.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/nb.po new file mode 100644 index 0000000000000000000000000000000000000000..dae97602bb18fc396bfdf6484c1319afc5b76b86 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/nb.po @@ -0,0 +1,29 @@ +# Norwegian Bokmal translations for hello-rust 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Hallo verden!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Dette programmet kjører som prosess nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/nl.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/nl.po new file mode 100644 index 0000000000000000000000000000000000000000..a3cd57f78f6c7380969bf563bf7df1298d3b0618 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/nl.po @@ -0,0 +1,31 @@ +# Dutch translations for GNU hello-rust. +# 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-rust-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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Hallo, wereld!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Dit programma draait als proces nummer {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/nn.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/nn.po new file mode 100644 index 0000000000000000000000000000000000000000..4be57b8d2510619a1b83aba791f1cc9e96021441 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/nn.po @@ -0,0 +1,28 @@ +# Norwegian Nynorsk translation of GNU hello-rust +# 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-rust-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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Hei, verda!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Dette programmet køyrer som prosess nummer {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/pl.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/pl.po new file mode 100644 index 0000000000000000000000000000000000000000..e6fbd5d764e92c1b64fcaacd979291689a8c80d8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/pl.po @@ -0,0 +1,27 @@ +# Polish translations for the GNU gettext messages, hello-rust 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Cześć, świecie!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Ten program działa jako proces o numerze {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/pt.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/pt.po new file mode 100644 index 0000000000000000000000000000000000000000..a73719c9d5986ad41dfce59037ff10c3971c7806 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/pt.po @@ -0,0 +1,28 @@ +# Portuguese (Portugal) translation of 'hello-rust' 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Olá mundo!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Este programa está em execução como processo nº {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/pt_BR.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/pt_BR.po new file mode 100644 index 0000000000000000000000000000000000000000..849863da1501fdf4ec2861d0610c2092a4b2e5e5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Olá, mundo!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Este programa está sendo executado com número de processo {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/ro.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/ro.po new file mode 100644 index 0000000000000000000000000000000000000000..28f00e73f32a398828036fe665a5245a78ab1141 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/ro.po @@ -0,0 +1,50 @@ +# Translation of "hello-rust" messages to Romanian. +# Mesajele în limba română pentru pachetul hello-rust. +# 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-rust”: +# Traducerea inițială, făcută de EH, pentru versiunea hello-rust 0.12.1, 2003. +# Actualizare a traducerii pentru versiunea hello-rust 0.19.4-rc1, făcută de MC, mar-2015. +# Actualizare a traducerii pentru versiunea hello-rust 0.19.4.73, făcută de MC, iun-2015. +# Actualizare a traducerii pentru versiunea hello-rust 0.20-rc1, făcută de MC, apr-2019. +# Actualizare a mesajelor, de la fișierul „hello-rust-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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Salutare, lume!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Acest program rulează ca procesul numărul {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/ru.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/ru.po new file mode 100644 index 0000000000000000000000000000000000000000..db3f7589647a422af3a4951abc8f9923f70b869a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/ru.po @@ -0,0 +1,30 @@ +# Translation of hello-rust-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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Здравствуй, мир!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Эта программа выполняется как процесс под номером {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/sk.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/sk.po new file mode 100644 index 0000000000000000000000000000000000000000..ca5271e360ddb041351dd5ee793b61f820056e6a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/sk.po @@ -0,0 +1,26 @@ +# Slovak translations GNU for hello-rust 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Ahoj svet!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Tento program beží ako proces s číslom {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/sl.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/sl.po new file mode 100644 index 0000000000000000000000000000000000000000..7d638c0ff9a759a37db10e6528eaf5aa03bb33f0 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/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-rust-0.22.sl.po,v 1.1 2024/03/28 17:02:19 peterlin Exp $ +msgid "" +msgstr "" +"Project-Id-Version: hello-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Pozdravljen, svet!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Ta program teče kot proces številka {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/sq.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/sq.po new file mode 100644 index 0000000000000000000000000000000000000000..4350a0a7dd3207dcc6e028a5a4f184ce2fc64127 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/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-rust-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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Tungjatjeta, botë!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Ky program po xhiron si procesi numër {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/sr.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/sr.po new file mode 100644 index 0000000000000000000000000000000000000000..b7de82bbd88f50bf283e15812f31ca1e06597b57 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/sr.po @@ -0,0 +1,30 @@ +# Serbian translation of hello-rust. +# 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-rust-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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Здраво, свима!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Овај програм се извршава као процес број {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/sv.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/sv.po new file mode 100644 index 0000000000000000000000000000000000000000..a88bf7999a7d209b728e11b59fadffc76f031f7a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/sv.po @@ -0,0 +1,30 @@ +# Swedish messages for hello-rust. +# 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Hej världen!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Detta program kör som process nummer {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/ta.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/ta.po new file mode 100644 index 0000000000000000000000000000000000000000..ad4aeb326d793248f0742c89c54f69c7ab27b4cd --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "வணக்கம், உலகு!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "இந்நிரல் செயலாக்க எண் {0} ஆக இயங்கிக்கொண்டிருக்கிறது." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/tr.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/tr.po new file mode 100644 index 0000000000000000000000000000000000000000..2623759110fd86f4f802d9834aa2ead4ff711f27 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/tr.po @@ -0,0 +1,29 @@ +# Turkish translation for hello-rust. +# 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Merhaba, dünya!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Bu yazılım {0} süreç numarası ile çalışıyor." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/uk.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/uk.po new file mode 100644 index 0000000000000000000000000000000000000000..46d901196068d7ad5038a91805330ed46240e444 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/uk.po @@ -0,0 +1,30 @@ +# Ukrainian translation to hello-rust +# 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Привіт, світе!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "Ця програма виконується як процес з номером {}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/vi.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/vi.po new file mode 100644 index 0000000000000000000000000000000000000000..2ebfac57a7aa101dbe6f308531c19ae8279c62d9 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "Chào thế giới!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "Chương trình này đang chạy với mã số tiến trình {0}." diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/zh_CN.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/zh_CN.po new file mode 100644 index 0000000000000000000000000000000000000000..061f9a7a9738194f28ed58eec9e3f22a8b1b730a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/zh_CN.po @@ -0,0 +1,29 @@ +# zh_CN translation for hello-rust. +# 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "你好,世界!" + +#: src/main.rs.in:31 +#, rust-format +msgid "This program is running as process number {}." +msgstr "此程序正以进程号 {} 运行。" diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/zh_HK.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/zh_HK.po new file mode 100644 index 0000000000000000000000000000000000000000..40b64161b58bd16babf878ef6d4312014cf6f4ea --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/zh_HK.po @@ -0,0 +1,25 @@ +# Chinese (Hong Kong) translation of hello-rust. +# Copyright (C) 2006 Yoyodyne, Inc. +# Abel Cheung , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "你好!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "本程式正在執行中,進程編號為 {0}。" diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/po/zh_TW.po b/miniconda3/share/doc/gettext/examples/hello-rust/po/zh_TW.po new file mode 100644 index 0000000000000000000000000000000000000000..3e6cd5f3c4d631da821f5801b20e614f66e2a764 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/po/zh_TW.po @@ -0,0 +1,29 @@ +# Traditional Chinese translation of hello-rust. +# 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-rust 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" + +#: src/main.rs.in:30 +msgid "Hello, world!" +msgstr "哈囉,大家好!" + +#: src/main.rs.in:31 +#, fuzzy, rust-format +msgid "This program is running as process number {}." +msgstr "本程式正在執行,行程編號為 {0}。" diff --git a/miniconda3/share/doc/gettext/examples/hello-rust/src/main.rs.in b/miniconda3/share/doc/gettext/examples/hello-rust/src/main.rs.in new file mode 100644 index 0000000000000000000000000000000000000000..a12464f7c56ddde3a27563178f21a79d7133eb49 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-rust/src/main.rs.in @@ -0,0 +1,32 @@ +/* Example for use of GNU gettext. + This file is in the public domain. + + Source code of the Rust program. */ + +/* gettext-rs + Home: https://crates.io/crates/gettext-rs + https://lib.rs/crates/gettext-rs + https://github.com/gettext-rs/gettext-rs + Documentation: https://docs.rs/gettext-rs/latest/gettextrs/ */ +use gettextrs::*; + +/* formatx + Home: https://crates.io/crates/formatx + https://lib.rs/crates/formatx + https://github.com/clitic/formatx + Documentation: https://docs.rs/formatx/latest/formatx/ */ +use formatx::*; + +use std::process; + +fn main() { + setlocale (LocaleCategory::LcAll, ""); + + textdomain ("hello-rust").expect ("textdomain failed"); + bindtextdomain ("hello-rust", "@localedir@").expect ("bindtextdomain failed"); + /* gettext-rs requires UTF-8 encoding. */ + bind_textdomain_codeset ("hello-rust", "UTF-8").expect ("bind_textdomain_codeset failed"); + + println! ("{}", gettext ("Hello, world!")); + println! ("{}", formatx! (gettext ("This program is running as process number {}."), process::id ()).unwrap ()); +} diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/INSTALL b/miniconda3/share/doc/gettext/examples/hello-sh/INSTALL new file mode 100644 index 0000000000000000000000000000000000000000..6b7e0bda876c5b9685ac30cb6f364a505873f112 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/INSTALL @@ -0,0 +1,10 @@ +This example relies just on sh and gettext-runtime. + +Installation: + ./autogen.sh + ./configure --prefix=/some/prefix + make + make install +Cleanup: + make distclean + ./autoclean.sh diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-sh/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..b76e71d94a2fe75afa8bf3b55bef12edf344ed34 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/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/share/doc/gettext/examples/hello-sh/autoclean.sh b/miniconda3/share/doc/gettext/examples/hello-sh/autoclean.sh new file mode 100644 index 0000000000000000000000000000000000000000..8655a871726b2a31a935332f3e7cbba7b36928e8 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/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/share/doc/gettext/examples/hello-sh/autogen.sh b/miniconda3/share/doc/gettext/examples/hello-sh/autogen.sh new file mode 100644 index 0000000000000000000000000000000000000000..a972da8041799c1ddf0a23303c0660eb9fb827bc --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/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/share/doc/gettext/examples/hello-sh/configure.ac b/miniconda3/share/doc/gettext/examples/hello-sh/configure.ac new file mode 100644 index 0000000000000000000000000000000000000000..f9adb480188afea5432234afaadaae5d1e441563 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/configure.ac @@ -0,0 +1,31 @@ +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-sh], [0]) +AC_CONFIG_SRCDIR([hello.sh]) +AM_INIT_AUTOMAKE([1.11]) + +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.sh], [chmod a+x hello]) +AC_CONFIG_FILES([m4/Makefile]) +AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE]) +AC_OUTPUT diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/hello.sh b/miniconda3/share/doc/gettext/examples/hello-sh/hello.sh new file mode 100644 index 0000000000000000000000000000000000000000..82e41bbaebf7f2a42bb5a2fc279059375a5bb231 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/hello.sh @@ -0,0 +1,17 @@ +#!/bin/sh +# Example for use of GNU gettext. +# This file is in the public domain. +# +# Source code of the POSIX sh program. + +. gettext.sh + +TEXTDOMAIN=hello-sh +export TEXTDOMAIN +TEXTDOMAINDIR='@localedir@' +export TEXTDOMAINDIR + +gettext "Hello, world!"; echo + +pid=$$ +eval_gettext "This program is running as process number \$pid."; echo diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/m4/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-sh/m4/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..8a841b31f12ff3bd59428fbba049f50825d91510 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/m4/Makefile.am @@ -0,0 +1,2 @@ +EXTRA_DIST = \ + nls.m4 po.m4 diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/po/LINGUAS b/miniconda3/share/doc/gettext/examples/hello-sh/po/LINGUAS new file mode 100644 index 0000000000000000000000000000000000000000..dc4a82afbad945018082c22f2061a43ef436dd68 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/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/share/doc/gettext/examples/hello-sh/po/Makefile.am b/miniconda3/share/doc/gettext/examples/hello-sh/po/Makefile.am new file mode 100644 index 0000000000000000000000000000000000000000..d6de1ef0b96a83aabe53a82b3a37fb20783a2cbe --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/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.sh + +# 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/share/doc/gettext/examples/hello-sh/po/af.po b/miniconda3/share/doc/gettext/examples/hello-sh/po/af.po new file mode 100644 index 0000000000000000000000000000000000000000..8680294e41f86d9aa5a2aa32e4ef992e1dd0fc70 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/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-sh-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.sh:14 +msgid "Hello, world!" +msgstr "Hallo wêreld!" + +#: hello.sh:17 +#, sh-format +msgid "This program is running as process number $pid." +msgstr "Hierdie program loop as prosesnommer $pid." diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/po/ast.po b/miniconda3/share/doc/gettext/examples/hello-sh/po/ast.po new file mode 100644 index 0000000000000000000000000000000000000000..7be97ca96c9518c71d74cf38536fa3c9e180ef29 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translation for hello-sh +# 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-sh 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.sh:14 +msgid "Hello, world!" +msgstr "¡Hola, mundu!" + +#: hello.sh:17 +#, sh-format +msgid "This program is running as process number $pid." +msgstr "Esti programa ta executándose como procesu númberu $pid." diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/po/bg.po b/miniconda3/share/doc/gettext/examples/hello-sh/po/bg.po new file mode 100644 index 0000000000000000000000000000000000000000..518c5cc53931e996fbb8e4244bda67be1376695d --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/po/bg.po @@ -0,0 +1,26 @@ +# Bulgarian translations for hello-sh 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-sh 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.sh:14 +msgid "Hello, world!" +msgstr "Здравейте всички!" + +#: hello.sh:17 +#, sh-format +msgid "This program is running as process number $pid." +msgstr "Програмата е пусната под процес номер $pid." diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/po/ca.po b/miniconda3/share/doc/gettext/examples/hello-sh/po/ca.po new file mode 100644 index 0000000000000000000000000000000000000000..33a3569f7779a94c0ab8e73aff36943b1851e6f7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/po/ca.po @@ -0,0 +1,27 @@ +# Catalan messages for GNU hello-sh. +# 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-sh 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.sh:14 +msgid "Hello, world!" +msgstr "Hola, món!" + +#: hello.sh:17 +#, sh-format +msgid "This program is running as process number $pid." +msgstr "Aquest programa està corrent amb el número de procés $pid." diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/po/cs.po b/miniconda3/share/doc/gettext/examples/hello-sh/po/cs.po new file mode 100644 index 0000000000000000000000000000000000000000..2f66a084ce03e19c61dc70de82e8c3e97d806b12 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/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-sh 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.sh:14 +msgid "Hello, world!" +msgstr "Ahoj světe!" + +#: hello.sh:17 +#, sh-format +msgid "This program is running as process number $pid." +msgstr "Tento program běží jako proces číslo $pid." diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/po/da.po b/miniconda3/share/doc/gettext/examples/hello-sh/po/da.po new file mode 100644 index 0000000000000000000000000000000000000000..543c0720a01e144b57c126351923042bb90cc4c7 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/po/da.po @@ -0,0 +1,28 @@ +# Danish messages for hello-sh. +# 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-sh 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.sh:14 +msgid "Hello, world!" +msgstr "Hej verden!" + +#: hello.sh:17 +#, sh-format +msgid "This program is running as process number $pid." +msgstr "Dette program kører som proces nummer $pid." diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/po/de.po b/miniconda3/share/doc/gettext/examples/hello-sh/po/de.po new file mode 100644 index 0000000000000000000000000000000000000000..e2bd3623439d873e09e9d2fb3277a99777692b43 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/po/de.po @@ -0,0 +1,32 @@ +# German messages for hello-sh. +# 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-sh 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.sh:14 +msgid "Hello, world!" +msgstr "Hallo Welt!" + +#: hello.sh:17 +#, sh-format +msgid "This program is running as process number $pid." +msgstr "Dieses Programm läuft mit der Prozess-Nummer $pid." diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/po/el.po b/miniconda3/share/doc/gettext/examples/hello-sh/po/el.po new file mode 100644 index 0000000000000000000000000000000000000000..145f11b1a155ed5dfae63fe3564b590badfcc129 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/po/el.po @@ -0,0 +1,26 @@ +# Greek translation of hello-sh +# Copyright (C) 2005 Free Software Foundation, Inc. +# Simos Xenitellis , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: hello-sh 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.sh:14 +msgid "Hello, world!" +msgstr "Γεια σου, κόσμε!" + +#: hello.sh:17 +#, sh-format +msgid "This program is running as process number $pid." +msgstr "Αυτό το πρόγραμμα εκτελείται με αριθμό διεργασίας $pid." diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/po/eo.po b/miniconda3/share/doc/gettext/examples/hello-sh/po/eo.po new file mode 100644 index 0000000000000000000000000000000000000000..d3fca7ffc36fd5bcd086b117a57700441b01579c --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/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-sh 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.sh:14 +msgid "Hello, world!" +msgstr "Saluton, mondo!" + +#: hello.sh:17 +#, sh-format +msgid "This program is running as process number $pid." +msgstr "Ĉi tiu programo rulas kiel procez-numero $pid." diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/po/es.po b/miniconda3/share/doc/gettext/examples/hello-sh/po/es.po new file mode 100644 index 0000000000000000000000000000000000000000..2a954bd64bf246ee136e1606bd63131ceccbaac5 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/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-sh-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.sh:14 +msgid "Hello, world!" +msgstr "¡Hola, mundo!" + +#: hello.sh:17 +#, sh-format +msgid "This program is running as process number $pid." +msgstr "Este programa está corriendo como el proceso número $pid." diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/po/fi.po b/miniconda3/share/doc/gettext/examples/hello-sh/po/fi.po new file mode 100644 index 0000000000000000000000000000000000000000..95c21913d38ba266ea67baed8832ea7c39c4fe7a --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/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-sh 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.sh:14 +msgid "Hello, world!" +msgstr "Terve maailma!" + +#: hello.sh:17 +#, sh-format +msgid "This program is running as process number $pid." +msgstr "Tämän ohjelman prosessinumero on $pid." diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/po/fr.po b/miniconda3/share/doc/gettext/examples/hello-sh/po/fr.po new file mode 100644 index 0000000000000000000000000000000000000000..66268ad1ecff96cfc71df5778ebcfa59d82c73bb --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/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-sh 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.sh:14 +msgid "Hello, world!" +msgstr "Bonjour, le monde !" + +#: hello.sh:17 +#, sh-format +msgid "This program is running as process number $pid." +msgstr "Ce programme est exécuté en tant que processus numéro $pid." diff --git a/miniconda3/share/doc/gettext/examples/hello-sh/po/ga.po b/miniconda3/share/doc/gettext/examples/hello-sh/po/ga.po new file mode 100644 index 0000000000000000000000000000000000000000..97a1ca6cacfb96f1855d49fdf52d76ed5823cb85 --- /dev/null +++ b/miniconda3/share/doc/gettext/examples/hello-sh/po/ga.po @@ -0,0 +1,26 @@ +# Irish translations for hello-sh. +# 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-sh 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.sh:14 +msgid "Hello, world!" +msgstr "Dia duit, a dhomhain!" + +#: hello.sh:17 +#, sh-format +msgid "This program is running as process number $pid." +msgstr "Tá an clár seo ag rith mar phróiseas $pid."