search for: lingua

Displaying 20 results from an estimated 63 matches for "lingua".

Did you mean: lingu
2020 Aug 13
2
[PATCH] po-docs: turn language list into LINGUAS file
Use a LINGUAS file with the list of available translations instead of defining them in a make variable. This way Weblate will be able to update the list using an available addon, and we do not need to list those not built. Accordingly, rename the variable with built languages to 'linguas_translated'....
2020 Aug 13
0
Re: [PATCH] po-docs: turn language list into LINGUAS file
On Thursday, 13 August 2020 12:20:01 CEST Pino Toscano wrote: > Use a LINGUAS file with the list of available translations instead of > defining them in a make variable. This way Weblate will be able to > update the list using an available addon, and we do not need to list > those not built. > > Accordingly, rename the variable with built languages to > &...
2013 Dec 07
2
[PATCH 1/2] Fix installing man-pages from out-of-tree build
...ions(+), 6 deletions(-) diff --git a/po-docs/ja/Makefile.am b/po-docs/ja/Makefile.am index da1bcc3..820f91a 100644 --- a/po-docs/ja/Makefile.am +++ b/po-docs/ja/Makefile.am @@ -160,8 +160,8 @@ $(podfiles): # XXX Can automake do this properly? install-data-hook: $(MKDIR_P) $(DESTDIR)$(mandir)/$(LINGUA)/man1 - $(INSTALL) -m 0644 *.1 $(DESTDIR)$(mandir)/$(LINGUA)/man1 + $(INSTALL) -m 0644 $(srcdir)/*.1 $(DESTDIR)$(mandir)/$(LINGUA)/man1 $(MKDIR_P) $(DESTDIR)$(mandir)/$(LINGUA)/man3 - $(INSTALL) -m 0644 *.3 $(DESTDIR)$(mandir)/$(LINGUA)/man3 + $(INSTALL) -m 0644 $(srcdir)/*.3 $(DESTDIR)$(mandir)/...
2020 Aug 13
15
[v2v PATCH 00/14] Adaptations to Weblate
...operly locate the sources - extract also C sources - regenerate the catalogs - drop references to Zanata - update the translations to do edits before handing them over to Weblate - remove empty translations (v2v is translated less than libguestfs) Pino Toscano (14): po: turn language list into LINGUAS file po-docs: turn language list into LINGUAS file po: remove rules for pot/po update podfiles: add missing documentation po-docs: add missing dependencies for virt-v2v.1 po-docs: split pot and po handling po: fix references to OCaml sources po-docs: fix references to sources Remov...
2007 Dec 16
0
po/LINGUAS po/pl.po
po/LINGUAS | 2 +- po/pl.po | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+), 1 deletion(-) New commits: commit 54a78d5fda9973f9db36d164f09746fe18607043 Author: Jakub Bogusz <qboosh at pld-linux.org> Date: Sun Dec 16 22:28:25 2007 +0100...
2015 Oct 22
2
[PATCH 1/2] build: isolate common po-docs logic
...,6 @@ # Note that each Makefile.am in po-docs/$lang/Makefile.am should be # identical. If you create a new $lang.po, create the $lang/ # subdirectory and copy the Makefile.am from an existing language. +# All the actual logic should be in language.mk. -include $(top_srcdir)/subdir-rules.mk - -LINGUA = $(shell basename -- `pwd`) - -CLEANFILES = *.1 *.3 *.5 - -# Before 1.23.23, the old Perl tools were called *.pl. -CLEANFILES += *.pl - -MANPAGES = \ - guestfish.1 \ - guestfs.3 \ - guestfs-erlang.3 \ - guestfs-examples.3 \ - guestfs-faq.1 \ - guestfs-golang.3 \ - guestfs-java.3 \ - guestfs-lua.3...
2020 Aug 12
10
[PATCH 0/9] Adaptations to Weblate
...rules (IMHO) - ensure that the references to sources files in translation catalogs are relative to the top-level directory, so Weblate (and users too, actually) can properly locate the sources - regenerate the catalogs - drop references to Zanata Pino Toscano (9): po: turn language list into LINGUAS file po: remove rules for pot/po update po-docs: add missing dependencies for guestfish.1 podfiles: add missing documentation po-docs: split pot and po handling po: fix references to OCaml sources po-docs: fix references to sources po/po-docs: update catalog templates Remove refere...
2015 Oct 02
2
[PATCH] build: ensure .pot and .pod files for docs are up-to-date
...am index a274898..bf10558 100644 --- a/po-docs/Makefile.am +++ b/po-docs/Makefile.am @@ -41,7 +41,9 @@ CLEANFILES = po4a.conf # language directory contains a Makefile.am that we need to keep up to # date (note each $lang/Makefile.am should be identical). # XXX Is there a better way? -SUBDIRS = $(linguas) +# The current directory is traversed first, to make sure that .pot and .pod +# files are up-to-date and generated before applying translations in subdirs. +SUBDIRS = . $(linguas) update-po: libguestfs-docs.pot @@ -88,3 +90,5 @@ podfiles: Makefile for f in `cat $(top_srcdir)/po/POTFILES-pl...
2010 Sep 02
2
[PATCH] Allow manual pages and POD files to be translated.
...e +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +# XXX The use of po4a is naive here. Also we should integrate this +# into the po/ directory and the translations into the usual +# libguestfs.pot file. + +# Languages. +LINGUAS = ja + +EXTRA_DIST = \ + libguestfs-docs.pot \ + $(LINGUAS:%=%.po) + +CLEANFILES = po4a.conf + +# Build the final man pages from the translated POD files. Each +# language directory contains a Makefile.am that we need to keep up to +# date (note each $lang/Makefile.am should be identical). +# XXX...
2015 Oct 02
2
Re: [PATCH] build: ensure .pot and .pod files for docs are up-to-date
...gt; > +++ b/po-docs/Makefile.am > > @@ -41,7 +41,9 @@ CLEANFILES = po4a.conf > > # language directory contains a Makefile.am that we need to keep up to > > # date (note each $lang/Makefile.am should be identical). > > # XXX Is there a better way? > > -SUBDIRS = $(linguas) > > +# The current directory is traversed first, to make sure that .pot and .pod > > +# files are up-to-date and generated before applying translations in subdirs. > > +SUBDIRS = . $(linguas) > > > > update-po: libguestfs-docs.pot > > > > @@ -88,3 +9...
2012 Jul 13
1
Need Suggestions for Sentence Breaking Implementation
...w much about Perl) , to use Perl Based Regular Expressions and code them in C++ using PCRE. The wikipedia page above mentions some Perl Compatible Regular Expressions for sentence breaking. Other that that, some one also made a suggestion to use this Perl module < http://search.cpan.org/~achimru/Lingua-Sentence-1.00/lib/Lingua/Sentence.pm> and code it up it C++ using PCRE. 6. There are also a lot of research papers written for this problem. Looking forward for quick guidance and suggestions. Thanks, Sehaj -------------- next part -------------- An HTML attachment was scrubbed... URL: <htt...
2009 Sep 02
2
[PATCH] internationalisation: Replace autopoint infrastructure with libintl-perl
I noticed that virt-v2v, which is written exclusively in perl, failed to generate virt-v2v.pot. After much head scratching I also noticed that libguestfs.pot didn't include any messages from perl sources. Some reading of libintl-perl shows that a somewhat more complicated xgettext command line is required, as it doesn't understand Locale::TextDomain syntax by default. After a little more
2015 Oct 02
0
Re: [PATCH] build: ensure .pot and .pod files for docs are up-to-date
...t; --- a/po-docs/Makefile.am > +++ b/po-docs/Makefile.am > @@ -41,7 +41,9 @@ CLEANFILES = po4a.conf > # language directory contains a Makefile.am that we need to keep up to > # date (note each $lang/Makefile.am should be identical). > # XXX Is there a better way? > -SUBDIRS = $(linguas) > +# The current directory is traversed first, to make sure that .pot and .pod > +# files are up-to-date and generated before applying translations in subdirs. > +SUBDIRS = . $(linguas) > > update-po: libguestfs-docs.pot > > @@ -88,3 +90,5 @@ podfiles: Makefile > fo...
2009 Aug 05
0
[PATCH] build: generate some just-removed files in po/
...nually to make it take effect. >From 6d9d5a54f871c229a5d8b65edd5ddf25850ce713 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering at redhat.com> Date: Wed, 5 Aug 2009 08:01:38 -0400 Subject: [PATCH] build: generate some just-removed files in po/ * bootstrap: Generate po/Makevars and po/LINGUAS. --- bootstrap | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/bootstrap b/bootstrap index e4ddf85..d46b3be 100755 --- a/bootstrap +++ b/bootstrap @@ -60,6 +60,21 @@ case ${GNULIB_SRCDIR--} in ;; esac +ls po/*.po 2>/dev/null | sed 's|.*/||; s|\....
2009 Aug 05
2
[PATCH] Add some newly-untracked files to .gitignore
--- .gitignore | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index 147e1cb..dcea811 100644 --- a/.gitignore +++ b/.gitignore @@ -154,10 +154,21 @@ po/POTFILES po/remove-potcdate.sed po/stamp-it po/stamp-po +po/LINGUAS +po/Makefile.in.in +po/Makevars +po/Rules-quot +po/boldquot.sed +po/en at boldquot.header +po/en at quot.header +po/insert-header.sin +po/quot.sed +po/remove-potcdate.sin python/bindtests.py python/guestfs.py python/guestfs-py.c python/guestfs.pyc +regressions/test1.img ruby/bindtests.rb rub...
2010 Oct 29
1
[PATCH] Fix build of po-docs during initial build
Building po-docs currently fails because po-docs/ja/Makefile.am requires files which are generated by po-docs/Makefile.am, which the latter does not create by default. This patch doesn't fix the dependencies properly, but fixes the problem by ensuring that po-docs/Makefile.am will build all LINGUA deps by default. --- po-docs/Makefile.am | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Fix-build-of-po-docs-during-initial-build.patch Type: text/x-patch Size: 308 bytes Desc: not available URL:...
2005 Mar 17
0
translation R into Russian
Hello, R developers, I would like to contribute to the R project: I prepared Russian .po-files (and translated a few lines). List of changes: * files *ru.po are generated and a few lines are translated; * files ./po/LINGUAS and ./po/THANKS are modified. I am not sure whether to post the .diff- and archive files here would be such a great idea, so I put them on-line: (1) https://dig.yi.org/tmp/R/diff.-ruN.against-33659.diff.gz (2) https://dig.yi.org/tmp/R/new-files-for-33659.tar.gz First file is the result of `...
2012 Oct 31
1
[PATCH] message catalogs don't need to be executable
--- po/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/Makefile.am b/po/Makefile.am index 141896a..f401a6f 100644 --- a/po/Makefile.am +++ b/po/Makefile.am @@ -97,7 +97,7 @@ install-data-hook: $(GMOFILES) for lang in $(linguas); do \ d=$(DESTDIR)$(langinstdir)/$$lang/LC_MESSAGES; \ mkdir -p $$d; \ - install -m 0755 $$lang.gmo $$d/$(DOMAIN).mo; \ + install -m 0644 $$lang.gmo $$d/$(DOMAIN).mo; \ done .PRECIOUS: $(DOMAIN).pot $(POFILES) -- 1.7.10.4
2015 Oct 02
0
Re: [PATCH] build: ensure .pot and .pod files for docs are up-to-date
...kefile.am > > > @@ -41,7 +41,9 @@ CLEANFILES = po4a.conf > > > # language directory contains a Makefile.am that we need to keep up to > > > # date (note each $lang/Makefile.am should be identical). > > > # XXX Is there a better way? > > > -SUBDIRS = $(linguas) > > > +# The current directory is traversed first, to make sure that .pot and .pod > > > +# files are up-to-date and generated before applying translations in subdirs. > > > +SUBDIRS = . $(linguas) > > > > > > update-po: libguestfs-docs.pot > &gt...
2008 Apr 10
3
Souffleur goals
Silvia, I intend to release a binary on the 26th at most. Supporting at least 2 subtitle formats. Yes, I guess it would be nice to have a page and wiki at a place related to other xiph projects but if that is not possible, I have my own provider or even SF I can put things on. Other then that, I promise that on the next commit, a README file will be commited as well. Mesquita