18 lines
880 B
PHP
18 lines
880 B
PHP
<?php
|
||
$TRANSLATIONS = array(
|
||
"Shared by {owner}" => "Gedeeld door {owner}",
|
||
"This share is password-protected" => "Deze share is met een wachtwoord beveiligd",
|
||
"The password is wrong. Try again." => "Wachtwoord ongeldig. Probeer het nogmaals.",
|
||
"Password" => "Wachtwoord",
|
||
"Sorry, this link doesn’t seem to work anymore." => "Sorry, deze link lijkt niet meer in gebruik te zijn.",
|
||
"Reasons might be:" => "Redenen kunnen zijn:",
|
||
"the item was removed" => "bestand was verwijderd",
|
||
"the link expired" => "de link is verlopen",
|
||
"sharing is disabled" => "delen is uitgeschakeld",
|
||
"For more info, please ask the person who sent this link." => "Voor meer informatie, neem contact op met de persoon die u deze link heeft gestuurd.",
|
||
"shared by %s" => "gedeeld door %s",
|
||
"Download %s" => "Download %s",
|
||
"Direct link" => "Directe link"
|
||
);
|
||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|