elfinder.vi.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. /**
  2. * Vietnamese translation
  3. * @author Chung Thủy f <chungthuyf@gmail.com>
  4. * @version 16-01-2013
  5. */
  6. if (elFinder && elFinder.prototype && typeof(elFinder.prototype.i18) == 'object') {
  7. elFinder.prototype.i18.vi = {
  8. translator : 'Chung Thủy f &lt;chungthuyf@gmail.com&gt;',
  9. language : 'Ngôn ngữ Việt Nam',
  10. direction : 'ltr',
  11. dateFormat : 'd.m.Y H:i',
  12. fancyDateFormat : '$1 H:i',
  13. messages : {
  14. /********************************** errors **********************************/
  15. 'error' : 'Lỗi',
  16. 'errUnknown' : 'Lỗi không xác định được.',
  17. 'errUnknownCmd' : 'Lỗi không rõ lệnh.',
  18. 'errJqui' : 'Invalid jQuery UI configuration. Selectable, draggable and droppable components must be included.',
  19. 'errNode' : 'elFinder requires DOM Element to be created.',
  20. 'errURL' : 'Cấu elFinder không hợp lệ! URL không được thiết lập tùy chọn.',
  21. 'errAccess' : 'Truy cập bị từ chối.',
  22. 'errConnect' : 'Unable to connect to backend.',
  23. 'errAbort' : 'Kết nối bị hủy bỏ.',
  24. 'errTimeout' : 'Connection timeout.',
  25. 'errNotFound' : 'Backend not found.',
  26. 'errResponse' : 'Invalid backend response.',
  27. 'errConf' : 'Invalid backend configuration.',
  28. 'errJSON' : 'PHP JSON module not installed.',
  29. 'errNoVolumes' : 'Readable volumes not available.',
  30. 'errCmdParams' : 'Invalid parameters for command "$1".',
  31. 'errDataNotJSON' : 'Data is not JSON.',
  32. 'errDataEmpty' : 'Data is empty.',
  33. 'errCmdReq' : 'Backend request requires command name.',
  34. 'errOpen' : 'Unable to open "$1".',
  35. 'errNotFolder' : 'Object is not a folder.',
  36. 'errNotFile' : 'Object is not a file.',
  37. 'errRead' : 'Unable to read "$1".',
  38. 'errWrite' : 'Unable to write into "$1".',
  39. 'errPerm' : 'Permission denied.',
  40. 'errLocked' : '"$1" is locked and can not be renamed, moved or removed.',
  41. 'errExists' : 'File named "$1" already exists.',
  42. 'errInvName' : 'Invalid file name.',
  43. 'errFolderNotFound' : 'Folder not found.',
  44. 'errFileNotFound' : 'File not found.',
  45. 'errTrgFolderNotFound' : 'Target folder "$1" not found.',
  46. 'errPopup' : 'Browser prevented opening popup window. To open file enable it in browser options.',
  47. 'errMkdir' : 'Unable to create folder "$1".',
  48. 'errMkfile' : 'Unable to create file "$1".',
  49. 'errRename' : 'Unable to rename "$1".',
  50. 'errCopyFrom' : 'Copying files from volume "$1" not allowed.',
  51. 'errCopyTo' : 'Copying files to volume "$1" not allowed.',
  52. 'errUploadCommon' : 'Upload error.',
  53. 'errUpload' : 'Unable to upload "$1".',
  54. 'errUploadNoFiles' : 'No files found for upload.',
  55. 'errMaxSize' : 'Data exceeds the maximum allowed size.',
  56. 'errFileMaxSize' : 'File exceeds maximum allowed size.',
  57. 'errUploadMime' : 'File type not allowed.',
  58. 'errUploadTransfer' : '"$1" transfer error.',
  59. 'errSave' : 'Unable to save "$1".',
  60. 'errCopy' : 'Unable to copy "$1".',
  61. 'errMove' : 'Unable to move "$1".',
  62. 'errCopyInItself' : 'Unable to copy "$1" into itself.',
  63. 'errRm' : 'Unable to remove "$1".',
  64. 'errExtract' : 'Unable to extract files from "$1".',
  65. 'errArchive' : 'Unable to create archive.',
  66. 'errArcType' : 'Unsupported archive type.',
  67. 'errNoArchive' : 'File is not archive or has unsupported archive type.',
  68. 'errCmdNoSupport' : 'Backend does not support this command.',
  69. 'errReplByChild' : 'The folder “$1” can’t be replaced by an item it contains.',
  70. 'errArcSymlinks' : 'For security reason denied to unpack archives contains symlinks.',
  71. 'errArcMaxSize' : 'Archive files exceeds maximum allowed size.',
  72. 'errResize' : 'Unable to resize "$1".',
  73. 'errUsupportType' : 'Unsupported file type.',
  74. /******************************* commands names ********************************/
  75. 'cmdarchive' : 'Tạo tập tin nén',
  76. 'cmdback' : 'Trở lại',
  77. 'cmdcopy' : 'Sao chép',
  78. 'cmdcut' : 'Cắt',
  79. 'cmddownload' : 'Tải về',
  80. 'cmdduplicate' : 'Bản sao',
  81. 'cmdedit' : 'Sửa tập tin',
  82. 'cmdextract' : 'Giải nén tập tin',
  83. 'cmdforward' : 'Trước',
  84. 'cmdgetfile' : 'Chọn tập tin',
  85. 'cmdhelp' : 'Giới thiệu phần mềm',
  86. 'cmdhome' : 'Home',
  87. 'cmdinfo' : 'Thông tin',
  88. 'cmdmkdir' : 'Thư mục',
  89. 'cmdmkfile' : 'Tạo tập tin Text',
  90. 'cmdopen' : 'Mở',
  91. 'cmdpaste' : 'Paste',
  92. 'cmdquicklook' : 'Xem trước',
  93. 'cmdreload' : 'Nạp lại',
  94. 'cmdrename' : 'Đổi tên',
  95. 'cmdrm' : 'Xóa',
  96. 'cmdsearch' : 'Tìm tập tin',
  97. 'cmdup' : 'Go to parent directory',
  98. 'cmdupload' : 'Tải tập tin lên',
  99. 'cmdview' : 'Xem',
  100. 'cmdresize' : 'Resize image',
  101. 'cmdsort' : 'Sắp xếp',
  102. /*********************************** buttons ***********************************/
  103. 'btnClose' : 'Đóng',
  104. 'btnSave' : 'Lưu',
  105. 'btnRm' : 'Gỡ bỏ',
  106. 'btnApply' : 'Áp dụng',
  107. 'btnCancel' : 'Hủy bỏ',
  108. 'btnNo' : 'Không',
  109. 'btnYes' : 'Đồng ý',
  110. /******************************** notifications ********************************/
  111. 'ntfopen' : 'Mở thư mục',
  112. 'ntffile' : 'Mở tập tin',
  113. 'ntfreload' : 'Nạp lại nội dung thư mục',
  114. 'ntfmkdir' : 'Tạo thư mục',
  115. 'ntfmkfile' : 'Tạo tập tin',
  116. 'ntfrm' : 'Xóa tập tin',
  117. 'ntfcopy' : 'Sao chép tập tin',
  118. 'ntfmove' : 'Di chuyển tập tin',
  119. 'ntfprepare' : 'Chuẩn bị để sao chép các tập tin',
  120. 'ntfrename' : 'Đổi tên tập tin',
  121. 'ntfupload' : 'Tải tập tin lên',
  122. 'ntfdownload' : 'Tải tập tin',
  123. 'ntfsave' : 'Lưu tập tin',
  124. 'ntfarchive' : 'Tạo tập tin nén',
  125. 'ntfextract' : 'Giải nén tập tin',
  126. 'ntfsearch' : 'Tìm kiếm tập tin',
  127. 'ntfsmth' : 'Doing something >_<',
  128. 'ntfloadimg' : 'Đang tải hình ảnh',
  129. /************************************ dates **********************************/
  130. 'dateUnknown' : 'Chưa biết',
  131. 'Today' : 'Hôm nay',
  132. 'Yesterday' : 'Yesterday',
  133. 'Jan' : 'Jan',
  134. 'Feb' : 'Feb',
  135. 'Mar' : 'Mar',
  136. 'Apr' : 'Apr',
  137. 'May' : 'May',
  138. 'Jun' : 'Jun',
  139. 'Jul' : 'Jul',
  140. 'Aug' : 'Aug',
  141. 'Sep' : 'Sep',
  142. 'Oct' : 'Oct',
  143. 'Nov' : 'Nov',
  144. 'Dec' : 'Dec',
  145. 'January' : 'January',
  146. 'February' : 'February',
  147. 'March' : 'March',
  148. 'April' : 'April',
  149. 'May' : 'May',
  150. 'June' : 'June',
  151. 'July' : 'July',
  152. 'August' : 'August',
  153. 'September' : 'September',
  154. 'October' : 'October',
  155. 'November' : 'November',
  156. 'December' : 'December',
  157. 'Sunday' : 'Sunday',
  158. 'Monday' : 'Monday',
  159. 'Tuesday' : 'Tuesday',
  160. 'Wednesday' : 'Wednesday',
  161. 'Thursday' : 'Thursday',
  162. 'Friday' : 'Friday',
  163. 'Saturday' : 'Saturday',
  164. 'Sun' : 'Sun',
  165. 'Mon' : 'Mon',
  166. 'Tue' : 'Tue',
  167. 'Wed' : 'Wed',
  168. 'Thu' : 'Thu',
  169. 'Fri' : 'Fri',
  170. 'Sat' : 'Sat',
  171. /******************************** sort variants ********************************/
  172. 'sortnameDirsFirst' : 'by name (folders first)',
  173. 'sortkindDirsFirst' : 'by kind (folders first)',
  174. 'sortsizeDirsFirst' : 'by size (folders first)',
  175. 'sortdateDirsFirst' : 'by date (folders first)',
  176. 'sortname' : 'by name',
  177. 'sortkind' : 'by kind',
  178. 'sortsize' : 'by size',
  179. 'sortdate' : 'by date',
  180. /********************************** messages **********************************/
  181. 'confirmReq' : 'Confirmation required',
  182. 'confirmRm' : 'Are you sure you want to remove files?<br/>This cannot be undone!',
  183. 'confirmRepl' : 'Replace old file with new one?',
  184. 'apllyAll' : 'Apply to all',
  185. 'name' : 'Name',
  186. 'size' : 'Size',
  187. 'perms' : 'Permissions',
  188. 'modify' : 'Modified',
  189. 'kind' : 'Kind',
  190. 'read' : 'read',
  191. 'write' : 'write',
  192. 'noaccess' : 'no access',
  193. 'and' : 'and',
  194. 'unknown' : 'unknown',
  195. 'selectall' : 'Select all files',
  196. 'selectfiles' : 'Select file(s)',
  197. 'selectffile' : 'Select first file',
  198. 'selectlfile' : 'Select last file',
  199. 'viewlist' : 'List view',
  200. 'viewicons' : 'Icons view',
  201. 'places' : 'Places',
  202. 'calc' : 'Calculate',
  203. 'path' : 'Path',
  204. 'aliasfor' : 'Alias for',
  205. 'locked' : 'Locked',
  206. 'dim' : 'Dimensions',
  207. 'files' : 'Files',
  208. 'folders' : 'Folders',
  209. 'items' : 'Items',
  210. 'yes' : 'yes',
  211. 'no' : 'no',
  212. 'link' : 'Link',
  213. 'searcresult' : 'Search results',
  214. 'selected' : 'selected items',
  215. 'about' : 'About',
  216. 'shortcuts' : 'Shortcuts',
  217. 'help' : 'Help',
  218. 'webfm' : 'Web file manager',
  219. 'ver' : 'Version',
  220. 'protocol' : 'protocol version',
  221. 'homepage' : 'Project home',
  222. 'docs' : 'Documentation',
  223. 'github' : 'Fork us on Github',
  224. 'twitter' : 'Follow us on twitter',
  225. 'facebook' : 'Join us on facebook',
  226. 'team' : 'Team',
  227. 'chiefdev' : 'chief developer',
  228. 'developer' : 'developer',
  229. 'contributor' : 'contributor',
  230. 'maintainer' : 'maintainer',
  231. 'translator' : 'translator',
  232. 'icons' : 'Icons',
  233. 'dontforget' : 'and don\'t forget to take your towel',
  234. 'shortcutsof' : 'Shortcuts disabled',
  235. 'dropFiles' : 'Drop files here',
  236. 'or' : 'or',
  237. 'selectForUpload' : 'Select files to upload',
  238. 'moveFiles' : 'Move files',
  239. 'copyFiles' : 'Copy files',
  240. 'rmFromPlaces' : 'Remove from places',
  241. 'untitled folder' : 'untitled folder',
  242. 'untitled file.txt' : 'untitled file.txt',
  243. 'aspectRatio' : 'Aspect ratio',
  244. 'scale' : 'Scale',
  245. 'width' : 'Width',
  246. 'height' : 'Height',
  247. 'mode' : 'Mode',
  248. 'resize' : 'Resize',
  249. 'crop' : 'Crop',
  250. 'rotate' : 'Rotate',
  251. 'rotate-cw' : 'Rotate 90 degrees CW',
  252. 'rotate-ccw' : 'Rotate 90 degrees CCW',
  253. 'degree' : 'Degree',
  254. /********************************** mimetypes **********************************/
  255. 'kindUnknown' : 'Unknown',
  256. 'kindFolder' : 'Folder',
  257. 'kindAlias' : 'Alias',
  258. 'kindAliasBroken' : 'Broken alias',
  259. // applications
  260. 'kindApp' : 'Application',
  261. 'kindPostscript' : 'Postscript document',
  262. 'kindMsOffice' : 'Microsoft Office document',
  263. 'kindMsWord' : 'Microsoft Word document',
  264. 'kindMsExcel' : 'Microsoft Excel document',
  265. 'kindMsPP' : 'Microsoft Powerpoint presentation',
  266. 'kindOO' : 'Open Office document',
  267. 'kindAppFlash' : 'Flash application',
  268. 'kindPDF' : 'Portable Document Format (PDF)',
  269. 'kindTorrent' : 'Bittorrent file',
  270. 'kind7z' : '7z archive',
  271. 'kindTAR' : 'TAR archive',
  272. 'kindGZIP' : 'GZIP archive',
  273. 'kindBZIP' : 'BZIP archive',
  274. 'kindZIP' : 'ZIP archive',
  275. 'kindRAR' : 'RAR archive',
  276. 'kindJAR' : 'Java JAR file',
  277. 'kindTTF' : 'True Type font',
  278. 'kindOTF' : 'Open Type font',
  279. 'kindRPM' : 'RPM package',
  280. // texts
  281. 'kindText' : 'Text document',
  282. 'kindTextPlain' : 'Plain text',
  283. 'kindPHP' : 'PHP source',
  284. 'kindCSS' : 'Cascading style sheet',
  285. 'kindHTML' : 'HTML document',
  286. 'kindJS' : 'Javascript source',
  287. 'kindRTF' : 'Rich Text Format',
  288. 'kindC' : 'C source',
  289. 'kindCHeader' : 'C header source',
  290. 'kindCPP' : 'C++ source',
  291. 'kindCPPHeader' : 'C++ header source',
  292. 'kindShell' : 'Unix shell script',
  293. 'kindPython' : 'Python source',
  294. 'kindJava' : 'Java source',
  295. 'kindRuby' : 'Ruby source',
  296. 'kindPerl' : 'Perl script',
  297. 'kindSQL' : 'SQL source',
  298. 'kindXML' : 'XML document',
  299. 'kindAWK' : 'AWK source',
  300. 'kindCSV' : 'Comma separated values',
  301. 'kindDOCBOOK' : 'Docbook XML document',
  302. // images
  303. 'kindImage' : 'Image',
  304. 'kindBMP' : 'BMP image',
  305. 'kindJPEG' : 'JPEG image',
  306. 'kindGIF' : 'GIF Image',
  307. 'kindPNG' : 'PNG Image',
  308. 'kindTIFF' : 'TIFF image',
  309. 'kindTGA' : 'TGA image',
  310. 'kindPSD' : 'Adobe Photoshop image',
  311. 'kindXBITMAP' : 'X bitmap image',
  312. 'kindPXM' : 'Pixelmator image',
  313. // media
  314. 'kindAudio' : 'Audio media',
  315. 'kindAudioMPEG' : 'MPEG audio',
  316. 'kindAudioMPEG4' : 'MPEG-4 audio',
  317. 'kindAudioMIDI' : 'MIDI audio',
  318. 'kindAudioOGG' : 'Ogg Vorbis audio',
  319. 'kindAudioWAV' : 'WAV audio',
  320. 'AudioPlaylist' : 'MP3 playlist',
  321. 'kindVideo' : 'Video media',
  322. 'kindVideoDV' : 'DV movie',
  323. 'kindVideoMPEG' : 'MPEG movie',
  324. 'kindVideoMPEG4' : 'MPEG-4 movie',
  325. 'kindVideoAVI' : 'AVI movie',
  326. 'kindVideoMOV' : 'Quick Time movie',
  327. 'kindVideoWM' : 'Windows Media movie',
  328. 'kindVideoFlash' : 'Flash movie',
  329. 'kindVideoMKV' : 'Matroska movie',
  330. 'kindVideoOGG' : 'Ogg movie'
  331. }
  332. }
  333. }