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
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-08-02 23:45:36 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-08-02 23:45:36 +0400
commit389d0824e8c5b87e4a49dffa06a7985d891a53bd (patch)
treea8e17b10f4f97df03e97aa83258e9b3238b0228e /l10n/l10n.pl
parent2f17dcdba81193b48a1c843e58e8b116c6309714 (diff)
add new line to generated php code
Diffstat (limited to 'l10n/l10n.pl')
-rw-r--r--l10n/l10n.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/l10n/l10n.pl b/l10n/l10n.pl
index 2a02e19c714..e3a42aefe22 100644
--- a/l10n/l10n.pl
+++ b/l10n/l10n.pl
@@ -173,7 +173,7 @@ elsif( $task eq 'write' ){
open( OUT, ">$language.php" );
print OUT "<?php \$TRANSLATIONS = array(\n";
print OUT join( ",\n", @strings );
- print OUT "\n); \$PLURAL_FORMS = \"$plurals\";\n";
+ print OUT "\n);\n\$PLURAL_FORMS = \"$plurals\";\n";
close( OUT );
}
chdir( $whereami );