Bug 21156: Add plural translation capabilities to JS files
[koha.git] / misc / translator / po2json
blob2f534bead39aab0591371c67fe1d0a70ef70798e
1 #!/usr/bin/env perl
2 # PODNAME: po2json
3 # ABSTRACT: Command line tool for converting a po file into a Gettext.js compatible json dataset
5 # Copyright (C) 2008, Joshua I. Miller E<lt>unrtst@cpan.orgE<gt>, all
6 # rights reserved.
8 # This program is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU Library General Public License as published
10 # by the Free Software Foundation; either version 2, or (at your option)
11 # any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 # Library General Public License for more details.
18 # You should have received a copy of the GNU Library General Public
19 # License along with this program; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
21 # USA.
24 use strict;
25 use JSON 2.53;
26 use Locale::PO 0.24;
27 use File::Basename qw(basename);
29 my $gettext_context_glue = "\004";
31 sub usage {
32 return "$0 {-p} {file.po} > {outputfile.json}
33 -p : do pretty-printing of json data\n";
36 &main;
38 sub main
40 my ($src_fh, $src);
42 my $pretty = 0;
43 if ($ARGV[0] =~ /^--?p$/) {
44 shift @ARGV;
45 $pretty = 1;
48 if (length($ARGV[0]))
50 if ($ARGV[0] =~ /^-h/) {
51 print &usage;
52 exit 1;
55 unless (-r $ARGV[0]) {
56 print "ERROR: Unable to read file [$ARGV[0]]\n";
57 die &usage;
60 $src = $ARGV[0];
61 } else {
62 die &usage;
65 # we'll be building this data struct
66 my $json = {};
68 my $plural_form_count;
69 # get po object stack
70 my $pos = Locale::PO->load_file_asarray($src) or die "Can't parse po file [$src].";
73 foreach my $po (@$pos)
75 my $qmsgid1 = $po->msgid;
76 my $msgid1 = $po->dequote( $qmsgid1 );
78 # on the header
79 if (length($msgid1) == 0)
81 my $qmsgstr = $po->msgstr;
82 my $cur = $po->dequote( $qmsgstr );
83 my %cur;
84 foreach my $h (split(/\n/, $cur))
86 next unless length($h);
87 my @h = split(':', $h, 2);
89 if (length($cur{$h[0]})) {
90 warn "SKIPPING DUPLICATE HEADER LINE: $h\n";
91 } elsif ($h[0] =~ /#-#-#-#-#/) {
92 warn "SKIPPING ERROR MARKER IN HEADER: $h\n";
93 } elsif (@h == 2) {
94 $cur{$h[0]} = $h[1];
95 } else {
96 warn "PROBLEM LINE IN HEADER: $h\n";
97 $cur{$h} = '';
101 # init header ref
102 $$json{''} ||= {};
104 # populate header ref
105 foreach my $key (keys %cur) {
106 $$json{''}{$key} = length($cur{$key}) ? $cur{$key} : '';
109 # save plural form count
110 if ($$json{''}{'Plural-Forms'}) {
111 my $t = $$json{''}{'Plural-Forms'};
112 $t =~ s/^\s*//;
113 if ($t =~ /nplurals=(\d+)/) {
114 $plural_form_count = $1;
115 } else {
116 die "ERROR parsing plural forms header [$t]\n";
118 } else {
119 warn "NO PLURAL FORM HEADER FOUND - DEFAULTING TO 2\n";
120 # just default to 2
121 $plural_form_count = 2;
124 # on a normal msgid
125 } else {
126 my $qmsgctxt = $po->msgctxt;
127 my $msgctxt = $po->dequote($qmsgctxt) if $qmsgctxt;
129 # build the new msgid key
130 my $msg_ctxt_id = defined($msgctxt) ? join($gettext_context_glue, ($msgctxt, $msgid1)) : $msgid1;
132 # build translation side
133 my @trans;
135 # msgid plural side
136 my $qmsgid_plural = $po->msgid_plural;
137 my $msgid2 = $po->dequote( $qmsgid_plural ) if $qmsgid_plural;
138 push(@trans, $msgid2);
140 # translated string
141 # this shows up different if we're plural
142 if (defined($msgid2) && length($msgid2))
144 my $plurals = $po->msgstr_n;
145 for (my $i=0; $i<$plural_form_count; $i++)
147 my $qstr = ref($plurals) ? $$plurals{$i} : undef;
148 my $str = $po->dequote( $qstr ) if $qstr;
149 push(@trans, $str);
152 # singular
153 } else {
154 my $qmsgstr = $po->msgstr;
155 my $msgstr = $po->dequote( $qmsgstr ) if $qmsgstr;
156 push(@trans, $msgstr);
159 $$json{$msg_ctxt_id} = \@trans;
164 my $jsonobj = new JSON;
165 my $basename = basename($src);
166 $basename =~ s/\.pot?$//;
167 if ($pretty)
169 print $jsonobj->pretty->encode( { $basename => $json });
170 } else {
171 print $jsonobj->encode($json);
175 __END__
177 =pod
179 =head1 NAME
181 po2json - Command line tool for converting a po file into a Gettext.js compatible json dataset
183 =head1 VERSION
185 version 0.019
187 =head1 SYNOPSIS
189 po2json /path/to/domain.po > domain.json
191 =head1 DESCRIPTION
193 This takes a PO file, as is created from GNU Gettext's xgettext, and converts it into a JSON file.
195 The output is an annonymous associative array. So, if you plan to load this via a <script> tag, more processing will be require (the output from this program must be assigned to a named javascript variable). For example:
197 echo -n "var json_locale_data = " > domain.json
198 po2json /path/to/domain.po >> domain.json
199 echo ";" >> domain.json
201 =head1 NAME
203 po2json - Convert a Uniforum format portable object file to javascript object notation.
205 =head1 OPTIONS
207 -p : pretty-print the output. Makes the output more human-readable.
209 =head1 BUGS
211 Locale::PO has a potential bug (I don't know if this actually causes a problem or not). Given a .po file with an entry like:
213 msgid ""
214 "some string"
215 msgstr ""
217 When $po->dump is run on that entry, it will output:
219 msgid "some string"
220 msgstr ""
222 The above is removing the first linebreak. I don't know if that is significant. If so, we'll have to rewrite using a different parser (or include our own parser).
224 =head1 REQUIRES
226 Locale::PO
227 JSON
229 =head1 SEE ALSO
231 Locale::PO
232 Gettext.js
234 =head1 AUTHOR
236 Copyright (C) 2008, Joshua I. Miller E<lt>unrtst@cpan.orgE<gt>, all rights reserved. See the source code for details.
238 =head1 AUTHOR
240 Torsten Raudssus <torsten@raudss.us>
242 =head1 COPYRIGHT AND LICENSE
244 This software is copyright (c) 2012 by DuckDuckGo, Inc. L<http://duckduckgo.com/>, Torsten Raudssus <torsten@raudss.us>.
246 This is free software; you can redistribute it and/or modify it under
247 the same terms as the Perl 5 programming language system itself.
249 =cut