diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-12 12:16:13 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-12 12:16:13 +0100 |
commit | 068595e5accdfa4f75ce4271728f2deb29e1baca (patch) | |
tree | 0e463e73106736701d3fa515a33109cb530ccee8 /l10n/l10n.pl | |
parent | 2507e0da1d61af5d9a9506a29aa6df4c31ac068e (diff) | |
download | nextcloud-server-068595e5accdfa4f75ce4271728f2deb29e1baca.tar.gz nextcloud-server-068595e5accdfa4f75ce4271728f2deb29e1baca.zip |
fixing issues with UTF8 characters in translatable strings
Diffstat (limited to 'l10n/l10n.pl')
-rw-r--r-- | l10n/l10n.pl | 2 |
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 ); } |