Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/l10n
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-02-12 15:16:13 +0400
committerThomas Mueller <thomas.mueller@tmit.eu>2013-02-12 15:16:13 +0400
commit068595e5accdfa4f75ce4271728f2deb29e1baca (patch)
tree0e463e73106736701d3fa515a33109cb530ccee8 /l10n
parent2507e0da1d61af5d9a9506a29aa6df4c31ac068e (diff)
fixing issues with UTF8 characters in translatable strings
Diffstat (limited to 'l10n')
-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 );
}