summaryrefslogtreecommitdiffstats
path: root/translations
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-07-15 18:42:28 +0200
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-07-15 22:00:28 +0200
commit4fc1008163907459d921c4089512268495245976 (patch)
tree7eff5a0fff3498954b229ee68a21edafba3803df /translations
parent63f1fc5e7aac3b9b088b90577a2c5208be571183 (diff)
cosmetics: quote the dot in the regexp
Diffstat (limited to 'translations')
-rwxr-xr-xtranslations/check-ts.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/translations/check-ts.pl b/translations/check-ts.pl
index 0ff9d175da..500be1590b 100755
--- a/translations/check-ts.pl
+++ b/translations/check-ts.pl
@@ -52,7 +52,7 @@ my %langs = ();
my $files = join("\n", <*_??.ts>);
my $res = `xmlpatterns -param files=\"$files\" check-ts.xq`;
for my $i (split(/ /, $res)) {
- $i =~ /^([^.]+).ts:(.*)$/;
+ $i =~ /^([^.]+)\.ts:(.*)$/;
my ($fn, $pc) = ($1, $2);
for my $g (@groups) {
if ($fn =~ /^${g}_(.*)$/) {