blob: 7b1405777dda4bc6e266d41e6e8166b07156894f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
$TRANSLATIONS = array(
"Couldn't delete %s permanently" => "Methwyd dileu %s yn barhaol",
"Couldn't restore %s" => "Methwyd adfer %s",
"Deleted files" => "Ffeiliau ddilewyd",
"Error" => "Gwall",
"Deleted Files" => "Ffeiliau Ddilewyd",
"Nothing in here. Your trash bin is empty!" => "Does dim byd yma. Mae eich bin sbwriel yn wag!",
"Name" => "Enw",
"Restore" => "Adfer",
"Deleted" => "Wedi dileu",
"Delete" => "Dileu"
);
$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;";
|