1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
$TRANSLATIONS = array(
"Failed to delete the server configuration" => "លុបការកំណត់រចនាសម្ព័ន្ធម៉ាស៊ីនបម្រើ មិនបានសម្រេច",
"Deletion failed" => "លុបមិនបានសម្រេច",
"Keep settings?" => "រក្សាទុកការកំណត់?",
"Cannot add server configuration" => "មិនអាចបន្ថែមការកំណត់រចនាសម្ព័ន្ធម៉ាស៊ីនបម្រើ",
"Error" => "កំហុស",
"Connection test succeeded" => "សាកល្បងការតភ្ជាប់ បានជោគជ័យ",
"Connection test failed" => "សាកល្បងការតភ្ជាប់ មិនបានសម្រេច",
"Do you really want to delete the current Server Configuration?" => "តើអ្នកពិតជាចង់លុបការកំណត់រចនាសម្ព័ន្ធម៉ាស៊ីនបម្រើបច្ចុប្បន្នមែនទេ?",
"Confirm Deletion" => "បញ្ជាក់ការលុប",
"_%s group found_::_%s groups found_" => array(""),
"_%s user found_::_%s users found_" => array(""),
"Save" => "រក្សាទុក",
"Help" => "ជំនួយ",
"Add Server Configuration" => "បន្ថែមការកំណត់រចនាសម្ព័ន្ធម៉ាស៊ីនបម្រើ",
"Host" => "ម៉ាស៊ីនផ្ទុក",
"Port" => "ច្រក",
"Password" => "ពាក្យសម្ងាត់",
"Continue" => "បន្ត",
"Advanced" => "កម្រិតខ្ពស់"
);
$PLURAL_FORMS = "nplurals=1; plural=0;";
|