/usr/bin/dh_translations is in dh-translations 138.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 | #!/usr/bin/perl -w
=head1 NAME
dh_translations - perform common translation related operations
=cut
use strict;
use File::Find;
use File::Which;
use Debian::Debhelper::Dh_Lib;
=head1 SYNOPSIS
B<dh_translations> [S<B<debhelper options>>]
=head1 DESCRIPTION
dh_translations is a debhelper program to perform common translation
related operations during package build:
=over 4
=item
Try to build a current PO template.
=item
Remove inline translations from *.desktop, *.server, *.schemas, and
*.policy files and replace them with a link to the gettext domain, so that
strings in them will get translated at runtime from *.mo files. This allows
language packs to ship updated translations.
=back
=cut
my ($domain, $use_intltool, $meson_builddir);
# figure out intltool usage and domain
sub check_buildsystem {
$use_intltool = 0;
if (open MAKEFILE, 'po/Makefile') {
while (<MAKEFILE>) {
$use_intltool = 1 if /intltool/;
$domain = $1 if /^GETTEXT_PACKAGE\s*=\s*(\S*)/;
}
close (MAKEFILE);
}
if (!$domain && open CFGFILE, 'configure.ac') {
while (<CFGFILE>) {
$use_intltool = 1 if /INTLTOOL/;
$domain = $1 if /^GETTEXT_PACKAGE\s*=\s*(\S*)/ or
/^AC_SUBST\s*\(\s*\[GETTEXT_PACKAGE\]\s*,\s*\[(\S*)\]/;
}
close (CFGFILE);
}
if (!$domain && open CFGFILE, 'configure.in') {
while (<CFGFILE>) {
$use_intltool = 1 if /INTLTOOL/;
$domain = $1 if /^GETTEXT_PACKAGE\s*=\s*(\S*)/;
}
close (CFGFILE);
}
if (open CFGFILE, 'config.h') {
while (<CFGFILE>) {
$domain = $1 if /^#define GETTEXT_PACKAGE\s*"(\S*)"/;
}
close (CFGFILE);
}
if (!$domain && open CFGFILE, 'setup.cfg') {
while (<CFGFILE>) {
$domain = $1 if /^\s*domain\s*=\s*(\S*)/;
}
close (CFGFILE);
}
foreach my $ml ('CMakeLists.txt', 'po/CMakeLists.txt') {
if (!$domain && open CMAKELISTSFILE, $ml) {
while (<CMAKELISTSFILE>) {
if ( -e 'po/POTFILES.in' ) {
$use_intltool = 1;
}
$domain = $1 if /^set\s*\(GETTEXT_PACKAGE\s*"?([^\s"]*)"?\s*\)/;
}
close (CMAKELISTSFILE)
}
}
if (-e "meson.build" && which 'meson') {
my @dirs=();
find(
sub {
return unless $_ eq "build.ninja";
push @dirs, $File::Find::dir;
},
"."
);
if ($#dirs >= 1) {
warning "more than one build.ninja file found, don't know which one to use";
return;
}
$meson_builddir = File::Spec->rel2abs($dirs[0]);
my $all_domains = qx_cmd ("meson introspect '$meson_builddir' --targets | jq -r -M '.[].name | select(endswith(\"-pot\")) | sub(\"-pot\"; \"\")'");
my @domains = split ('\n', $all_domains);
if ($#domains >= 1) {
warning "more than one meson translation domain found (" . join (",", @domains) . "), don't know which one to use";
return;
}
$domain = $domains[0];
chomp $domain;
}
if ($domain) {
verbose_print "check_buildsystem: got domain '$domain', using intltool: $use_intltool";
} else {
warning "could not determine domain";
}
}
# Try to build a POT
sub build_pot {
my @cmd;
if ($use_intltool) {
# use intltool-update
if ($domain) {
@cmd=('/usr/bin/intltool-update', '-p', '--verbose', '-g', $domain);
} else {
@cmd=('/usr/bin/intltool-update', '-p', '--verbose');
}
} elsif ($meson_builddir && $domain) {
@cmd=('/usr/bin/ninja', '-C', $meson_builddir, "$domain-pot");
} else {
return unless -e 'po/Makefile';
if ($domain) {
# let the Makefile itself handle it
@cmd=('make', $domain . '.pot');
} else {
warn 'Does not use intltool and po/Makefile does not define GETTEXT_PACKAGE, cannot build POT automatically';
return;
}
}
verbose_print (escape_shell (@cmd));
chdir 'po';
system @cmd;
chdir '..';
# try to build help POT
if (-e 'help/Makefile') {
chdir 'help';
system ('make', 'pot');
chdir '..';
}
}
# strip translations and add domain to *.desktop/*.directory
sub process_desktop {
my @lines = @{$_[0]};
my @result;
my $in_desktop_entry = 0;
my $added_domain = 0;
foreach (@lines) {
# filter out translated fields
next if (/^(Name|GenericName|Comment|X-GNOME-FullName)\[/);
if (/^[A-Za-z-0-9-]*Gettext-Domain\s*=/) {
$added_domain = 1;
}
# catch section headers
if (/^\[\s*(.+)\s*\]/) {
$in_desktop_entry = ($1 eq 'Desktop Entry');
}
# if we are ending the desktop section, append the domain
if (/^\s*$/ && $in_desktop_entry && !$added_domain) {
push @result, "X-Ubuntu-Gettext-Domain=$domain\n";
$added_domain = 1;
}
push @result, $_;
}
# single-section .desktop files without ending empty lines
if ($in_desktop_entry && !$added_domain) {
push @result, "X-Ubuntu-Gettext-Domain=$domain\n";
}
return @result;
}
# add domain to Bonobo *.server files
sub process_server {
my @lines = @{$_[0]};
my @result;
foreach (@lines) {
if (/^<oaf_server\b/ && !/ubuntu-gettext-domain/) {
s/^<oaf_server/<oaf_server ubuntu-gettext-domain="icecream"/;
}
push @result, $_;
}
return @result;
}
# strip translations and add domain to gconf *.schemas files
sub process_gconf {
my @lines = @{$_[0]};
my @result;
my $in_locale = 0;
my $wrote_locale_tag = 0;
my $locale_tag;
foreach (@lines) {
#case: within a non-C <locale> tag
if ($in_locale) {
if (/^\s*<default>/) {
if (!$wrote_locale_tag) {
push @result, $locale_tag;
$wrote_locale_tag = 1;
}
push @result, $_;
} elsif (/^\s*<\/locale>/) {
push @result, $_ if $wrote_locale_tag;
$in_locale = 0;
}
}
# case: locale name="C": add <gettext_domain> and leave alone
elsif (/^(\s*)<locale name=\"C\">/) {
push @result, "$1<gettext_domain>$domain</gettext_domain>\n";
push @result, $_;
}
# case: locale name="something": start $in_locale and purge <short> and <long>
elsif (/<locale name=\"[^C]/) {
$in_locale = 1;
$wrote_locale_tag = 0;
$locale_tag = $_;
}
else {
push @result, $_ unless /^$/;
push @result, "\n" if /^\s*<\/schema>/; # to not kill all whitespace
}
}
return @result;
}
# strip translations and add domain to *.policy files
sub process_polkit {
my @lines = @{$_[0]};
my @result;
foreach (@lines) {
# filter out translated fields
next if (/<(message|description)\s+xml:lang=.*\/\1>/);
# add domain
s/<(message|description)\b/<$1 gettext-domain="$domain"/;
push @result, $_;
}
return @result;
}
sub strip_file {
my $f = $_;
return unless $f =~ /\.(desktop|directory|server|policy|schemas)$/;
my $ext = $1;
return if -l $f or -d $f; # Skip directories and symlinks
# See if we were asked to exclude this file.
foreach my $x (@{$dh{EXCLUDE}}) {
return if ($File::Find::name =~ m/\Q$x\E/);
}
print " $f\n";
my @lines;
open F, $f or die "open $f: $!";
@lines = <F>;
close F;
if ($ext eq 'desktop' || $ext eq 'directory') {
@lines = process_desktop \@lines;
}
elsif ($ext eq 'server' && index($File::Find::name, '/bonobo/servers/') > 0) {
@lines = process_server \@lines;
} elsif ($ext eq 'policy' && index($File::Find::name, '/polkit-1/actions/') > 0) {
@lines = process_polkit \@lines;
} elsif ($ext eq 'schemas' && index($File::Find::name, '/gconf/') > 0) {
@lines = process_gconf \@lines;
}
# write back modified result
open F, ">$f" or die "open $f: $!";
foreach (@lines) {
print F $_;
}
}
init();
check_buildsystem();
build_pot();
if ($domain) {
print "dh_langpack: processing files to add translation domain '$domain'..\n";
foreach my $package (@{$dh{DOPACKAGES}}) {
next if is_udeb($package);
find(\&strip_file, tmpdir($package))
}
}
=head1 SEE ALSO
L<debhelper(1)>
=head1 AUTHOR
Martin Pitt <martin.pitt@ubuntu.com>
Copyright (C) 2011 Canonical Ltd., licensed under the GNU GPL v2 or later.
=cut
|