similar to: [PATCH] po-docs: turn language list into LINGUAS file

Displaying 20 results from an estimated 400 matches similar to: "[PATCH] po-docs: turn language list into LINGUAS file"

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 >
2020 Aug 13
15
[v2v PATCH 00/14] Adaptations to Weblate
We are migrating to Weblate (the Fedora instance, in particular) for translations instead of Zanata. Adapt our tooling a bit to the different workflow: - Weblate takes care of updating the po files whenever a new translation catalog is available, so stop doing that on our own: this meant also tweaking the po4a usage for POD documentations, resulting in simpler rules (IMHO) - ensure that the
2020 Aug 12
10
[PATCH 0/9] Adaptations to Weblate
We are migrating to Weblate (the Fedora instance, in particular) for translations instead of Zanata. Adapt our tooling a bit to the different workflow: - Weblate takes care of updating the po files whenever a new translation catalog is available, so stop doing that on our own: this meant also tweaking the po4a usage for POD documentations, resulting in simpler rules (IMHO) - ensure that the
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 add Polish translation diff --git a/po/LINGUAS b/po/LINGUAS index a1bece0..fe71204
2014 May 26
2
more PO files available at the TP
Hi, At the translationproject there are four more languages available than are included in the 1.42.10 tarball: Danish, Esperanto, Malay, and Ukrainian. Please include these in your next release. Attached patch adds the missing language codes to the po/LINGUAS file. The easiest way to fetch the missing files (and the latest updates) is to run: rsync -Lrtvz
2015 Oct 02
2
[PATCH] build: ensure .pot and .pod files for docs are up-to-date
Traverse the po-docs directory before the subdirectories with translated documentations, so we can make sure that libguestfs-docs.pot and the translated .pod files have been generated. As a consequence of that, when generating the translated manpages for documentations, all the needed .pod files should be already there. --- po-docs/Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1
2009 Aug 05
0
[PATCH] build: generate some just-removed files in po/
My change that removed most of po/* should have included this patch to generate two required files. Without this change, "make -C po" fails like this: make: Entering directory `/o/libguestfs/po' make: *** No rule to make target `/config.status', needed by `Makefile'. Stop. ... Once you've pulled this change, you will need to run ./bootstrap manually to make
2015 Oct 02
2
Re: [PATCH] build: ensure .pot and .pod files for docs are up-to-date
On Friday 02 October 2015 12:19:16 Richard W.M. Jones wrote: > On Fri, Oct 02, 2015 at 11:48:46AM +0200, Pino Toscano wrote: > > Traverse the po-docs directory before the subdirectories with translated > > documentations, so we can make sure that libguestfs-docs.pot and the > > translated .pod files have been generated. As a consequence of that, > > when generating the
2014 May 29
0
Re: more PO files available at the TP
On Mon, May 26, 2014 at 09:20:11PM +0200, Benno Schulenberg wrote: > > At the translationproject there are four more languages available > than are included in the 1.42.10 tarball: Danish, Esperanto, Malay, > and Ukrainian. Please include these in your next release. I deliberately didn't include some of these because the number of translated messages were pathetic. Danish has
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
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; \ +
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
2010 Sep 02
2
[PATCH] Allow manual pages and POD files to be translated.
You need to install po4a (in Fedora) to test this. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones virt-df lists disk usage of guests without needing to install any software inside the virtual machine. Supports Linux and Windows. http://et.redhat.com/~rjones/virt-df/ -------------- next part -------------- >From 7ca0058ecf24b6963771d0c39fd5e2f36874eb38
2015 Oct 22
2
[PATCH 1/2] build: isolate common po-docs logic
Move most of the content of either po-docs/ja/Makefile.am or po-docs/uk/Makefile.am to po-docs/language.mk, and use it exclusively instead of the former contents of the languange-specific Makefile.am. This way, either adding a new documentation or enabling a new language will not require copying over the same make code. --- po-docs/ja/Makefile.am | 174 +-------------------------------------------
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
2020 Aug 13
0
[v2v PATCH 14/14] po-docs: update translations from catalog templates
Run a msgmerge of the translations with the up-to-date template. Do it manually before adding virt-v2v to Weblate, so we can edit them (e.g. removing the obsolete messages, which are largely from libguestfs sources). --- This patch was truncated for mailing list posting. Originally it was ~13M. po-docs/cs.po | 3960 +- po-docs/de.po | 9299 +--- po-docs/en_GB.po | 62274
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
2015 Oct 02
0
Re: [PATCH] build: ensure .pot and .pod files for docs are up-to-date
On Fri, Oct 02, 2015 at 11:48:46AM +0200, Pino Toscano wrote: > Traverse the po-docs directory before the subdirectories with translated > documentations, so we can make sure that libguestfs-docs.pot and the > translated .pod files have been generated. As a consequence of that, > when generating the translated manpages for documentations, all the > needed .pod files should be
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)
2015 Oct 02
0
Re: [PATCH] build: ensure .pot and .pod files for docs are up-to-date
On Fri, Oct 02, 2015 at 01:31:30PM +0200, Pino Toscano wrote: > On Friday 02 October 2015 12:19:16 Richard W.M. Jones wrote: > > On Fri, Oct 02, 2015 at 11:48:46AM +0200, Pino Toscano wrote: > > > Traverse the po-docs directory before the subdirectories with translated > > > documentations, so we can make sure that libguestfs-docs.pot and the > > > translated