diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-03 23:29:31 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-03 23:29:31 +0200 |
commit | b229381dda7203402e00cb6f58c3b8a147556b0d (patch) | |
tree | 9e9e227005fa77d48aabd39401baf0b06a526eee | |
parent | 2e5f1142be7101ccca0b45539d585df95dc61116 (diff) | |
download | nextcloud-server-b229381dda7203402e00cb6f58c3b8a147556b0d.tar.gz nextcloud-server-b229381dda7203402e00cb6f58c3b8a147556b0d.zip |
initialize $plural_form_string with English default
-rw-r--r-- | lib/l10n.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/l10n.php b/lib/l10n.php index a11ed785c5e..b1f2fceeb16 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -59,7 +59,7 @@ class OC_L10N { /** * Plural forms (string) */ - private $plural_form_string; + private $plural_form_string = 'nplurals=2; plural=(n != 1);'; /** * Plural forms (function) |