From 670a1321e296b1b24e6030f4f36c9e3c5e8a6784 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Wed, 27 Jun 2018 11:04:15 +0200 Subject: initial draft of the RDA shared library --- ChangeLog | 0 Makefile.am | 29 ++++++ configure.ac | 112 ++++++++++++++++++++ debian/changelog | 6 ++ debian/compat | 1 + debian/control | 38 +++++++ debian/copyright | 194 +++++++++++++++++++++++++++++++++++ debian/librda-dev.install | 4 + debian/librda0.install | 1 + debian/patches/README | 3 + debian/rules | 4 + debian/source/format | 1 + debian/upstream/signing-key.asc | 180 ++++++++++++++++++++++++++++++++ debian/watch | 3 + m4/.placeholder | 0 po/LINGUAS | 117 +++++++++++++++++++++ po/Makefile.in.in | 221 ++++++++++++++++++++++++++++++++++++++++ po/POTFILES.in | 2 + po/af.po | 29 ++++++ po/am.po | 29 ++++++ po/an.po | 29 ++++++ po/ar.po | 29 ++++++ po/ast.po | 29 ++++++ po/az.po | 29 ++++++ po/be.po | 31 ++++++ po/bem.po | 29 ++++++ po/bg.po | 30 ++++++ po/bn.po | 29 ++++++ po/bo.po | 29 ++++++ po/br.po | 29 ++++++ po/bs.po | 29 ++++++ po/ca.po | 29 ++++++ po/ca@valencia.po | 29 ++++++ po/ce.po | 29 ++++++ po/ckb.po | 29 ++++++ po/co.po | 29 ++++++ po/crh.po | 29 ++++++ po/cs.po | 30 ++++++ po/cv.po | 29 ++++++ po/cy.po | 29 ++++++ po/da.po | 30 ++++++ po/de.po | 30 ++++++ po/el.po | 30 ++++++ po/en_AU.po | 30 ++++++ po/en_CA.po | 30 ++++++ po/en_GB.po | 30 ++++++ po/eo.po | 30 ++++++ po/es.po | 30 ++++++ po/et.po | 30 ++++++ po/eu.po | 29 ++++++ po/fa.po | 29 ++++++ po/fi.po | 30 ++++++ po/fil.po | 29 ++++++ po/fo.po | 30 ++++++ po/fr.po | 30 ++++++ po/fr_CA.po | 30 ++++++ po/frp.po | 29 ++++++ po/fy.po | 29 ++++++ po/ga.po | 30 ++++++ po/gd.po | 29 ++++++ po/gl.po | 29 ++++++ po/gu.po | 29 ++++++ po/he.po | 30 ++++++ po/hi.po | 29 ++++++ po/hr.po | 31 ++++++ po/ht.po | 29 ++++++ po/hu.po | 30 ++++++ po/hy.po | 29 ++++++ po/ia.po | 29 ++++++ po/id.po | 29 ++++++ po/is.po | 29 ++++++ po/it.po | 30 ++++++ po/ja.po | 30 ++++++ po/ka.po | 29 ++++++ po/kk.po | 29 ++++++ po/kl.po | 29 ++++++ po/km.po | 29 ++++++ po/kn.po | 29 ++++++ po/ko.po | 30 ++++++ po/ku.po | 29 ++++++ po/kw.po | 29 ++++++ po/ky.po | 29 ++++++ po/la.po | 29 ++++++ po/lb.po | 29 ++++++ po/librda.pot | 30 ++++++ po/lo.po | 29 ++++++ po/lt.po | 31 ++++++ po/lv.po | 31 ++++++ po/mg.po | 29 ++++++ po/mhr.po | 29 ++++++ po/mi.po | 29 ++++++ po/ml.po | 29 ++++++ po/mr.po | 29 ++++++ po/ms.po | 29 ++++++ po/my.po | 29 ++++++ po/nb.po | 30 ++++++ po/ne.po | 29 ++++++ po/nl.po | 30 ++++++ po/nn.po | 30 ++++++ po/oc.po | 29 ++++++ po/os.po | 29 ++++++ po/pa.po | 29 ++++++ po/pl.po | 31 ++++++ po/ps.po | 29 ++++++ po/pt.po | 30 ++++++ po/pt_BR.po | 30 ++++++ po/ro.po | 31 ++++++ po/ru.po | 31 ++++++ po/sa.po | 29 ++++++ po/sc.po | 29 ++++++ po/sd.po | 29 ++++++ po/se.po | 29 ++++++ po/shn.po | 29 ++++++ po/si.po | 29 ++++++ po/sk.po | 30 ++++++ po/sl.po | 31 ++++++ po/sq.po | 29 ++++++ po/sr.po | 31 ++++++ po/sv.po | 30 ++++++ po/sw.po | 29 ++++++ po/szl.po | 29 ++++++ po/ta.po | 29 ++++++ po/te.po | 29 ++++++ po/tg.po | 29 ++++++ po/th.po | 29 ++++++ po/ti.po | 29 ++++++ po/tr.po | 30 ++++++ po/ug.po | 29 ++++++ po/uk.po | 31 ++++++ po/ur.po | 29 ++++++ po/uz.po | 29 ++++++ po/vi.po | 30 ++++++ po/wae.po | 29 ++++++ po/zh_CN.po | 29 ++++++ po/zh_HK.po | 29 ++++++ po/zh_TW.po | 29 ++++++ src/Makefile.am | 33 ++++++ src/rda.c | 132 ++++++++++++++++++++++++ src/rda.h | 62 +++++++++++ src/rda.pc.in | 12 +++ src/rda_x2go.c | 110 ++++++++++++++++++++ src/rda_x2go.h | 41 ++++++++ tests/Makefile.am | 35 +++++++ tests/test-x2go.c | 50 +++++++++ update-po.sh | 38 +++++++ update-pot.sh | 27 +++++ 146 files changed, 4929 insertions(+) create mode 100644 ChangeLog create mode 100644 Makefile.am create mode 100644 configure.ac create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/librda-dev.install create mode 100644 debian/librda0.install create mode 100644 debian/patches/README create mode 100755 debian/rules create mode 100644 debian/source/format create mode 100644 debian/upstream/signing-key.asc create mode 100644 debian/watch create mode 100644 m4/.placeholder create mode 100644 po/LINGUAS create mode 100644 po/Makefile.in.in create mode 100644 po/POTFILES.in create mode 100644 po/af.po create mode 100644 po/am.po create mode 100644 po/an.po create mode 100644 po/ar.po create mode 100644 po/ast.po create mode 100644 po/az.po create mode 100644 po/be.po create mode 100644 po/bem.po create mode 100644 po/bg.po create mode 100644 po/bn.po create mode 100644 po/bo.po create mode 100644 po/br.po create mode 100644 po/bs.po create mode 100644 po/ca.po create mode 100644 po/ca@valencia.po create mode 100644 po/ce.po create mode 100644 po/ckb.po create mode 100644 po/co.po create mode 100644 po/crh.po create mode 100644 po/cs.po create mode 100644 po/cv.po create mode 100644 po/cy.po create mode 100644 po/da.po create mode 100644 po/de.po create mode 100644 po/el.po create mode 100644 po/en_AU.po create mode 100644 po/en_CA.po create mode 100644 po/en_GB.po create mode 100644 po/eo.po create mode 100644 po/es.po create mode 100644 po/et.po create mode 100644 po/eu.po create mode 100644 po/fa.po create mode 100644 po/fi.po create mode 100644 po/fil.po create mode 100644 po/fo.po create mode 100644 po/fr.po create mode 100644 po/fr_CA.po create mode 100644 po/frp.po create mode 100644 po/fy.po create mode 100644 po/ga.po create mode 100644 po/gd.po create mode 100644 po/gl.po create mode 100644 po/gu.po create mode 100644 po/he.po create mode 100644 po/hi.po create mode 100644 po/hr.po create mode 100644 po/ht.po create mode 100644 po/hu.po create mode 100644 po/hy.po create mode 100644 po/ia.po create mode 100644 po/id.po create mode 100644 po/is.po create mode 100644 po/it.po create mode 100644 po/ja.po create mode 100644 po/ka.po create mode 100644 po/kk.po create mode 100644 po/kl.po create mode 100644 po/km.po create mode 100644 po/kn.po create mode 100644 po/ko.po create mode 100644 po/ku.po create mode 100644 po/kw.po create mode 100644 po/ky.po create mode 100644 po/la.po create mode 100644 po/lb.po create mode 100644 po/librda.pot create mode 100644 po/lo.po create mode 100644 po/lt.po create mode 100644 po/lv.po create mode 100644 po/mg.po create mode 100644 po/mhr.po create mode 100644 po/mi.po create mode 100644 po/ml.po create mode 100644 po/mr.po create mode 100644 po/ms.po create mode 100644 po/my.po create mode 100644 po/nb.po create mode 100644 po/ne.po create mode 100644 po/nl.po create mode 100644 po/nn.po create mode 100644 po/oc.po create mode 100644 po/os.po create mode 100644 po/pa.po create mode 100644 po/pl.po create mode 100644 po/ps.po create mode 100644 po/pt.po create mode 100644 po/pt_BR.po create mode 100644 po/ro.po create mode 100644 po/ru.po create mode 100644 po/sa.po create mode 100644 po/sc.po create mode 100644 po/sd.po create mode 100644 po/se.po create mode 100644 po/shn.po create mode 100644 po/si.po create mode 100644 po/sk.po create mode 100644 po/sl.po create mode 100644 po/sq.po create mode 100644 po/sr.po create mode 100644 po/sv.po create mode 100644 po/sw.po create mode 100644 po/szl.po create mode 100644 po/ta.po create mode 100644 po/te.po create mode 100644 po/tg.po create mode 100644 po/th.po create mode 100644 po/ti.po create mode 100644 po/tr.po create mode 100644 po/ug.po create mode 100644 po/uk.po create mode 100644 po/ur.po create mode 100644 po/uz.po create mode 100644 po/vi.po create mode 100644 po/wae.po create mode 100644 po/zh_CN.po create mode 100644 po/zh_HK.po create mode 100644 po/zh_TW.po create mode 100644 src/Makefile.am create mode 100644 src/rda.c create mode 100644 src/rda.h create mode 100644 src/rda.pc.in create mode 100644 src/rda_x2go.c create mode 100644 src/rda_x2go.h create mode 100644 tests/Makefile.am create mode 100644 tests/test-x2go.c create mode 100755 update-po.sh create mode 100755 update-pot.sh diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..e69de29 diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..07a806f --- /dev/null +++ b/Makefile.am @@ -0,0 +1,29 @@ +SUBDIRS = src po + +ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} + +if WANT_TESTS + +SUBDIRS += \ + tests + +tests: librda + +endif + + +MAINTAINERCLEANFILES = \ + $(srcdir)/aclocal.m4 \ + $(srcdir)/config.guess \ + $(srcdir)/config.h.in \ + $(srcdir)/config.sub \ + $(srcdir)/depcomp \ + $(srcdir)/install-sh \ + $(srcdir)/ltmain.sh \ + $(srcdir)/missing \ + $(srcdir)/mkinstalldirs \ + `find "$(srcdir)" -type f -name Makefile.in -print` \ + $(srcdir)/configure \ + $(srcdir)/gtk-doc.make \ + $(srcdir)/m4/gtk-doc.m4 \ + $(srcdir)/m4/intltool.m4 diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..12296d1 --- /dev/null +++ b/configure.ac @@ -0,0 +1,112 @@ +AC_INIT([librda], + [0.0.1], + [https://github.com/ArcticaProject/librda/issues], + [librda], + [https://github.com/ArcticaProject/librda]) + +AC_PREREQ([2.64]) + +AC_CONFIG_SRCDIR([src]) + +AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-xz tar-ustar check-news]) +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + +AC_CONFIG_HEADERS([config.h]) + +AC_CONFIG_MACRO_DIR([m4]) + +dnl make sure we keep ACLOCAL_FLAGS around for maintainer builds to work +AC_SUBST(ACLOCAL_AMFLAGS, "\${ACLOCAL_FLAGS}") + +# Before making a release, the LT_VERSION string should be modified. +# The string is of the form C:R:A. +# - If interfaces have been changed or added, but binary compatibility has +# been preserved, change to C+1:0:A+1 +# - If binary compatibility has been broken (eg removed or changed interfaces) +# change to C+1:0:0 +# - If the interface is the same as the previous version, change to C:R+1:A + +LT_VERSION=18:4:1 +AC_SUBST(LT_VERSION) + +AM_MAINTAINER_MODE + +AC_PROG_CC +AC_STDC_HEADERS +AC_PROG_LIBTOOL +PKG_PROG_PKG_CONFIG + +AC_ARG_ENABLE(deprecation_flags, + [AC_HELP_STRING([--enable-deprecation-flags], + [use *_DISABLE_DEPRECATED flags @<:@default=no@:>@])],, + [enable_deprecation_flags=no]) + +if test "x$enable_deprecation_flags" = "xyes"; then + DISABLE_DEPRECATED_CFLAGS=$DISABLE_DEPRECATED + AC_SUBST(DISABLE_DEPRECATED_CFLAGS) +fi + +GLIB_REQUIRED=2.50.0 +GIO_REQUIRED=2.26.0 +GTK3_REQUIRED_VERSION=3.6 + +GOBJECT_INTROSPECTION_CHECK([0.9.7]) + +dnl pkg-config dependency checks + +PKG_CHECK_MODULES(LIBRDA, glib-2.0 >= $GLIB_REQUIRED gio-2.0 >= $GIO_REQUIRED) + +dnl Language Support + +IT_PROG_INTLTOOL([0.50.1]) +GETTEXT_PACKAGE=librda +AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", + [The gettext translation domain]) +AC_SUBST(GETTEXT_PACKAGE) +AM_GLIB_GNU_GETTEXT + +AC_CONFIG_FILES([ +Makefile +po/Makefile.in +src/Makefile +src/rda.pc +tests/Makefile +]) + +######################### +# Check if build tests +######################### +AC_ARG_ENABLE([tests], + AC_HELP_STRING([--disable-tests], [disable tests]),, + [enable_tests=yes]) +AM_CONDITIONAL([WANT_TESTS], [test "x$enable_tests" != "xno"]) + +if test "x$enable_tests" != "xno"; then + PKG_CHECK_MODULES(LIBRDA_TESTS, gtk+-3.0 >= $GTK3_REQUIRED_VERSION) +fi + +AC_OUTPUT + +dnl --------------------------------------------------------------------------- +dnl - Show summary +dnl --------------------------------------------------------------------------- + +echo " +librda $VERSION +`echo librda $VERSION | sed "s/./=/g"` + + prefix: ${prefix} + exec_prefix: ${exec_prefix} + libdir: ${libdir} + bindir: ${bindir} + sbindir: ${sbindir} + sysconfdir: ${sysconfdir} + localstatedir: ${localstatedir} + datadir: ${datadir} + source code location: ${srcdir} + compiler: ${CC} + cflags: ${CFLAGS} + Use *_DISABLE_DEPRECATED: ${enable_deprecation_flags} + + Build introspection support: ${found_introspection} +" diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..cf57544 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +librda (0.0.1-0) UNRELEASED; urgency=medium + + * Upstream-provided Debian package for librda. + See upstream ChangeLog for recent changes. + + -- Mike Gabriel Wed, 27 Jun 2018 10:41:13 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..5174193 --- /dev/null +++ b/debian/control @@ -0,0 +1,38 @@ +Source: librda +Section: libs +Priority: optional +Maintainer: Mike Gabriel +Build-Depends: debhelper (>= 9), + dh-autoreconf, + dpkg-dev (>= 1.16.1.1), + libtool, + intltool, + libglib2.0-dev (>= 2.37), + libgtk-3-dev (>= 2.91.3), +Standards-Version: 4.1.4 +Homepage: https://github.com/ArcticaProject/librda +Vcs-Git: git://cgit.arctica-project.org/ayatana/librda.git +Vcs-Browser: https://cgit.arctica-project.org/ayatana/librda.git/ + +Package: librda0 +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, +Multi-Arch: same +Description: Remote Desktop Awareness (shared library) + This library provides an API for detecting if a desktop session + is running inside a remote desktop session (e.g. X2Go). + . + This package contains the RDA shared library. + +Package: librda-dev +Section: libdevel +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + librda0 (= ${binary:Version}), +Description: Remote Desktop Awareness (development headers) + This library provides an API for detecting if a desktop session + is running inside a remote desktop session (e.g. X2Go). + . + This package contains the RDA development headers. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..5e4519e --- /dev/null +++ b/debian/copyright @@ -0,0 +1,194 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: librda +Upstream-Contact: Mike Gabriel +Source: https://github.com/ArcticaProject/librda + +Files: ChangeLog + Makefile.am + configure.ac + m4/.placeholder + po/LINGUAS + po/Makefile.in.in + po/POTFILES.in + src/Makefile.am + src/rda.pc.in + tests/Makefile.am +Copyright: 2018, Mike Gabriel +License: LGPL-2+ +Comment: + Assuming license as found in COPYING file. + . + Assuming copyright holdership as found in majority of code files. + +Files: src/rda.c + src/rda.h + src/rda_x2go.c + src/rda_x2go.h + tests/test-x2go.c +Copyright: 2018, Mike Gabriel +License: LGPL-2+ + +Files: update-po.sh + update-pot.sh +Copyright: 2017, Mike Gabriel +License: GPL-3 + +Files: po/af.po + po/am.po + po/an.po + po/ar.po + po/ast.po + po/az.po + po/be.po + po/bem.po + po/bg.po + po/bn.po + po/bo.po + po/br.po + po/bs.po + po/ca.po + po/ca@valencia.po + po/ce.po + po/ckb.po + po/co.po + po/crh.po + po/cs.po + po/cv.po + po/cy.po + po/da.po + po/de.po + po/el.po + po/en_AU.po + po/en_CA.po + po/en_GB.po + po/eo.po + po/es.po + po/et.po + po/eu.po + po/fa.po + po/fi.po + po/fil.po + po/fo.po + po/fr.po + po/fr_CA.po + po/frp.po + po/fy.po + po/ga.po + po/gd.po + po/gl.po + po/gu.po + po/he.po + po/hi.po + po/hr.po + po/ht.po + po/hu.po + po/hy.po + po/ia.po + po/id.po + po/is.po + po/it.po + po/ja.po + po/ka.po + po/kk.po + po/kl.po + po/km.po + po/kn.po + po/ko.po + po/ku.po + po/kw.po + po/ky.po + po/la.po + po/lb.po + po/lo.po + po/lt.po + po/lv.po + po/mg.po + po/mhr.po + po/mi.po + po/ml.po + po/mr.po + po/ms.po + po/my.po + po/nb.po + po/ne.po + po/nl.po + po/nn.po + po/oc.po + po/os.po + po/pa.po + po/pl.po + po/ps.po + po/pt.po + po/pt_BR.po + po/ro.po + po/ru.po + po/sa.po + po/sc.po + po/sd.po + po/se.po + po/shn.po + po/si.po + po/sk.po + po/sl.po + po/sq.po + po/sr.po + po/sv.po + po/sw.po + po/szl.po + po/ta.po + po/te.po + po/tg.po + po/th.po + po/ti.po + po/tr.po + po/ug.po + po/uk.po + po/ur.po + po/uz.po + po/vi.po + po/wae.po + po/zh_CN.po + po/zh_HK.po + po/zh_TW.po +Copyright: 2018, Mike Gabriel +License: LGPL-2+ +Comment: + Using same license and copyright holdership as given for the + RDA shared library. + +Files: debian/* +Copyright: 2018, Mike Gabriel +License: LGPL-2+ or GPL-3 + +License: LGPL-2+ + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + . + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + . + You should have received a copy of the GNU Library General Public License + along with this program. If not, see + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/LGPL-2". + +License: GPL-3 + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 3 of the License. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". diff --git a/debian/librda-dev.install b/debian/librda-dev.install new file mode 100644 index 0000000..2addd6b --- /dev/null +++ b/debian/librda-dev.install @@ -0,0 +1,4 @@ +usr/include +usr/lib/*/pkgconfig/rda.pc +usr/lib/*/librda.a +usr/lib/*/librda.so diff --git a/debian/librda0.install b/debian/librda0.install new file mode 100644 index 0000000..672454c --- /dev/null +++ b/debian/librda0.install @@ -0,0 +1 @@ +usr/lib/*/librda*.so.* \ No newline at end of file diff --git a/debian/patches/README b/debian/patches/README new file mode 100644 index 0000000..80c1584 --- /dev/null +++ b/debian/patches/README @@ -0,0 +1,3 @@ +0xxx: Grabbed from upstream development. +1xxx: Possibly relevant for upstream adoption. +2xxx: Only relevant for official Debian release. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..dd9063b --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ --with autoreconf diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..d3827e7 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +1.0 diff --git a/debian/upstream/signing-key.asc b/debian/upstream/signing-key.asc new file mode 100644 index 0000000..969a543 --- /dev/null +++ b/debian/upstream/signing-key.asc @@ -0,0 +1,180 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v1 + +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 +ZRs60sdFXk+ppSLNlHSlhfuJ3DW3sv8/07s01FFbDqt0fGj/GhoYTbrv5KGT8/bp +rdPPYTlmRP4m9JHWTNtTUtBOdvbJ3EvQOgVcyJW+eC0a93yms6gZ1pEoxTlu45yb +N+QfM+ZdyRpgtGqboIB1GLM+gw7CHZqqFZJY4LxjIftT0dBP2B7Yn5fPKVfi+Ea0 +i6WCTURMVc7HKdr/7yoFQkahen3CVsM9qJ5HalM0d1UwNOKSedbTOLc6M+xUZyxt +vgfQODwiPEUay3GuL7NW0GuWlHmWVLyPpyfhu65ZKKurn6Q+Z8yJU/f9vEYvt7Tx +kfBXr8WTT7jgvzZJT1+b09I/XiV5RcGvOfXmiJcwtCtNaWtlIEdhYnJpZWwgPG1p +a2UuZ2FicmllbEBtb29ud2VhdmVycy5uZXQ+iQI9BBMBCAAnBQJR/1OyAhsDBQkK +wiSEBQsJCAcDBRUKCQgLBRYCAwEAAh4BAheAAAoJEJr0azAldxsxESsP/2oECQab +zFWAGocjiaOFPmBoJfUm7s3dkNiGTVBAW4P8h/Y+Y70GsMQ2bJXArs/XRpHvono/ +GRyo6FSsqcK67LRI1lw5czIBV5ZPpoeaoLMRqd69nSut5/7+DbyfYE2S9ywmcGsJ +L7uqFEMiMw/v+iiiBTnpwNQwm9pwQKm3Tj2AqacaYteuVu5/vAkD9bJGkDbYVQ5O +v9LXIOUZrxlNOrTUDC4Dq5FbKbV4PKm8q1kWun5V2psQc8biKyLoCumcRpm1Pnxv +LhNzZ67Tje4kYznMhGDKQ+fts+vtuDH2pluiiqqk0lw7qOOuelTzb44SKKgvarrc +7KWSJs4Jzcbi5JaJ1uIDXhJJtAtGItGmoaRUDPk8m25lDyPXE44M8bkzeriPt6pc +8+jFcz96X7BTaRJTkaZKLfQdMlMnmRp4IG+J08aVEsXUfjTMq+RaZOAWYiHaRhB7 +N7Pq/EMGS/RDvT7xPvzBb9ghj3N883IyKC657MBhXT/l6Xxc5PA+yabfCPGKChr+ +ZBp6sW0mt6FudBhvj7lR1wNYAgqxJ+lnyMME47kYwwo60FSCadBthwy+fVqotw9w +6zoD1ztj1z9xwYKnMhXY2WiOvQIKng/RmfqS40or8fNFSMG448J34YqTpSJQ9tN6 +wT2hALTcMNayV09AYm+sWiizrT1eWh7xLJ2ttCVNaWtlIEdhYnJpZWwgPG1pa2Uu +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 +=+XWS +-----END PGP PUBLIC KEY BLOCK----- diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..eda7929 --- /dev/null +++ b/debian/watch @@ -0,0 +1,3 @@ +version=3 +opts=pgpsigurlmangle=s/$/.asc/ \ +http://releases.arctica-project.org/source/librda/librda-(.+)\.tar\.gz diff --git a/m4/.placeholder b/m4/.placeholder new file mode 100644 index 0000000..e69de29 diff --git a/po/LINGUAS b/po/LINGUAS new file mode 100644 index 0000000..8f5caec --- /dev/null +++ b/po/LINGUAS @@ -0,0 +1,117 @@ +af +am +an +ar +ast +az +bem +be +bg +bn +bo +br +bs +ca +ca@valencia +ce +ckb +co +crh +cs +cv +cy +da +de +el +en_AU +en_CA +en_GB +eo +es +et +eu +fa +fil +fi +fo +fr_CA +fr +frp +fy +ga +gd +gl +gu +he +hi +hr +ht +hu +hy +ia +id +is +it +ja +ka +kk +kl +km +kn +ko +ku +kw +ky +la +lb +lo +lt +lv +mg +mhr +mi +ml +mr +ms +my +nb +ne +nl +nn +oc +os +pa +pl +ps +pt_BR +pt +ro +ru +sa +sc +sd +se +shn +si +sk +sl +sq +sr +sv +sw +szl +ta +te +tg +th +ti +tr +ug +uk +ur +uz +vi +wae +zh_CN +zh_HK +zh_TW diff --git a/po/Makefile.in.in b/po/Makefile.in.in new file mode 100644 index 0000000..fcd2c3b --- /dev/null +++ b/po/Makefile.in.in @@ -0,0 +1,221 @@ +# Makefile for program source directory in GNU NLS utilities package. +# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper +# Copyright (C) 2004-2008 Rodney Dawes +# +# This file may be copied and used freely without restrictions. It may +# be used in projects which are not available under a GNU Public License, +# but which still want to provide support for the GNU gettext functionality. +# +# - Modified by Owen Taylor to use GETTEXT_PACKAGE +# instead of PACKAGE and to look for po2tbl in ./ not in intl/ +# +# - Modified by jacob berkman to install +# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize +# +# - Modified by Rodney Dawes for use with intltool +# +# We have the following line for use by intltoolize: +# INTLTOOL_MAKEFILE + +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +PACKAGE = @PACKAGE@ +VERSION = @VERSION@ + +SHELL = @SHELL@ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +top_builddir = @top_builddir@ +VPATH = @srcdir@ + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +datadir = @datadir@ +datarootdir = @datarootdir@ +libdir = @libdir@ +localedir = @localedir@ +subdir = po +install_sh = @install_sh@ +# Automake >= 1.8 provides @mkdir_p@. +# Until it can be supposed, use the safe fallback: +mkdir_p = $(install_sh) -d + +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ + +GMSGFMT = @GMSGFMT@ +MSGFMT = @MSGFMT@ +XGETTEXT = @XGETTEXT@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +MSGMERGE = INTLTOOL_EXTRACT="$(INTLTOOL_EXTRACT)" XGETTEXT="$(XGETTEXT)" srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist +GENPOT = INTLTOOL_EXTRACT="$(INTLTOOL_EXTRACT)" XGETTEXT="$(XGETTEXT)" srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot + +ALL_LINGUAS = @ALL_LINGUAS@ + +PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi) + +USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep \^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep \^$$lang$$`"; then printf "$$lang "; fi; done; fi) + +USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done) + +POFILES=$(shell LINGUAS="$(PO_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done) + +DISTFILES = Makefile.in.in POTFILES.in $(POFILES) +EXTRA_DISTFILES = ChangeLog POTFILES.skip Makevars LINGUAS + +POTFILES = \ +# This comment gets stripped out + +CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done) + +.SUFFIXES: +.SUFFIXES: .po .pox .gmo .mo .msg .cat + +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +INTLTOOL_V_MSGFMT = $(INTLTOOL__v_MSGFMT_$(V)) +INTLTOOL__v_MSGFMT_= $(INTLTOOL__v_MSGFMT_$(AM_DEFAULT_VERBOSITY)) +INTLTOOL__v_MSGFMT_0 = @echo " MSGFMT" $@; + +.po.pox: + $(MAKE) $(GETTEXT_PACKAGE).pot + $(MSGMERGE) $* $(GETTEXT_PACKAGE).pot -o $*.pox + +.po.mo: + $(INTLTOOL_V_MSGFMT)$(MSGFMT) -o $@ $< + +.po.gmo: + $(INTLTOOL_V_MSGFMT)file=`echo $* | sed 's,.*/,,'`.gmo \ + && rm -f $$file && $(GMSGFMT) -o $$file $< + +.po.cat: + sed -f ../intl/po2msg.sed < $< > $*.msg \ + && rm -f $@ && gencat $@ $*.msg + + +all: all-@USE_NLS@ + +all-yes: $(CATALOGS) +all-no: + +$(GETTEXT_PACKAGE).pot: $(POTFILES) + $(GENPOT) + +install: install-data +install-data: install-data-@USE_NLS@ +install-data-no: all +install-data-yes: all + linguas="$(USE_LINGUAS)"; \ + for lang in $$linguas; do \ + dir=$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \ + $(mkdir_p) $$dir; \ + if test -r $$lang.gmo; then \ + $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ + echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \ + else \ + $(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ + echo "installing $(srcdir)/$$lang.gmo as" \ + "$$dir/$(GETTEXT_PACKAGE).mo"; \ + fi; \ + if test -r $$lang.gmo.m; then \ + $(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \ + echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \ + else \ + if test -r $(srcdir)/$$lang.gmo.m ; then \ + $(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \ + $$dir/$(GETTEXT_PACKAGE).mo.m; \ + echo "installing $(srcdir)/$$lang.gmo.m as" \ + "$$dir/$(GETTEXT_PACKAGE).mo.m"; \ + else \ + true; \ + fi; \ + fi; \ + done + +# Empty stubs to satisfy archaic automake needs +dvi info ctags tags CTAGS TAGS ID: + +# Define this as empty until I found a useful application. +install-exec installcheck: + +uninstall: + linguas="$(USE_LINGUAS)"; \ + for lang in $$linguas; do \ + rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \ + rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \ + done + +check: all $(GETTEXT_PACKAGE).pot + rm -f missing notexist + srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m + if [ -r missing -o -r notexist ]; then \ + exit 1; \ + fi + +mostlyclean: + rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp + rm -f .intltool-merge-cache + +clean: mostlyclean + +distclean: clean + rm -f Makefile Makefile.in POTFILES stamp-it + rm -f *.mo *.msg *.cat *.cat.m *.gmo + +maintainer-clean: distclean + @echo "This command is intended for maintainers to use;" + @echo "it deletes files that may require special tools to rebuild." + rm -f Makefile.in.in + +distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) +dist distdir: $(DISTFILES) + dists="$(DISTFILES)"; \ + extra_dists="$(EXTRA_DISTFILES)"; \ + for file in $$extra_dists; do \ + test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \ + done; \ + for file in $$dists; do \ + test -f $$file || file="$(srcdir)/$$file"; \ + ln $$file $(distdir) 2> /dev/null \ + || cp -p $$file $(distdir); \ + done + +update-po: Makefile + $(MAKE) $(GETTEXT_PACKAGE).pot + tmpdir=`pwd`; \ + linguas="$(USE_LINGUAS)"; \ + for lang in $$linguas; do \ + echo "$$lang:"; \ + result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \ + if $$result; then \ + if cmp $(srcdir)/$$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; \ + rm -f $$tmpdir/$$lang.new.po; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.gmo failed!"; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi; \ + done + +Makefile POTFILES: stamp-it + @if test ! -f $@; then \ + rm -f stamp-it; \ + $(MAKE) stamp-it; \ + fi + +stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in + cd $(top_builddir) \ + && CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \ + $(SHELL) ./config.status + +# Tell versions [3.59,3.63) of GNU make not to export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/po/POTFILES.in b/po/POTFILES.in new file mode 100644 index 0000000..8793831 --- /dev/null +++ b/po/POTFILES.in @@ -0,0 +1,2 @@ +src/rda.c +src/rda_x2go.c diff --git a/po/af.po b/po/af.po new file mode 100644 index 0000000..91515da --- /dev/null +++ b/po/af.po @@ -0,0 +1,29 @@ +# Afrikaans translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/am.po b/po/am.po new file mode 100644 index 0000000..96da928 --- /dev/null +++ b/po/am.po @@ -0,0 +1,29 @@ +# Amharic translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/an.po b/po/an.po new file mode 100644 index 0000000..aedc288 --- /dev/null +++ b/po/an.po @@ -0,0 +1,29 @@ +# Aragonese translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: an\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ar.po b/po/ar.po new file mode 100644 index 0000000..9cdcef7 --- /dev/null +++ b/po/ar.po @@ -0,0 +1,29 @@ +# Arabic translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ast.po b/po/ast.po new file mode 100644 index 0000000..7c671ee --- /dev/null +++ b/po/ast.po @@ -0,0 +1,29 @@ +# Asturian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ast\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/az.po b/po/az.po new file mode 100644 index 0000000..9a4607a --- /dev/null +++ b/po/az.po @@ -0,0 +1,29 @@ +# Azerbaijani translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: az\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/be.po b/po/be.po new file mode 100644 index 0000000..5085b2c --- /dev/null +++ b/po/be.po @@ -0,0 +1,31 @@ +# Belarusian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: be\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\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" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/bem.po b/po/bem.po new file mode 100644 index 0000000..f9c4677 --- /dev/null +++ b/po/bem.po @@ -0,0 +1,29 @@ +# Bemba translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bem\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/bg.po b/po/bg.po new file mode 100644 index 0000000..9591c01 --- /dev/null +++ b/po/bg.po @@ -0,0 +1,30 @@ +# Bulgarian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/bn.po b/po/bn.po new file mode 100644 index 0000000..0db398d --- /dev/null +++ b/po/bn.po @@ -0,0 +1,29 @@ +# Bengali translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/bo.po b/po/bo.po new file mode 100644 index 0000000..2573798 --- /dev/null +++ b/po/bo.po @@ -0,0 +1,29 @@ +# Tibetan translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/br.po b/po/br.po new file mode 100644 index 0000000..2482ff5 --- /dev/null +++ b/po/br.po @@ -0,0 +1,29 @@ +# Breton translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: br\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/bs.po b/po/bs.po new file mode 100644 index 0000000..20f8344 --- /dev/null +++ b/po/bs.po @@ -0,0 +1,29 @@ +# Bosnian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ca.po b/po/ca.po new file mode 100644 index 0000000..ce0b50d --- /dev/null +++ b/po/ca.po @@ -0,0 +1,29 @@ +# Catalan translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ca@valencia.po b/po/ca@valencia.po new file mode 100644 index 0000000..62655d4 --- /dev/null +++ b/po/ca@valencia.po @@ -0,0 +1,29 @@ +# Catalan translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca@valencia\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ce.po b/po/ce.po new file mode 100644 index 0000000..47b002b --- /dev/null +++ b/po/ce.po @@ -0,0 +1,29 @@ +# Chechen translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ce\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ckb.po b/po/ckb.po new file mode 100644 index 0000000..e4d9847 --- /dev/null +++ b/po/ckb.po @@ -0,0 +1,29 @@ +# Language ckb translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ckb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/co.po b/po/co.po new file mode 100644 index 0000000..4ccce10 --- /dev/null +++ b/po/co.po @@ -0,0 +1,29 @@ +# Corsican translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: co\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/crh.po b/po/crh.po new file mode 100644 index 0000000..132eab8 --- /dev/null +++ b/po/crh.po @@ -0,0 +1,29 @@ +# Crimean Tatar translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: crh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/cs.po b/po/cs.po new file mode 100644 index 0000000..c4440ca --- /dev/null +++ b/po/cs.po @@ -0,0 +1,30 @@ +# Czech translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/cv.po b/po/cv.po new file mode 100644 index 0000000..7fe0d69 --- /dev/null +++ b/po/cv.po @@ -0,0 +1,29 @@ +# Chuvash translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/cy.po b/po/cy.po new file mode 100644 index 0000000..9d67aee --- /dev/null +++ b/po/cy.po @@ -0,0 +1,29 @@ +# Welsh translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: cy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/da.po b/po/da.po new file mode 100644 index 0000000..f39b79e --- /dev/null +++ b/po/da.po @@ -0,0 +1,30 @@ +# Danish translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/de.po b/po/de.po new file mode 100644 index 0000000..4284f9f --- /dev/null +++ b/po/de.po @@ -0,0 +1,30 @@ +# German translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/el.po b/po/el.po new file mode 100644 index 0000000..cfd75af --- /dev/null +++ b/po/el.po @@ -0,0 +1,30 @@ +# Greek translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/en_AU.po b/po/en_AU.po new file mode 100644 index 0000000..ce816d0 --- /dev/null +++ b/po/en_AU.po @@ -0,0 +1,30 @@ +# English translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_AU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "local" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "X2Go" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "unknown" diff --git a/po/en_CA.po b/po/en_CA.po new file mode 100644 index 0000000..0ac27f8 --- /dev/null +++ b/po/en_CA.po @@ -0,0 +1,30 @@ +# English translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "local" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "X2Go" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "unknown" diff --git a/po/en_GB.po b/po/en_GB.po new file mode 100644 index 0000000..c9eb819 --- /dev/null +++ b/po/en_GB.po @@ -0,0 +1,30 @@ +# English translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "local" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "X2Go" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "unknown" diff --git a/po/eo.po b/po/eo.po new file mode 100644 index 0000000..3497582 --- /dev/null +++ b/po/eo.po @@ -0,0 +1,30 @@ +# Esperanto translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: eo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/es.po b/po/es.po new file mode 100644 index 0000000..d724e8e --- /dev/null +++ b/po/es.po @@ -0,0 +1,30 @@ +# Spanish translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/et.po b/po/et.po new file mode 100644 index 0000000..29209eb --- /dev/null +++ b/po/et.po @@ -0,0 +1,30 @@ +# Estonian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/eu.po b/po/eu.po new file mode 100644 index 0000000..1d86620 --- /dev/null +++ b/po/eu.po @@ -0,0 +1,29 @@ +# Basque translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/fa.po b/po/fa.po new file mode 100644 index 0000000..8726b0a --- /dev/null +++ b/po/fa.po @@ -0,0 +1,29 @@ +# Persian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/fi.po b/po/fi.po new file mode 100644 index 0000000..b3b89bc --- /dev/null +++ b/po/fi.po @@ -0,0 +1,30 @@ +# Finnish translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/fil.po b/po/fil.po new file mode 100644 index 0000000..e0f2ca3 --- /dev/null +++ b/po/fil.po @@ -0,0 +1,29 @@ +# Filipino translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fil\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/fo.po b/po/fo.po new file mode 100644 index 0000000..08f7c46 --- /dev/null +++ b/po/fo.po @@ -0,0 +1,30 @@ +# Faroese translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/fr.po b/po/fr.po new file mode 100644 index 0000000..f242ea9 --- /dev/null +++ b/po/fr.po @@ -0,0 +1,30 @@ +# French translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/fr_CA.po b/po/fr_CA.po new file mode 100644 index 0000000..a73e093 --- /dev/null +++ b/po/fr_CA.po @@ -0,0 +1,30 @@ +# French translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/frp.po b/po/frp.po new file mode 100644 index 0000000..2a3652b --- /dev/null +++ b/po/frp.po @@ -0,0 +1,29 @@ +# Language frp translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: frp\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/fy.po b/po/fy.po new file mode 100644 index 0000000..a28c56d --- /dev/null +++ b/po/fy.po @@ -0,0 +1,29 @@ +# Western Frisian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: fy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ga.po b/po/ga.po new file mode 100644 index 0000000..3c16b0d --- /dev/null +++ b/po/ga.po @@ -0,0 +1,30 @@ +# Irish translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ga\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/gd.po b/po/gd.po new file mode 100644 index 0000000..7786d77 --- /dev/null +++ b/po/gd.po @@ -0,0 +1,29 @@ +# Scottish Gaelic translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gd\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/gl.po b/po/gl.po new file mode 100644 index 0000000..3817d92 --- /dev/null +++ b/po/gl.po @@ -0,0 +1,29 @@ +# Galician translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/gu.po b/po/gu.po new file mode 100644 index 0000000..cbb3edd --- /dev/null +++ b/po/gu.po @@ -0,0 +1,29 @@ +# Gujarati translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: gu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/he.po b/po/he.po new file mode 100644 index 0000000..f0550c2 --- /dev/null +++ b/po/he.po @@ -0,0 +1,30 @@ +# Hebrew translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/hi.po b/po/hi.po new file mode 100644 index 0000000..6c5b9fc --- /dev/null +++ b/po/hi.po @@ -0,0 +1,29 @@ +# Hindi translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/hr.po b/po/hr.po new file mode 100644 index 0000000..1f6d129 --- /dev/null +++ b/po/hr.po @@ -0,0 +1,31 @@ +# Croatian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\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" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ht.po b/po/ht.po new file mode 100644 index 0000000..6b7f286 --- /dev/null +++ b/po/ht.po @@ -0,0 +1,29 @@ +# Haitian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ht\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/hu.po b/po/hu.po new file mode 100644 index 0000000..fb8ce31 --- /dev/null +++ b/po/hu.po @@ -0,0 +1,30 @@ +# Hungarian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/hy.po b/po/hy.po new file mode 100644 index 0000000..3ecbbd0 --- /dev/null +++ b/po/hy.po @@ -0,0 +1,29 @@ +# Armenian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ia.po b/po/ia.po new file mode 100644 index 0000000..327e044 --- /dev/null +++ b/po/ia.po @@ -0,0 +1,29 @@ +# Interlingua translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ia\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/id.po b/po/id.po new file mode 100644 index 0000000..2786914 --- /dev/null +++ b/po/id.po @@ -0,0 +1,29 @@ +# Indonesian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/is.po b/po/is.po new file mode 100644 index 0000000..8d7c08a --- /dev/null +++ b/po/is.po @@ -0,0 +1,29 @@ +# Icelandic translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: is\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/it.po b/po/it.po new file mode 100644 index 0000000..c0b3897 --- /dev/null +++ b/po/it.po @@ -0,0 +1,30 @@ +# Italian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ja.po b/po/ja.po new file mode 100644 index 0000000..fc092ee --- /dev/null +++ b/po/ja.po @@ -0,0 +1,30 @@ +# Japanese translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ka.po b/po/ka.po new file mode 100644 index 0000000..796a1fb --- /dev/null +++ b/po/ka.po @@ -0,0 +1,29 @@ +# Georgian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/kk.po b/po/kk.po new file mode 100644 index 0000000..2321f4f --- /dev/null +++ b/po/kk.po @@ -0,0 +1,29 @@ +# Kazakh translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/kl.po b/po/kl.po new file mode 100644 index 0000000..19dacea --- /dev/null +++ b/po/kl.po @@ -0,0 +1,29 @@ +# Kalaallisut translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/km.po b/po/km.po new file mode 100644 index 0000000..6d313e9 --- /dev/null +++ b/po/km.po @@ -0,0 +1,29 @@ +# Central Khmer translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: km\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/kn.po b/po/kn.po new file mode 100644 index 0000000..798280a --- /dev/null +++ b/po/kn.po @@ -0,0 +1,29 @@ +# Kannada translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ko.po b/po/ko.po new file mode 100644 index 0000000..a9e241e --- /dev/null +++ b/po/ko.po @@ -0,0 +1,30 @@ +# Korean translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ku.po b/po/ku.po new file mode 100644 index 0000000..63314c0 --- /dev/null +++ b/po/ku.po @@ -0,0 +1,29 @@ +# Kurdish translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ku\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/kw.po b/po/kw.po new file mode 100644 index 0000000..ce9bec5 --- /dev/null +++ b/po/kw.po @@ -0,0 +1,29 @@ +# Cornish translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: kw\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ky.po b/po/ky.po new file mode 100644 index 0000000..57aa1b8 --- /dev/null +++ b/po/ky.po @@ -0,0 +1,29 @@ +# Kirghiz translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ky\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/la.po b/po/la.po new file mode 100644 index 0000000..b671e8a --- /dev/null +++ b/po/la.po @@ -0,0 +1,29 @@ +# Latin translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: la\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/lb.po b/po/lb.po new file mode 100644 index 0000000..999147e --- /dev/null +++ b/po/lb.po @@ -0,0 +1,29 @@ +# Letzeburgesch translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/librda.pot b/po/librda.pot new file mode 100644 index 0000000..0d5b7a1 --- /dev/null +++ b/po/librda.pot @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 11:12+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/lo.po b/po/lo.po new file mode 100644 index 0000000..56aa4c3 --- /dev/null +++ b/po/lo.po @@ -0,0 +1,29 @@ +# Laotian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/lt.po b/po/lt.po new file mode 100644 index 0000000..14d7ac3 --- /dev/null +++ b/po/lt.po @@ -0,0 +1,31 @@ +# Lithuanian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/lv.po b/po/lv.po new file mode 100644 index 0000000..4b21f97 --- /dev/null +++ b/po/lv.po @@ -0,0 +1,31 @@ +# Latvian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/mg.po b/po/mg.po new file mode 100644 index 0000000..3726389 --- /dev/null +++ b/po/mg.po @@ -0,0 +1,29 @@ +# Malagasy translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/mhr.po b/po/mhr.po new file mode 100644 index 0000000..7c80f7e --- /dev/null +++ b/po/mhr.po @@ -0,0 +1,29 @@ +# Language mhr translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mhr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/mi.po b/po/mi.po new file mode 100644 index 0000000..56718b4 --- /dev/null +++ b/po/mi.po @@ -0,0 +1,29 @@ +# Maori translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ml.po b/po/ml.po new file mode 100644 index 0000000..f45b105 --- /dev/null +++ b/po/ml.po @@ -0,0 +1,29 @@ +# Malayalam translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ml\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/mr.po b/po/mr.po new file mode 100644 index 0000000..9c5cf46 --- /dev/null +++ b/po/mr.po @@ -0,0 +1,29 @@ +# Marathi translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ms.po b/po/ms.po new file mode 100644 index 0000000..148861b --- /dev/null +++ b/po/ms.po @@ -0,0 +1,29 @@ +# Malay translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ms\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/my.po b/po/my.po new file mode 100644 index 0000000..b7eed20 --- /dev/null +++ b/po/my.po @@ -0,0 +1,29 @@ +# Burmese translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: my\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/nb.po b/po/nb.po new file mode 100644 index 0000000..17d4900 --- /dev/null +++ b/po/nb.po @@ -0,0 +1,30 @@ +# Norwegian Bokmal translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ne.po b/po/ne.po new file mode 100644 index 0000000..ff2f309 --- /dev/null +++ b/po/ne.po @@ -0,0 +1,29 @@ +# Nepali translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ne\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/nl.po b/po/nl.po new file mode 100644 index 0000000..98e5c32 --- /dev/null +++ b/po/nl.po @@ -0,0 +1,30 @@ +# Dutch translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/nn.po b/po/nn.po new file mode 100644 index 0000000..8193626 --- /dev/null +++ b/po/nn.po @@ -0,0 +1,30 @@ +# Norwegian Nynorsk translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/oc.po b/po/oc.po new file mode 100644 index 0000000..5862def --- /dev/null +++ b/po/oc.po @@ -0,0 +1,29 @@ +# Occitan translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: oc\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/os.po b/po/os.po new file mode 100644 index 0000000..229278b --- /dev/null +++ b/po/os.po @@ -0,0 +1,29 @@ +# Ossetian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: os\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/pa.po b/po/pa.po new file mode 100644 index 0000000..84a19f4 --- /dev/null +++ b/po/pa.po @@ -0,0 +1,29 @@ +# Punjabi translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/pl.po b/po/pl.po new file mode 100644 index 0000000..6da6597 --- /dev/null +++ b/po/pl.po @@ -0,0 +1,31 @@ +# Polish translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\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/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ps.po b/po/ps.po new file mode 100644 index 0000000..4dc66b6 --- /dev/null +++ b/po/ps.po @@ -0,0 +1,29 @@ +# Pashto translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ps\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/pt.po b/po/pt.po new file mode 100644 index 0000000..f5f4f41 --- /dev/null +++ b/po/pt.po @@ -0,0 +1,30 @@ +# Portuguese translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po new file mode 100644 index 0000000..88e35fa --- /dev/null +++ b/po/pt_BR.po @@ -0,0 +1,30 @@ +# Portuguese translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ro.po b/po/ro.po new file mode 100644 index 0000000..9ae7102 --- /dev/null +++ b/po/ro.po @@ -0,0 +1,31 @@ +# Romanian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\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" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ru.po b/po/ru.po new file mode 100644 index 0000000..af4a7b7 --- /dev/null +++ b/po/ru.po @@ -0,0 +1,31 @@ +# Russian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\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" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/sa.po b/po/sa.po new file mode 100644 index 0000000..2fee515 --- /dev/null +++ b/po/sa.po @@ -0,0 +1,29 @@ +# Sanskrit translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/sc.po b/po/sc.po new file mode 100644 index 0000000..cac4e93 --- /dev/null +++ b/po/sc.po @@ -0,0 +1,29 @@ +# Sardinian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sc\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/sd.po b/po/sd.po new file mode 100644 index 0000000..2901543 --- /dev/null +++ b/po/sd.po @@ -0,0 +1,29 @@ +# Sindhi translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sd\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/se.po b/po/se.po new file mode 100644 index 0000000..da1d97e --- /dev/null +++ b/po/se.po @@ -0,0 +1,29 @@ +# Northern Sami translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: se\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/shn.po b/po/shn.po new file mode 100644 index 0000000..b4b343d --- /dev/null +++ b/po/shn.po @@ -0,0 +1,29 @@ +# Shan translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: shn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/si.po b/po/si.po new file mode 100644 index 0000000..92684b2 --- /dev/null +++ b/po/si.po @@ -0,0 +1,29 @@ +# Sinhala translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: si\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/sk.po b/po/sk.po new file mode 100644 index 0000000..4dcfcf7 --- /dev/null +++ b/po/sk.po @@ -0,0 +1,30 @@ +# Slovak translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/sl.po b/po/sl.po new file mode 100644 index 0000000..36a60e9 --- /dev/null +++ b/po/sl.po @@ -0,0 +1,31 @@ +# Slovenian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/sq.po b/po/sq.po new file mode 100644 index 0000000..517a4b5 --- /dev/null +++ b/po/sq.po @@ -0,0 +1,29 @@ +# Albanian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/sr.po b/po/sr.po new file mode 100644 index 0000000..2801b41 --- /dev/null +++ b/po/sr.po @@ -0,0 +1,31 @@ +# Serbian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\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" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/sv.po b/po/sv.po new file mode 100644 index 0000000..7b61300 --- /dev/null +++ b/po/sv.po @@ -0,0 +1,30 @@ +# Swedish translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/sw.po b/po/sw.po new file mode 100644 index 0000000..0fc33e1 --- /dev/null +++ b/po/sw.po @@ -0,0 +1,29 @@ +# Swahili translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sw\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/szl.po b/po/szl.po new file mode 100644 index 0000000..17f20b5 --- /dev/null +++ b/po/szl.po @@ -0,0 +1,29 @@ +# Language szl translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: szl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ta.po b/po/ta.po new file mode 100644 index 0000000..8405433 --- /dev/null +++ b/po/ta.po @@ -0,0 +1,29 @@ +# Tamil translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/te.po b/po/te.po new file mode 100644 index 0000000..238d5ad --- /dev/null +++ b/po/te.po @@ -0,0 +1,29 @@ +# Telugu translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: te\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/tg.po b/po/tg.po new file mode 100644 index 0000000..393f229 --- /dev/null +++ b/po/tg.po @@ -0,0 +1,29 @@ +# Tajik translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/th.po b/po/th.po new file mode 100644 index 0000000..b471803 --- /dev/null +++ b/po/th.po @@ -0,0 +1,29 @@ +# Thai translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ti.po b/po/ti.po new file mode 100644 index 0000000..5160e3c --- /dev/null +++ b/po/ti.po @@ -0,0 +1,29 @@ +# Tigrinya translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ti\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/tr.po b/po/tr.po new file mode 100644 index 0000000..5a8717b --- /dev/null +++ b/po/tr.po @@ -0,0 +1,30 @@ +# Turkish translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ug.po b/po/ug.po new file mode 100644 index 0000000..efde947 --- /dev/null +++ b/po/ug.po @@ -0,0 +1,29 @@ +# Uighur translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ug\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/uk.po b/po/uk.po new file mode 100644 index 0000000..99b88b3 --- /dev/null +++ b/po/uk.po @@ -0,0 +1,31 @@ +# Ukrainian translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\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" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/ur.po b/po/ur.po new file mode 100644 index 0000000..c69d5e6 --- /dev/null +++ b/po/ur.po @@ -0,0 +1,29 @@ +# Urdu translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ur\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/uz.po b/po/uz.po new file mode 100644 index 0000000..f7fb89f --- /dev/null +++ b/po/uz.po @@ -0,0 +1,29 @@ +# Uzbek translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: uz\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/vi.po b/po/vi.po new file mode 100644 index 0000000..e6eb94e --- /dev/null +++ b/po/vi.po @@ -0,0 +1,30 @@ +# Vietnamese translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/wae.po b/po/wae.po new file mode 100644 index 0000000..ce4165c --- /dev/null +++ b/po/wae.po @@ -0,0 +1,29 @@ +# Language wae translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: wae\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po new file mode 100644 index 0000000..0cff83d --- /dev/null +++ b/po/zh_CN.po @@ -0,0 +1,29 @@ +# Chinese translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/zh_HK.po b/po/zh_HK.po new file mode 100644 index 0000000..b0255cc --- /dev/null +++ b/po/zh_HK.po @@ -0,0 +1,29 @@ +# Chinese translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_HK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po new file mode 100644 index 0000000..ad196ef --- /dev/null +++ b/po/zh_TW.po @@ -0,0 +1,29 @@ +# Chinese translations for librda package. +# Copyright (C) 2018 THE librda'S COPYRIGHT HOLDER +# This file is distributed under the same license as the librda package. +# Automatically generated, 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: librda 0.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-06-27 10:45+0200\n" +"PO-Revision-Date: 2018-06-27 10:45+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/rda.c:86 +msgid "local" +msgstr "" + +#: ../src/rda.c:90 +msgid "X2Go" +msgstr "" + +#: ../src/rda.c:94 +msgid "unknown" +msgstr "" diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..c770c54 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,33 @@ +NULL = + +lib_LTLIBRARIES = librda.la + +CLEANFILES = +DISTCLEANFILES = + +rda_headers = \ + rda.h \ + $(NULL) + +librdaincludedir = $(includedir)/rda +librdainclude_HEADERS = \ + $(rda_headers) \ + $(NULL) + +librda_la_SOURCES = \ + $(rda_headers) \ + rda.c \ + rda_x2go.h \ + rda_x2go.c \ + $(NULL) + +librda_la_CFLAGS = \ + $(LIBRDA_CFLAGS) \ + $(NULL) + +librda_la_LIBADD = \ + $(LIBRDA_LIBS) \ + $(NULL) + +pkgconfig_DATA = rda.pc +pkgconfigdir = $(libdir)/pkgconfig diff --git a/src/rda.c b/src/rda.c new file mode 100644 index 0000000..ce7b1af --- /dev/null +++ b/src/rda.c @@ -0,0 +1,132 @@ +/* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ + +/* rda.c - Remote Desktop Awareness + + Copyright (C) 2018 Mike Gabriel + All rights reserved. + + The RDA Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + + The RDA Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with the Mate Library; see the file COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + Boston, MA 02110-1301, USA. + */ + +#include +#include +#include + +#include +#include + +guint +remote_technology = REMOTE_TECHNOLOGY_UNCHECKED; + +void +rda_init (void) +{ + rda_session_is_remote(); +} + +gboolean +rda_session_is_local(void) +{ + /* + * FIXME: how can we detect that a desktop session is running locally? + */ + return (!rda_session_is_remote()); +} + +gboolean +rda_session_is_remote (void) +{ + if (rda_session_is_x2go()) + return TRUE; + + /* possibly add more checks for other remote desktop technologies */ + + else if (rda_session_is_local()) + remote_technology = REMOTE_TECHNOLOGY_NONE; + + else + remote_technology = REMOTE_TECHNOLOGY_UNKNOWN; + + return FALSE; +} + +guint +rda_get_remote_technology(void) +{ + if (remote_technology == REMOTE_TECHNOLOGY_UNCHECKED) + rda_init(); + + return remote_technology; +} + +gchar * +rda_get_remote_technology_name (void) +{ + if (remote_technology == REMOTE_TECHNOLOGY_UNCHECKED) + rda_init(); + + gchar* remote_technology_name; + + switch(remote_technology) { + + case REMOTE_TECHNOLOGY_NONE: + remote_technology_name = _("local"); + break; + + case REMOTE_TECHNOLOGY_X2GO: + remote_technology_name = _("X2Go"); + break; + + case REMOTE_TECHNOLOGY_UNKNOWN: + remote_technology_name = _("unknown"); + + default: + remote_technology_name = g_strdup(""); + + } + + return remote_technology_name; +} + +gboolean +rda_session_can_be_suspended(void) +{ + if (rda_session_is_x2go()) + return TRUE; + + /* possibly add more checks for other remote desktop frameworks + that have a session suspension feature */ + + return FALSE; +} + +gboolean +rda_session_suspend(void) +{ + if (rda_session_is_x2go()) + return rda_session_suspend_x2go(); + + return FALSE; +} + +gboolean +rda_session_terminate(void) +{ + if (rda_session_is_x2go()) + return rda_session_terminate_x2go(); + + return FALSE; +} diff --git a/src/rda.h b/src/rda.h new file mode 100644 index 0000000..394e969 --- /dev/null +++ b/src/rda.h @@ -0,0 +1,62 @@ +/* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ + +/* rda.h - Remote Desktop Awareness + + Copyright (C) 2018 Mike Gabriel + All rights reserved. + + The RDA Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + + The RDA Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with the Mate Library; see the file COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + Boston, MA 02110-1301, USA. + */ + +#ifndef RDA_H +#define RDA_H + +G_BEGIN_DECLS + +enum { + REMOTE_TECHNOLOGY_UNCHECKED, + REMOTE_TECHNOLOGY_NONE, + REMOTE_TECHNOLOGY_UNKNOWN, + REMOTE_TECHNOLOGY_X2GO, +}; + +extern guint +remote_technology; + +void +rda_init (void); + +gboolean +rda_session_is_local(void); + +gboolean +rda_session_is_remote (void); + +guint +rda_get_remote_technology(void); + +gchar * +rda_get_remote_technology_name (void); + +gboolean +rda_session_can_be_suspended(void); + +gboolean +rda_suspend_session(void); + +G_END_DECLS + +#endif /* RDA_H */ diff --git a/src/rda.pc.in b/src/rda.pc.in new file mode 100644 index 0000000..e79b9c3 --- /dev/null +++ b/src/rda.pc.in @@ -0,0 +1,12 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +bindir=@bindir@ +includedir=@includedir@ + +Cflags: -I${includedir}/rda +Libs: -lrda + +Name: librda +Description: Remote Desktop Awareness +Version: @VERSION@ diff --git a/src/rda_x2go.c b/src/rda_x2go.c new file mode 100644 index 0000000..34094e3 --- /dev/null +++ b/src/rda_x2go.c @@ -0,0 +1,110 @@ +/* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ + +/* rda_x2go.c - Remote Desktop Awareness for X2Go Sessions + + Copyright (C) 2018 Mike Gabriel + All rights reserved. + + The RDA Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + + The RDA Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with the Mate Library; see the file COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + Boston, MA 02110-1301, USA. + */ + +#include +#include + +#include + +gboolean +rda_session_is_x2go (void) +{ + if (remote_technology == REMOTE_TECHNOLOGY_X2GO) + return TRUE; + + if (g_getenv("X2GO_SESSION")) + { + remote_technology = REMOTE_TECHNOLOGY_X2GO; + return TRUE; + } + + return FALSE; +} + +gboolean +rda_session_suspend_x2go(void) +{ + if (!rda_session_is_x2go()) + return FALSE; + + gint std_in, std_out; + GError * error = NULL; + + const gchar * argv[1]; + argv[0] = "x2gosuspend-session"; + + // FIXME: use g_spawn_sync + g_spawn_async_with_pipes(NULL, /* pwd */ + (gchar **)argv, + NULL, /* env */ + G_SPAWN_DO_NOT_REAP_CHILD, + NULL, NULL, /* child setup */ + NULL, + &std_in, + &std_out, + NULL, /* stderr */ + &error); /* error */ + + if (error == NULL) + { + return TRUE; + } else { + // FIXME: Maybe put some error reporting to a higher API level + // here... + return FALSE; + } +} + +gboolean +rda_session_terminate_x2go(void) +{ + if (!rda_session_is_x2go()) + return FALSE; + + gint std_in, std_out; + GError * error = NULL; + + const gchar * argv[1]; + argv[0] = "x2goterminate-session"; + + // FIXME: use g_spawn_sync + g_spawn_async_with_pipes(NULL, /* pwd */ + (gchar **)argv, + NULL, /* env */ + G_SPAWN_DO_NOT_REAP_CHILD, + NULL, NULL, /* child setup */ + NULL, + &std_in, + &std_out, + NULL, /* stderr */ + &error); /* error */ + + if (error == NULL) + { + return TRUE; + } else { + // FIXME: Maybe put some error reporting to a higher API level + // here... + return FALSE; + } +} diff --git a/src/rda_x2go.h b/src/rda_x2go.h new file mode 100644 index 0000000..ceeb9d4 --- /dev/null +++ b/src/rda_x2go.h @@ -0,0 +1,41 @@ +/* -*- Mode: C; c-set-style: linux indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ + +/* rda_x2go.c - Remote Desktop Awareness for X2Go Sessions + + Copyright (C) 2018 Mike Gabriel + All rights reserved. + + The RDA Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + + The RDA Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with the Mate Library; see the file COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + Boston, MA 02110-1301, USA. + */ + +#ifndef RDA_X2GO_H +#define RDA_X2GO_H + +#include +#include + +#include + +gboolean +rda_session_is_x2go (void); + +gboolean +rda_session_suspend_x2go(void); + +gboolean +rda_session_terminate_x2go(void); + +#endif /* RDA_X2GO_H */ diff --git a/tests/Makefile.am b/tests/Makefile.am new file mode 100644 index 0000000..ffb157e --- /dev/null +++ b/tests/Makefile.am @@ -0,0 +1,35 @@ +NULL = + +RDA_LIB = -lrda + +TESTS = +DISTCLEANFILES = +XFAIL_TESTS = + +check_PROGRAMS = + +############################# +# Test Loader +############################# + +check_PROGRAMS += test-x2go + +test_x2go_SOURCES = \ + test-x2go.c + +test_x2go_CFLAGS = \ + -Wall -Werror \ + $(LIBRDA_CFLAGS) \ + $(LIBRDA_TESTS_CFLAGS) \ + -I$(top_srcdir) \ + -DBUILD_DIR="\"$(builddir)\"" \ + $(NULL) + + +test_x2go_LDADD = \ + $(LIBRDA_LIBS) \ + $(LIBRDA_TESTS_LIBS) \ + -L$(top_builddir)/src/.libs \ + $(NULL) + +TESTS += test-x2go diff --git a/tests/test-x2go.c b/tests/test-x2go.c new file mode 100644 index 0000000..bf7b1a6 --- /dev/null +++ b/tests/test-x2go.c @@ -0,0 +1,50 @@ +/* +X2Go tests for librda + +Copyright 2018, Mike Gabriel + + Copyright (C) 2018 Mike Gabriel + All rights reserved. + + The RDA Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + + The RDA Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with the Mate Library; see the file COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include + +void +test_x2go_can_suspend (void) +{ + return; +} + +void +test_rda_x2go_suite (void) +{ + g_test_add_func ("/librda/x2go/can_suspend", test_x2go_can_suspend); + return; +} + +int +main (int argc, char ** argv) +{ + g_test_init (&argc, &argv, NULL); + + test_rda_x2go_suite(); + + g_log_set_always_fatal(G_LOG_LEVEL_CRITICAL); + + return g_test_run(); +} diff --git a/update-po.sh b/update-po.sh new file mode 100755 index 0000000..f432308 --- /dev/null +++ b/update-po.sh @@ -0,0 +1,38 @@ +#!/bin/bash + +# Copyright (C) 2017 by Mike Gabriel +# +# This package is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 3 of the License. +# +# This package is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see + +GETTEXT_DOMAIN=$(cat configure.ac | grep -E "^GETTEXT_PACKAGE=" | sed -e 's/GETTEXT_PACKAGE=//') + +cp po/${GETTEXT_DOMAIN}.pot po/${GETTEXT_DOMAIN}.pot~ + +cd po/ +cat LINGUAS | while read lingua; do + if [ ! -e ${lingua}.po ]; then + msginit --input=${GETTEXT_DOMAIN}.pot --locale=${lingua} --no-translator --output-file=$lingua.po + else + intltool-update --gettext-package ${GETTEXT_DOMAIN} $(basename ${lingua}) + fi + + sed -e 's/\.xml\.in\.h:/.xml.in:/g' \ + -e 's/\.ini\.in\.h:/.ini.in:/g' \ + -e 's/\.xml\.h:/.xml:/g' \ + -e 's/\.ini\.h:/.ini:/g' \ + -i ${lingua}.po + +done +cd - 1>/dev/null + +mv po/${GETTEXT_DOMAIN}.pot~ po/${GETTEXT_DOMAIN}.pot diff --git a/update-pot.sh b/update-pot.sh new file mode 100755 index 0000000..a159435 --- /dev/null +++ b/update-pot.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +set -x + +# Copyright (C) 2017 by Mike Gabriel +# +# This package is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 3 of the License. +# +# This package is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see + +GETTEXT_DOMAIN=$(cat configure.ac | grep -E "^GETTEXT_PACKAGE=" | sed -e 's/GETTEXT_PACKAGE=//') + +cd po/ && intltool-update --gettext-package ${GETTEXT_DOMAIN} --pot && cd - 1>/dev/null + +sed -e 's/\.xml\.in\.h:/.xml.in:/g' \ + -e 's/\.ini\.in\.h:/.ini.in:/g' \ + -e 's/\.xml\.h:/.xml:/g' \ + -e 's/\.ini\.h:/.ini:/g' \ + -i po/${GETTEXT_DOMAIN}.pot -- cgit v1.2.3