1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
$TRANSLATIONS = array(
"Shared with you" => "Partilhado consigo ",
"Shared with others" => "Partilhado com outros",
"Saved" => "Guardado",
"Reset" => "Repor",
"Shared by {owner}" => "Partilhado por {owner}",
"Shared by" => "Partilhado por",
"This share is password-protected" => "Esta partilha está protegida por palavra-chave",
"The password is wrong. Try again." => "Password errada, por favor tente de novo",
"Password" => "Palavra-passe",
"Name" => "Nome",
"Share time" => "Partilhar hora",
"Sorry, this link doesn’t seem to work anymore." => "Desculpe, mas este link parece não estar a funcionar.",
"Reasons might be:" => "As razões poderão ser:",
"the item was removed" => "O item foi removido",
"the link expired" => "O link expirou",
"sharing is disabled" => "A partilha está desativada",
"For more info, please ask the person who sent this link." => "Para mais informações, por favor questione a pessoa que lhe enviou este link",
"Download" => "Transferir",
"Download %s" => "Download %s",
"Direct link" => "Link direto",
"Save" => "Guardar"
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|