diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-15 15:38:33 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-15 15:38:33 +0200 |
commit | c71408eaa9f4614cb8caa726ed3172ce77a359f2 (patch) | |
tree | 54bf46290615e2edbf5a3132487effb0ff667147 /l10n/l10n.pl | |
parent | b9f3bb24261961ead93fb76c1295066cfa666299 (diff) | |
download | nextcloud-server-c71408eaa9f4614cb8caa726ed3172ce77a359f2.tar.gz nextcloud-server-c71408eaa9f4614cb8caa726ed3172ce77a359f2.zip |
fixing call to join
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 2790ca92015..851be8f7ccf 100644 --- a/l10n/l10n.pl +++ b/l10n/l10n.pl @@ -159,7 +159,7 @@ elsif( $task eq 'write' ){ push( @variants, $string->msgstr_n()->{$variant} ); } - push( @strings, "\"$identifier\" => array(".join(@variants, ",").")"); + push( @strings, "\"$identifier\" => array(".join(",", @variants).")"); } else{ # singular translations |