diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-07-22 11:36:52 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-07-22 11:36:52 +0200 |
commit | 934f2e94a30e21bbd0c87f347bb05de3437f66db (patch) | |
tree | 9b6a0b0c389a7491c85616e5773bb438f129e817 /apps/files_sharing | |
parent | 2964027cad2003dada6fdda3c929fee3005480a4 (diff) | |
parent | da892d69ab724354e1b3ee251e540ba306fffe44 (diff) | |
download | nextcloud-server-934f2e94a30e21bbd0c87f347bb05de3437f66db.tar.gz nextcloud-server-934f2e94a30e21bbd0c87f347bb05de3437f66db.zip |
Merge branch 'master' into disable-anon-upload-master
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/l10n/fi_FI.php | 1 | ||||
-rw-r--r-- | apps/files_sharing/l10n/nb_NO.php | 1 | ||||
-rw-r--r-- | apps/files_sharing/l10n/nl.php | 1 | ||||
-rw-r--r-- | apps/files_sharing/l10n/pt_PT.php | 1 | ||||
-rw-r--r-- | apps/files_sharing/l10n/sv.php | 1 | ||||
-rw-r--r-- | apps/files_sharing/templates/authenticate.php | 2 |
6 files changed, 6 insertions, 1 deletions
diff --git a/apps/files_sharing/l10n/fi_FI.php b/apps/files_sharing/l10n/fi_FI.php index 03931bf2986..370cbd98744 100644 --- a/apps/files_sharing/l10n/fi_FI.php +++ b/apps/files_sharing/l10n/fi_FI.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Väärä salasana. Yritä uudelleen.", "Password" => "Salasana", "Submit" => "Lähetä", "%s shared the folder %s with you" => "%s jakoi kansion %s kanssasi", diff --git a/apps/files_sharing/l10n/nb_NO.php b/apps/files_sharing/l10n/nb_NO.php index 9c736f97d78..65eadd3ccae 100644 --- a/apps/files_sharing/l10n/nb_NO.php +++ b/apps/files_sharing/l10n/nb_NO.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Passordet er feil. Prøv på nytt.", "Password" => "Passord", "Submit" => "Send inn", "%s shared the folder %s with you" => "%s delte mappen %s med deg", diff --git a/apps/files_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index 6c1bf7a53f3..90f2f2290ff 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Wachtwoord ongeldig. Probeer het nogmaals.", "Password" => "Wachtwoord", "Submit" => "Verzenden", "%s shared the folder %s with you" => "%s deelt de map %s met u", diff --git a/apps/files_sharing/l10n/pt_PT.php b/apps/files_sharing/l10n/pt_PT.php index 2f41abca1f5..8b02e736062 100644 --- a/apps/files_sharing/l10n/pt_PT.php +++ b/apps/files_sharing/l10n/pt_PT.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Password errada, por favor tente de novo", "Password" => "Password", "Submit" => "Submeter", "%s shared the folder %s with you" => "%s partilhou a pasta %s consigo", diff --git a/apps/files_sharing/l10n/sv.php b/apps/files_sharing/l10n/sv.php index 21e4e542d8e..dac5e33ec50 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Lösenordet är fel. Försök igen.", "Password" => "Lösenord", "Submit" => "Skicka", "%s shared the folder %s with you" => "%s delade mappen %s med dig", diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index fa03f419130..2c89b5df3f6 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -1,6 +1,6 @@ <form action="<?php p($_['URL']); ?>" method="post"> <fieldset> - <?php if ($_['wrongpw']): ?> + <?php if (isset($_['wrongpw'])): ?> <div class="warning"><?php p($l->t('The password is wrong. Try again.')); ?></div> <?php endif; ?> <p class="infield"> |