]> source.dussan.org Git - nextcloud-server.git/commitdiff
fixing issues with UTF8 characters in translatable strings
authorThomas Mueller <thomas.mueller@tmit.eu>
Tue, 12 Feb 2013 11:16:13 +0000 (12:16 +0100)
committerThomas Mueller <thomas.mueller@tmit.eu>
Tue, 12 Feb 2013 11:16:13 +0000 (12:16 +0100)
l10n/l10n.pl

index 346a21bfef6fa7b4be138aca2c3a8489bdbc3cc2..b07d6d686bc4a9fb77d7187f59ee10156816e07a 100644 (file)
@@ -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 );
        }