15 lines
501 B
PHP
15 lines
501 B
PHP
<?php
|
|
$TRANSLATIONS = array(
|
|
"Couldn't delete %s permanently" => "Nuk munda ta eliminoj përfundimisht %s",
|
|
"Couldn't restore %s" => "Nuk munda ta rivendos %s",
|
|
"Deleted files" => "Skedarë të fshirë ",
|
|
"Restore" => "Rivendos",
|
|
"Error" => "Veprim i gabuar",
|
|
"restored" => "rivendosur",
|
|
"Nothing in here. Your trash bin is empty!" => "Këtu nuk ka asgjë. Koshi juaj është bosh!",
|
|
"Name" => "Emri",
|
|
"Deleted" => "Eliminuar",
|
|
"Delete" => "Elimino"
|
|
);
|
|
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|