elfinder.LANG.js 14 KB

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