]> git.proxmox.com Git - proxmox-i18n.git/blob - jsgettext.pl
0dc81edba1f6fc9f29a11e16daa8ccf4e6a16ee2
[proxmox-i18n.git] / jsgettext.pl
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Encode;
7 use Getopt::Std;
8 use Locale::PO;
9 use Time::Local;
10
11 use PVE::Tools;
12
13 my $options = {};
14
15 getopts('o:b:p:', $options) ||
16 die "unable to parse options\n";
17
18 my $dirs = [@ARGV];
19
20 die "no directory specified\n" if !scalar(@$dirs);
21
22 foreach my $dir (@$dirs) {
23 die "no such directory '$dir'\n" if ! -d $dir;
24 }
25
26 my $projectId = $options->{p} || die "missing project ID\n";
27
28 my $basehref = {};
29 if (my $base = $options->{b}) {
30 my $aref = Locale::PO->load_file_asarray($base) ||
31 die "unable to load '$base'\n";
32
33 my $charset;
34 my $hpo = $aref->[0] || die "no header";
35 my $header = $hpo->dequote($hpo->msgstr);
36 if ($header =~ m|^Content-Type:\s+text/plain;\s+charset=(\S+)$|im) {
37 $charset = $1;
38 } else {
39 die "unable to get charset\n" if !$charset;
40 }
41
42 foreach my $po (@$aref) {
43 my $qmsgid = decode($charset, $po->msgid);
44 my $msgid = $po->dequote($qmsgid);
45 $basehref->{$msgid} = $po;
46 }
47 }
48
49 my $sources = [];
50
51 my $findcmd = [['find', @$dirs, '-name', '*.js'],['sort']];
52 PVE::Tools::run_command($findcmd, outfunc => sub {
53 my $line = shift;
54 print "F: $line\n";
55 push @$sources, $line;
56 });
57
58 my $header = <<__EOD;
59 Proxmox message catalog.
60
61 Copyright (C) Proxmox Server Solutions GmbH
62
63 This file is free software: you can redistribute it and\/or modify it under the terms of the GNU
64 Affero General Public License as published by the Free Software Foundation, either version 3 of the
65 License, or (at your option) any later version.
66 -- Proxmox Support Team <support\@proxmox.com>
67 __EOD
68
69 my $ctime = scalar localtime;
70
71 my $href = {};
72 my $po = new Locale::PO(-msgid=> '',
73 -comment=> $header,
74 -fuzzy=> 1,
75 -msgstr=>
76 "Project-Id-Version: $projectId\n" .
77 "Report-Msgid-Bugs-To: <support\@proxmox.com>\n" .
78 "POT-Creation-Date: $ctime\n" .
79 "PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n" .
80 "Last-Translator: FULL NAME <EMAIL\@ADDRESS>\n" .
81 "Language-Team: LANGUAGE <support\@proxmox.com>\n" .
82 "MIME-Version: 1.0\n" .
83 "Content-Type: text/plain; charset=UTF-8\n" .
84 "Content-Transfer-Encoding: 8bit\n");
85
86 $href->{''} = $po;
87
88 sub extract_msg {
89 my ($filename, $linenr, $line) = @_;
90
91 my $count = 0;
92
93 while(1) {
94 my $text;
95 if ($line =~ m/\Wgettext\s*\((("((?:[^"\\]++|\\.)*+)")|('((?:[^'\\]++|\\.)*+)'))\)/g) {
96 $text = $3 || $5;
97 }
98
99 last if !$text;
100
101 if ($basehref->{$text}) {
102 return;
103 }
104
105 $count++;
106
107 my $ref = "$filename:$linenr";
108
109 if (my $po = $href->{$text}) {
110 $po->reference($po->reference() . " $ref");
111 } else {
112 my $po = new Locale::PO(-msgid=> $text, -reference=> $ref, -msgstr=> '');
113 $href->{$text} = $po;
114 }
115 };
116
117 die "can't extract gettext message in '$filename' line $linenr\n"
118 if !$count;
119 }
120
121 foreach my $s (@$sources) {
122 open(SRC, $s) || die "unable to open file '$s' - $!\n";
123 while(defined(my $line = <SRC>)) {
124 next if $line =~ m/^\s*function gettext/;
125 if ($line =~ m/gettext\s*\(/) {
126 extract_msg($s, $., $line);
127 }
128 }
129 close(SRC);
130 }
131
132 my $filename = $options->{o} // "messages.pot";
133 Locale::PO->save_file_fromhash($filename, $href);
134