summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-02-12 05:42:57 -0800
committerThomas Müller <thomas.mueller@tmit.eu>2013-02-12 05:42:57 -0800
commitba1ab38e7f6ec984e72167b007fecaacc57ce1cb (patch)
tree8053bc1feba4765bfa30b6a35a4a8016c6903371
parentffb3ac58cd586a64f58efed79d0e2fdb77e6948c (diff)
parent068595e5accdfa4f75ce4271728f2deb29e1baca (diff)
downloadnextcloud-server-ba1ab38e7f6ec984e72167b007fecaacc57ce1cb.tar.gz
nextcloud-server-ba1ab38e7f6ec984e72167b007fecaacc57ce1cb.zip
Merge pull request #1649 from owncloud/fixing-l10n-master
fixing issues with UTF8 characters in translatable strings
-rw-r--r--l10n/l10n.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/l10n/l10n.pl b/l10n/l10n.pl
index 346a21bfef6..b07d6d686bc 100644
--- a/l10n/l10n.pl
+++ b/l10n/l10n.pl
@@ -104,7 +104,7 @@ if( $task eq 'read' ){
my $language = ( $file =~ /\.js$/ ? 'Python' : 'PHP');
my $joinexisting = ( -e $output ? '--join-existing' : '');
print " Reading $file\n";
- `xgettext --output="$output" $joinexisting --keyword=$keyword --language=$language "$file"`;
+ `xgettext --output="$output" $joinexisting --keyword=$keyword --language=$language "$file" --from-code=UTF-8 --package-version="5.0.0" --package-name="ownCloud Core" --msgid-bugs-address="translations\@owncloud.org"`;
}
chdir( $whereami );
}