mirror of
https://github.com/getsolus/packages.git
synced 2025-04-25 20:30:37 +03:00
gettext: Update to v0.24
**Summary** [Changelog](https://lists.gnu.org/archive/html/info-gnu/2025-02/msg00010.html)
This commit is contained in:
parent
a2348e646d
commit
c30628cecf
7 changed files with 1267 additions and 1071 deletions
|
@ -9,7 +9,9 @@ freeze:
|
|||
static_libs:
|
||||
# These packages are allowed to include static libraries:
|
||||
allowed_packages:
|
||||
- appstream-generator
|
||||
- gcc
|
||||
- gettext
|
||||
- ghc
|
||||
- glibc
|
||||
- golang
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
libasprintf.so.0
|
||||
libgettextlib-0.23.so
|
||||
libgettextlib-0.24.so
|
||||
libgettextpo.so.0
|
||||
libgettextsrc-0.23.so
|
||||
libgettextsrc-0.24.so
|
||||
libgnuintl.so.8
|
||||
libtextstyle.so.0
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -48,6 +48,7 @@ libc.so.6:closedir
|
|||
libc.so.6:copy_file_range
|
||||
libc.so.6:dcgettext
|
||||
libc.so.6:dcngettext
|
||||
libc.so.6:dup
|
||||
libc.so.6:eaccess
|
||||
libc.so.6:environ
|
||||
libc.so.6:error
|
||||
|
@ -145,6 +146,7 @@ libc.so.6:mkdtemp
|
|||
libc.so.6:mmap
|
||||
libc.so.6:munmap
|
||||
libc.so.6:nl_langinfo
|
||||
libc.so.6:nl_langinfo_l
|
||||
libc.so.6:open
|
||||
libc.so.6:openat
|
||||
libc.so.6:opendir
|
||||
|
|
|
@ -1,43 +0,0 @@
|
|||
From adfbe2ee7cd9b47a0465aa9a07d773fa290f46c1 Mon Sep 17 00:00:00 2001
|
||||
From: Bruno Haible <bruno@clisp.org>
|
||||
Date: Sun, 1 Dec 2024 19:35:51 +0100
|
||||
Subject: [PATCH] Fix compilation error with libxml2 >= 2.12.0 and gcc >= 14.
|
||||
|
||||
Reported by Sam James <sam@gentoo.org>
|
||||
at <https://savannah.gnu.org/bugs/?66506>.
|
||||
|
||||
* gettext-tools/src/its.c: Include <libxml/xmlversion.h>.
|
||||
(structured_error): Adapt to API change.
|
||||
---
|
||||
gettext-tools/src/its.c | 7 +++++++
|
||||
1 file changed, 7 insertions(+)
|
||||
|
||||
diff --git a/gettext-tools/src/its.c b/gettext-tools/src/its.c
|
||||
index 8ee7ab40f..3f28f8851 100644
|
||||
--- a/gettext-tools/src/its.c
|
||||
+++ b/gettext-tools/src/its.c
|
||||
@@ -28,6 +28,7 @@
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
+#include <libxml/xmlversion.h>
|
||||
#include <libxml/xmlerror.h>
|
||||
#include <libxml/tree.h>
|
||||
#include <libxml/parser.h>
|
||||
@@ -82,7 +83,13 @@
|
||||
/* ----------------------------- Error handling ----------------------------- */
|
||||
|
||||
static void
|
||||
+/* Adapt to API change in libxml 2.12.0.
|
||||
+ See <https://gitlab.gnome.org/GNOME/libxml2/-/issues/622>. */
|
||||
+#if LIBXML_VERSION >= 21200
|
||||
+structured_error (void *data, const xmlError *err)
|
||||
+#else
|
||||
structured_error (void *data, xmlError *err)
|
||||
+#endif
|
||||
{
|
||||
error (0, err->level == XML_ERR_FATAL ? EXIT_FAILURE : 0,
|
||||
_("%s error: %s"), "libxml2", err->message);
|
||||
--
|
||||
2.34.1
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
name : gettext
|
||||
version : 0.23
|
||||
release : 18
|
||||
version : '0.24'
|
||||
release : 19
|
||||
source :
|
||||
- https://ftp.gnu.org/gnu/gettext/gettext-0.23.tar.gz : 945dd7002a02dd7108ad0510602e13416b41d327898cf8522201bc6af10907a6
|
||||
- https://ftp.gnu.org/gnu/gettext/gettext-0.24.tar.gz : c918503d593d70daf4844d175a13d816afacb667c06fba1ec9dcd5002c1518b7
|
||||
homepage : https://www.gnu.org/software/gettext
|
||||
license : GPL-3.0-or-later
|
||||
component : system.base
|
||||
|
@ -17,13 +17,10 @@ builddeps :
|
|||
patterns :
|
||||
- docs : /usr/share/doc
|
||||
setup : |
|
||||
%patch -p1 -i $pkgfiles/ftbfs-libxml-2.12.patch
|
||||
|
||||
%configure
|
||||
build : |
|
||||
%make
|
||||
install : |
|
||||
%make_install
|
||||
check : |
|
||||
# test-execute.sh failing
|
||||
%make check || :
|
||||
%make check
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
<Name>gettext</Name>
|
||||
<Homepage>https://www.gnu.org/software/gettext</Homepage>
|
||||
<Packager>
|
||||
<Name>Reilly Brogan</Name>
|
||||
<Email>solus@reillybrogan.com</Email>
|
||||
<Name>Joey Riches</Name>
|
||||
<Email>josephriches@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPL-3.0-or-later</License>
|
||||
<PartOf>system.base</PartOf>
|
||||
|
@ -50,28 +50,28 @@
|
|||
<Path fileType="library">/usr/lib64/libasprintf.so</Path>
|
||||
<Path fileType="library">/usr/lib64/libasprintf.so.0</Path>
|
||||
<Path fileType="library">/usr/lib64/libasprintf.so.0.0.0</Path>
|
||||
<Path fileType="library">/usr/lib64/libgettextlib-0.23.so</Path>
|
||||
<Path fileType="library">/usr/lib64/libgettextlib-0.24.so</Path>
|
||||
<Path fileType="library">/usr/lib64/libgettextlib.so</Path>
|
||||
<Path fileType="library">/usr/lib64/libgettextpo.so</Path>
|
||||
<Path fileType="library">/usr/lib64/libgettextpo.so.0</Path>
|
||||
<Path fileType="library">/usr/lib64/libgettextpo.so.0.5.11</Path>
|
||||
<Path fileType="library">/usr/lib64/libgettextsrc-0.23.so</Path>
|
||||
<Path fileType="library">/usr/lib64/libgettextpo.so.0.5.13</Path>
|
||||
<Path fileType="library">/usr/lib64/libgettextsrc-0.24.so</Path>
|
||||
<Path fileType="library">/usr/lib64/libgettextsrc.so</Path>
|
||||
<Path fileType="library">/usr/lib64/libtextstyle.so</Path>
|
||||
<Path fileType="library">/usr/lib64/libtextstyle.so.0</Path>
|
||||
<Path fileType="library">/usr/lib64/libtextstyle.so.0.2.2</Path>
|
||||
<Path fileType="library">/usr/lib64/libtextstyle.so.0.2.4</Path>
|
||||
<Path fileType="library">/usr/lib64/preloadable_libintl.so</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.23/its/docbook.loc</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.23/its/docbook4.its</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.23/its/docbook5.its</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.23/its/glade.loc</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.23/its/glade1.its</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.23/its/glade2.its</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.23/its/gsettings.its</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.23/its/gsettings.loc</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.23/its/gtkbuilder.its</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.23/its/metainfo.its</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.23/its/metainfo.loc</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.24/its/docbook.loc</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.24/its/docbook4.its</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.24/its/docbook5.its</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.24/its/glade.loc</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.24/its/glade1.its</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.24/its/glade2.its</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.24/its/gsettings.its</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.24/its/gsettings.loc</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.24/its/gtkbuilder.its</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.24/its/metainfo.its</Path>
|
||||
<Path fileType="data">/usr/share/gettext-0.24/its/metainfo.loc</Path>
|
||||
<Path fileType="data">/usr/share/gettext/ABOUT-NLS</Path>
|
||||
<Path fileType="data">/usr/share/gettext/archive.dir.tar.xz</Path>
|
||||
<Path fileType="data">/usr/share/gettext/config.rpath</Path>
|
||||
|
@ -227,7 +227,7 @@
|
|||
</Description>
|
||||
<PartOf>programming.devel</PartOf>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="18">gettext</Dependency>
|
||||
<Dependency release="19">gettext</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/autosprintf.h</Path>
|
||||
|
@ -291,65 +291,123 @@
|
|||
<Path fileType="doc">/usr/share/doc/gettext/examples/build-aux/javacomp.sh.in</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/build-aux/javaexec.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/build-aux/javaexec.sh.in</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/INSTALL</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/autoclean.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/autogen.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/configure.ac</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/hello.cc</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/m4/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/m4/gnome-gnorba-check.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/m4/gnome-orbit-check.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/m4/gnome.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/m4/gtk--.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/m4/gtk.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/LINGUAS</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/Makevars</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/POTFILES.in</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/af.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/ast.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/bg.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/ca.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/cs.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/da.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/de.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/el.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/eo.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/es.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/fi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/fr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/ga.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/gl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/hr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/hu.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/id.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/it.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/ja.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/ka.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/ky.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/lv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/ms.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/mt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/nb.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/nl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/nn.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/pl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/pt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/pt_BR.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/ro.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/ru.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/sk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/sl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/sq.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/sr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/sv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/ta.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/tr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/uk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/vi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/zh_CN.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/zh_HK.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome/po/zh_TW.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/INSTALL</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/autoclean.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/autogen.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/configure.ac</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/hello.cc</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/m4/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/m4/gnome-gnorba-check.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/m4/gnome-orbit-check.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/m4/gnome.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/m4/gtk--.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/m4/gtk.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/LINGUAS</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/Makevars</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/POTFILES.in</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/af.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/ast.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/bg.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/ca.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/cs.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/da.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/de.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/el.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/eo.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/es.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/fi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/fr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/ga.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/gl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/hr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/hu.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/id.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/it.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/ja.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/ka.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/ky.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/lv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/ms.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/mt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/nb.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/nl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/nn.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/pl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/pt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/pt_BR.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/ro.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/ru.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/sk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/sl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/sq.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/sr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/sv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/ta.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/tr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/uk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/vi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/zh_CN.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/zh_HK.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome2/po/zh_TW.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/INSTALL</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/README</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/autoclean.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/autogen.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/configure.ac</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/hello.cc</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/hello.desktop.in.in</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/hello.gresource.xml</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/hello.ui</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/m4/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/LINGUAS</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/Makevars</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/POTFILES.in</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/af.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/ast.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/bg.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/ca.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/cs.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/da.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/de.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/el.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/eo.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/es.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/fi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/fr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/ga.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/gl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/hr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/hu.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/id.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/it.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/ja.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/ka.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/ky.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/lv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/ms.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/mt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/nb.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/nl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/nn.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/pl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/pt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/pt_BR.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/ro.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/ru.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/sk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/sl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/sq.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/sr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/sv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/ta.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/tr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/uk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/vi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/zh_CN.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/zh_HK.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-gnome3/po/zh_TW.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-kde/BUGS</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-kde/INSTALL</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++-kde/Makefile.am</Path>
|
||||
|
@ -648,73 +706,78 @@
|
|||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++20/po/zh_CN.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++20/po/zh_HK.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c++20/po/zh_TW.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/INSTALL</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/autoclean.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/autogen.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/configure.ac</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/hello.c</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/m4/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/m4/gnome-gnorba-check.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/m4/gnome-orbit-check.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/m4/gnome.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/LINGUAS</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/Makevars</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/POTFILES.in</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/af.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/ast.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/bg.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/ca.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/cs.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/da.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/de.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/el.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/eo.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/es.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/fi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/fr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/ga.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/gl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/hr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/hu.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/id.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/it.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/ja.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/ka.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/ky.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/lv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/ms.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/mt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/nb.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/nl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/nn.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/pl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/pt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/pt_BR.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/ro.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/ru.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/sk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/sl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/sq.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/sr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/sv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/ta.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/tr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/uk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/vi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/zh_CN.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/zh_HK.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome/po/zh_TW.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/INSTALL</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/autoclean.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/autogen.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/configure.ac</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/hello.c</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/m4/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/m4/gnome-gnorba-check.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/m4/gnome-orbit-check.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/m4/gnome.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/LINGUAS</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/Makevars</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/POTFILES.in</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/af.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/ast.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/bg.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/ca.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/cs.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/da.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/de.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/el.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/eo.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/es.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/fi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/fr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/ga.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/gl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/hr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/hu.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/id.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/it.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/ja.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/ka.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/ky.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/lv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/ms.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/mt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/nb.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/nl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/nn.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/pl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/pt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/pt_BR.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/ro.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/ru.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/sk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/sl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/sq.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/sr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/sv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/ta.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/tr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/uk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/vi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/zh_CN.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/zh_HK.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome2/po/zh_TW.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/INSTALL</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/README</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/autoclean.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/autogen.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/configure.ac</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/hello.c</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/hello.desktop.in.in</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/hello.gresource.xml</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/hello.gschema.xml</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/hello.ui</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/hello2.c</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/hello2.desktop.in.in</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/hello2.gresource.xml</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/hello2.gschema.xml</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/hello2.ui</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/m4/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/po/LINGUAS</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/po/Makevars</Path>
|
||||
|
@ -763,6 +826,60 @@
|
|||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/po/zh_CN.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/po/zh_HK.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-gnome3/po/zh_TW.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/INSTALL</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/autoclean.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/autogen.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/configure.ac</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/hello-server.c</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/m4/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/LINGUAS</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/Makevars</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/POTFILES.in</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/af.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/ast.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/bg.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/ca.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/cs.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/da.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/de.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/el.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/eo.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/es.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/fi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/fr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/ga.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/gl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/hr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/hu.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/id.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/it.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/ja.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/ka.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/ky.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/lv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/ms.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/mt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/nb.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/nl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/nn.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/pl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/pt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/pt_BR.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/ro.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/ru.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/sk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/sl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/sq.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/sr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/sv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/ta.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/tr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/uk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/vi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/zh_CN.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/zh_HK.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c-http/po/zh_TW.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c/INSTALL</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-c/autoclean.sh</Path>
|
||||
|
@ -1357,63 +1474,63 @@
|
|||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-librep/po/zh_CN.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-librep/po/zh_HK.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-librep/po/zh_TW.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/INSTALL</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/autoclean.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/autogen.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/configure.ac</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/hello.m</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/m4/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/m4/gnome-gnorba-check.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/m4/gnome-orbit-check.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/m4/gnome.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/LINGUAS</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/Makevars</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/POTFILES.in</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/af.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/ast.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/bg.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/ca.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/cs.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/da.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/de.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/el.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/eo.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/es.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/fi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/fr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/ga.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/gl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/hr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/hu.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/id.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/it.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/ja.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/ka.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/ky.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/lv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/ms.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/mt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/nb.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/nl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/nn.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/pl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/pt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/pt_BR.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/ro.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/ru.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/sk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/sl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/sq.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/sr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/sv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/ta.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/tr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/uk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/vi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/zh_CN.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/zh_HK.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome/po/zh_TW.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/INSTALL</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/autoclean.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/autogen.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/configure.ac</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/hello.m</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/m4/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/m4/gnome-gnorba-check.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/m4/gnome-orbit-check.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/m4/gnome.m4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/LINGUAS</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/Makevars</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/POTFILES.in</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/af.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/ast.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/bg.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/ca.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/cs.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/da.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/de.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/el.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/eo.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/es.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/fi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/fr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/ga.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/gl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/hr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/hu.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/id.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/it.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/ja.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/ka.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/ky.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/lv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/ms.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/mt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/nb.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/nl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/nn.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/pl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/pt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/pt_BR.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/ro.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/ru.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/sk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/sl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/sq.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/sr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/sv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/ta.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/tr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/uk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/vi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/zh_CN.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/zh_HK.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnome2/po/zh_TW.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnustep/AppController.h</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnustep/AppController.m</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-objc-gnustep/BUGS</Path>
|
||||
|
@ -1739,6 +1856,113 @@
|
|||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-python/po/zh_CN.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-python/po/zh_HK.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-python/po/zh_TW.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/INSTALL</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/autoclean.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/autogen.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/configure.ac</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/hello.rb</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/m4/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/LINGUAS</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/af.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/ast.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/bg.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/ca.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/cs.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/da.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/de.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/el.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/eo.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/es.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/fi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/fr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/ga.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/gl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/hr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/hu.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/id.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/it.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/ja.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/ka.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/ky.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/lv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/ms.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/mt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/nb.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/nl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/nn.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/pl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/pt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/pt_BR.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/ro.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/ru.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/sk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/sl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/sq.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/sr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/sv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/ta.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/tr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/uk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/vi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/zh_CN.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/zh_HK.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-ruby/po/zh_TW.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/Cargo.toml.in</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/INSTALL</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/autoclean.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/autogen.sh</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/configure.ac</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/m4/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/LINGUAS</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/af.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/ast.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/bg.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/ca.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/cs.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/da.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/de.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/el.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/eo.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/es.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/fi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/fr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/ga.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/gl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/hr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/hu.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/id.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/it.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/ja.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/ka.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/ky.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/lv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/ms.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/mt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/nb.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/nl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/nn.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/pl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/pt.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/pt_BR.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/ro.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/ru.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/sk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/sl.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/sq.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/sr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/sv.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/ta.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/tr.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/uk.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/vi.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/zh_CN.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/zh_HK.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/po/zh_TW.po</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-rust/src/main.rs.in</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-sh/INSTALL</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-sh/Makefile.am</Path>
|
||||
<Path fileType="doc">/usr/share/doc/gettext/examples/hello-sh/autoclean.sh</Path>
|
||||
|
@ -2088,12 +2312,12 @@
|
|||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="18">
|
||||
<Date>2024-12-21</Date>
|
||||
<Version>0.23</Version>
|
||||
<Update release="19">
|
||||
<Date>2025-04-25</Date>
|
||||
<Version>0.24</Version>
|
||||
<Comment>Packaging update</Comment>
|
||||
<Name>Reilly Brogan</Name>
|
||||
<Email>solus@reillybrogan.com</Email>
|
||||
<Name>Joey Riches</Name>
|
||||
<Email>josephriches@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
Loading…
Add table
Add a link
Reference in a new issue