13 lines
476 B
PHP
13 lines
476 B
PHP
<?php
|
|
$TRANSLATIONS = array(
|
|
"The password is wrong. Try again." => "Passordet er feil. Prøv på nytt.",
|
|
"Password" => "Passord",
|
|
"%s shared the folder %s with you" => "%s delte mappen %s med deg",
|
|
"%s shared the file %s with you" => "%s delte filen %s med deg",
|
|
"Download" => "Last ned",
|
|
"Upload" => "Last opp",
|
|
"Cancel upload" => "Avbryt opplasting",
|
|
"No preview available for" => "Forhåndsvisning ikke tilgjengelig for"
|
|
);
|
|
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|