fix rt-session-viewer mucking up upgrades
[freeside.git] / rt / sbin / merge-rosetta.pl
1 #!/usr/bin/perl -w
2 # BEGIN BPS TAGGED BLOCK {{{
3
4 # COPYRIGHT:
5
6 # This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC
7 #                                          <jesse@bestpractical.com>
8
9 # (Except where explicitly superseded by other copyright notices)
10
11
12 # LICENSE:
13
14 # This work is made available to you under the terms of Version 2 of
15 # the GNU General Public License. A copy of that license should have
16 # been provided with this software, but in any event can be snarfed
17 # from www.gnu.org.
18
19 # This work is distributed in the hope that it will be useful, but
20 # WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22 # General Public License for more details.
23
24 # You should have received a copy of the GNU General Public License
25 # along with this program; if not, write to the Free Software
26 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
27 # 02110-1301 or visit their web page on the internet at
28 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
29
30
31 # CONTRIBUTION SUBMISSION POLICY:
32
33 # (The following paragraph is not intended to limit the rights granted
34 # to you to modify and distribute this software under the terms of
35 # the GNU General Public License and is only of importance to you if
36 # you choose to contribute your changes and enhancements to the
37 # community by submitting them to Best Practical Solutions, LLC.)
38
39 # By intentionally submitting any modifications, corrections or
40 # derivatives to this work, or any other work intended for use with
41 # Request Tracker, to Best Practical Solutions, LLC, you confirm that
42 # you are the copyright holder for those contributions and you grant
43 # Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
44 # royalty-free, perpetual, license to use, copy, create derivative
45 # works based on those contributions, and sublicense and distribute
46 # those contributions and any derivatives thereof.
47
48 # END BPS TAGGED BLOCK }}}
49 use strict;
50 use LWP::Simple 'getstore';
51 use Locale::PO;
52 use Locale::Maketext::Extract;
53 use Archive::Extract;
54 use File::Temp;
55 use File::Copy 'copy';
56
57 my $url = shift or die 'must provide rosseta download url or directory';
58
59 my $dir;
60
61 if ($url =~ m/http/) {
62     $dir = File::Temp::tempdir;
63     my ($fname) = $url =~ m{([^/]+)$};
64     print "Downloading $url\n";
65     getstore($url => "$dir/$fname");
66     print "Extracting $dir/$fname\n";
67     my $ae = Archive::Extract->new(archive => "$dir/$fname");
68     my $ok = $ae->extract( to => $dir );
69 }
70 else {
71     $dir = $url;
72 }
73
74 Locale::Maketext::Lexicon::set_option('use_fuzzy', 1);
75 Locale::Maketext::Lexicon::set_option('allow_empty', 1);
76
77 for (<$dir/rt/*.po>) {
78     my ($name) = m/([\w_]+)\.po/;
79     my $fname = "lib/RT/I18N/$name";
80     my $tmp = File::Temp->new;
81
82     print "$_ -> $fname.po\n";
83
84     # retain the "NOT FOUND IN SOURCE" entries
85     system("sed -e 's/^#~ //' $_ > $tmp");
86     my $ext = Locale::Maketext::Extract->new;
87     $ext->read_po($tmp);
88
89     my $po_orig = Locale::PO->load_file_ashash("$fname.po");
90     # don't want empty vales to override ours.
91     # don't want fuzzy flag as when uploading to rosetta again it's not accepted by rosetta.
92     foreach my $msgid ($ext->msgids) {
93         my $entry = $po_orig->{Locale::PO->quote($msgid)} or next;
94         my $msgstr = $entry->dequote($entry->{msgstr}) or next;
95         $ext->set_msgstr($msgid, $msgstr)
96             if $ext->msgstr($msgid) eq '' && $msgstr;
97     }
98     $ext->write_po("$fname.po");
99 }
100
101 print "Merging new strings\n";
102 system("$^X sbin/extract-message-catalog");