11 lines
332 B
PHP
11 lines
332 B
PHP
<?php
|
|
$TRANSLATIONS = array(
|
|
"Cancel" => "Anulare",
|
|
"Shared by" => "impartite in ",
|
|
"The password is wrong. Try again." => "Parola este incorectă. Încercaţi din nou.",
|
|
"Password" => "Parolă",
|
|
"Name" => "Nume",
|
|
"Download" => "Descarcă"
|
|
);
|
|
$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));";
|