aboutsummaryrefslogtreecommitdiffstats
path: root/smart_change.pl
diff options
context:
space:
mode:
authorDenis Barbier <barbier>2003-01-27 17:19:08 +0000
committerDenis Barbier <barbier>2003-01-27 17:19:08 +0000
commit28278b1ee972cd52443523d3253ce59760232735 (patch)
tree2297d50c1d3c48cb138707a3def4c3eac5640b3e /smart_change.pl
parentbf1a130b5ba239597e8818438926f02a618b57be (diff)
Perform substitutions in English files too
CVS version numbers smart_change.pl: 1.1 -> 1.2
Diffstat (limited to 'smart_change.pl')
-rwxr-xr-xsmart_change.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/smart_change.pl b/smart_change.pl
index 628075b424b..eb8cb2cd3a7 100755
--- a/smart_change.pl
+++ b/smart_change.pl
@@ -81,8 +81,8 @@ foreach my $lang (@opt_l) {
# Parse the translated file
my $transcheck = Webwml::TransCheck->new($transfile);
- next unless $transcheck->revision();
- my $langrev = $transcheck->revision();
+ next unless $transcheck->revision() || $lang eq 'english';
+ my $langrev = $transcheck->revision();
my $origtext = '';
my $transtext = '';
@@ -100,6 +100,7 @@ foreach my $lang (@opt_l) {
}
close (TRANS);
if ($origtext ne $transtext) {
+ verbose("Writing $transfile");
open (TRANS, "> $transfile");
print TRANS $transtext;
close (TRANS);

© 2014-2024 Faster IT GmbH | imprint | privacy policy