]> git.proxmox.com Git - proxmox-i18n.git/blame - jsgettext.pl
js generator: indentation and style fixes
[proxmox-i18n.git] / jsgettext.pl
CommitLineData
3f7b1143
DM
1#!/usr/bin/perl
2
3use strict;
e6fbfe8b
TL
4use warnings;
5
6use Encode;
7use Getopt::Std;
8use Locale::PO;
3f7b1143 9use Time::Local;
e6fbfe8b 10
3f7b1143 11use PVE::Tools;
3f7b1143
DM
12
13my $options = {};
14
1bddddef 15getopts('o:b:p:', $options) ||
3f7b1143
DM
16 die "unable to parse options\n";
17
18my $dirs = [@ARGV];
19
20die "no directory specified\n" if !scalar(@$dirs);
21
22foreach my $dir (@$dirs) {
23 die "no such directory '$dir'\n" if ! -d $dir;
24}
25
1bddddef
DM
26my $projectId = $options->{p} || die "missing project ID\n";
27
3f7b1143
DM
28my $basehref = {};
29if (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
49my $sources = [];
50
51my $findcmd = [['find', @$dirs, '-name', '*.js'],['sort']];
52PVE::Tools::run_command($findcmd, outfunc => sub {
53 my $line = shift;
54 print "F: $line\n";
55 push @$sources, $line;
56});
57
58my $header = <<__EOD;
59Proxmox message catalog.
641582bd
TL
60
61Copyright (C) Proxmox Server Solutions GmbH
62
63This file is free software: you can redistribute it and\/or modify it under the terms of the GNU
64Affero General Public License as published by the Free Software Foundation, either version 3 of the
65License, or (at your option) any later version.
66-- Proxmox Support Team <support\@proxmox.com>
3f7b1143
DM
67__EOD
68
69my $ctime = scalar localtime;
70
71my $href = {};
d310270d
TL
72my $po = Locale::PO->new(
73 -msgid => '',
74 -comment => $header,
75 -fuzzy => 1,
76 -msgstr => "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);
3f7b1143
DM
86
87$href->{''} = $po;
88
89sub extract_msg {
90 my ($filename, $linenr, $line) = @_;
91
92 my $count = 0;
93
94 while(1) {
95 my $text;
96 if ($line =~ m/\Wgettext\s*\((("((?:[^"\\]++|\\.)*+)")|('((?:[^'\\]++|\\.)*+)'))\)/g) {
97 $text = $3 || $5;
98 }
99
100 last if !$text;
101
102 if ($basehref->{$text}) {
103 return;
104 }
105
106 $count++;
107
108 my $ref = "$filename:$linenr";
109
110 if (my $po = $href->{$text}) {
111 $po->reference($po->reference() . " $ref");
d310270d
TL
112 } else {
113 my $po = Locale::PO->new(-msgid=> $text, -reference=> $ref, -msgstr=> '');
3f7b1143
DM
114 $href->{$text} = $po;
115 }
116 };
117
118 die "can't extract gettext message in '$filename' line $linenr\n"
119 if !$count;
120}
121
122foreach my $s (@$sources) {
d310270d
TL
123 open(my $SRC_FH, '<', $s) || die "unable to open file '$s' - $!\n";
124 while(defined(my $line = <$SRC_FH>)) {
1c532813 125 next if $line =~ m/^\s*function gettext/;
3f7b1143
DM
126 if ($line =~ m/gettext\s*\(/) {
127 extract_msg($s, $., $line);
128 }
129 }
d310270d 130 close($SRC_FH);
3f7b1143
DM
131}
132
133my $filename = $options->{o} // "messages.pot";
134Locale::PO->save_file_fromhash($filename, $href);
135