1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
$TRANSLATIONS = array(
"Couldn't delete %s permanently" => "ფაილი %s–ის სრულად წაშლა ვერ მოხერხდა",
"Couldn't restore %s" => "%s–ის აღდგენა ვერ მოხერხდა",
"perform restore operation" => "მიმდინარეობს აღდგენის ოპერაცია",
"Error" => "შეცდომა",
"delete file permanently" => "ფაილის სრულად წაშლა",
"Delete permanently" => "სრულად წაშლა",
"Name" => "სახელი",
"Deleted" => "წაშლილი",
"_%n folder_::_%n folders_" => array(,),
"_%n file_::_%n files_" => array(,),
"Nothing in here. Your trash bin is empty!" => "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!",
"Restore" => "აღდგენა",
"Delete" => "წაშლა",
"Deleted Files" => "წაშლილი ფაილები"
);
$PLURAL_FORMS = "nplurals=1; plural=0;";
|