elfinder.LANG.js 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580
  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. (function(root, factory) {
  13. if (typeof define === 'function' && define.amd) {
  14. define(['elfinder'], factory);
  15. } else if (typeof exports !== 'undefined') {
  16. module.exports = factory(require('elfinder'));
  17. } else {
  18. factory(root.elFinder);
  19. }
  20. }(this, function(elFinder) {
  21. elFinder.prototype.i18.REPLACE_WITH_xx_OR_xx_YY_LANG_CODE = {
  22. translator : 'Translator name &lt;translator@email.tld&gt;',
  23. language : 'Language of translation in your language',
  24. direction : 'ltr',
  25. dateFormat : 'M d, Y h:i A', // will show like: Mar 13, 2012 05:27 PM
  26. fancyDateFormat : '$1 h:i A', // will show like: Today 12:25 PM
  27. nonameDateFormat : 'ymd-His', // noname upload will show like: 120513-172700
  28. messages : {
  29. /********************************** errors **********************************/
  30. 'error' : 'Error',
  31. 'errUnknown' : 'Unknown error.',
  32. 'errUnknownCmd' : 'Unknown command.',
  33. 'errJqui' : 'Invalid jQuery UI configuration. Selectable, draggable and droppable components must be included.',
  34. 'errNode' : 'elFinder requires DOM Element to be created.',
  35. 'errURL' : 'Invalid elFinder configuration! URL option is not set.',
  36. 'errAccess' : 'Access denied.',
  37. 'errConnect' : 'Unable to connect to backend.',
  38. 'errAbort' : 'Connection aborted.',
  39. 'errTimeout' : 'Connection timeout.',
  40. 'errNotFound' : 'Backend not found.',
  41. 'errResponse' : 'Invalid backend response.',
  42. 'errConf' : 'Invalid backend configuration.',
  43. 'errJSON' : 'PHP JSON module not installed.',
  44. 'errNoVolumes' : 'Readable volumes not available.',
  45. 'errCmdParams' : 'Invalid parameters for command "$1".',
  46. 'errDataNotJSON' : 'Data is not JSON.',
  47. 'errDataEmpty' : 'Data is empty.',
  48. 'errCmdReq' : 'Backend request requires command name.',
  49. 'errOpen' : 'Unable to open "$1".',
  50. 'errNotFolder' : 'Object is not a folder.',
  51. 'errNotFile' : 'Object is not a file.',
  52. 'errRead' : 'Unable to read "$1".',
  53. 'errWrite' : 'Unable to write into "$1".',
  54. 'errPerm' : 'Permission denied.',
  55. 'errLocked' : '"$1" is locked and can not be renamed, moved or removed.',
  56. 'errExists' : 'Item named "$1" already exists.',
  57. 'errInvName' : 'Invalid file name.',
  58. 'errInvDirname' : 'Invalid folder name.', // from v2.1.24 added 12.4.2017
  59. 'errFolderNotFound' : 'Folder not found.',
  60. 'errFileNotFound' : 'File not found.',
  61. 'errTrgFolderNotFound' : 'Target folder "$1" not found.',
  62. 'errPopup' : 'Browser prevented opening popup window. To open file enable it in browser options.',
  63. 'errMkdir' : 'Unable to create folder "$1".',
  64. 'errMkfile' : 'Unable to create file "$1".',
  65. 'errRename' : 'Unable to rename "$1".',
  66. 'errCopyFrom' : 'Copying files from volume "$1" not allowed.',
  67. 'errCopyTo' : 'Copying files to volume "$1" not allowed.',
  68. 'errMkOutLink' : 'Unable to create a link to outside the volume root.', // from v2.1 added 03.10.2015
  69. 'errUpload' : 'Upload error.', // old name - errUploadCommon
  70. 'errUploadFile' : 'Unable to upload "$1".', // old name - errUpload
  71. 'errUploadNoFiles' : 'No files found for upload.',
  72. 'errUploadTotalSize' : 'Data exceeds the maximum allowed size.', // old name - errMaxSize
  73. 'errUploadFileSize' : 'File exceeds maximum allowed size.', // old name - errFileMaxSize
  74. 'errUploadMime' : 'File type not allowed.',
  75. 'errUploadTransfer' : '"$1" transfer error.',
  76. 'errUploadTemp' : 'Unable to make temporary file for upload.', // from v2.1 added 26.09.2015
  77. 'errNotReplace' : 'Object "$1" already exists at this location and can not be replaced by object with another type.', // new
  78. 'errReplace' : 'Unable to replace "$1".',
  79. 'errSave' : 'Unable to save "$1".',
  80. 'errCopy' : 'Unable to copy "$1".',
  81. 'errMove' : 'Unable to move "$1".',
  82. 'errCopyInItself' : 'Unable to copy "$1" into itself.',
  83. 'errRm' : 'Unable to remove "$1".',
  84. 'errTrash' : 'Unable into trash.', // from v2.1.24 added 30.4.2017
  85. 'errRmSrc' : 'Unable remove source file(s).',
  86. 'errExtract' : 'Unable to extract files from "$1".',
  87. 'errArchive' : 'Unable to create archive.',
  88. 'errArcType' : 'Unsupported archive type.',
  89. 'errNoArchive' : 'File is not archive or has unsupported archive type.',
  90. 'errCmdNoSupport' : 'Backend does not support this command.',
  91. 'errReplByChild' : 'The folder "$1" can\'t be replaced by an item it contains.',
  92. 'errArcSymlinks' : 'For security reason denied to unpack archives contains symlinks or files with not allowed names.', // edited 24.06.2012
  93. 'errArcMaxSize' : 'Archive files exceeds maximum allowed size.',
  94. 'errResize' : 'Unable to resize "$1".',
  95. 'errResizeDegree' : 'Invalid rotate degree.', // added 7.3.2013
  96. 'errResizeRotate' : 'Unable to rotate image.', // added 7.3.2013
  97. 'errResizeSize' : 'Invalid image size.', // added 7.3.2013
  98. 'errResizeNoChange' : 'Image size not changed.', // added 7.3.2013
  99. 'errUsupportType' : 'Unsupported file type.',
  100. 'errNotUTF8Content' : 'File "$1" is not in UTF-8 and cannot be edited.', // added 9.11.2011
  101. 'errNetMount' : 'Unable to mount "$1".', // added 17.04.2012
  102. 'errNetMountNoDriver' : 'Unsupported protocol.', // added 17.04.2012
  103. 'errNetMountFailed' : 'Mount failed.', // added 17.04.2012
  104. 'errNetMountHostReq' : 'Host required.', // added 18.04.2012
  105. 'errSessionExpires' : 'Your session has expired due to inactivity.',
  106. 'errCreatingTempDir' : 'Unable to create temporary directory: "$1"',
  107. 'errFtpDownloadFile' : 'Unable to download file from FTP: "$1"',
  108. 'errFtpUploadFile' : 'Unable to upload file to FTP: "$1"',
  109. 'errFtpMkdir' : 'Unable to create remote directory on FTP: "$1"',
  110. 'errArchiveExec' : 'Error while archiving files: "$1"',
  111. 'errExtractExec' : 'Error while extracting files: "$1"',
  112. 'errNetUnMount' : 'Unable to unmount.', // from v2.1 added 30.04.2012
  113. 'errConvUTF8' : 'Not convertible to UTF-8', // from v2.1 added 08.04.2014
  114. 'errFolderUpload' : 'Try the modern browser, If you\'d like to upload the folder.', // from v2.1 added 26.6.2015
  115. 'errSearchTimeout' : 'Timed out while searching "$1". Search result is partial.', // from v2.1 added 12.1.2016
  116. 'errReauthRequire' : 'Re-authorization is required.', // from v2.1.10 added 24.3.2016
  117. 'errMaxTargets' : 'Max number of selectable items is $1.', // from v2.1.17 added 17.10.2016
  118. 'errRestore' : 'Unable to restore from the trash. Can\'t identify the restore destination.', // from v2.1.24 added 3.5.2017
  119. 'errEditorNotFound' : 'Editor not found to this file type.', // from v2.1.25 added 23.5.2017
  120. 'errServerError' : 'Error occurred on the server side.', // from v2.1.25 added 16.6.2017
  121. 'errEmpty' : 'Unable to empty folder "$1".', // from v2.1.25 added 22.6.2017
  122. /******************************* commands names ********************************/
  123. 'cmdarchive' : 'Create archive',
  124. 'cmdback' : 'Back',
  125. 'cmdcopy' : 'Copy',
  126. 'cmdcut' : 'Cut',
  127. 'cmddownload' : 'Download',
  128. 'cmdduplicate' : 'Duplicate',
  129. 'cmdedit' : 'Edit file',
  130. 'cmdextract' : 'Extract files from archive',
  131. 'cmdforward' : 'Forward',
  132. 'cmdgetfile' : 'Select files',
  133. 'cmdhelp' : 'About this software',
  134. 'cmdhome' : 'Root',
  135. 'cmdinfo' : 'Get info',
  136. 'cmdmkdir' : 'New folder',
  137. 'cmdmkdirin' : 'Into New Folder', // from v2.1.7 added 19.2.2016
  138. 'cmdmkfile' : 'New file',
  139. 'cmdopen' : 'Open',
  140. 'cmdpaste' : 'Paste',
  141. 'cmdquicklook' : 'Preview',
  142. 'cmdreload' : 'Reload',
  143. 'cmdrename' : 'Rename',
  144. 'cmdrm' : 'Delete',
  145. 'cmdtrash' : 'Into trash', //from v2.1.24 added 29.4.2017
  146. 'cmdrestore' : 'Restore', //from v2.1.24 added 3.5.2017
  147. 'cmdsearch' : 'Find files',
  148. 'cmdup' : 'Go to parent folder',
  149. 'cmdupload' : 'Upload files',
  150. 'cmdview' : 'View',
  151. 'cmdresize' : 'Resize & Rotate',
  152. 'cmdsort' : 'Sort',
  153. 'cmdnetmount' : 'Mount network volume', // added 18.04.2012
  154. 'cmdnetunmount': 'Unmount', // from v2.1 added 30.04.2012
  155. 'cmdplaces' : 'To Places', // added 28.12.2014
  156. 'cmdchmod' : 'Change mode', // from v2.1 added 20.6.2015
  157. 'cmdopendir' : 'Open a folder', // from v2.1 added 13.1.2016
  158. 'cmdcolwidth' : 'Reset column width', // from v2.1.13 added 12.06.2016
  159. 'cmdfullscreen': 'Full Screen', // from v2.1.15 added 03.08.2016
  160. 'cmdmove' : 'Move', // from v2.1.15 added 21.08.2016
  161. 'cmdempty' : 'Empty the folder', // from v2.1.25 added 22.06.2017
  162. 'cmdundo' : 'Undo', // from v2.1.27 added 31.07.2017
  163. 'cmdredo' : 'Redo', // from v2.1.27 added 31.07.2017
  164. 'cmdpreference': 'Preferences', // from v2.1.27 added 03.08.2017
  165. 'cmdselectall' : 'Select all', // from v2.1.28 added 15.08.2017
  166. 'cmdselectnone': 'Select none', // from v2.1.28 added 15.08.2017
  167. 'cmdselectinvert': 'Invert selection', // from v2.1.28 added 15.08.2017
  168. 'cmdopennew' : 'Open in new window', // from v2.1.38 added 3.4.2018
  169. 'cmdhide' : 'Hide (Preference)', // from v2.1.41 added 24.7.2018
  170. /*********************************** buttons ***********************************/
  171. 'btnClose' : 'Close',
  172. 'btnSave' : 'Save',
  173. 'btnRm' : 'Remove',
  174. 'btnApply' : 'Apply',
  175. 'btnCancel' : 'Cancel',
  176. 'btnNo' : 'No',
  177. 'btnYes' : 'Yes',
  178. 'btnMount' : 'Mount', // added 18.04.2012
  179. 'btnApprove': 'Goto $1 & approve', // from v2.1 added 26.04.2012
  180. 'btnUnmount': 'Unmount', // from v2.1 added 30.04.2012
  181. 'btnConv' : 'Convert', // from v2.1 added 08.04.2014
  182. 'btnCwd' : 'Here', // from v2.1 added 22.5.2015
  183. 'btnVolume' : 'Volume', // from v2.1 added 22.5.2015
  184. 'btnAll' : 'All', // from v2.1 added 22.5.2015
  185. 'btnMime' : 'MIME Type', // from v2.1 added 22.5.2015
  186. 'btnFileName':'Filename', // from v2.1 added 22.5.2015
  187. 'btnSaveClose': 'Save & Close', // from v2.1 added 12.6.2015
  188. 'btnBackup' : 'Backup', // fromv2.1 added 28.11.2015
  189. 'btnRename' : 'Rename', // from v2.1.24 added 6.4.2017
  190. 'btnRenameAll' : 'Rename(All)', // from v2.1.24 added 6.4.2017
  191. 'btnPrevious' : 'Prev ($1/$2)', // from v2.1.24 added 11.5.2017
  192. 'btnNext' : 'Next ($1/$2)', // from v2.1.24 added 11.5.2017
  193. 'btnSaveAs' : 'Save As', // from v2.1.25 added 24.5.2017
  194. /******************************** notifications ********************************/
  195. 'ntfopen' : 'Open folder',
  196. 'ntffile' : 'Open file',
  197. 'ntfreload' : 'Reload folder content',
  198. 'ntfmkdir' : 'Creating folder',
  199. 'ntfmkfile' : 'Creating files',
  200. 'ntfrm' : 'Delete items',
  201. 'ntfcopy' : 'Copy items',
  202. 'ntfmove' : 'Move items',
  203. 'ntfprepare' : 'Checking existing items',
  204. 'ntfrename' : 'Rename files',
  205. 'ntfupload' : 'Uploading files',
  206. 'ntfdownload' : 'Downloading files',
  207. 'ntfsave' : 'Save files',
  208. 'ntfarchive' : 'Creating archive',
  209. 'ntfextract' : 'Extracting files from archive',
  210. 'ntfsearch' : 'Searching files',
  211. 'ntfresize' : 'Resizing images',
  212. 'ntfsmth' : 'Doing something',
  213. 'ntfloadimg' : 'Loading image',
  214. 'ntfnetmount' : 'Mounting network volume', // added 18.04.2012
  215. 'ntfnetunmount': 'Unmounting network volume', // from v2.1 added 30.04.2012
  216. 'ntfdim' : 'Acquiring image dimension', // added 20.05.2013
  217. 'ntfreaddir' : 'Reading folder infomation', // from v2.1 added 01.07.2013
  218. 'ntfurl' : 'Getting URL of link', // from v2.1 added 11.03.2014
  219. 'ntfchmod' : 'Changing file mode', // from v2.1 added 20.6.2015
  220. 'ntfpreupload': 'Verifying upload file name', // from v2.1 added 31.11.2015
  221. 'ntfzipdl' : 'Creating a file for download', // from v2.1.7 added 23.1.2016
  222. 'ntfparents' : 'Getting path infomation', // from v2.1.17 added 2.11.2016
  223. 'ntfchunkmerge': 'Processing the uploaded file', // from v2.1.17 added 2.11.2016
  224. 'ntftrash' : 'Doing throw in the trash', // from v2.1.24 added 2.5.2017
  225. 'ntfrestore' : 'Doing restore from the trash', // from v2.1.24 added 3.5.2017
  226. 'ntfchkdir' : 'Checking destination folder', // from v2.1.24 added 3.5.2017
  227. 'ntfundo' : 'Undoing previous operation', // from v2.1.27 added 31.07.2017
  228. 'ntfredo' : 'Redoing previous undone', // from v2.1.27 added 31.07.2017
  229. 'ntfchkcontent' : 'Checking contents', // from v2.1.41 added 3.8.2018
  230. /*********************************** volumes *********************************/
  231. 'volume_Trash' : 'Trash', //from v2.1.24 added 29.4.2017
  232. /************************************ dates **********************************/
  233. 'dateUnknown' : 'unknown',
  234. 'Today' : 'Today',
  235. 'Yesterday' : 'Yesterday',
  236. 'msJan' : 'Jan',
  237. 'msFeb' : 'Feb',
  238. 'msMar' : 'Mar',
  239. 'msApr' : 'Apr',
  240. 'msMay' : 'May',
  241. 'msJun' : 'Jun',
  242. 'msJul' : 'Jul',
  243. 'msAug' : 'Aug',
  244. 'msSep' : 'Sep',
  245. 'msOct' : 'Oct',
  246. 'msNov' : 'Nov',
  247. 'msDec' : 'Dec',
  248. 'January' : 'January',
  249. 'February' : 'February',
  250. 'March' : 'March',
  251. 'April' : 'April',
  252. 'May' : 'May',
  253. 'June' : 'June',
  254. 'July' : 'July',
  255. 'August' : 'August',
  256. 'September' : 'September',
  257. 'October' : 'October',
  258. 'November' : 'November',
  259. 'December' : 'December',
  260. 'Sunday' : 'Sunday',
  261. 'Monday' : 'Monday',
  262. 'Tuesday' : 'Tuesday',
  263. 'Wednesday' : 'Wednesday',
  264. 'Thursday' : 'Thursday',
  265. 'Friday' : 'Friday',
  266. 'Saturday' : 'Saturday',
  267. 'Sun' : 'Sun',
  268. 'Mon' : 'Mon',
  269. 'Tue' : 'Tue',
  270. 'Wed' : 'Wed',
  271. 'Thu' : 'Thu',
  272. 'Fri' : 'Fri',
  273. 'Sat' : 'Sat',
  274. /******************************** sort variants ********************************/
  275. 'sortname' : 'by name',
  276. 'sortkind' : 'by kind',
  277. 'sortsize' : 'by size',
  278. 'sortdate' : 'by date',
  279. 'sortFoldersFirst' : 'Folders first',
  280. 'sortperm' : 'by permission', // from v2.1.13 added 13.06.2016
  281. 'sortmode' : 'by mode', // from v2.1.13 added 13.06.2016
  282. 'sortowner' : 'by owner', // from v2.1.13 added 13.06.2016
  283. 'sortgroup' : 'by group', // from v2.1.13 added 13.06.2016
  284. 'sortAlsoTreeview' : 'Also Treeview', // from v2.1.15 added 01.08.2016
  285. /********************************** new items **********************************/
  286. 'untitled file.txt' : 'NewFile.txt', // added 10.11.2015
  287. 'untitled folder' : 'NewFolder', // added 10.11.2015
  288. 'Archive' : 'NewArchive', // from v2.1 added 10.11.2015
  289. 'untitled file' : 'NewFile.$1', // from v2.1.41 added 6.8.2018
  290. 'extentionfile' : '$1: File', // from v2.1.41 added 6.8.2018
  291. 'extentiontype' : '$1: $2', // from v2.1.43 added 17.10.2018
  292. /********************************** messages **********************************/
  293. 'confirmReq' : 'Confirmation required',
  294. 'confirmRm' : 'Are you sure you want to permanently remove items?<br/>This cannot be undone!',
  295. 'confirmRepl' : 'Replace old file with new one? (If it contains folders, it will be merged. To backup and replace, select Backup.)',
  296. 'confirmRest' : 'Replace existing item with the item in trash?', // fromv2.1.24 added 5.5.2017
  297. 'confirmConvUTF8' : 'Not in UTF-8<br/>Convert to UTF-8?<br/>Contents become UTF-8 by saving after conversion.', // from v2.1 added 08.04.2014
  298. 'confirmNonUTF8' : 'Character encoding of this file couldn\'t be detected. It need to temporarily convert to UTF-8 for editting.<br/>Please select character encoding of this file.', // from v2.1.19 added 28.11.2016
  299. 'confirmNotSave' : 'It has been modified.<br/>Losing work if you do not save changes.', // from v2.1 added 15.7.2015
  300. 'confirmTrash' : 'Are you sure you want to move items to trash bin?', //from v2.1.24 added 29.4.2017
  301. 'apllyAll' : 'Apply to all',
  302. 'name' : 'Name',
  303. 'size' : 'Size',
  304. 'perms' : 'Permissions',
  305. 'modify' : 'Modified',
  306. 'kind' : 'Kind',
  307. 'read' : 'read',
  308. 'write' : 'write',
  309. 'noaccess' : 'no access',
  310. 'and' : 'and',
  311. 'unknown' : 'unknown',
  312. 'selectall' : 'Select all items',
  313. 'selectfiles' : 'Select item(s)',
  314. 'selectffile' : 'Select first item',
  315. 'selectlfile' : 'Select last item',
  316. 'viewlist' : 'List view',
  317. 'viewicons' : 'Icons view',
  318. 'viewSmall' : 'Small icons', // from v2.1.39 added 22.5.2018
  319. 'viewMedium' : 'Medium icons', // from v2.1.39 added 22.5.2018
  320. 'viewLarge' : 'Large icons', // from v2.1.39 added 22.5.2018
  321. 'viewExtraLarge' : 'Extra large icons', // from v2.1.39 added 22.5.2018
  322. 'places' : 'Places',
  323. 'calc' : 'Calculate',
  324. 'path' : 'Path',
  325. 'aliasfor' : 'Alias for',
  326. 'locked' : 'Locked',
  327. 'dim' : 'Dimensions',
  328. 'files' : 'Files',
  329. 'folders' : 'Folders',
  330. 'items' : 'Items',
  331. 'yes' : 'yes',
  332. 'no' : 'no',
  333. 'link' : 'Link',
  334. 'searcresult' : 'Search results',
  335. 'selected' : 'selected items',
  336. 'about' : 'About',
  337. 'shortcuts' : 'Shortcuts',
  338. 'help' : 'Help',
  339. 'webfm' : 'Web file manager',
  340. 'ver' : 'Version',
  341. 'protocolver' : 'protocol version',
  342. 'homepage' : 'Project home',
  343. 'docs' : 'Documentation',
  344. 'github' : 'Fork us on GitHub',
  345. 'twitter' : 'Follow us on Twitter',
  346. 'facebook' : 'Join us on Facebook',
  347. 'team' : 'Team',
  348. 'chiefdev' : 'chief developer',
  349. 'developer' : 'developer',
  350. 'contributor' : 'contributor',
  351. 'maintainer' : 'maintainer',
  352. 'translator' : 'translator',
  353. 'icons' : 'Icons',
  354. 'dontforget' : 'and don\'t forget to take your towel',
  355. 'shortcutsof' : 'Shortcuts disabled',
  356. 'dropFiles' : 'Drop files here',
  357. 'or' : 'or',
  358. 'selectForUpload' : 'Select files',
  359. 'moveFiles' : 'Move items',
  360. 'copyFiles' : 'Copy items',
  361. 'restoreFiles' : 'Restore items', // from v2.1.24 added 5.5.2017
  362. 'rmFromPlaces' : 'Remove from places',
  363. 'aspectRatio' : 'Aspect ratio',
  364. 'scale' : 'Scale',
  365. 'width' : 'Width',
  366. 'height' : 'Height',
  367. 'resize' : 'Resize',
  368. 'crop' : 'Crop',
  369. 'rotate' : 'Rotate',
  370. 'rotate-cw' : 'Rotate 90 degrees CW',
  371. 'rotate-ccw' : 'Rotate 90 degrees CCW',
  372. 'degree' : '°',
  373. 'netMountDialogTitle' : 'Mount network volume', // added 18.04.2012
  374. 'protocol' : 'Protocol', // added 18.04.2012
  375. 'host' : 'Host', // added 18.04.2012
  376. 'port' : 'Port', // added 18.04.2012
  377. 'user' : 'User', // added 18.04.2012
  378. 'pass' : 'Password', // added 18.04.2012
  379. 'confirmUnmount' : 'Are you unmount $1?', // from v2.1 added 30.04.2012
  380. 'dropFilesBrowser': 'Drop or Paste files from browser', // from v2.1 added 30.05.2012
  381. 'dropPasteFiles' : 'Drop files, Paste URLs or images(clipboard) here', // from v2.1 added 07.04.2014
  382. 'encoding' : 'Encoding', // from v2.1 added 19.12.2014
  383. 'locale' : 'Locale', // from v2.1 added 19.12.2014
  384. 'searchTarget' : 'Target: $1', // from v2.1 added 22.5.2015
  385. 'searchMime' : 'Search by input MIME Type', // from v2.1 added 22.5.2015
  386. 'owner' : 'Owner', // from v2.1 added 20.6.2015
  387. 'group' : 'Group', // from v2.1 added 20.6.2015
  388. 'other' : 'Other', // from v2.1 added 20.6.2015
  389. 'execute' : 'Execute', // from v2.1 added 20.6.2015
  390. 'perm' : 'Permission', // from v2.1 added 20.6.2015
  391. 'mode' : 'Mode', // from v2.1 added 20.6.2015
  392. 'emptyFolder' : 'Folder is empty', // from v2.1.6 added 30.12.2015
  393. 'emptyFolderDrop' : 'Folder is empty\\A Drop to add items', // from v2.1.6 added 30.12.2015
  394. 'emptyFolderLTap' : 'Folder is empty\\A Long tap to add items', // from v2.1.6 added 30.12.2015
  395. 'quality' : 'Quality', // from v2.1.6 added 5.1.2016
  396. 'autoSync' : 'Auto sync', // from v2.1.6 added 10.1.2016
  397. 'moveUp' : 'Move up', // from v2.1.6 added 18.1.2016
  398. 'getLink' : 'Get URL link', // from v2.1.7 added 9.2.2016
  399. 'selectedItems' : 'Selected items ($1)', // from v2.1.7 added 2.19.2016
  400. 'folderId' : 'Folder ID', // from v2.1.10 added 3.25.2016
  401. 'offlineAccess' : 'Allow offline access', // from v2.1.10 added 3.25.2016
  402. 'reAuth' : 'To re-authenticate', // from v2.1.10 added 3.25.2016
  403. 'nowLoading' : 'Now loading...', // from v2.1.12 added 4.26.2016
  404. 'openMulti' : 'Open multiple files', // from v2.1.12 added 5.14.2016
  405. 'openMultiConfirm': 'You are trying to open the $1 files. Are you sure you want to open in browser?', // from v2.1.12 added 5.14.2016
  406. 'emptySearch' : 'Search results is empty in search target.', // from v2.1.12 added 5.16.2016
  407. 'editingFile' : 'It is editing a file.', // from v2.1.13 added 6.3.2016
  408. 'hasSelected' : 'You have selected $1 items.', // from v2.1.13 added 6.3.2016
  409. 'hasClipboard' : 'You have $1 items in the clipboard.', // from v2.1.13 added 6.3.2016
  410. 'incSearchOnly' : 'Incremental search is only from the current view.', // from v2.1.13 added 6.30.2016
  411. 'reinstate' : 'Reinstate', // from v2.1.15 added 3.8.2016
  412. 'complete' : '$1 complete', // from v2.1.15 added 21.8.2016
  413. 'contextmenu' : 'Context menu', // from v2.1.15 added 9.9.2016
  414. 'pageTurning' : 'Page turning', // from v2.1.15 added 10.9.2016
  415. 'volumeRoots' : 'Volume roots', // from v2.1.16 added 16.9.2016
  416. 'reset' : 'Reset', // from v2.1.16 added 1.10.2016
  417. 'bgcolor' : 'Background color', // from v2.1.16 added 1.10.2016
  418. 'colorPicker' : 'Color picker', // from v2.1.16 added 1.10.2016
  419. '8pxgrid' : '8px Grid', // from v2.1.16 added 4.10.2016
  420. 'enabled' : 'Enabled', // from v2.1.16 added 4.10.2016
  421. 'disabled' : 'Disabled', // from v2.1.16 added 4.10.2016
  422. 'emptyIncSearch' : 'Search results is empty in current view.\\APress [Enter] to expand search target.', // from v2.1.16 added 5.10.2016
  423. 'emptyLetSearch' : 'First letter search results is empty in current view.', // from v2.1.23 added 24.3.2017
  424. 'textLabel' : 'Text label', // from v2.1.17 added 13.10.2016
  425. 'minsLeft' : '$1 mins left', // from v2.1.17 added 13.11.2016
  426. 'openAsEncoding' : 'Reopen with selected encoding', // from v2.1.19 added 2.12.2016
  427. 'saveAsEncoding' : 'Save with the selected encoding', // from v2.1.19 added 2.12.2016
  428. 'selectFolder' : 'Select folder', // from v2.1.20 added 13.12.2016
  429. 'firstLetterSearch': 'First letter search', // from v2.1.23 added 24.3.2017
  430. 'presets' : 'Presets', // from v2.1.25 added 26.5.2017
  431. 'tooManyToTrash' : 'It\'s too many items so it can\'t into trash.', // from v2.1.25 added 9.6.2017
  432. 'TextArea' : 'TextArea', // from v2.1.25 added 14.6.2017
  433. 'folderToEmpty' : 'Empty the folder "$1".', // from v2.1.25 added 22.6.2017
  434. 'filderIsEmpty' : 'There are no items in a folder "$1".', // from v2.1.25 added 22.6.2017
  435. 'preference' : 'Preference', // from v2.1.26 added 28.6.2017
  436. 'language' : 'Language', // from v2.1.26 added 28.6.2017
  437. 'clearBrowserData': 'Initialize the settings saved in this browser', // from v2.1.26 added 28.6.2017
  438. 'toolbarPref' : 'Toolbar settings', // from v2.1.27 added 2.8.2017
  439. 'charsLeft' : '... $1 chars left.', // from v2.1.29 added 30.8.2017
  440. 'sum' : 'Sum', // from v2.1.29 added 28.9.2017
  441. 'roughFileSize' : 'Rough file size', // from v2.1.30 added 2.11.2017
  442. 'autoFocusDialog' : 'Focus on the element of dialog with mouseover', // from v2.1.30 added 2.11.2017
  443. 'select' : 'Select', // from v2.1.30 added 23.11.2017
  444. 'selectAction' : 'Action when select file', // from v2.1.30 added 23.11.2017
  445. 'useStoredEditor' : 'Open with the editor used last time', // from v2.1.30 added 23.11.2017
  446. 'selectinvert' : 'Invert selection', // from v2.1.30 added 25.11.2017
  447. 'renameMultiple' : 'Are you sure you want to rename $1 selected items like $2?<br/>This cannot be undone!', // from v2.1.31 added 4.12.2017
  448. 'batchRename' : 'Batch rename', // from v2.1.31 added 8.12.2017
  449. 'plusNumber' : '+ Number', // from v2.1.31 added 8.12.2017
  450. 'asPrefix' : 'Add prefix', // from v2.1.31 added 8.12.2017
  451. 'asSuffix' : 'Add suffix', // from v2.1.31 added 8.12.2017
  452. 'changeExtention' : 'Change extention', // from v2.1.31 added 8.12.2017
  453. 'columnPref' : 'Columns settings (List view)', // from v2.1.32 added 6.2.2018
  454. 'reflectOnImmediate' : 'All changes will reflect immediately to the archive.', // from v2.1.33 added 2.3.2018
  455. 'reflectOnUnmount' : 'Any changes will not reflect until un-mount this volume.', // from v2.1.33 added 2.3.2018
  456. 'unmountChildren' : 'The following volume(s) mounted on this volume also unmounted. Are you sure to unmount it?', // from v2.1.33 added 5.3.2018
  457. 'selectionInfo' : 'Selection Info', // from v2.1.33 added 7.3.2018
  458. 'hashChecker' : 'Algorithms to show the file hash', // from v2.1.33 added 10.3.2018
  459. 'infoItems' : 'Info Items (Selection Info Panel)', // from v2.1.38 added 28.3.2018
  460. 'pressAgainToExit': 'Press again to exit.', // from v2.1.38 added 1.4.2018
  461. 'toolbar' : 'Toolbar', // from v2.1.38 added 4.4.2018
  462. 'workspace' : 'Work Space', // from v2.1.38 added 4.4.2018
  463. 'dialog' : 'Dialog', // from v2.1.38 added 4.4.2018
  464. 'all' : 'All', // from v2.1.38 added 4.4.2018
  465. 'iconSize' : 'Icon Size (Icons view)', // from v2.1.39 added 7.5.2018
  466. 'editorMaximized' : 'Open the maximized editor window', // from v2.1.40 added 30.6.2018
  467. 'editorConvNoApi' : 'Because conversion by API is not currently available, please convert on the website.', //from v2.1.40 added 8.7.2018
  468. 'editorConvNeedUpload' : 'After conversion, you must be upload with the item URL or a downloaded file to save the converted file.', //from v2.1.40 added 8.7.2018
  469. 'convertOn' : 'Convert on the site of $1', // from v2.1.40 added 10.7.2018
  470. 'integrations' : 'Integrations', // from v2.1.40 added 11.7.2018
  471. 'integrationWith' : 'This elFinder has the following external services integrated. Please check the terms of use, privacy policy, etc. before using it.', // from v2.1.40 added 11.7.2018
  472. 'showHidden' : 'Show hidden items', // from v2.1.41 added 24.7.2018
  473. 'hideHidden' : 'Hide hidden items', // from v2.1.41 added 24.7.2018
  474. 'toggleHidden' : 'Show/Hide hidden items', // from v2.1.41 added 24.7.2018
  475. 'makefileTypes' : 'File types to enable with "New file"', // from v2.1.41 added 7.8.2018
  476. 'typeOfTextfile' : 'Type of the Text file', // from v2.1.41 added 7.8.2018
  477. 'add' : 'Add', // from v2.1.41 added 7.8.2018
  478. 'theme' : 'Theme', // from v2.1.43 added 19.10.2018
  479. 'default' : 'Default', // from v2.1.43 added 19.10.2018
  480. 'description' : 'Description', // from v2.1.43 added 19.10.2018
  481. 'website' : 'Website', // from v2.1.43 added 19.10.2018
  482. 'author' : 'Author', // from v2.1.43 added 19.10.2018
  483. 'email' : 'Email', // from v2.1.43 added 19.10.2018
  484. 'license' : 'License', // from v2.1.43 added 19.10.2018
  485. /********************************** mimetypes **********************************/
  486. 'kindUnknown' : 'Unknown',
  487. 'kindRoot' : 'Volume Root', // from v2.1.16 added 16.10.2016
  488. 'kindFolder' : 'Folder',
  489. 'kindSelects' : 'Selections', // from v2.1.29 added 29.8.2017
  490. 'kindAlias' : 'Alias',
  491. 'kindAliasBroken' : 'Broken alias',
  492. // applications
  493. 'kindApp' : 'Application',
  494. 'kindPostscript' : 'Postscript document',
  495. 'kindMsOffice' : 'Microsoft Office document',
  496. 'kindMsWord' : 'Microsoft Word document',
  497. 'kindMsExcel' : 'Microsoft Excel document',
  498. 'kindMsPP' : 'Microsoft Powerpoint presentation',
  499. 'kindOO' : 'Open Office document',
  500. 'kindAppFlash' : 'Flash application',
  501. 'kindPDF' : 'Portable Document Format (PDF)',
  502. 'kindTorrent' : 'Bittorrent file',
  503. 'kind7z' : '7z archive',
  504. 'kindTAR' : 'TAR archive',
  505. 'kindGZIP' : 'GZIP archive',
  506. 'kindBZIP' : 'BZIP archive',
  507. 'kindXZ' : 'XZ archive',
  508. 'kindZIP' : 'ZIP archive',
  509. 'kindRAR' : 'RAR archive',
  510. 'kindJAR' : 'Java JAR file',
  511. 'kindTTF' : 'True Type font',
  512. 'kindOTF' : 'Open Type font',
  513. 'kindRPM' : 'RPM package',
  514. // texts
  515. 'kindText' : 'Text document',
  516. 'kindTextPlain' : 'Plain text',
  517. 'kindPHP' : 'PHP source',
  518. 'kindCSS' : 'Cascading style sheet',
  519. 'kindHTML' : 'HTML document',
  520. 'kindJS' : 'Javascript source',
  521. 'kindRTF' : 'Rich Text Format',
  522. 'kindC' : 'C source',
  523. 'kindCHeader' : 'C header source',
  524. 'kindCPP' : 'C++ source',
  525. 'kindCPPHeader' : 'C++ header source',
  526. 'kindShell' : 'Unix shell script',
  527. 'kindPython' : 'Python source',
  528. 'kindJava' : 'Java source',
  529. 'kindRuby' : 'Ruby source',
  530. 'kindPerl' : 'Perl script',
  531. 'kindSQL' : 'SQL source',
  532. 'kindXML' : 'XML document',
  533. 'kindAWK' : 'AWK source',
  534. 'kindCSV' : 'Comma separated values',
  535. 'kindDOCBOOK' : 'Docbook XML document',
  536. 'kindMarkdown' : 'Markdown text', // added 20.7.2015
  537. // images
  538. 'kindImage' : 'Image',
  539. 'kindBMP' : 'BMP image',
  540. 'kindJPEG' : 'JPEG image',
  541. 'kindGIF' : 'GIF Image',
  542. 'kindPNG' : 'PNG Image',
  543. 'kindTIFF' : 'TIFF image',
  544. 'kindTGA' : 'TGA image',
  545. 'kindPSD' : 'Adobe Photoshop image',
  546. 'kindXBITMAP' : 'X bitmap image',
  547. 'kindPXM' : 'Pixelmator image',
  548. // media
  549. 'kindAudio' : 'Audio media',
  550. 'kindAudioMPEG' : 'MPEG audio',
  551. 'kindAudioMPEG4' : 'MPEG-4 audio',
  552. 'kindAudioMIDI' : 'MIDI audio',
  553. 'kindAudioOGG' : 'Ogg Vorbis audio',
  554. 'kindAudioWAV' : 'WAV audio',
  555. 'AudioPlaylist' : 'MP3 playlist',
  556. 'kindVideo' : 'Video media',
  557. 'kindVideoDV' : 'DV movie',
  558. 'kindVideoMPEG' : 'MPEG movie',
  559. 'kindVideoMPEG4' : 'MPEG-4 movie',
  560. 'kindVideoAVI' : 'AVI movie',
  561. 'kindVideoMOV' : 'Quick Time movie',
  562. 'kindVideoWM' : 'Windows Media movie',
  563. 'kindVideoFlash' : 'Flash movie',
  564. 'kindVideoMKV' : 'Matroska movie',
  565. 'kindVideoOGG' : 'Ogg movie'
  566. }
  567. };
  568. }));