source: osm/applications/editors/josm/i18n/launchpad.pl@ 25523

Last change on this file since 25523 was 25523, checked in by stoecker, 13 years ago

i18n update

  • Property svn:executable set to *
File size: 740 bytes
Line 
1#!/usr/bin/perl -w
2
3use strict;
4
5
6if($#ARGV != 0)
7{
8 warn "URL not given."
9}
10else
11{
12 mkdir "new";
13 die "Could not change into new data dir." if !chdir "new";
14 system "wget $ARGV[0]";
15 system "tar -xf laun*";
16 chdir "..";
17 foreach my $name (split("\n", `find new -name "*.po"`))
18 {
19 my $a=$name;
20 $a =~ s/.*-//;
21 system "mv -v $name po/$a" if -f "po/$a";
22 # activate in case we need a "clean all upstream texts launchpad upload"
23 # system "touch po/$a" if ! -f "po/$a";
24 }
25}
26system "ant";
27my $outdate = `date -u +"%Y-%m-%dT%H_%M_%S"`;
28chomp $outdate;
29mkdir "josm";
30system "cp po/*.po po/josm.pot josm";
31system "tar -czf launchpad_upload_josm_$outdate.tgz josm";
32system "rm -rv josm new";
Note: See TracBrowser for help on using the repository browser.