[Po4a-commits] po4a/lib/Locale/Po4a Chooser.pm,1.22,1.23
Jordi Vilalta
po4a-devel@lists.alioth.debian.org
Tue, 15 Feb 2005 00:12:12 +0000
Update of /cvsroot/po4a/po4a/lib/Locale/Po4a
In directory haydn:/tmp/cvs-serv5597
Modified Files:
Chooser.pm
Log Message:
Split the list of supported formats in several messages
Index: Chooser.pm
===================================================================
RCS file: /cvsroot/po4a/po4a/lib/Locale/Po4a/Chooser.pm,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- Chooser.pm 14 Feb 2005 23:19:24 -0000 1.22
+++ Chooser.pm 15 Feb 2005 00:12:08 -0000 1.23
@@ -52,14 +52,16 @@
}
sub list {
- warn wrap_msg(gettext("List of valid formats:\n".
- " - kernelhelp: help messages of each kernel compilation option.\n".
-# " - html: HTML documents (EXPERIMENTAL).\n".
- " - man: good old manual page format.\n".
- " - pod: Perl Online Documentation format.\n".
- " - sgml: either debiandoc or docbook DTD.\n".
- " - dia: uncompressed Dia diagrams.\n".
- " - guide: Gentoo Linux's xml documentation format."));
+ warn wrap_msg(gettext("List of valid formats:")
+ ."\n - ".gettext("kernelhelp: Help messages of each kernel compilation option.")
+# ."\n - ".gettext("html: HTML documents (EXPERIMENTAL).")
+ ."\n - ".gettext("man: Good old manual page format.")
+ ."\n - ".gettext("pod: Perl Online Documentation format.")
+ ."\n - ".gettext("sgml: either debiandoc or docbook DTD.")
+ ."\n - ".gettext("dia: uncompressed Dia diagrams.")
+ ."\n - ".gettext("guide: Gentoo Linux's xml documentation format.")
+ ."\n - ".gettext("docbook: Docbook XML.")
+ );
exit shift;
}
##############################################################################