blob: 196d6ac00a4a3a7ad7823846096e44f51f776fd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
$TRANSLATIONS = array(
"Couldn't delete %s permanently" => "No s'ha pogut esborrar permanentment %s",
"Couldn't restore %s" => "No s'ha pogut restaurar %s",
"Deleted files" => "Fitxers esborrats",
"Error" => "Error",
"Deleted Files" => "Fitxers eliminats",
"restored" => "restaurat",
"Nothing in here. Your trash bin is empty!" => "La paperera està buida!",
"Name" => "Nom",
"Restore" => "Recupera",
"Deleted" => "Eliminat",
"Delete" => "Esborra"
);
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|