19 lines
1009 B
PHP
19 lines
1009 B
PHP
|
<?php
|
|||
|
$TRANSLATIONS = array(
|
|||
|
"The password is wrong. Try again." => "Das Passwort ist falsch. Bitte versuchen Sie es erneut.",
|
|||
|
"Password" => "Passwort",
|
|||
|
"Sorry, this link doesn’t seem to work anymore." => "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.",
|
|||
|
"Reasons might be:" => "Gründe könnten sein:",
|
|||
|
"the item was removed" => "Das Element wurde entfernt",
|
|||
|
"the link expired" => "Der Link ist abgelaufen",
|
|||
|
"sharing is disabled" => "Teilen ist deaktiviert",
|
|||
|
"For more info, please ask the person who sent this link." => "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat.",
|
|||
|
"%s shared the folder %s with you" => "%s hat den Ordner %s mit Ihnen geteilt",
|
|||
|
"%s shared the file %s with you" => "%s hat die Datei %s mit Ihnen geteilt",
|
|||
|
"Download" => "Herunterladen",
|
|||
|
"Upload" => "Hochladen",
|
|||
|
"Cancel upload" => "Upload abbrechen",
|
|||
|
"No preview available for" => "Es ist keine Vorschau verfügbar für"
|
|||
|
);
|
|||
|
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|