NonVisual.dfm 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429
  1. object NonVisualDataModule: TNonVisualDataModule
  2. OldCreateOrder = False
  3. Height = 502
  4. Width = 624
  5. object RemoteFilePopup: TTBXPopupMenu
  6. Images = GlyphsModule.ExplorerImages
  7. Options = [tboShowHint]
  8. Left = 424
  9. Top = 336
  10. object TBXItem23: TTBXItem
  11. Action = CurrentAddEditLinkContextAction
  12. end
  13. object RemoteOpenMenuItem: TTBXItem
  14. Action = CurrentOpenAction
  15. end
  16. object RemoteEditMenuItem: TTBXSubmenuItem
  17. Action = CurrentEditFocusedAction
  18. DropdownCombo = True
  19. OnPopup = FocusedEditMenuItemPopup
  20. end
  21. object RemoteCopyMenuItem: TTBXSubmenuItem
  22. Action = RemoteCopyFocusedAction
  23. DropdownCombo = True
  24. object TBXItem72: TTBXItem
  25. Action = RemoteCopyFocusedNonQueueAction
  26. end
  27. object TBXItem69: TTBXItem
  28. Action = RemoteCopyFocusedQueueAction
  29. end
  30. object TBXSeparatorItem9: TTBXSeparatorItem
  31. end
  32. object Moveto1: TTBXItem
  33. Action = RemoteMoveFocusedAction
  34. end
  35. end
  36. object Duplicate3: TTBXItem
  37. Action = RemoteCopyToFocusedAction
  38. end
  39. object Moveto6: TTBXItem
  40. Action = RemoteMoveToFocusedAction
  41. end
  42. object Delete1: TTBXItem
  43. Action = CurrentDeleteFocusedAction
  44. end
  45. object Rename1: TTBXItem
  46. Action = CurrentRenameAction
  47. end
  48. object TBXSeparatorItem12: TTBXSeparatorItem
  49. end
  50. object TBXItem82: TTBXItem
  51. Action = CurrentCopyToClipboardFocusedAction2
  52. end
  53. object N45: TTBXSeparatorItem
  54. end
  55. object RemoteFilePopupCustomCommandsMenu: TTBXSubmenuItem
  56. Action = CustomCommandsFileAction
  57. object TTBXItem
  58. end
  59. end
  60. object FileNames3: TTBXSubmenuItem
  61. Caption = '&File Names'
  62. HelpKeyword = 'filenames'
  63. Hint = 'Operations with name(s) of selected file(s)'
  64. object InserttoCommandLine2: TTBXItem
  65. Action = FileListToCommandLineAction
  66. end
  67. object CopytoClipboard3: TTBXItem
  68. Action = FileListToClipboardAction
  69. end
  70. object CopytoClipboardIncludePaths3: TTBXItem
  71. Action = FullFileListToClipboardAction
  72. end
  73. object CopyURLtoClipboard3: TTBXItem
  74. Action = FileGenerateUrlAction2
  75. end
  76. end
  77. object N1: TTBXSeparatorItem
  78. end
  79. object Properties1: TTBXItem
  80. Action = CurrentPropertiesFocusedAction
  81. end
  82. end
  83. object ExplorerActions: TActionList
  84. Images = GlyphsModule.ExplorerImages
  85. OnExecute = ExplorerActionsExecute
  86. OnUpdate = ExplorerActionsUpdate
  87. Left = 440
  88. Top = 24
  89. object RemoteCopyQueueAction: TAction
  90. Tag = 14
  91. Category = 'Remote Selected Operation'
  92. Caption = 'Download in &Background...'
  93. HelpKeyword = 'task_download'
  94. Hint =
  95. 'Download selected remote file(s) to local directory in backgroun' +
  96. 'd'
  97. ImageIndex = 107
  98. end
  99. object RemoteCopyFocusedQueueAction: TAction
  100. Tag = 12
  101. Category = 'Remote Focused Operation'
  102. Caption = 'Download in &Background...'
  103. HelpKeyword = 'task_download'
  104. Hint =
  105. 'Download selected remote file(s) to local directory in backgroun' +
  106. 'd'
  107. ImageIndex = 107
  108. end
  109. object LocalCopyQueueAction: TAction
  110. Tag = 9
  111. Category = 'Local Selected Operation'
  112. Caption = 'Upload in &Background...'
  113. HelpKeyword = 'task_upload'
  114. Hint = 'Upload selected local file(s) to remote directory in background'
  115. ImageIndex = 108
  116. end
  117. object LocalCopyFocusedQueueAction: TAction
  118. Tag = 8
  119. Category = 'Local Focused Operation'
  120. Caption = 'Upload in &Background...'
  121. HelpKeyword = 'task_upload'
  122. Hint = 'Upload selected local file(s) to remote directory in background'
  123. ImageIndex = 108
  124. end
  125. object RemoteCopyNonQueueAction: TAction
  126. Tag = 14
  127. Category = 'Remote Selected Operation'
  128. Caption = 'Down&load...'
  129. HelpKeyword = 'task_download'
  130. Hint = 'Download|Download selected remote file(s) to local directory'
  131. ImageIndex = 89
  132. end
  133. object RemoteCopyFocusedNonQueueAction: TAction
  134. Tag = 12
  135. Category = 'Remote Focused Operation'
  136. Caption = 'Down&load...'
  137. HelpKeyword = 'task_download'
  138. Hint = 'Download|Download selected remote file(s) to local directory'
  139. ImageIndex = 89
  140. end
  141. object LocalCopyNonQueueAction: TAction
  142. Tag = 9
  143. Category = 'Local Selected Operation'
  144. Caption = 'Up&load...'
  145. HelpKeyword = 'task_upload'
  146. Hint = 'Upload|Upload selected local file(s) to remote directory'
  147. ImageIndex = 88
  148. end
  149. object LocalCopyFocusedNonQueueAction: TAction
  150. Tag = 8
  151. Category = 'Local Focused Operation'
  152. Caption = 'Up&load...'
  153. HelpKeyword = 'task_upload'
  154. Hint = 'Upload|Upload selected local file(s) to remote directory'
  155. ImageIndex = 88
  156. end
  157. object LocalCopyFocusedAction: TAction
  158. Tag = 8
  159. Category = 'Local Focused Operation'
  160. Caption = 'Up&load...'
  161. HelpKeyword = 'task_upload'
  162. Hint = 'Upload|Upload selected local file(s) to remote directory'
  163. ImageIndex = 88
  164. end
  165. object RemoteCopyFocusedAction: TAction
  166. Tag = 12
  167. Category = 'Remote Focused Operation'
  168. Caption = 'Down&load...'
  169. HelpKeyword = 'task_download'
  170. Hint = 'Download|Download selected remote file(s) to local directory'
  171. ImageIndex = 89
  172. end
  173. object RemoteMoveFocusedAction: TAction
  174. Tag = 12
  175. Category = 'Remote Focused Operation'
  176. Caption = 'Download and Dele&te...'
  177. HelpKeyword = 'task_download'
  178. Hint =
  179. 'Download and Delete|Download selected remote file(s) to local di' +
  180. 'rectory and delete original'
  181. ImageIndex = 97
  182. end
  183. object RemoteCopyAction: TAction
  184. Tag = 14
  185. Category = 'Remote Selected Operation'
  186. Caption = 'Down&load...'
  187. HelpKeyword = 'task_download'
  188. Hint = 'Download|Download selected remote file(s) to local directory'
  189. ImageIndex = 89
  190. end
  191. object BestFitColumnAction: TAction
  192. Tag = 15
  193. Category = 'Columns'
  194. Caption = '&Best Fit'
  195. Hint = 'Best fit|Adjust column width to fit its content'
  196. end
  197. object GoToTreeAction: TAction
  198. Tag = 15
  199. Category = 'View'
  200. Caption = 'Go to Tree'
  201. HelpKeyword = 'ui_file_panel#directory_tree'
  202. Hint = 'Go to tree'
  203. ImageIndex = 76
  204. ShortCut = 49236
  205. end
  206. object LocalTreeAction: TAction
  207. Tag = 8
  208. Category = 'View'
  209. Caption = '&Tree'
  210. HelpKeyword = 'ui_file_panel#directory_tree'
  211. Hint = 'Hide/show directory tree'
  212. ImageIndex = 76
  213. ShortCut = 49236
  214. end
  215. object RemoteTreeAction: TAction
  216. Tag = 12
  217. Category = 'View'
  218. Caption = '&Tree'
  219. HelpKeyword = 'ui_file_panel#directory_tree'
  220. Hint = 'Hide/show directory tree'
  221. ImageIndex = 76
  222. ShortCut = 49236
  223. end
  224. object QueueItemQueryAction: TAction
  225. Tag = 12
  226. Category = 'Queue'
  227. Caption = '&Show Query'
  228. HelpKeyword = 'ui_queue#manage'
  229. Hint = 'Show pending query of selected queue item'
  230. ImageIndex = 67
  231. end
  232. object QueueItemErrorAction: TAction
  233. Tag = 12
  234. Category = 'Queue'
  235. Caption = '&Show Error'
  236. HelpKeyword = 'ui_queue#manage'
  237. Hint = 'Show pending error message of selected queue item'
  238. ImageIndex = 68
  239. end
  240. object QueueItemPromptAction: TAction
  241. Tag = 12
  242. Category = 'Queue'
  243. Caption = '&Show Prompt'
  244. HelpKeyword = 'ui_queue#manage'
  245. Hint = 'Show pending prompt of selected queue item'
  246. ImageIndex = 69
  247. end
  248. object GoToCommandLineAction: TAction
  249. Tag = 11
  250. Category = 'View'
  251. Caption = 'Go to Comma&nd Line'
  252. HelpKeyword = 'ui_commander#command_line'
  253. Hint = 'Go to command line'
  254. ShortCut = 24653
  255. end
  256. object QueueItemDeleteAction: TAction
  257. Tag = 12
  258. Category = 'Queue'
  259. Caption = '&Cancel'
  260. HelpKeyword = 'ui_queue#manage'
  261. Hint = 'Remove selected queue item'
  262. ImageIndex = 71
  263. end
  264. object QueueItemExecuteAction: TAction
  265. Tag = 12
  266. Category = 'Queue'
  267. Caption = '&Execute Now'
  268. HelpKeyword = 'ui_queue#manage'
  269. Hint =
  270. 'Execute selected queue item immediately by granting it additiona' +
  271. 'l connection'
  272. ImageIndex = 70
  273. end
  274. object SelectOneAction: TAction
  275. Tag = 12
  276. Category = 'Selection'
  277. Caption = '&Select/Unselect'
  278. HelpKeyword = 'ui_file_panel#selecting_files'
  279. Hint = 'Select|Select/unselect focused file'
  280. end
  281. object CurrentRenameAction: TAction
  282. Tag = 15
  283. Category = 'Selected Operation'
  284. Caption = '&Rename'
  285. HelpKeyword = 'task_rename'
  286. Hint = 'Rename|Rename selected file'
  287. ImageIndex = 3
  288. end
  289. object LocalSortAscendingAction2: TAction
  290. Tag = 9
  291. Category = 'Sort'
  292. Caption = '&Ascending'
  293. HelpKeyword = 'ui_file_panel#sorting_files'
  294. Hint =
  295. 'Ascending/descending|Toggle ascending/descending sorting of file' +
  296. 's in the panel'
  297. ImageIndex = 37
  298. end
  299. object CurrentEditAction: TAction
  300. Tag = 15
  301. Category = 'Selected Operation'
  302. Caption = '&Edit'
  303. HelpKeyword = 'task_edit'
  304. Hint = 'Edit|Edit selected file(s)'
  305. ImageIndex = 57
  306. end
  307. object HideColumnAction: TAction
  308. Tag = 15
  309. Category = 'Columns'
  310. Caption = '&Hide Column'
  311. HelpKeyword = 'ui_file_panel#selecting_columns'
  312. Hint = 'Hide column|Hide selected column'
  313. end
  314. object LocalBackAction: TAction
  315. Tag = 9
  316. Category = 'Local Directory'
  317. Caption = '&Back'
  318. HelpKeyword = 'task_navigate#special_commands'
  319. ImageIndex = 6
  320. ShortCut = 32805
  321. end
  322. object CurrentCycleStyleAction: TAction
  323. Tag = 7
  324. Category = 'Style'
  325. Caption = 'View'
  326. HelpKeyword = 'ui_file_panel#view_style'
  327. Hint = 'View|Cycle thru directory view styles'
  328. ImageIndex = 8
  329. end
  330. object CurrentIconAction: TAction
  331. Tag = 7
  332. Category = 'Style'
  333. Caption = '&Large Icons'
  334. HelpKeyword = 'ui_file_panel#view_style'
  335. Hint = 'Large Icons|View large icons'
  336. ImageIndex = 8
  337. end
  338. object CurrentSmallIconAction: TAction
  339. Tag = 7
  340. Category = 'Style'
  341. Caption = '&Small Icons'
  342. HelpKeyword = 'ui_file_panel#view_style'
  343. Hint = 'Small Icons|View small icons'
  344. ImageIndex = 9
  345. end
  346. object CurrentListAction: TAction
  347. Tag = 7
  348. Category = 'Style'
  349. Caption = 'Lis&t'
  350. HelpKeyword = 'ui_file_panel#view_style'
  351. Hint = 'List|View list'
  352. ImageIndex = 10
  353. end
  354. object CurrentReportAction: TAction
  355. Tag = 7
  356. Category = 'Style'
  357. Caption = '&Details'
  358. HelpKeyword = 'ui_file_panel#view_style'
  359. Hint = 'Details|View details'
  360. ImageIndex = 11
  361. end
  362. object RemoteMoveToAction: TAction
  363. Tag = 14
  364. Category = 'Remote Selected Operation'
  365. Caption = 'Mo&ve To...'
  366. HelpKeyword = 'task_move_duplicate#move'
  367. Hint =
  368. 'Move|Move selected remote file(s) to another remote directory or' +
  369. ' another name'
  370. ImageIndex = 100
  371. end
  372. object CurrentDeleteFocusedAction: TAction
  373. Tag = 12
  374. Category = 'Focused Operation'
  375. Caption = '&Delete'
  376. HelpKeyword = 'task_delete'
  377. Hint = 'Delete|Delete selected file(s)'
  378. ImageIndex = 2
  379. end
  380. object CurrentPropertiesFocusedAction: TAction
  381. Tag = 12
  382. Category = 'Focused Operation'
  383. Caption = '&Properties'
  384. HelpKeyword = 'task_properties'
  385. Hint = 'Properties|Display/change properties of selected file(s)'
  386. ImageIndex = 4
  387. end
  388. object CurrentCreateDirAction: TAction
  389. Tag = 15
  390. Category = 'Selected Operation'
  391. Caption = '&Create Directory...'
  392. HelpKeyword = 'task_create_directory'
  393. Hint = 'Create directory|Create new directory'
  394. ImageIndex = 5
  395. end
  396. object CurrentDeleteAction: TAction
  397. Tag = 15
  398. Category = 'Selected Operation'
  399. Caption = '&Delete'
  400. HelpKeyword = 'task_delete'
  401. Hint = 'Delete|Delete selected file(s)'
  402. ImageIndex = 2
  403. end
  404. object CurrentPropertiesAction: TAction
  405. Tag = 15
  406. Category = 'Selected Operation'
  407. Caption = '&Properties'
  408. HelpKeyword = 'task_properties'
  409. Hint = 'Properties|Display/change properties of selected file(s)'
  410. ImageIndex = 4
  411. end
  412. object RemoteBackAction: TAction
  413. Tag = 14
  414. Category = 'Remote Directory'
  415. Caption = '&Back'
  416. HelpKeyword = 'task_navigate#special_commands'
  417. ImageIndex = 6
  418. ShortCut = 32805
  419. end
  420. object RemoteForwardAction: TAction
  421. Tag = 14
  422. Category = 'Remote Directory'
  423. Caption = '&Forward'
  424. HelpKeyword = 'task_navigate#special_commands'
  425. ImageIndex = 7
  426. ShortCut = 32807
  427. end
  428. object CommandLinePanelAction: TAction
  429. Tag = 8
  430. Category = 'View'
  431. Caption = 'Comma&nd Line'
  432. HelpKeyword = 'ui_commander#command_line'
  433. Hint = 'Hide/show command line'
  434. ShortCut = 24653
  435. end
  436. object RemoteParentDirAction: TAction
  437. Tag = 12
  438. Category = 'Remote Directory'
  439. Caption = '&Parent Directory'
  440. HelpKeyword = 'task_navigate#special_commands'
  441. Hint = 'Parent directory|Go to parent directory'
  442. ImageIndex = 12
  443. ShortCut = 8
  444. end
  445. object RemoteRootDirAction: TAction
  446. Tag = 12
  447. Category = 'Remote Directory'
  448. Caption = '&Root Directory'
  449. HelpKeyword = 'task_navigate#special_commands'
  450. Hint = 'Root directory|Go to root directory'
  451. ImageIndex = 13
  452. ShortCut = 16604
  453. end
  454. object RemoteHomeDirAction: TAction
  455. Tag = 14
  456. Category = 'Remote Directory'
  457. Caption = '&Home Directory'
  458. HelpKeyword = 'task_navigate#special_commands'
  459. Hint = 'Home directory|Go to home directory'
  460. ImageIndex = 15
  461. end
  462. object RemoteRefreshAction: TAction
  463. Tag = 14
  464. Category = 'Remote Directory'
  465. Caption = '&Refresh'
  466. Hint = 'Refresh|Refresh directory content'
  467. ImageIndex = 16
  468. end
  469. object AboutAction: TAction
  470. Tag = 15
  471. Category = 'Help'
  472. Caption = '&About...'
  473. HelpKeyword = 'ui_about'
  474. Hint = 'About|Show About box'
  475. ImageIndex = 65
  476. end
  477. object StatusBarAction: TAction
  478. Tag = 15
  479. Category = 'View'
  480. Caption = 'Status &Bar'
  481. Hint = 'Hide/show status bar'
  482. end
  483. object SessionsTabsAction2: TAction
  484. Tag = 15
  485. Category = 'View'
  486. Caption = 'T&abs'
  487. Hint = 'Hide/show tabs'
  488. end
  489. object ExplorerAddressBandAction: TAction
  490. Tag = 7
  491. Category = 'View'
  492. Caption = '&Address'
  493. HelpKeyword = 'ui_toolbars'
  494. Hint = 'Hide/show address toolbar'
  495. end
  496. object ExplorerMenuBandAction: TAction
  497. Tag = 7
  498. Category = 'View'
  499. Caption = '&Menu'
  500. HelpKeyword = 'ui_toolbars'
  501. Hint = 'Hide/show menu'
  502. end
  503. object ExplorerToolbarBandAction: TAction
  504. Tag = 7
  505. Category = 'View'
  506. Caption = '&Standard Buttons'
  507. HelpKeyword = 'ui_toolbars'
  508. Hint = 'Hide/show standard toolbar'
  509. end
  510. object RemoteOpenDirAction: TAction
  511. Tag = 14
  512. Category = 'Remote Directory'
  513. Caption = '&Open Directory/Bookmark...'
  514. HelpKeyword = 'task_navigate#manual'
  515. Hint =
  516. 'Open directory/bookmark|Open specified directory or saved bookma' +
  517. 'rk'
  518. ImageIndex = 18
  519. end
  520. object SelectAction: TAction
  521. Tag = 15
  522. Category = 'Selection'
  523. Caption = 'Sele&ct Files...'
  524. HelpKeyword = 'ui_select'
  525. Hint = 'Select|Select files by mask'
  526. ImageIndex = 19
  527. ShortCut = 107
  528. end
  529. object UnselectAction: TAction
  530. Tag = 15
  531. Category = 'Selection'
  532. Caption = '&Unselect Files...'
  533. HelpKeyword = 'ui_select'
  534. Hint = 'Unselect|Unselect files by mask'
  535. ImageIndex = 20
  536. ShortCut = 109
  537. end
  538. object SelectAllAction: TAction
  539. Tag = 15
  540. Category = 'Selection'
  541. Caption = 'Select &All'
  542. HelpKeyword = 'ui_file_panel#selecting_files'
  543. Hint = 'Select all files'
  544. ImageIndex = 21
  545. ShortCut = 16449
  546. end
  547. object InvertSelectionAction: TAction
  548. Tag = 15
  549. Category = 'Selection'
  550. Caption = '&Invert Selection'
  551. HelpKeyword = 'ui_file_panel#selecting_files'
  552. Hint = 'Invert selection'
  553. ImageIndex = 22
  554. ShortCut = 106
  555. end
  556. object ExplorerSelectionBandAction: TAction
  557. Tag = 7
  558. Category = 'View'
  559. Caption = 'Se&lection Buttons'
  560. HelpKeyword = 'ui_toolbars'
  561. Hint = 'Hide/show selection toolbar'
  562. end
  563. object ClearSelectionAction: TAction
  564. Tag = 15
  565. Category = 'Selection'
  566. Caption = 'C&lear Selection'
  567. HelpKeyword = 'ui_file_panel#selecting_files'
  568. Hint = 'Clear selection'
  569. ImageIndex = 23
  570. ShortCut = 24652
  571. end
  572. object ExplorerSessionBandAction2: TAction
  573. Tag = 7
  574. Category = 'View'
  575. Caption = 'Sessio&ns and Tabs Buttons'
  576. HelpKeyword = 'ui_toolbars'
  577. Hint = 'Hide/show sessions and tabs toolbar'
  578. end
  579. object ExplorerPreferencesBandAction: TAction
  580. Tag = 7
  581. Category = 'View'
  582. Caption = '&Preferences Buttons'
  583. HelpKeyword = 'ui_toolbars'
  584. Hint = 'Hide/show preferences toolbar'
  585. end
  586. object ExplorerSortBandAction: TAction
  587. Tag = 7
  588. Category = 'View'
  589. Caption = 'So&rt Buttons'
  590. HelpKeyword = 'ui_toolbars'
  591. Hint = 'Hide/show sort toolbar'
  592. end
  593. object ExplorerUpdatesBandAction: TAction
  594. Tag = 7
  595. Category = 'View'
  596. Caption = '&Update Button'
  597. HelpKeyword = 'ui_toolbars'
  598. Hint = 'Hide/show updates toolbar'
  599. end
  600. object ExplorerTransferBandAction: TAction
  601. Tag = 7
  602. Category = 'View'
  603. Caption = '&Transfer Settings'
  604. HelpKeyword = 'ui_toolbars'
  605. Hint = 'Hide/show transfer settings toolbar'
  606. end
  607. object ExplorerCustomCommandsBandAction: TAction
  608. Tag = 7
  609. Category = 'View'
  610. Caption = 'Custom Co&mmand Buttons'
  611. HelpKeyword = 'ui_toolbars'
  612. Hint = 'Hide/show custom commands toolbar'
  613. end
  614. object SiteManagerAction: TAction
  615. Tag = 15
  616. Category = 'Session'
  617. Caption = 'Site &Manager...'
  618. HelpKeyword = 'ui_login'
  619. Hint =
  620. 'Site Manager|Opens site manager (hold down Shift to open site ma' +
  621. 'nager in new window)'
  622. end
  623. object CloseTabAction: TAction
  624. Tag = 15
  625. Category = 'Tab'
  626. Caption = '&Close Tab'
  627. HelpKeyword = 'ui_tabs#working'
  628. Hint = 'Close the current tab'
  629. ImageIndex = 26
  630. SecondaryShortCuts.Strings = (
  631. 'Ctrl+W')
  632. ShortCut = 24644
  633. end
  634. object DisconnectSessionAction: TAction
  635. Tag = 15
  636. Category = 'Session'
  637. Caption = '&Disconnect Session'
  638. HelpKeyword = 'task_connections#closing'
  639. Hint = 'Disconnect the current session, but keep the tab opened'
  640. ImageIndex = 116
  641. end
  642. object ReconnectSessionAction: TAction
  643. Tag = 15
  644. Category = 'Session'
  645. Caption = '&Reconnect Session'
  646. HelpKeyword = 'task_connections'
  647. Hint = 'Reconnect the current disconnected session'
  648. ShortCut = 24658
  649. end
  650. object SavedSessionsAction2: TAction
  651. Tag = 15
  652. Category = 'Session'
  653. Caption = 'Si&tes'
  654. HelpKeyword = 'task_connections#opening_additional_connection'
  655. Hint = 'Open site'
  656. ImageIndex = 27
  657. end
  658. object WorkspacesAction: TAction
  659. Tag = 15
  660. Category = 'Tab'
  661. Caption = '&Workspaces'
  662. HelpKeyword = 'workspace'
  663. Hint = 'Open workspace'
  664. ImageIndex = 101
  665. end
  666. object PreferencesAction: TAction
  667. Tag = 15
  668. Category = 'View'
  669. Caption = '&Preferences...'
  670. HelpKeyword = 'ui_preferences'
  671. Hint = 'Preferences|Show/change user preferences'
  672. ImageIndex = 28
  673. ShortCut = 49232
  674. end
  675. object RemoteChangePathAction2: TAction
  676. Tag = 11
  677. Category = 'Remote Directory'
  678. Caption = '&Change Directory'
  679. HelpKeyword = 'task_navigate'
  680. Hint = 'Allows selection of different directory for panel'
  681. ImageIndex = 29
  682. ShortCut = 32881
  683. end
  684. object LocalForwardAction: TAction
  685. Tag = 9
  686. Category = 'Local Directory'
  687. Caption = '&Forward'
  688. HelpKeyword = 'task_navigate#special_commands'
  689. ImageIndex = 7
  690. ShortCut = 32807
  691. end
  692. object LocalParentDirAction: TAction
  693. Tag = 8
  694. Category = 'Local Directory'
  695. Caption = '&Parent Directory'
  696. HelpKeyword = 'task_navigate#special_commands'
  697. Hint = 'Parent directory|Go to parent directory'
  698. ImageIndex = 12
  699. ShortCut = 8
  700. end
  701. object LocalRootDirAction: TAction
  702. Tag = 8
  703. Category = 'Local Directory'
  704. Caption = '&Root Directory'
  705. HelpKeyword = 'task_navigate#special_commands'
  706. Hint = 'Root directory|Go to root directory'
  707. ImageIndex = 14
  708. ShortCut = 16604
  709. end
  710. object LocalHomeDirAction: TAction
  711. Tag = 9
  712. Category = 'Local Directory'
  713. Caption = '&Home Directory'
  714. HelpKeyword = 'task_navigate#special_commands'
  715. Hint = 'Home directory|Go to home directory'
  716. ImageIndex = 15
  717. end
  718. object LocalRefreshAction: TAction
  719. Tag = 9
  720. Category = 'Local Directory'
  721. Caption = '&Refresh'
  722. Hint = 'Refresh|Refresh directory content'
  723. ImageIndex = 16
  724. end
  725. object LocalOpenDirAction: TAction
  726. Tag = 9
  727. Category = 'Local Directory'
  728. Caption = '&Open Directory/Bookmark...'
  729. HelpKeyword = 'task_navigate#manual'
  730. Hint =
  731. 'Open directory/bookmark|Open specified directory or saved bookma' +
  732. 'rk'
  733. ImageIndex = 18
  734. end
  735. object LocalChangePathAction2: TAction
  736. Tag = 11
  737. Category = 'Local Directory'
  738. Caption = '&Change Drive'
  739. HelpKeyword = 'task_navigate'
  740. Hint = 'Allows selection of different drive for panel'
  741. ImageIndex = 30
  742. ShortCut = 32880
  743. end
  744. object ToolBar2Action: TAction
  745. Tag = 11
  746. Category = 'View'
  747. Caption = '&Hot Keys Toolbar'
  748. HelpKeyword = 'ui_toolbars'
  749. Hint = 'Hide/show bottom hot keys toolbar'
  750. end
  751. object CommanderMenuBandAction: TAction
  752. Tag = 11
  753. Category = 'View'
  754. Caption = '&Menu'
  755. HelpKeyword = 'ui_toolbars'
  756. Hint = 'Hide/show menu'
  757. end
  758. object CommanderSessionBandAction2: TAction
  759. Tag = 11
  760. Category = 'View'
  761. Caption = 'Sessio&ns and Tabs Buttons'
  762. HelpKeyword = 'ui_toolbars'
  763. Hint = 'Hide/show sessions and tabs toolbar'
  764. end
  765. object CommanderPreferencesBandAction: TAction
  766. Tag = 11
  767. Category = 'View'
  768. Caption = '&Preferences Buttons'
  769. HelpKeyword = 'ui_toolbars'
  770. Hint = 'Hide/show preferences toolbar'
  771. end
  772. object CommanderSortBandAction: TAction
  773. Tag = 11
  774. Category = 'View'
  775. Caption = 'So&rt Buttons'
  776. HelpKeyword = 'ui_toolbars'
  777. Hint = 'Hide/show sort toolbar'
  778. end
  779. object CommanderUpdatesBandAction: TAction
  780. Tag = 11
  781. Category = 'View'
  782. Caption = '&Update Button'
  783. HelpKeyword = 'ui_toolbars'
  784. Hint = 'Hide/show updates toolbar'
  785. end
  786. object CommanderTransferBandAction: TAction
  787. Tag = 11
  788. Category = 'View'
  789. Caption = '&Transfer Settings'
  790. HelpKeyword = 'ui_toolbars'
  791. Hint = 'Hide/show transfer settings toolbar'
  792. end
  793. object CommanderCommandsBandAction: TAction
  794. Tag = 11
  795. Category = 'View'
  796. Caption = '&Commands Buttons'
  797. HelpKeyword = 'ui_toolbars'
  798. Hint = 'Hide/show commands toolbar'
  799. end
  800. object CommanderCustomCommandsBandAction: TAction
  801. Tag = 11
  802. Category = 'View'
  803. Caption = 'Custom Co&mmand Buttons'
  804. HelpKeyword = 'ui_toolbars'
  805. Hint = 'Hide/show custom commands toolbar'
  806. end
  807. object CommanderLocalHistoryBandAction2: TAction
  808. Tag = 11
  809. Category = 'View'
  810. Caption = '&History Buttons'
  811. HelpKeyword = 'ui_toolbars'
  812. Hint = 'Hide/show history toolbar'
  813. end
  814. object CommanderLocalNavigationBandAction2: TAction
  815. Tag = 11
  816. Category = 'View'
  817. Caption = '&Navigation Buttons'
  818. HelpKeyword = 'ui_toolbars'
  819. Hint = 'Hide/show navigation toolbar'
  820. end
  821. object CommanderLocalFileBandAction2: TAction
  822. Tag = 11
  823. Category = 'View'
  824. Caption = '&File Buttons'
  825. HelpKeyword = 'ui_toolbars'
  826. Hint = 'Hide/show file toolbar'
  827. end
  828. object CommanderLocalSelectionBandAction2: TAction
  829. Tag = 11
  830. Category = 'View'
  831. Caption = 'Se&lection Buttons'
  832. HelpKeyword = 'ui_toolbars'
  833. Hint = 'Hide/show selection toolbar'
  834. end
  835. object CommanderRemoteHistoryBandAction2: TAction
  836. Tag = 11
  837. Category = 'View'
  838. Caption = '&History Buttons'
  839. HelpKeyword = 'ui_toolbars'
  840. Hint = 'Hide/show history toolbar'
  841. end
  842. object CommanderRemoteNavigationBandAction2: TAction
  843. Tag = 11
  844. Category = 'View'
  845. Caption = '&Navigation Buttons'
  846. HelpKeyword = 'ui_toolbars'
  847. Hint = 'Hide/show navigation toolbar'
  848. end
  849. object CommanderRemoteFileBandAction2: TAction
  850. Tag = 11
  851. Category = 'View'
  852. Caption = '&File Buttons'
  853. HelpKeyword = 'ui_toolbars'
  854. Hint = 'Hide/show file toolbar'
  855. end
  856. object CommanderRemoteSelectionBandAction2: TAction
  857. Tag = 11
  858. Category = 'View'
  859. Caption = 'Se&lection Buttons'
  860. HelpKeyword = 'ui_toolbars'
  861. Hint = 'Hide/show selection toolbar'
  862. end
  863. object LocalStatusBarAction2: TAction
  864. Tag = 11
  865. Category = 'View'
  866. Caption = 'Status &Bar'
  867. Hint = 'Hide/show panel status bar'
  868. end
  869. object RemoteStatusBarAction2: TAction
  870. Tag = 11
  871. Category = 'View'
  872. Caption = 'Status &Bar'
  873. Hint = 'Hide/show panel status bar'
  874. end
  875. object LocalSortByNameAction2: TAction
  876. Tag = 9
  877. Category = 'Sort'
  878. Caption = 'By &Name'
  879. HelpKeyword = 'ui_file_panel#sorting_files'
  880. Hint = 'Sort by name|Sort panel by name'
  881. ImageIndex = 31
  882. ShortCut = 16498
  883. end
  884. object LocalSortByExtAction2: TAction
  885. Tag = 9
  886. Category = 'Sort'
  887. Caption = 'By &Extension'
  888. HelpKeyword = 'ui_file_panel#sorting_files'
  889. Hint = 'Sort by extension|Sort panel by file name extension'
  890. ImageIndex = 32
  891. ShortCut = 16499
  892. end
  893. object LocalSortBySizeAction2: TAction
  894. Tag = 9
  895. Category = 'Sort'
  896. Caption = 'By &Size'
  897. HelpKeyword = 'ui_file_panel#sorting_files'
  898. Hint = 'Sort by size|Sort panel by file size'
  899. ImageIndex = 35
  900. ShortCut = 16501
  901. end
  902. object LocalSortByAttrAction2: TAction
  903. Tag = 9
  904. Category = 'Sort'
  905. Caption = 'By A&ttributes'
  906. HelpKeyword = 'ui_file_panel#sorting_files'
  907. Hint = 'Sort by attributes|Sort panel by attributes'
  908. ImageIndex = 36
  909. ShortCut = 16502
  910. end
  911. object LocalSortByTypeAction2: TAction
  912. Tag = 9
  913. Category = 'Sort'
  914. Caption = 'By &Type'
  915. HelpKeyword = 'ui_file_panel#sorting_files'
  916. Hint = 'Sort by type|Sort panel by file type'
  917. ImageIndex = 34
  918. end
  919. object LocalSortByChangedAction2: TAction
  920. Tag = 9
  921. Category = 'Sort'
  922. Caption = 'By &Modification'
  923. HelpKeyword = 'ui_file_panel#sorting_files'
  924. Hint = 'Sort by time|Sort panel by last modification time'
  925. ImageIndex = 33
  926. ShortCut = 16500
  927. end
  928. object RemoteSortAscendingAction2: TAction
  929. Tag = 14
  930. Category = 'Sort'
  931. Caption = '&Ascending'
  932. HelpKeyword = 'ui_file_panel#sorting_files'
  933. Hint =
  934. 'Ascending/descending|Toggle ascending/descending sorting of file' +
  935. 's in the panel'
  936. ImageIndex = 37
  937. end
  938. object RemoteSortByNameAction2: TAction
  939. Tag = 14
  940. Category = 'Sort'
  941. Caption = 'By &Name'
  942. HelpKeyword = 'ui_file_panel#sorting_files'
  943. Hint = 'Sort by name|Sort panel by name'
  944. ImageIndex = 31
  945. ShortCut = 16498
  946. end
  947. object RemoteSortByExtAction2: TAction
  948. Tag = 14
  949. Category = 'Sort'
  950. Caption = 'By &Extension'
  951. HelpKeyword = 'ui_file_panel#sorting_files'
  952. Hint = 'Sort by extension|Sort panel by file name extension'
  953. ImageIndex = 32
  954. ShortCut = 16499
  955. end
  956. object RemoteSortBySizeAction2: TAction
  957. Tag = 14
  958. Category = 'Sort'
  959. Caption = 'By &Size'
  960. HelpKeyword = 'ui_file_panel#sorting_files'
  961. Hint = 'Sort by size|Sort panel by file size'
  962. ImageIndex = 35
  963. ShortCut = 16501
  964. end
  965. object RemoteSortByRightsAction2: TAction
  966. Tag = 14
  967. Category = 'Sort'
  968. Caption = 'By &Permissions/Attributes'
  969. HelpKeyword = 'ui_file_panel#sorting_files'
  970. Hint =
  971. 'Sort by attributes/permissions|Sort panel by attributes/permissi' +
  972. 'ons'
  973. ImageIndex = 36
  974. ShortCut = 16502
  975. end
  976. object RemoteSortByChangedAction2: TAction
  977. Tag = 14
  978. Category = 'Sort'
  979. Caption = 'By &Modification'
  980. HelpKeyword = 'ui_file_panel#sorting_files'
  981. Hint = 'Sort by time|Sort panel by last modification time'
  982. ImageIndex = 33
  983. ShortCut = 16500
  984. end
  985. object RemoteSortByOwnerAction2: TAction
  986. Tag = 14
  987. Category = 'Sort'
  988. Caption = 'By &Owner'
  989. HelpKeyword = 'ui_file_panel#sorting_files'
  990. Hint = 'Sort by owner|Sort panel by file owner'
  991. ImageIndex = 38
  992. ShortCut = 16503
  993. end
  994. object RemoteSortByGroupAction2: TAction
  995. Tag = 14
  996. Category = 'Sort'
  997. Caption = 'By &Group'
  998. HelpKeyword = 'ui_file_panel#sorting_files'
  999. Hint = 'Sort by group|Sort panel by file group'
  1000. ImageIndex = 39
  1001. ShortCut = 16504
  1002. end
  1003. object RemoteSortByTypeAction2: TAction
  1004. Tag = 14
  1005. Category = 'Sort'
  1006. Caption = 'By &Type'
  1007. HelpKeyword = 'ui_file_panel#sorting_files'
  1008. Hint = 'Sort by type|Sort panel by file type'
  1009. ImageIndex = 34
  1010. end
  1011. object CurrentSortAscendingAction: TAction
  1012. Tag = 15
  1013. Category = 'Sort'
  1014. Caption = '&Ascending'
  1015. HelpKeyword = 'ui_file_panel#sorting_files'
  1016. Hint =
  1017. 'Ascending/descending|Toggle ascending/descending sort of current' +
  1018. ' panel'
  1019. ImageIndex = 37
  1020. end
  1021. object CurrentSortByNameAction: TAction
  1022. Tag = 15
  1023. Category = 'Sort'
  1024. Caption = 'By &Name'
  1025. HelpKeyword = 'ui_file_panel#sorting_files'
  1026. Hint = 'Sort by name|Sort current panel by name'
  1027. ImageIndex = 31
  1028. ShortCut = 16498
  1029. end
  1030. object CurrentSortByExtAction: TAction
  1031. Tag = 15
  1032. Category = 'Sort'
  1033. Caption = 'By &Extension'
  1034. HelpKeyword = 'ui_file_panel#sorting_files'
  1035. Hint = 'Sort by extension|Sort current panel by file name extension'
  1036. ImageIndex = 32
  1037. ShortCut = 16499
  1038. end
  1039. object CurrentSortBySizeAction: TAction
  1040. Tag = 15
  1041. Category = 'Sort'
  1042. Caption = 'By &Size'
  1043. HelpKeyword = 'ui_file_panel#sorting_files'
  1044. Hint = 'Sort by size|Sort current panel by file size'
  1045. ImageIndex = 35
  1046. ShortCut = 16501
  1047. end
  1048. object CurrentSortByTypeAction2: TAction
  1049. Tag = 15
  1050. Category = 'Sort'
  1051. Caption = 'By &Type'
  1052. HelpKeyword = 'ui_file_panel#sorting_files'
  1053. Hint = 'Sort by type|Sort current panel by file type'
  1054. ImageIndex = 34
  1055. end
  1056. object CurrentSortByRightsAction: TAction
  1057. Tag = 15
  1058. Category = 'Sort'
  1059. Caption = 'By &Permissions/Attributes'
  1060. HelpKeyword = 'ui_file_panel#sorting_files'
  1061. Hint =
  1062. 'Sort by attributes/permissions|Sort current panel by attributes/' +
  1063. 'permissions'
  1064. ImageIndex = 36
  1065. ShortCut = 16502
  1066. end
  1067. object CurrentSortByChangedAction: TAction
  1068. Tag = 15
  1069. Category = 'Sort'
  1070. Caption = 'By &Modification'
  1071. HelpKeyword = 'ui_file_panel#sorting_files'
  1072. Hint = 'Sort by time|Sort current panel by last modification time'
  1073. ImageIndex = 33
  1074. ShortCut = 16500
  1075. end
  1076. object CurrentSortByOwnerAction: TAction
  1077. Tag = 14
  1078. Category = 'Sort'
  1079. Caption = 'By &Owner'
  1080. HelpKeyword = 'ui_file_panel#sorting_files'
  1081. Hint =
  1082. 'Sort by owner|Sort current panel by file owner (remote panel onl' +
  1083. 'y)'
  1084. ImageIndex = 38
  1085. ShortCut = 16503
  1086. end
  1087. object CurrentSortByGroupAction: TAction
  1088. Tag = 14
  1089. Category = 'Sort'
  1090. Caption = 'By &Group'
  1091. HelpKeyword = 'ui_file_panel#sorting_files'
  1092. Hint =
  1093. 'Sort by group|Sort current panel by file group (remote panel onl' +
  1094. 'y)'
  1095. ImageIndex = 39
  1096. ShortCut = 16504
  1097. end
  1098. object SortColumnAscendingAction: TAction
  1099. Tag = 15
  1100. Category = 'Sort'
  1101. Caption = 'Sort &Ascending'
  1102. HelpKeyword = 'ui_file_panel#sorting_files'
  1103. Hint = 'Sort files ascending by selected column'
  1104. ImageIndex = 41
  1105. end
  1106. object SortColumnDescendingAction: TAction
  1107. Tag = 15
  1108. Category = 'Sort'
  1109. Caption = 'Sort &Descending'
  1110. HelpKeyword = 'ui_file_panel#sorting_files'
  1111. Hint = 'Sort files descending by selected column'
  1112. ImageIndex = 40
  1113. end
  1114. object HomepageAction: TAction
  1115. Tag = 15
  1116. Category = 'Help'
  1117. Caption = 'Product &Homepage'
  1118. Hint = 'Opens web browser and points it to project homepage '
  1119. ImageIndex = 42
  1120. end
  1121. object HistoryPageAction: TAction
  1122. Tag = 15
  1123. Category = 'Help'
  1124. Caption = '&Version History'
  1125. Hint = 'Opens web browser and points it to application history page'
  1126. end
  1127. object SaveCurrentSessionAction2: TAction
  1128. Tag = 15
  1129. Category = 'Session'
  1130. Caption = '&Save Session as Site...'
  1131. HelpKeyword = 'task_connections#saving'
  1132. Hint = 'Save session as site|Save current session as site'
  1133. ImageIndex = 43
  1134. end
  1135. object ShowHideRemoteNameColumnAction2: TAction
  1136. Tag = 15
  1137. Category = 'Columns'
  1138. Caption = '&Name'
  1139. HelpKeyword = 'ui_file_panel#selecting_columns'
  1140. Hint = 'Show/hide name column'
  1141. ImageIndex = 44
  1142. end
  1143. object ShowHideRemoteExtColumnAction2: TAction
  1144. Tag = 15
  1145. Category = 'Columns'
  1146. Caption = '&Extension'
  1147. HelpKeyword = 'ui_file_panel#selecting_columns'
  1148. Hint = 'Show/hide extension column'
  1149. ImageIndex = 45
  1150. end
  1151. object ShowHideRemoteSizeColumnAction2: TAction
  1152. Tag = 15
  1153. Category = 'Columns'
  1154. Caption = '&Size'
  1155. HelpKeyword = 'ui_file_panel#selecting_columns'
  1156. Hint = 'Show/hide size column'
  1157. ImageIndex = 47
  1158. end
  1159. object ShowHideRemoteChangedColumnAction2: TAction
  1160. Tag = 15
  1161. Category = 'Columns'
  1162. Caption = '&Modification'
  1163. HelpKeyword = 'ui_file_panel#selecting_columns'
  1164. Hint = 'Show/hide modification column'
  1165. ImageIndex = 48
  1166. end
  1167. object ShowHideRemoteRightsColumnAction2: TAction
  1168. Tag = 15
  1169. Category = 'Columns'
  1170. Caption = '&Permissions'
  1171. HelpKeyword = 'ui_file_panel#selecting_columns'
  1172. Hint = 'Show/hide permissions column'
  1173. ImageIndex = 49
  1174. end
  1175. object ShowHideRemoteOwnerColumnAction2: TAction
  1176. Tag = 15
  1177. Category = 'Columns'
  1178. Caption = '&Owner'
  1179. HelpKeyword = 'ui_file_panel#selecting_columns'
  1180. Hint = 'Show/hide owner column'
  1181. ImageIndex = 50
  1182. end
  1183. object ShowHideRemoteGroupColumnAction2: TAction
  1184. Tag = 15
  1185. Category = 'Columns'
  1186. Caption = '&Group'
  1187. HelpKeyword = 'ui_file_panel#selecting_columns'
  1188. Hint = 'Show/hide group column'
  1189. ImageIndex = 51
  1190. end
  1191. object ShowHideRemoteLinkTargetColumnAction2: TAction
  1192. Tag = 15
  1193. Category = 'Columns'
  1194. Caption = '&Link Target'
  1195. HelpKeyword = 'ui_file_panel#selecting_columns'
  1196. Hint = 'Show/hide link target column'
  1197. ImageIndex = 82
  1198. end
  1199. object ShowHideRemoteTypeColumnAction2: TAction
  1200. Tag = 15
  1201. Category = 'Columns'
  1202. Caption = '&Type'
  1203. HelpKeyword = 'ui_file_panel#selecting_columns'
  1204. Hint = 'Show/hide type column'
  1205. ImageIndex = 46
  1206. end
  1207. object ShowHideLocalNameColumnAction2: TAction
  1208. Tag = 15
  1209. Category = 'Columns'
  1210. Caption = '&Name'
  1211. HelpKeyword = 'ui_file_panel#selecting_columns'
  1212. Hint = 'Show/hide name column'
  1213. ImageIndex = 44
  1214. end
  1215. object ShowHideLocalExtColumnAction2: TAction
  1216. Tag = 15
  1217. Category = 'Columns'
  1218. Caption = '&Extension'
  1219. HelpKeyword = 'ui_file_panel#selecting_columns'
  1220. Hint = 'Show/hide extension column'
  1221. ImageIndex = 45
  1222. end
  1223. object ShowHideLocalTypeColumnAction2: TAction
  1224. Tag = 15
  1225. Category = 'Columns'
  1226. Caption = '&Type'
  1227. HelpKeyword = 'ui_file_panel#selecting_columns'
  1228. Hint = 'Show/hide type column'
  1229. ImageIndex = 46
  1230. end
  1231. object ShowHideLocalSizeColumnAction2: TAction
  1232. Tag = 15
  1233. Category = 'Columns'
  1234. Caption = '&Size'
  1235. HelpKeyword = 'ui_file_panel#selecting_columns'
  1236. Hint = 'Show/hide size column'
  1237. ImageIndex = 47
  1238. end
  1239. object ShowHideLocalChangedColumnAction2: TAction
  1240. Tag = 15
  1241. Category = 'Columns'
  1242. Caption = '&Modification'
  1243. HelpKeyword = 'ui_file_panel#selecting_columns'
  1244. Hint = 'Show/hide modification column'
  1245. ImageIndex = 48
  1246. end
  1247. object ShowHideLocalAttrColumnAction2: TAction
  1248. Tag = 15
  1249. Category = 'Columns'
  1250. Caption = '&Attributes'
  1251. HelpKeyword = 'ui_file_panel#selecting_columns'
  1252. Hint = 'Show/hide attributes column'
  1253. ImageIndex = 49
  1254. end
  1255. object CompareDirectoriesAction2: TAction
  1256. Tag = 11
  1257. Category = 'Command'
  1258. Caption = '&Compare Directories'
  1259. HelpKeyword = 'task_compare_directories'
  1260. Hint = 'Compare directories|Mark different files between files panels'
  1261. ImageIndex = 52
  1262. ShortCut = 8305
  1263. end
  1264. object SynchronizeAction: TAction
  1265. Tag = 15
  1266. Category = 'Command'
  1267. Caption = '&Keep Remote Directory up to Date...'
  1268. HelpKeyword = 'task_keep_up_to_date'
  1269. Hint =
  1270. 'Keep remote directory up to date|Keep remote directory up to dat' +
  1271. 'e'
  1272. ImageIndex = 53
  1273. ShortCut = 16469
  1274. end
  1275. object ForumPageAction: TAction
  1276. Tag = 15
  1277. Category = 'Help'
  1278. Caption = '&Support Forum'
  1279. Hint = 'Opens web browser and points it to support forum page'
  1280. end
  1281. object LocalAddBookmarkAction2: TAction
  1282. Tag = 9
  1283. Category = 'Local Directory'
  1284. Caption = '&Add Path to Bookmarks'
  1285. HelpKeyword = 'task_navigate#bookmarks'
  1286. Hint = 'Add to bookmarks|Add the current directory to bookmark list'
  1287. ImageIndex = 54
  1288. ShortCut = 16450
  1289. end
  1290. object RemoteAddBookmarkAction2: TAction
  1291. Tag = 14
  1292. Category = 'Remote Directory'
  1293. Caption = '&Add Path to Bookmarks'
  1294. HelpKeyword = 'task_navigate#bookmarks'
  1295. Hint = 'Add to bookmarks|Add the current directory to bookmark list'
  1296. ImageIndex = 54
  1297. ShortCut = 16450
  1298. end
  1299. object ConsoleAction: TAction
  1300. Tag = 15
  1301. Category = 'Command'
  1302. Caption = 'Open &Terminal'
  1303. HelpKeyword = 'ui_console'
  1304. Hint =
  1305. 'Open terminal|Open terminal window that allow executing arbitrar' +
  1306. 'y command (with exception of commands that require user input)'
  1307. ImageIndex = 55
  1308. ShortCut = 24660
  1309. end
  1310. object PuttyAction: TAction
  1311. Tag = 15
  1312. Category = 'Command'
  1313. Caption = 'Open in &PuTTY'
  1314. HelpKeyword = 'integration_putty#open_putty'
  1315. Hint =
  1316. 'Open session in PuTTY|Execute PuTTY SSH terminal and opens curre' +
  1317. 'nt session with it'
  1318. ImageIndex = 64
  1319. ShortCut = 16464
  1320. end
  1321. object LocalExploreDirectoryAction: TAction
  1322. Tag = 9
  1323. Category = 'Local Directory'
  1324. Caption = '&Explore Directory'
  1325. Hint = 'Opens Windows File Explorer with the current local directory'
  1326. ImageIndex = 56
  1327. ShortCut = 49221
  1328. end
  1329. object CurrentOpenAction: TAction
  1330. Tag = 15
  1331. Category = 'Focused Operation'
  1332. Caption = '&Open'
  1333. HelpKeyword = 'task_edit'
  1334. Hint =
  1335. 'Open document|Open selected document using application associate' +
  1336. 'd with document type'
  1337. ImageIndex = 58
  1338. end
  1339. object SynchronizeBrowsingAction2: TAction
  1340. Tag = 11
  1341. Category = 'Command'
  1342. AutoCheck = True
  1343. Caption = 'Synchronize &Browsing'
  1344. HelpKeyword = 'task_navigate#synchronize_browsing'
  1345. Hint = 'Synchronize browsing|Synchronize browsing between both panels'
  1346. ImageIndex = 59
  1347. ShortCut = 49218
  1348. end
  1349. object CurrentAddEditLinkAction: TAction
  1350. Tag = 15
  1351. Category = 'Selected Operation'
  1352. Caption = 'Edit &Link...'
  1353. HelpKeyword = 'task_link'
  1354. Hint =
  1355. 'Add/edit link|Add new link/shortcut or edit selected link/shortc' +
  1356. 'ut'
  1357. ImageIndex = 60
  1358. end
  1359. object CurrentAddEditLinkContextAction: TAction
  1360. Tag = 15
  1361. Category = 'Selected Operation'
  1362. Caption = 'Edit &Link...'
  1363. HelpKeyword = 'task_link'
  1364. Hint = 'Edit link|Edit selected link/shortcut'
  1365. ImageIndex = 60
  1366. end
  1367. object CloseApplicationAction2: TAction
  1368. Tag = 15
  1369. Category = 'Command'
  1370. Caption = '&Quit'
  1371. Hint =
  1372. 'Exit application|Close application (any opened sessions are clos' +
  1373. 'ed)'
  1374. ImageIndex = 61
  1375. end
  1376. object OpenedTabsAction: TAction
  1377. Tag = 15
  1378. Category = 'Tab'
  1379. Caption = '&Opened Tabs'
  1380. HelpKeyword = 'ui_tabs#switch'
  1381. Hint = 'Select tab|Select tab to activate'
  1382. ImageIndex = 62
  1383. end
  1384. object DuplicateTabAction: TAction
  1385. Tag = 15
  1386. Category = 'Tab'
  1387. Caption = 'Du&plicate Tab'
  1388. HelpKeyword = 'ui_tabs'
  1389. Hint =
  1390. 'Duplicate tab|Open new tab with the same folder (hold down Shift' +
  1391. ' to open the tab in new window)'
  1392. ImageIndex = 91
  1393. end
  1394. object NewLinkAction: TAction
  1395. Tag = 12
  1396. Category = 'Command'
  1397. Caption = '&Link...'
  1398. HelpKeyword = 'task_link'
  1399. Hint = 'Create link|Create new link/shortcut'
  1400. ImageIndex = 60
  1401. end
  1402. object CustomCommandsFileAction: TAction
  1403. Tag = 14
  1404. Category = 'Command'
  1405. Caption = 'File &Custom Commands'
  1406. HelpKeyword = 'custom_command'
  1407. Hint = 'Execute custom commands with selected file(s)'
  1408. end
  1409. object CustomCommandsNonFileAction: TAction
  1410. Tag = 15
  1411. Category = 'Command'
  1412. Caption = 'Static &Custom Commands'
  1413. HelpKeyword = 'custom_command'
  1414. Hint = 'Execute custom commands that do not operate with files'
  1415. end
  1416. object CustomCommandsCustomizeAction: TAction
  1417. Tag = 15
  1418. Category = 'Command'
  1419. Caption = '&Customize...'
  1420. HelpKeyword = 'ui_pref_commands'
  1421. Hint = 'Customize custom commands'
  1422. ImageIndex = 28
  1423. end
  1424. object CustomCommandsEnterAction: TAction
  1425. Tag = 15
  1426. Category = 'Command'
  1427. Caption = '&Enter...'
  1428. HelpKeyword = 'custom_command#executing_and_configuring'
  1429. Hint = 'Enter ad hoc custom command'
  1430. ImageIndex = 90
  1431. end
  1432. object CustomCommandsEnterFocusedAction: TAction
  1433. Tag = 12
  1434. Category = 'Command'
  1435. Caption = '&Enter...'
  1436. HelpKeyword = 'custom_command#executing_and_configuring'
  1437. Hint = 'Enter ad hoc custom command'
  1438. ImageIndex = 90
  1439. end
  1440. object CheckForUpdatesAction: TAction
  1441. Tag = 15
  1442. Category = 'Help'
  1443. Caption = '&Check for Updates'
  1444. HelpKeyword = 'updates'
  1445. Hint = 'Queries application homepage for updates'
  1446. ImageIndex = 63
  1447. end
  1448. object DonatePageAction: TAction
  1449. Tag = 15
  1450. Category = 'Help'
  1451. Caption = '&Donate'
  1452. Hint = 'Opens web browser and points it to project donation page'
  1453. end
  1454. object CustomCommandsLastAction: TAction
  1455. Tag = 15
  1456. Category = 'Command'
  1457. Caption = 'CustomCommandsLastAction'
  1458. HelpKeyword = 'custom_command#executing_and_configuring'
  1459. end
  1460. object CustomCommandsLastFocusedAction: TAction
  1461. Tag = 12
  1462. Category = 'Command'
  1463. Caption = 'CustomCommandsLastFocusedAction'
  1464. HelpKeyword = 'custom_command#executing_and_configuring'
  1465. end
  1466. object FileSystemInfoAction: TAction
  1467. Tag = 15
  1468. Category = 'Command'
  1469. Caption = 'Server/Protocol &Information'
  1470. HelpKeyword = 'ui_fsinfo'
  1471. Hint = 'Display server/protocol information'
  1472. ImageIndex = 17
  1473. end
  1474. object ClearCachesAction: TAction
  1475. Tag = 15
  1476. Category = 'Command'
  1477. Caption = 'Clea&r Caches'
  1478. HelpKeyword = 'directory_cache'
  1479. Hint = 'Clear directory listing and directory changes caches'
  1480. end
  1481. object FullSynchronizeAction: TAction
  1482. Tag = 15
  1483. Category = 'Command'
  1484. Caption = '&Synchronize...'
  1485. HelpKeyword = 'task_synchronize_full'
  1486. Hint = 'Synchronize local directory with remote directory'
  1487. ImageIndex = 66
  1488. ShortCut = 16467
  1489. end
  1490. object RemoteMoveToFocusedAction: TAction
  1491. Tag = 14
  1492. Category = 'Remote Focused Operation'
  1493. Caption = 'Mo&ve To...'
  1494. HelpKeyword = 'task_move_duplicate#move'
  1495. Hint =
  1496. 'Move|Move selected remote file(s) to another remote directory or' +
  1497. ' another name'
  1498. ImageIndex = 100
  1499. end
  1500. object ShowHiddenFilesAction: TAction
  1501. Tag = 15
  1502. Category = 'View'
  1503. Caption = 'Show/Hide &Hidden Files'
  1504. HelpKeyword = 'ui_file_panel#hidden_files'
  1505. Hint = 'Toggle showing hidden files in panel(s)'
  1506. ShortCut = 49224
  1507. end
  1508. object FormatSizeBytesNoneAction: TAction
  1509. Tag = 15
  1510. Category = 'View'
  1511. Caption = '&Bytes'
  1512. HelpKeyword = 'ui_pref_panels#common'
  1513. Hint = 'Show files sizes in bytes'
  1514. end
  1515. object LocalPathToClipboardAction2: TAction
  1516. Tag = 15
  1517. Category = 'Local Directory'
  1518. Caption = 'Copy &Path to Clipboard'
  1519. HelpKeyword = 'filenames#cwd'
  1520. Hint = 'Copy the current path to the clipboard'
  1521. end
  1522. object RemotePathToClipboardAction2: TAction
  1523. Tag = 15
  1524. Category = 'Remote Directory'
  1525. Caption = 'Copy &Path to Clipboard'
  1526. HelpKeyword = 'filenames#cwd'
  1527. Hint = 'Copy the current path to the clipboard'
  1528. end
  1529. object FileListToCommandLineAction: TAction
  1530. Tag = 11
  1531. Category = 'Selected Operation'
  1532. Caption = 'Insert to Command &Line'
  1533. HelpKeyword = 'filenames#command_line'
  1534. Hint = 'Insert name(s) of selected file(s) to command line'
  1535. ShortCut = 16397
  1536. end
  1537. object FileListToClipboardAction: TAction
  1538. Tag = 15
  1539. Category = 'Selected Operation'
  1540. Caption = 'Copy to &Clipboard'
  1541. HelpKeyword = 'filenames#file_name'
  1542. Hint = 'Copy name(s) of selected file(s) to clipboard'
  1543. ShortCut = 24643
  1544. end
  1545. object FullFileListToClipboardAction: TAction
  1546. Tag = 15
  1547. Category = 'Selected Operation'
  1548. Caption = 'Copy to Clipboard (Include &Paths)'
  1549. HelpKeyword = 'filenames#file_name'
  1550. Hint = 'Copy name(s) including path of selected file(s) to clipboard'
  1551. ShortCut = 49219
  1552. end
  1553. object QueueGoToAction: TAction
  1554. Tag = 15
  1555. Category = 'Queue'
  1556. Caption = '&Go To'
  1557. HelpKeyword = 'ui_queue#manage'
  1558. Hint = 'Go to transfer queue list'
  1559. ImageIndex = 74
  1560. ShortCut = 16465
  1561. end
  1562. object QueueItemUpAction: TAction
  1563. Tag = 12
  1564. Category = 'Queue'
  1565. Caption = 'Move &Up'
  1566. HelpKeyword = 'ui_queue#manage'
  1567. Hint = 'Move selected queue item up to be processed earlier'
  1568. ImageIndex = 72
  1569. end
  1570. object QueueItemDownAction: TAction
  1571. Tag = 12
  1572. Category = 'Queue'
  1573. Caption = 'Move &Down'
  1574. HelpKeyword = 'ui_queue#manage'
  1575. Hint = 'Move selected queue item down to be processed later'
  1576. ImageIndex = 73
  1577. end
  1578. object QueueToggleShowAction: TAction
  1579. Tag = 12
  1580. Category = 'Queue'
  1581. Caption = '&Queue'
  1582. Hint = 'Show/hide queue list'
  1583. ImageIndex = 74
  1584. end
  1585. object QueueShowAction: TAction
  1586. Tag = 12
  1587. Category = 'Queue'
  1588. Caption = '&Show'
  1589. HelpKeyword = 'ui_queue'
  1590. Hint = 'Show queue list'
  1591. end
  1592. object QueueHideWhenEmptyAction: TAction
  1593. Tag = 12
  1594. Category = 'Queue'
  1595. Caption = 'Hide when &Empty'
  1596. HelpKeyword = 'ui_queue'
  1597. Hint = 'Hide queue list when it is empty'
  1598. end
  1599. object QueueHideAction: TAction
  1600. Tag = 12
  1601. Category = 'Queue'
  1602. Caption = '&Hide'
  1603. HelpKeyword = 'ui_queue'
  1604. Hint = 'Hide queue list'
  1605. end
  1606. object QueueToolbarAction: TAction
  1607. Tag = 12
  1608. Category = 'Queue'
  1609. Caption = '&Toolbar'
  1610. Hint = 'Hide/show queue list toolbar (on queue list panel)'
  1611. end
  1612. object QueueFileListAction: TAction
  1613. Tag = 12
  1614. Category = 'Queue'
  1615. Caption = '&File List'
  1616. Hint = 'Hide/show full queue file list'
  1617. end
  1618. object QueuePreferencesAction: TAction
  1619. Tag = 12
  1620. Category = 'Queue'
  1621. Caption = '&Customize...'
  1622. HelpKeyword = 'ui_pref_background'
  1623. Hint = 'Customize queue list'
  1624. ImageIndex = 28
  1625. end
  1626. object PasteAction3: TAction
  1627. Tag = 15
  1628. Category = 'Command'
  1629. Caption = '&Paste from Clipboard'
  1630. HelpKeyword = 'clipboard'
  1631. Hint =
  1632. 'Paste files from the clipboard to the current directory in the a' +
  1633. 'ctive panel; or open a path from the clipboard in the active pan' +
  1634. 'el; or open a session URL from the clipboard'
  1635. ImageIndex = 75
  1636. ShortCut = 16470
  1637. end
  1638. object NewFileAction: TAction
  1639. Tag = 15
  1640. Category = 'Command'
  1641. Caption = '&File...'
  1642. HelpKeyword = 'task_edit'
  1643. Hint = 'Create file|Create new file and open it in editor'
  1644. ImageIndex = 77
  1645. end
  1646. object EditorListCustomizeAction: TAction
  1647. Tag = 15
  1648. Category = 'Command'
  1649. Caption = '&Configure...'
  1650. HelpKeyword = 'ui_pref_editor'
  1651. Hint = 'Customize editors'
  1652. ImageIndex = 28
  1653. end
  1654. object RemoteCopyToFocusedAction: TAction
  1655. Tag = 14
  1656. Category = 'Remote Focused Operation'
  1657. Caption = '&Duplicate...'
  1658. HelpKeyword = 'task_move_duplicate#duplicate'
  1659. Hint =
  1660. 'Duplicate|Duplicate selected remote file(s) to another remote di' +
  1661. 'rectory or another name'
  1662. ImageIndex = 78
  1663. end
  1664. object RemoteCopyToAction: TAction
  1665. Tag = 14
  1666. Category = 'Remote Selected Operation'
  1667. Caption = 'Du&plicate...'
  1668. HelpKeyword = 'task_move_duplicate#duplicate'
  1669. Hint =
  1670. 'Duplicate|Duplicate selected remote file(s) to another remote di' +
  1671. 'rectory or another name'
  1672. ImageIndex = 78
  1673. end
  1674. object FileGenerateUrlAction2: TAction
  1675. Tag = 15
  1676. Category = 'Selected Operation'
  1677. Caption = 'Generate File &URL...'
  1678. HelpKeyword = 'ui_generateurl'
  1679. Hint = 'Generate URL'#39's of selected file(s)'
  1680. end
  1681. object TableOfContentsAction: TAction
  1682. Tag = 12
  1683. Category = 'Help'
  1684. Caption = '&Contents'
  1685. Hint =
  1686. 'Opens web browser and points it to documentation table of conten' +
  1687. 'ts'
  1688. ImageIndex = 79
  1689. ShortCut = 112
  1690. end
  1691. object FileListFromClipboardAction: TAction
  1692. Tag = 15
  1693. Category = 'Selected Operation'
  1694. Caption = '&Transfer Files in Clipboard'
  1695. HelpKeyword = 'clipboard'
  1696. Hint = 'Transfer files whose names are in clipboard'
  1697. end
  1698. object LocalCopyAction: TAction
  1699. Tag = 9
  1700. Category = 'Local Selected Operation'
  1701. Caption = 'Up&load...'
  1702. HelpKeyword = 'task_upload'
  1703. Hint = 'Upload|Upload selected local file(s) to remote directory'
  1704. ImageIndex = 88
  1705. end
  1706. object CurrentDeleteAlternativeAction: TAction
  1707. Tag = 15
  1708. Category = 'Selected Operation'
  1709. Caption = '&Delete'
  1710. HelpKeyword = 'task_delete'
  1711. Hint = 'Delete|Delete selected file(s)'
  1712. ImageIndex = 2
  1713. end
  1714. object CurrentEditWithAction: TAction
  1715. Tag = 15
  1716. Category = 'Selected Operation'
  1717. Caption = 'Edit &With...'
  1718. HelpKeyword = 'task_edit'
  1719. Hint = 'Edit With|Edit selected file(s) using editor of your choice'
  1720. end
  1721. object DownloadPageAction: TAction
  1722. Tag = 15
  1723. Category = 'Help'
  1724. Caption = '&Download'
  1725. Hint = 'Opens web browser and points it to application download page'
  1726. end
  1727. object UpdatesPreferencesAction: TAction
  1728. Tag = 15
  1729. Category = 'Help'
  1730. Caption = 'Confi&gure...'
  1731. HelpKeyword = 'ui_pref_updates'
  1732. Hint = 'Configure automatic check for application updates'
  1733. ImageIndex = 28
  1734. end
  1735. object FormatSizeBytesKilobytesAction: TAction
  1736. Tag = 15
  1737. Category = 'View'
  1738. Caption = '&Kilobytes'
  1739. HelpKeyword = 'ui_pref_panels#common'
  1740. Hint = 'Show files sizes in kilobytes'
  1741. end
  1742. object FormatSizeBytesShortAction: TAction
  1743. Tag = 15
  1744. Category = 'View'
  1745. Caption = '&Short format'
  1746. HelpKeyword = 'ui_pref_panels#common'
  1747. Hint = 'Show files sizes in short format'
  1748. end
  1749. object PresetsPreferencesAction: TAction
  1750. Tag = 15
  1751. Category = 'View'
  1752. Caption = '&Configure...'
  1753. HelpKeyword = 'ui_pref_transfer'
  1754. Hint = 'Configure transfers settings presets'
  1755. ImageIndex = 28
  1756. end
  1757. object LockToolbarsAction: TAction
  1758. Tag = 15
  1759. Category = 'View'
  1760. Caption = '&Lock Toolbars'
  1761. HelpKeyword = 'ui_toolbars'
  1762. Hint = 'Prevents moving and (un)docking of all toolbars'
  1763. end
  1764. object SelectiveToolbarTextAction: TAction
  1765. Tag = 15
  1766. Category = 'View'
  1767. Caption = '&Show Selective Text Labels'
  1768. HelpKeyword = 'ui_toolbars'
  1769. Hint = 'Show text labels for selected important commands on toolbars'
  1770. end
  1771. object CustomCommandsBandAction: TAction
  1772. Tag = 15
  1773. Category = 'View'
  1774. Caption = 'Custom Co&mmand Buttons'
  1775. HelpKeyword = 'ui_toolbars'
  1776. Hint = 'Hide/show custom commands toolbar'
  1777. end
  1778. object ColorMenuAction2: TAction
  1779. Tag = 15
  1780. Category = 'View'
  1781. Caption = 'C&olor'
  1782. HelpKeyword = 'task_connections#session_color'
  1783. Hint = 'Change color of the current tab'
  1784. end
  1785. object AutoReadDirectoryAfterOpAction: TAction
  1786. Tag = 15
  1787. Category = 'View'
  1788. Caption = 'Auto&matically Reload Directory'
  1789. Hint = 'Toggle automatic reload of remote directory after operation'
  1790. ShortCut = 49234
  1791. end
  1792. object QueueItemPauseAction: TAction
  1793. Tag = 12
  1794. Category = 'Queue'
  1795. Caption = '&Suspend'
  1796. HelpKeyword = 'ui_queue#manage'
  1797. Hint = 'Suspend selected queue item'
  1798. ImageIndex = 83
  1799. end
  1800. object QueueItemResumeAction: TAction
  1801. Tag = 12
  1802. Category = 'Queue'
  1803. Caption = '&Resume'
  1804. HelpKeyword = 'ui_queue#manage'
  1805. Hint = 'Resume selected suspended queue item'
  1806. ImageIndex = 70
  1807. end
  1808. object QueuePauseAllAction: TAction
  1809. Tag = 12
  1810. Category = 'Queue'
  1811. Caption = '&Suspend All'
  1812. HelpKeyword = 'ui_queue#manage'
  1813. Hint = 'Suspend all running queue items'
  1814. ImageIndex = 84
  1815. end
  1816. object QueueResumeAllAction: TAction
  1817. Tag = 12
  1818. Category = 'Queue'
  1819. Caption = '&Resume All'
  1820. HelpKeyword = 'ui_queue#manage'
  1821. Hint = 'Resume all suspended queue items'
  1822. ImageIndex = 85
  1823. end
  1824. object QueueDeleteAllDoneAction: TAction
  1825. Tag = 12
  1826. Category = 'Queue'
  1827. Caption = 'Delete All &Completed'
  1828. HelpKeyword = 'ui_queue#manage'
  1829. Hint = 'Remove all completed queue items'
  1830. ImageIndex = 99
  1831. end
  1832. object QueueEnableAction: TAction
  1833. Tag = 15
  1834. Category = 'Queue'
  1835. Caption = '&Process Queue'
  1836. HelpKeyword = 'ui_queue#manage'
  1837. Hint =
  1838. 'Enable queue processing|Enable queue processing (pending queue i' +
  1839. 'tems will not start, when queue processing is disabled)'
  1840. ImageIndex = 96
  1841. ShortCut = 24657
  1842. end
  1843. object QueueDisconnectOnceEmptyAction2: TAction
  1844. Tag = 12
  1845. Category = 'Queue'
  1846. Caption = '&Disconnect Session'
  1847. HelpKeyword = 'ui_queue'
  1848. Hint = 'Disconnect the session once the queue is empty'
  1849. ImageIndex = 87
  1850. end
  1851. object RestoreSelectionAction: TAction
  1852. Tag = 15
  1853. Category = 'Selection'
  1854. Caption = '&Restore Selection'
  1855. HelpKeyword = 'ui_file_panel#selecting_files'
  1856. Hint = 'Restore previous selection'
  1857. ImageIndex = 86
  1858. ShortCut = 24659
  1859. end
  1860. object LocalSelectAction2: TAction
  1861. Tag = 12
  1862. Category = 'Selection'
  1863. Caption = 'Sele&ct Files...'
  1864. HelpKeyword = 'ui_select'
  1865. Hint = 'Select|Select files by mask'
  1866. ImageIndex = 19
  1867. end
  1868. object LocalUnselectAction2: TAction
  1869. Tag = 12
  1870. Category = 'Selection'
  1871. Caption = '&Unselect Files...'
  1872. HelpKeyword = 'ui_select'
  1873. Hint = 'Unselect|Unselect files by mask'
  1874. ImageIndex = 20
  1875. end
  1876. object LocalSelectAllAction2: TAction
  1877. Tag = 12
  1878. Category = 'Selection'
  1879. Caption = 'Select &All'
  1880. HelpKeyword = 'ui_file_panel#selecting_files'
  1881. Hint = 'Select all files'
  1882. ImageIndex = 21
  1883. end
  1884. object CurrentEditFocusedAction: TAction
  1885. Tag = 15
  1886. Category = 'Focused Operation'
  1887. Caption = '&Edit'
  1888. HelpKeyword = 'task_edit'
  1889. Hint = 'Edit|Edit selected file(s)'
  1890. ImageIndex = 57
  1891. end
  1892. object CurrentEditWithFocusedAction: TAction
  1893. Tag = 15
  1894. Category = 'Focused Operation'
  1895. Caption = 'Edit &With...'
  1896. HelpKeyword = 'task_edit'
  1897. Hint = 'Edit With|Edit selected file(s) using editor of your choice'
  1898. end
  1899. object NewDirAction: TAction
  1900. Tag = 12
  1901. Category = 'Command'
  1902. Caption = '&Directory...'
  1903. HelpKeyword = 'task_create_directory'
  1904. Hint = 'Create directory|Create new directory'
  1905. ImageIndex = 5
  1906. end
  1907. object QueueShutDownOnceEmptyAction2: TAction
  1908. Tag = 12
  1909. Category = 'Queue'
  1910. Caption = '&Shut Down Computer'
  1911. HelpKeyword = 'ui_queue'
  1912. Hint = 'Shut down the computer once the queue is empty'
  1913. ImageIndex = 93
  1914. end
  1915. object QueueSuspendOnceEmptyAction2: TAction
  1916. Tag = 12
  1917. Category = 'Queue'
  1918. Caption = 'Slee&p Computer'
  1919. HelpKeyword = 'ui_queue'
  1920. Hint = 'Put the computer into sleep mode once the queue is empty'
  1921. ImageIndex = 105
  1922. end
  1923. object QueueIdleOnceEmptyAction: TAction
  1924. Tag = 12
  1925. Category = 'Queue'
  1926. Caption = '&Stay Idle'
  1927. Checked = True
  1928. HelpKeyword = 'ui_queue'
  1929. Hint = 'Stay idle once the queue is empty'
  1930. ImageIndex = 94
  1931. end
  1932. object QueueCycleOnceEmptyAction: TAction
  1933. Tag = 12
  1934. Category = 'Queue'
  1935. Caption = 'Once &Empty'
  1936. HelpKeyword = 'ui_queue'
  1937. Hint = 'Toggle action to perform once the queue list is empty'
  1938. ImageIndex = 94
  1939. end
  1940. object QueueItemSpeedAction: TTBEditAction
  1941. Tag = 12
  1942. Category = 'Queue'
  1943. HelpKeyword = 'ui_queue#manage'
  1944. Hint = 'Change speed limit of selected queue item'
  1945. ImageIndex = 109
  1946. EditCaption = '&Speed'
  1947. end
  1948. object QueueDeleteAllAction: TAction
  1949. Tag = 12
  1950. Category = 'Queue'
  1951. Caption = '&Cancel All'
  1952. HelpKeyword = 'ui_queue#manage'
  1953. Hint = 'Remove all queue items'
  1954. ImageIndex = 106
  1955. end
  1956. object LocalFilterAction: TAction
  1957. Tag = 9
  1958. Category = 'Local Directory'
  1959. Caption = '&Filter...'
  1960. HelpKeyword = 'ui_file_panel#filtering'
  1961. Hint = 'Filter|Filter displayed files'
  1962. ImageIndex = 92
  1963. ShortCut = 49222
  1964. end
  1965. object RemoteFilterAction: TAction
  1966. Tag = 14
  1967. Category = 'Remote Directory'
  1968. Caption = '&Filter...'
  1969. HelpKeyword = 'ui_file_panel#filtering'
  1970. Hint = 'Filter|Filter displayed files'
  1971. ImageIndex = 92
  1972. ShortCut = 49222
  1973. end
  1974. object RemoteFindFilesAction2: TAction
  1975. Tag = 15
  1976. Category = 'Remote Directory'
  1977. Caption = '&Find Files...'
  1978. HelpKeyword = 'task_find'
  1979. Hint = 'Find files|Find files and directories'
  1980. ImageIndex = 95
  1981. end
  1982. object CurrentEditInternalAction: TAction
  1983. Tag = 15
  1984. Category = 'Selected Operation'
  1985. Caption = '&Internal editor'
  1986. HelpKeyword = 'task_edit'
  1987. Hint = 'Edit (internal)|Edit selected file(s) using internal editor'
  1988. end
  1989. object SaveWorkspaceAction: TAction
  1990. Tag = 15
  1991. Category = 'Tab'
  1992. Caption = 'Save Wor&kspace...'
  1993. HelpKeyword = 'workspace'
  1994. Hint = 'Save workspace|Save workspace'
  1995. ImageIndex = 102
  1996. end
  1997. object LocalRenameAction2: TAction
  1998. Tag = 12
  1999. Category = 'Local Selected Operation'
  2000. Caption = '&Rename'
  2001. HelpKeyword = 'task_rename'
  2002. Hint = 'Rename|Rename selected file'
  2003. ImageIndex = 3
  2004. end
  2005. object LocalEditAction2: TAction
  2006. Tag = 12
  2007. Category = 'Local Selected Operation'
  2008. Caption = '&Edit'
  2009. HelpKeyword = 'task_edit'
  2010. Hint = 'Edit|Edit selected file(s)'
  2011. ImageIndex = 57
  2012. end
  2013. object LocalMoveAction: TAction
  2014. Tag = 9
  2015. Category = 'Local Selected Operation'
  2016. Caption = 'Upload and Dele&te...'
  2017. HelpKeyword = 'task_upload'
  2018. Hint =
  2019. 'Upload and Delete|Upload selected local file(s) to remote direct' +
  2020. 'ory and delete original'
  2021. ImageIndex = 98
  2022. end
  2023. object LocalCreateDirAction3: TAction
  2024. Tag = 12
  2025. Category = 'Local Selected Operation'
  2026. Caption = '&Directory...'
  2027. HelpKeyword = 'task_create_directory'
  2028. Hint = 'Create directory|Create new directory'
  2029. ImageIndex = 5
  2030. end
  2031. object LocalDeleteAction2: TAction
  2032. Tag = 12
  2033. Category = 'Local Selected Operation'
  2034. Caption = '&Delete'
  2035. HelpKeyword = 'task_delete'
  2036. Hint = 'Delete|Delete selected file(s)'
  2037. ImageIndex = 2
  2038. end
  2039. object LocalPropertiesAction2: TAction
  2040. Tag = 12
  2041. Category = 'Local Selected Operation'
  2042. Caption = '&Properties'
  2043. HelpKeyword = 'task_properties'
  2044. Hint = 'Properties|Display/change properties of selected file(s)'
  2045. ImageIndex = 4
  2046. end
  2047. object LocalAddEditLinkAction3: TAction
  2048. Tag = 12
  2049. Category = 'Local Selected Operation'
  2050. Caption = '&Shortcut...'
  2051. HelpKeyword = 'task_link'
  2052. Hint =
  2053. 'Add/edit link|Add new link/shortcut or edit selected link/shortc' +
  2054. 'ut'
  2055. ImageIndex = 60
  2056. end
  2057. object RemoteRenameAction2: TAction
  2058. Tag = 12
  2059. Category = 'Remote Selected Operation'
  2060. Caption = '&Rename'
  2061. HelpKeyword = 'task_rename'
  2062. Hint = 'Rename|Rename selected file'
  2063. ImageIndex = 3
  2064. end
  2065. object RemoteEditAction2: TAction
  2066. Tag = 12
  2067. Category = 'Remote Selected Operation'
  2068. Caption = '&Edit'
  2069. HelpKeyword = 'task_edit'
  2070. Hint = 'Edit|Edit selected file(s)'
  2071. ImageIndex = 57
  2072. end
  2073. object RemoteMoveAction: TAction
  2074. Tag = 14
  2075. Category = 'Remote Selected Operation'
  2076. Caption = 'Download and Dele&te...'
  2077. HelpKeyword = 'task_download'
  2078. Hint =
  2079. 'Download and Delete|Download selected remote file(s) to local di' +
  2080. 'rectory and delete original'
  2081. ImageIndex = 97
  2082. end
  2083. object RemoteCreateDirAction3: TAction
  2084. Tag = 12
  2085. Category = 'Remote Selected Operation'
  2086. Caption = '&Directory...'
  2087. HelpKeyword = 'task_create_directory'
  2088. Hint = 'Create directory|Create new directory'
  2089. ImageIndex = 5
  2090. end
  2091. object RemoteDeleteAction2: TAction
  2092. Tag = 12
  2093. Category = 'Remote Selected Operation'
  2094. Caption = '&Delete'
  2095. HelpKeyword = 'task_delete'
  2096. Hint = 'Delete|Delete selected file(s)'
  2097. ImageIndex = 2
  2098. end
  2099. object RemotePropertiesAction2: TAction
  2100. Tag = 12
  2101. Category = 'Remote Selected Operation'
  2102. Caption = '&Properties'
  2103. HelpKeyword = 'task_properties'
  2104. Hint = 'Properties|Display/change properties of selected file(s)'
  2105. ImageIndex = 4
  2106. end
  2107. object RemoteAddEditLinkAction3: TAction
  2108. Tag = 12
  2109. Category = 'Remote Selected Operation'
  2110. Caption = '&Link...'
  2111. HelpKeyword = 'task_link'
  2112. Hint =
  2113. 'Add/edit link|Add new link/shortcut or edit selected link/shortc' +
  2114. 'ut'
  2115. ImageIndex = 60
  2116. end
  2117. object RemoteSelectAction2: TAction
  2118. Tag = 12
  2119. Category = 'Selection'
  2120. Caption = 'Sele&ct Files...'
  2121. HelpKeyword = 'ui_select'
  2122. Hint = 'Select|Select files by mask'
  2123. ImageIndex = 19
  2124. end
  2125. object RemoteUnselectAction2: TAction
  2126. Tag = 12
  2127. Category = 'Selection'
  2128. Caption = '&Unselect Files...'
  2129. HelpKeyword = 'ui_select'
  2130. Hint = 'Unselect|Unselect files by mask'
  2131. ImageIndex = 20
  2132. end
  2133. object RemoteSelectAllAction2: TAction
  2134. Tag = 12
  2135. Category = 'Selection'
  2136. Caption = 'Select &All'
  2137. HelpKeyword = 'ui_file_panel#selecting_files'
  2138. Hint = 'Select all files'
  2139. ImageIndex = 21
  2140. end
  2141. object LocalMoveFocusedAction: TAction
  2142. Tag = 8
  2143. Category = 'Local Focused Operation'
  2144. Caption = 'Upload and Dele&te...'
  2145. HelpKeyword = 'task_upload'
  2146. Hint =
  2147. 'Upload and Delete|Upload selected local file(s) to remote direct' +
  2148. 'ory and delete original'
  2149. ImageIndex = 98
  2150. end
  2151. object CurrentEditInternalFocusedAction: TAction
  2152. Tag = 15
  2153. Category = 'Focused Operation'
  2154. Caption = '&Internal editor'
  2155. HelpKeyword = 'task_edit'
  2156. Hint = 'Edit (internal)|Edit selected file(s) using internal editor'
  2157. end
  2158. object CurrentSystemMenuFocusedAction: TAction
  2159. Tag = 12
  2160. Category = 'Focused Operation'
  2161. Caption = '&System Menu'
  2162. Hint =
  2163. 'Display system file context menu (in Properties you can opt to d' +
  2164. 'isplay it by default instead of built-in menu)'
  2165. end
  2166. object SessionGenerateUrlAction2: TAction
  2167. Tag = 15
  2168. Category = 'Session'
  2169. Caption = 'Generate Session &URL/Code...'
  2170. HelpKeyword = 'ui_generateurl'
  2171. Hint = 'Generate URL or code for current session'
  2172. end
  2173. object SelectSameExtAction: TAction
  2174. Tag = 15
  2175. Category = 'Selection'
  2176. Caption = 'Select Files with Same &Extension'
  2177. Hint =
  2178. 'Select all files with the same extension as currently focused fi' +
  2179. 'le'
  2180. ShortCut = 32875
  2181. end
  2182. object UnselectSameExtAction: TAction
  2183. Tag = 15
  2184. Category = 'Selection'
  2185. Caption = 'Unselect Files with Same E&xtension'
  2186. Hint =
  2187. 'Unselect all files with the same extension as currently focused ' +
  2188. 'file'
  2189. ShortCut = 32877
  2190. end
  2191. object GoToAddressAction: TAction
  2192. Tag = 15
  2193. Category = 'Command'
  2194. Caption = 'GoToAddressAction'
  2195. SecondaryShortCuts.Strings = (
  2196. 'Alt+D')
  2197. ShortCut = 16460
  2198. end
  2199. object LockAction: TAction
  2200. Tag = 15
  2201. Category = 'Selected Operation'
  2202. Caption = '&Lock'
  2203. Hint = 'Lock selected file(s)'
  2204. end
  2205. object UnlockAction: TAction
  2206. Tag = 15
  2207. Category = 'Selected Operation'
  2208. Caption = '&Unlock'
  2209. Hint = 'Unlock selected file(s)'
  2210. end
  2211. object TipsAction: TAction
  2212. Tag = 15
  2213. Category = 'Help'
  2214. Caption = 'Show &Tips'
  2215. HelpKeyword = 'ui_tips'
  2216. Hint = 'Displays tips on using WinSCP'
  2217. ImageIndex = 110
  2218. end
  2219. object ChangePasswordAction: TAction
  2220. Tag = 15
  2221. Category = 'Session'
  2222. Caption = '&Change Password...'
  2223. HelpKeyword = 'task_change_password'
  2224. Hint = 'Change account password'
  2225. end
  2226. object PrivateKeyUploadAction: TAction
  2227. Tag = 15
  2228. Category = 'Session'
  2229. Caption = '&Install Public Key into Server...'
  2230. HelpKeyword = 'guide_public_key'
  2231. Hint = 'Install public key for authentication into the server'
  2232. end
  2233. object RemoteNewFileAction: TAction
  2234. Tag = 15
  2235. Category = 'Remote Selected Operation'
  2236. Caption = '&File...'
  2237. HelpKeyword = 'task_edit'
  2238. Hint = 'Create file|Create new file and open it in editor'
  2239. ImageIndex = 77
  2240. end
  2241. object RemoteCalculateDirectorySizesAction: TAction
  2242. Tag = 12
  2243. Category = 'Remote Selected Operation'
  2244. Caption = '&Calculate Directory Sizes'
  2245. HelpKeyword = 'ui_file_panel#directory_sizes'
  2246. Hint =
  2247. 'Calculate sizes of the selected directories and display them in ' +
  2248. 'the file panel'
  2249. ShortCut = 40973
  2250. end
  2251. object LocalNewFileAction: TAction
  2252. Tag = 15
  2253. Category = 'Local Selected Operation'
  2254. Caption = '&File...'
  2255. HelpKeyword = 'task_edit'
  2256. Hint = 'Create file|Create new file and open it in editor'
  2257. ImageIndex = 77
  2258. end
  2259. object CustomizeToolbarAction: TAction
  2260. Tag = 15
  2261. Category = 'View'
  2262. Caption = '&Customize Toolbar'
  2263. HelpKeyword = 'ui_toolbars'
  2264. Hint = 'Show/hide toolbar buttons'
  2265. end
  2266. object RenameTabAction: TAction
  2267. Tag = 15
  2268. Category = 'Tab'
  2269. Caption = '&Rename Tab'
  2270. HelpKeyword = 'ui_tabs#renaming'
  2271. Hint = 'Rename tab|Change the name of the current tab'
  2272. end
  2273. object CurrentCopyToClipboardAction2: TAction
  2274. Tag = 15
  2275. Category = 'Selected Operation'
  2276. Caption = '&Copy to Clipboard'
  2277. HelpKeyword = 'clipboard#copy'
  2278. Hint = 'Copy the selected files to the clipboard'
  2279. ImageIndex = 111
  2280. ShortCut = 16451
  2281. end
  2282. object FileColorsPreferencesAction: TAction
  2283. Tag = 15
  2284. Category = 'View'
  2285. Caption = 'File &Colors...'
  2286. HelpKeyword = 'ui_pref_file_colors'
  2287. Hint = 'Configure file color rules'
  2288. end
  2289. object CurrentCopyToClipboardFocusedAction2: TAction
  2290. Tag = 12
  2291. Category = 'Focused Operation'
  2292. Caption = '&Copy to Clipboard'
  2293. HelpKeyword = 'clipboard#copy'
  2294. Hint = 'Copy the selected files to the clipboard'
  2295. ImageIndex = 111
  2296. ShortCut = 16451
  2297. end
  2298. object CommanderLocalPanelAction: TAction
  2299. Tag = 11
  2300. Category = 'View'
  2301. Caption = '&Left Panel'
  2302. HelpKeyword = 'ui_file_panel'
  2303. Hint = 'Change left panel layout'
  2304. end
  2305. object CommanderRemotePanelAction: TAction
  2306. Tag = 11
  2307. Category = 'View'
  2308. Caption = '&Right Panel'
  2309. HelpKeyword = 'ui_file_panel'
  2310. Hint = 'Change right panel layout'
  2311. end
  2312. object RemoteExploreDirectoryAction: TAction
  2313. Tag = 14
  2314. Category = 'Remote Directory'
  2315. Caption = '&Explore Directory'
  2316. Hint = 'Open Windows File Explorer with the current local directory'
  2317. ImageIndex = 56
  2318. ShortCut = 49221
  2319. end
  2320. object LocalLocalCopyAction: TAction
  2321. Tag = 9
  2322. Category = 'Local Selected Operation'
  2323. Caption = '&Copy...'
  2324. Hint = 'Copy the selected file(s) to another directory or another name'
  2325. ImageIndex = 78
  2326. end
  2327. object LocalLocalMoveAction: TAction
  2328. Tag = 9
  2329. Category = 'Local Selected Operation'
  2330. Caption = '&Move...'
  2331. Hint = 'Move the selected file(s) to another directory or rename them'
  2332. ImageIndex = 100
  2333. end
  2334. object LocalOtherCopyAction: TAction
  2335. Tag = 14
  2336. Category = 'Local Selected Operation'
  2337. Caption = '&Copy...'
  2338. Hint = 'Copy the selected file(s) to another directory or another name'
  2339. ImageIndex = 112
  2340. end
  2341. object LocalOtherMoveAction: TAction
  2342. Tag = 14
  2343. Category = 'Local Selected Operation'
  2344. Caption = '&Move...'
  2345. Hint = 'Move the selected file(s) to another directory or rename them'
  2346. ImageIndex = 113
  2347. end
  2348. object LocalCalculateDirectorySizesAction: TAction
  2349. Tag = 12
  2350. Category = 'Local Selected Operation'
  2351. Caption = '&Calculate Directory Sizes'
  2352. HelpKeyword = 'ui_file_panel#directory_sizes'
  2353. Hint =
  2354. 'Calculate sizes of the selected directories and display them in ' +
  2355. 'the file panel'
  2356. ShortCut = 40973
  2357. end
  2358. object LocalLocalCopyFocusedAction: TAction
  2359. Tag = 8
  2360. Category = 'Local Focused Operation'
  2361. Caption = '&Copy...'
  2362. Hint = 'Copy the selected file(s) to another directory or another name'
  2363. ImageIndex = 78
  2364. end
  2365. object LocalLocalMoveFocusedAction: TAction
  2366. Tag = 8
  2367. Category = 'Local Focused Operation'
  2368. Caption = '&Move...'
  2369. Hint = 'Move the selected file(s) to another directory or rename them'
  2370. ImageIndex = 100
  2371. end
  2372. object NewTabAction: TAction
  2373. Tag = 15
  2374. Category = 'Tab'
  2375. Caption = '&New Tab'
  2376. HelpKeyword = 'ui_tabs#working'
  2377. Hint = 'Open new tab'
  2378. ImageIndex = 115
  2379. end
  2380. object NewLocalTabAction: TAction
  2381. Tag = 11
  2382. Category = 'Tab'
  2383. Caption = '&Local Tab'
  2384. HelpKeyword = 'ui_tabs#working'
  2385. Hint = 'Open new tab with two local panels'
  2386. ImageIndex = 115
  2387. ShortCut = 24654
  2388. end
  2389. object NewRemoteTabAction: TAction
  2390. Tag = 11
  2391. Category = 'Tab'
  2392. Caption = '&Remote Tab'
  2393. HelpKeyword = 'ui_tabs#working'
  2394. Hint = 'Open new tab with one local panel and one remote session panel'
  2395. ImageIndex = 25
  2396. ShortCut = 16462
  2397. end
  2398. object DefaultToNewRemoteTabAction: TAction
  2399. Tag = 11
  2400. Category = 'Tab'
  2401. Caption = '&Default to Remote Tab'
  2402. Hint =
  2403. 'When turned on, the New Tab command opens a new remote tab. Othe' +
  2404. 'rwise it opens a new local tab.'
  2405. end
  2406. object CalculateDirectorySizesAction: TAction
  2407. Tag = 15
  2408. Category = 'Selected Operation'
  2409. Caption = '&Calculate Directory Sizes'
  2410. HelpKeyword = 'ui_file_panel#directory_sizes'
  2411. Hint =
  2412. 'Calculate sizes of the selected directories and display them in ' +
  2413. 'the file panel'
  2414. ShortCut = 40973
  2415. end
  2416. end
  2417. object ExplorerBarPopup: TTBXPopupMenu
  2418. Images = GlyphsModule.ExplorerImages
  2419. Options = [tboShowHint]
  2420. Left = 192
  2421. Top = 336
  2422. object Address2: TTBXItem
  2423. Action = ExplorerAddressBandAction
  2424. end
  2425. object StandardButtons1: TTBXItem
  2426. Action = ExplorerToolbarBandAction
  2427. end
  2428. object SelectionButtons1: TTBXItem
  2429. Action = ExplorerSelectionBandAction
  2430. end
  2431. object SessionButtons2: TTBXItem
  2432. Action = ExplorerSessionBandAction2
  2433. end
  2434. object PreferencesButtons1: TTBXItem
  2435. Action = ExplorerPreferencesBandAction
  2436. end
  2437. object SortButtons3: TTBXItem
  2438. Action = ExplorerSortBandAction
  2439. end
  2440. object TBXItem3: TTBXItem
  2441. Action = ExplorerUpdatesBandAction
  2442. end
  2443. object TBXItem4: TTBXItem
  2444. Action = ExplorerTransferBandAction
  2445. end
  2446. object TBXItem16: TTBXItem
  2447. Action = ExplorerCustomCommandsBandAction
  2448. end
  2449. object TBXItem7: TTBXItem
  2450. Action = LockToolbarsAction
  2451. end
  2452. object TBXItem48: TTBXItem
  2453. Action = SelectiveToolbarTextAction
  2454. end
  2455. object TBXSubmenuItem4: TTBXSubmenuItem
  2456. Action = CustomizeToolbarAction
  2457. end
  2458. object N5: TTBXSeparatorItem
  2459. end
  2460. object SessionsTabs2: TTBXItem
  2461. Action = SessionsTabsAction2
  2462. end
  2463. object StatusBar2: TTBXItem
  2464. Action = StatusBarAction
  2465. end
  2466. object N72: TTBXSeparatorItem
  2467. end
  2468. object Queue7: TTBXSubmenuItem
  2469. Caption = '&Queue'
  2470. HelpKeyword = 'ui_queue'
  2471. Hint = 'Configure queue list'
  2472. object Show6: TTBXItem
  2473. Action = QueueShowAction
  2474. RadioItem = True
  2475. end
  2476. object HidewhenEmpty6: TTBXItem
  2477. Action = QueueHideWhenEmptyAction
  2478. RadioItem = True
  2479. end
  2480. object Hide5: TTBXItem
  2481. Action = QueueHideAction
  2482. RadioItem = True
  2483. end
  2484. object N71: TTBXSeparatorItem
  2485. end
  2486. object Toolbar5: TTBXItem
  2487. Action = QueueToolbarAction
  2488. end
  2489. object TBXItem85: TTBXItem
  2490. Action = QueueFileListAction
  2491. end
  2492. object N70: TTBXSeparatorItem
  2493. end
  2494. object Customize5: TTBXItem
  2495. Action = QueuePreferencesAction
  2496. end
  2497. end
  2498. object Tree4: TTBXItem
  2499. Action = RemoteTreeAction
  2500. end
  2501. end
  2502. object SessionIdleTimer: TTimer
  2503. Enabled = False
  2504. Interval = 500
  2505. OnTimer = SessionIdleTimerTimer
  2506. Left = 32
  2507. Top = 336
  2508. end
  2509. object CommanderBarPopup: TTBXPopupMenu
  2510. Images = GlyphsModule.ExplorerImages
  2511. Options = [tboShowHint]
  2512. Left = 424
  2513. Top = 264
  2514. object CommandsButtons2: TTBXItem
  2515. Action = CommanderCommandsBandAction
  2516. end
  2517. object SessionButtons5: TTBXItem
  2518. Action = CommanderSessionBandAction2
  2519. end
  2520. object PreferencesButtons4: TTBXItem
  2521. Action = CommanderPreferencesBandAction
  2522. end
  2523. object SortButtons2: TTBXItem
  2524. Action = CommanderSortBandAction
  2525. end
  2526. object TBXItem2: TTBXItem
  2527. Action = CommanderUpdatesBandAction
  2528. end
  2529. object TBXItem5: TTBXItem
  2530. Action = CommanderTransferBandAction
  2531. end
  2532. object TBXItem15: TTBXItem
  2533. Action = CommanderCustomCommandsBandAction
  2534. end
  2535. object TBXItem6: TTBXItem
  2536. Action = LockToolbarsAction
  2537. end
  2538. object TBXItem46: TTBXItem
  2539. Action = SelectiveToolbarTextAction
  2540. end
  2541. object TBXItem77: TTBXSubmenuItem
  2542. Action = CustomizeToolbarAction
  2543. end
  2544. object N26: TTBXSeparatorItem
  2545. end
  2546. object SessionsTabs1: TTBXItem
  2547. Action = SessionsTabsAction2
  2548. end
  2549. object CommandLine2: TTBXItem
  2550. Action = CommandLinePanelAction
  2551. end
  2552. object CommandsToolbar1: TTBXItem
  2553. Action = ToolBar2Action
  2554. end
  2555. object StatusBar8: TTBXItem
  2556. Action = StatusBarAction
  2557. end
  2558. object N27: TTBXSeparatorItem
  2559. end
  2560. object LocalPanel1: TTBXSubmenuItem
  2561. Action = CommanderLocalPanelAction
  2562. object HistoryButtons3: TTBXItem
  2563. Action = CommanderLocalHistoryBandAction2
  2564. end
  2565. object NavigationButtons3: TTBXItem
  2566. Action = CommanderLocalNavigationBandAction2
  2567. end
  2568. object TBXItem40: TTBXItem
  2569. Action = CommanderLocalFileBandAction2
  2570. end
  2571. object TBXItem43: TTBXItem
  2572. Action = CommanderLocalSelectionBandAction2
  2573. end
  2574. object N23: TTBXSeparatorItem
  2575. end
  2576. object Tree7: TTBXItem
  2577. Action = LocalTreeAction
  2578. end
  2579. object N77: TTBXSeparatorItem
  2580. end
  2581. object StatusBar6: TTBXItem
  2582. Action = LocalStatusBarAction2
  2583. end
  2584. end
  2585. object RemotePanel2: TTBXSubmenuItem
  2586. Action = CommanderRemotePanelAction
  2587. object HistoryButtons4: TTBXItem
  2588. Action = CommanderRemoteHistoryBandAction2
  2589. end
  2590. object NavigationButtons4: TTBXItem
  2591. Action = CommanderRemoteNavigationBandAction2
  2592. end
  2593. object TBXItem41: TTBXItem
  2594. Action = CommanderRemoteFileBandAction2
  2595. end
  2596. object TBXItem42: TTBXItem
  2597. Action = CommanderRemoteSelectionBandAction2
  2598. end
  2599. object N25: TTBXSeparatorItem
  2600. end
  2601. object Tree8: TTBXItem
  2602. Action = RemoteTreeAction
  2603. end
  2604. object N78: TTBXSeparatorItem
  2605. end
  2606. object StatusBar7: TTBXItem
  2607. Action = RemoteStatusBarAction2
  2608. end
  2609. end
  2610. object Options1: TTBXSubmenuItem
  2611. Caption = '&Queue'
  2612. HelpKeyword = 'ui_queue'
  2613. Hint = 'Configure queue list'
  2614. object Show5: TTBXItem
  2615. Action = QueueShowAction
  2616. RadioItem = True
  2617. end
  2618. object HidewhenEmpty5: TTBXItem
  2619. Action = QueueHideWhenEmptyAction
  2620. RadioItem = True
  2621. end
  2622. object Hide4: TTBXItem
  2623. Action = QueueHideAction
  2624. RadioItem = True
  2625. end
  2626. object N69: TTBXSeparatorItem
  2627. end
  2628. object Toolbar4: TTBXItem
  2629. Action = QueueToolbarAction
  2630. end
  2631. object TBXItem84: TTBXItem
  2632. Action = QueueFileListAction
  2633. end
  2634. object N68: TTBXSeparatorItem
  2635. end
  2636. object Customize4: TTBXItem
  2637. Action = QueuePreferencesAction
  2638. end
  2639. end
  2640. end
  2641. object RemotePanelPopup: TTBXPopupMenu
  2642. Images = GlyphsModule.ExplorerImages
  2643. Options = [tboShowHint]
  2644. Left = 312
  2645. Top = 264
  2646. object TBXSubmenuItem8: TTBXSubmenuItem
  2647. Caption = '&Go To'
  2648. HelpKeyword = 'task_navigate'
  2649. Hint = 'Go to directory'
  2650. object TBXItem86: TTBXItem
  2651. Action = RemoteOpenDirAction
  2652. end
  2653. object TBXItem99: TTBXItem
  2654. Action = RemoteExploreDirectoryAction
  2655. end
  2656. object TBXSeparatorItem13: TTBXSeparatorItem
  2657. end
  2658. object TBXItem87: TTBXItem
  2659. Action = RemoteParentDirAction
  2660. end
  2661. object TBXItem88: TTBXItem
  2662. Action = RemoteRootDirAction
  2663. end
  2664. object TBXItem89: TTBXItem
  2665. Action = RemoteHomeDirAction
  2666. end
  2667. object TBXSeparatorItem14: TTBXSeparatorItem
  2668. end
  2669. object TBXItem90: TTBXItem
  2670. Action = RemoteBackAction
  2671. end
  2672. object TBXItem91: TTBXItem
  2673. Action = RemoteForwardAction
  2674. end
  2675. end
  2676. object TBXItem32: TTBXItem
  2677. Action = RemoteRefreshAction
  2678. end
  2679. object TBXItem30: TTBXItem
  2680. Action = RemoteAddBookmarkAction2
  2681. end
  2682. object TBXItem26: TTBXItem
  2683. Action = RemoteFilterAction
  2684. end
  2685. object CopyPathtoClipboard1: TTBXItem
  2686. Action = RemotePathToClipboardAction2
  2687. end
  2688. object N51: TTBXSeparatorItem
  2689. end
  2690. object HistoryButtons5: TTBXItem
  2691. Action = CommanderRemoteHistoryBandAction2
  2692. end
  2693. object NavigationButtons5: TTBXItem
  2694. Action = CommanderRemoteNavigationBandAction2
  2695. end
  2696. object TBXItem14: TTBXItem
  2697. Action = CommanderRemoteFileBandAction2
  2698. end
  2699. object TBXItem45: TTBXItem
  2700. Action = CommanderRemoteSelectionBandAction2
  2701. end
  2702. object TBXItem37: TTBXItem
  2703. Action = LockToolbarsAction
  2704. end
  2705. object TBXItem49: TTBXItem
  2706. Action = SelectiveToolbarTextAction
  2707. end
  2708. object TBXSubmenuItem9: TTBXSubmenuItem
  2709. Action = CustomizeToolbarAction
  2710. end
  2711. object N28: TTBXSeparatorItem
  2712. end
  2713. object Tree5: TTBXItem
  2714. Action = RemoteTreeAction
  2715. end
  2716. object N75: TTBXSeparatorItem
  2717. end
  2718. object StatusBar9: TTBXItem
  2719. Action = RemoteStatusBarAction2
  2720. end
  2721. end
  2722. object LocalPanelPopup: TTBXPopupMenu
  2723. Images = GlyphsModule.ExplorerImages
  2724. Options = [tboShowHint]
  2725. Left = 312
  2726. Top = 336
  2727. object TBXSubmenuItem10: TTBXSubmenuItem
  2728. Caption = '&Go To'
  2729. HelpKeyword = 'task_navigate'
  2730. Hint = 'Go to directory'
  2731. object TBXItem92: TTBXItem
  2732. Action = LocalOpenDirAction
  2733. end
  2734. object TBXItem93: TTBXItem
  2735. Action = LocalExploreDirectoryAction
  2736. end
  2737. object TBXSeparatorItem15: TTBXSeparatorItem
  2738. end
  2739. object TBXItem94: TTBXItem
  2740. Action = LocalParentDirAction
  2741. end
  2742. object TBXItem95: TTBXItem
  2743. Action = LocalRootDirAction
  2744. end
  2745. object TBXItem96: TTBXItem
  2746. Action = LocalHomeDirAction
  2747. end
  2748. object TBXSeparatorItem16: TTBXSeparatorItem
  2749. end
  2750. object TBXItem97: TTBXItem
  2751. Action = LocalBackAction
  2752. end
  2753. object TBXItem98: TTBXItem
  2754. Action = LocalForwardAction
  2755. end
  2756. end
  2757. object TBXItem34: TTBXItem
  2758. Action = LocalRefreshAction
  2759. end
  2760. object TBXItem27: TTBXItem
  2761. Action = LocalFilterAction
  2762. end
  2763. object TBXItem31: TTBXItem
  2764. Action = LocalAddBookmarkAction2
  2765. end
  2766. object CopyPathtoClipboard2: TTBXItem
  2767. Action = LocalPathToClipboardAction2
  2768. end
  2769. object N52: TTBXSeparatorItem
  2770. end
  2771. object HistoryButtons6: TTBXItem
  2772. Action = CommanderLocalHistoryBandAction2
  2773. end
  2774. object NavigationButtons6: TTBXItem
  2775. Action = CommanderLocalNavigationBandAction2
  2776. end
  2777. object TBXItem39: TTBXItem
  2778. Action = CommanderLocalFileBandAction2
  2779. end
  2780. object TBXItem44: TTBXItem
  2781. Action = CommanderLocalSelectionBandAction2
  2782. end
  2783. object TBXItem38: TTBXItem
  2784. Action = LockToolbarsAction
  2785. end
  2786. object TBXItem47: TTBXItem
  2787. Action = SelectiveToolbarTextAction
  2788. end
  2789. object TBXSubmenuItem6: TTBXSubmenuItem
  2790. Action = CustomizeToolbarAction
  2791. end
  2792. object N29: TTBXSeparatorItem
  2793. end
  2794. object Tree6: TTBXItem
  2795. Action = LocalTreeAction
  2796. end
  2797. object N76: TTBXSeparatorItem
  2798. end
  2799. object StatusBar10: TTBXItem
  2800. Action = LocalStatusBarAction2
  2801. end
  2802. end
  2803. object LocalDirViewColumnPopup: TTBXPopupMenu
  2804. Images = GlyphsModule.ExplorerImages
  2805. Options = [tboShowHint]
  2806. Left = 248
  2807. Top = 88
  2808. object SortAscending1: TTBXItem
  2809. Action = SortColumnAscendingAction
  2810. end
  2811. object SortDescending1: TTBXItem
  2812. Action = SortColumnDescendingAction
  2813. end
  2814. object LocalSortByExtColumnPopupItem: TTBXItem
  2815. Action = LocalSortByExtAction2
  2816. end
  2817. object Hidecolumn1: TTBXItem
  2818. Action = HideColumnAction
  2819. end
  2820. object N37: TTBXSeparatorItem
  2821. end
  2822. object LocalFormatSizeBytesPopupItem: TTBXSubmenuItem
  2823. Caption = 'Show File Si&zes In'
  2824. HelpKeyword = 'ui_pref_panels#common'
  2825. Hint = 'Select files sizes display format'
  2826. object TBXItem64: TTBXItem
  2827. Action = FormatSizeBytesNoneAction
  2828. end
  2829. object TBXItem65: TTBXItem
  2830. Action = FormatSizeBytesKilobytesAction
  2831. end
  2832. object TBXItem66: TTBXItem
  2833. Action = FormatSizeBytesShortAction
  2834. end
  2835. end
  2836. object LocalCalculateDirectorySizesPopupItem: TTBXItem
  2837. Action = LocalCalculateDirectorySizesAction
  2838. end
  2839. object TBXSeparatorItem8: TTBXSeparatorItem
  2840. end
  2841. object Showcolumns3: TTBXSubmenuItem
  2842. Caption = 'Show &Columns'
  2843. HelpKeyword = 'ui_file_panel#selecting_columns'
  2844. Hint = 'Select columns to show in panel'
  2845. object Name3: TTBXItem
  2846. Action = ShowHideLocalNameColumnAction2
  2847. end
  2848. object Size3: TTBXItem
  2849. Action = ShowHideLocalSizeColumnAction2
  2850. end
  2851. object Type2: TTBXItem
  2852. Action = ShowHideLocalTypeColumnAction2
  2853. end
  2854. object Modification3: TTBXItem
  2855. Action = ShowHideLocalChangedColumnAction2
  2856. end
  2857. object Attributes3: TTBXItem
  2858. Action = ShowHideLocalAttrColumnAction2
  2859. end
  2860. end
  2861. object TBXItem112: TTBXItem
  2862. Action = RemoteCalculateDirectorySizesAction
  2863. end
  2864. end
  2865. object RemoteDirViewColumnPopup: TTBXPopupMenu
  2866. Images = GlyphsModule.ExplorerImages
  2867. Options = [tboShowHint]
  2868. Left = 424
  2869. Top = 88
  2870. object MenuItem1: TTBXItem
  2871. Action = SortColumnAscendingAction
  2872. RadioItem = True
  2873. end
  2874. object MenuItem2: TTBXItem
  2875. Action = SortColumnDescendingAction
  2876. RadioItem = True
  2877. end
  2878. object RemoteSortByExtColumnPopupItem: TTBXItem
  2879. Action = RemoteSortByExtAction2
  2880. end
  2881. object Hidecolumn2: TTBXItem
  2882. Action = HideColumnAction
  2883. end
  2884. object N38: TTBXSeparatorItem
  2885. end
  2886. object RemoteFormatSizeBytesPopupItem: TTBXSubmenuItem
  2887. Caption = 'Show File Si&zes In'
  2888. HelpKeyword = 'ui_pref_panels#common'
  2889. Hint = 'Select files sizes display format'
  2890. object TBXItem67: TTBXItem
  2891. Action = FormatSizeBytesNoneAction
  2892. end
  2893. object TBXItem53: TTBXItem
  2894. Action = FormatSizeBytesKilobytesAction
  2895. end
  2896. object TBXItem55: TTBXItem
  2897. Action = FormatSizeBytesShortAction
  2898. end
  2899. end
  2900. object RemoteCalculateDirectorySizesPopupItem: TTBXItem
  2901. Action = RemoteCalculateDirectorySizesAction
  2902. end
  2903. object TBXSeparatorItem7: TTBXSeparatorItem
  2904. end
  2905. object Showcolumns4: TTBXSubmenuItem
  2906. Caption = 'Show &Columns'
  2907. HelpKeyword = 'ui_file_panel#selecting_columns'
  2908. Hint = 'Select columns to show in panel'
  2909. object Name4: TTBXItem
  2910. Action = ShowHideRemoteNameColumnAction2
  2911. end
  2912. object Size4: TTBXItem
  2913. Action = ShowHideRemoteSizeColumnAction2
  2914. end
  2915. object TBXItem8: TTBXItem
  2916. Action = ShowHideRemoteTypeColumnAction2
  2917. end
  2918. object Modification4: TTBXItem
  2919. Action = ShowHideRemoteChangedColumnAction2
  2920. end
  2921. object Permissions1: TTBXItem
  2922. Action = ShowHideRemoteRightsColumnAction2
  2923. end
  2924. object Owner2: TTBXItem
  2925. Action = ShowHideRemoteOwnerColumnAction2
  2926. end
  2927. object Group2: TTBXItem
  2928. Action = ShowHideRemoteGroupColumnAction2
  2929. end
  2930. object TBXItem1: TTBXItem
  2931. Action = ShowHideRemoteLinkTargetColumnAction2
  2932. end
  2933. end
  2934. end
  2935. object QueuePopup: TTBXPopupMenu
  2936. Images = GlyphsModule.ExplorerImages
  2937. OnPopup = QueuePopupPopup
  2938. Options = [tboShowHint]
  2939. Left = 360
  2940. Top = 176
  2941. object ShowQuery1: TTBXItem
  2942. Action = QueueItemQueryAction
  2943. end
  2944. object ShowError1: TTBXItem
  2945. Action = QueueItemErrorAction
  2946. end
  2947. object ShowPrompt1: TTBXItem
  2948. Action = QueueItemPromptAction
  2949. end
  2950. object N53: TTBXSeparatorItem
  2951. end
  2952. object ExecuteNow1: TTBXItem
  2953. Action = QueueItemExecuteAction
  2954. end
  2955. object TBXItem9: TTBXItem
  2956. Action = QueueItemPauseAction
  2957. end
  2958. object TBXItem10: TTBXItem
  2959. Action = QueueItemResumeAction
  2960. end
  2961. object Delete4: TTBXItem
  2962. Action = QueueItemDeleteAction
  2963. end
  2964. object QueuePopupSpeedComboBoxItem: TTBXComboBoxItem
  2965. Action = QueueItemSpeedAction
  2966. ShowImage = True
  2967. OnAdjustImageIndex = QueuePopupSpeedComboBoxItemAdjustImageIndex
  2968. end
  2969. object N54: TTBXSeparatorItem
  2970. end
  2971. object MoveUp1: TTBXItem
  2972. Action = QueueItemUpAction
  2973. end
  2974. object MoveDown1: TTBXItem
  2975. Action = QueueItemDownAction
  2976. end
  2977. object N67: TTBXSeparatorItem
  2978. end
  2979. object QueueEnableItem: TTBXItem
  2980. Action = QueueEnableAction
  2981. end
  2982. object TBXSubmenuItem1: TTBXSubmenuItem
  2983. Caption = '&All'
  2984. HelpKeyword = 'ui_queue#manage'
  2985. Hint = 'Mass queue management commands'
  2986. object TBXItem11: TTBXItem
  2987. Action = QueuePauseAllAction
  2988. end
  2989. object TBXItem12: TTBXItem
  2990. Action = QueueResumeAllAction
  2991. end
  2992. object TBXItem142: TTBXItem
  2993. Action = QueueDeleteAllAction
  2994. end
  2995. object TBXSeparatorItem5: TTBXSeparatorItem
  2996. end
  2997. object TBXItem51: TTBXItem
  2998. Action = QueueDeleteAllDoneAction
  2999. end
  3000. end
  3001. object TBXSubmenuItem3: TTBXSubmenuItem
  3002. Action = QueueCycleOnceEmptyAction
  3003. DropdownCombo = True
  3004. object TBXItem28: TTBXItem
  3005. Action = QueueIdleOnceEmptyAction
  3006. RadioItem = True
  3007. end
  3008. object TBXItem13: TTBXItem
  3009. Action = QueueDisconnectOnceEmptyAction2
  3010. RadioItem = True
  3011. end
  3012. object TBXItem68: TTBXItem
  3013. Action = QueueSuspendOnceEmptyAction2
  3014. RadioItem = True
  3015. end
  3016. object TBXItem29: TTBXItem
  3017. Action = QueueShutDownOnceEmptyAction2
  3018. RadioItem = True
  3019. end
  3020. end
  3021. object Queue2: TTBXSubmenuItem
  3022. Caption = '&Options'
  3023. HelpKeyword = 'ui_queue'
  3024. Hint = 'Configure queue list'
  3025. object Show4: TTBXItem
  3026. Action = QueueShowAction
  3027. RadioItem = True
  3028. end
  3029. object HidewhenEmpty4: TTBXItem
  3030. Action = QueueHideWhenEmptyAction
  3031. RadioItem = True
  3032. end
  3033. object Hide3: TTBXItem
  3034. Action = QueueHideAction
  3035. RadioItem = True
  3036. end
  3037. object N66: TTBXSeparatorItem
  3038. end
  3039. object Toolbar3: TTBXItem
  3040. Action = QueueToolbarAction
  3041. end
  3042. object TBXItem83: TTBXItem
  3043. Action = QueueFileListAction
  3044. end
  3045. object N65: TTBXSeparatorItem
  3046. end
  3047. object Customize3: TTBXItem
  3048. Action = QueuePreferencesAction
  3049. end
  3050. end
  3051. end
  3052. object RemoteDirViewPopup: TTBXPopupMenu
  3053. AutoPopup = False
  3054. Images = GlyphsModule.ExplorerImages
  3055. Options = [tboShowHint]
  3056. Left = 360
  3057. Top = 400
  3058. object GoTo4: TTBXSubmenuItem
  3059. Caption = '&Go To'
  3060. HelpKeyword = 'task_navigate'
  3061. Hint = 'Go to directory'
  3062. object OpenDirectoryBookmark3: TTBXItem
  3063. Action = RemoteOpenDirAction
  3064. end
  3065. object TBXItem100: TTBXItem
  3066. Action = RemoteExploreDirectoryAction
  3067. end
  3068. object N81: TTBXSeparatorItem
  3069. end
  3070. object ParentDirectory4: TTBXItem
  3071. Action = RemoteParentDirAction
  3072. end
  3073. object RootDirectory4: TTBXItem
  3074. Action = RemoteRootDirAction
  3075. end
  3076. object HomeDirectory4: TTBXItem
  3077. Action = RemoteHomeDirAction
  3078. end
  3079. object N80: TTBXSeparatorItem
  3080. end
  3081. object Back4: TTBXItem
  3082. Action = RemoteBackAction
  3083. end
  3084. object Forward4: TTBXItem
  3085. Action = RemoteForwardAction
  3086. end
  3087. end
  3088. object Refresh4: TTBXItem
  3089. Action = RemoteRefreshAction
  3090. end
  3091. object AddToBookmarks4: TTBXItem
  3092. Action = RemoteAddBookmarkAction2
  3093. end
  3094. object TBXItem35: TTBXItem
  3095. Action = RemoteFilterAction
  3096. end
  3097. object CopyPathtoClipboard6: TTBXItem
  3098. Action = RemotePathToClipboardAction2
  3099. end
  3100. object N79: TTBXSeparatorItem
  3101. end
  3102. object TBXSubmenuItem26: TTBXSubmenuItem
  3103. Caption = '&New'
  3104. HelpKeyword = 'task_index'
  3105. Hint = 'Create object|Create new object'
  3106. object TBXItem135: TTBXItem
  3107. Action = NewFileAction
  3108. end
  3109. object TBXItem136: TTBXItem
  3110. Action = NewDirAction
  3111. end
  3112. object TBXItem209: TTBXItem
  3113. Action = NewLinkAction
  3114. end
  3115. end
  3116. object TBXItem75: TTBXItem
  3117. Action = PasteAction3
  3118. end
  3119. object RemoteDirViewPopupCustomCommandsMenu: TTBXSubmenuItem
  3120. Action = CustomCommandsNonFileAction
  3121. end
  3122. end
  3123. object LocalDirViewPopup: TTBXPopupMenu
  3124. AutoPopup = False
  3125. Images = GlyphsModule.ExplorerImages
  3126. Options = [tboShowHint]
  3127. Left = 480
  3128. Top = 400
  3129. object GoTo5: TTBXSubmenuItem
  3130. Caption = '&Go To'
  3131. HelpKeyword = 'task_navigate'
  3132. Hint = 'Go to directory'
  3133. object OpenDirectoryBookmark4: TTBXItem
  3134. Action = LocalOpenDirAction
  3135. end
  3136. object ExploreDirectory2: TTBXItem
  3137. Action = LocalExploreDirectoryAction
  3138. end
  3139. object N84: TTBXSeparatorItem
  3140. end
  3141. object ParentDirectory5: TTBXItem
  3142. Action = LocalParentDirAction
  3143. end
  3144. object RootDirectory5: TTBXItem
  3145. Action = LocalRootDirAction
  3146. end
  3147. object HomeDirectory5: TTBXItem
  3148. Action = LocalHomeDirAction
  3149. end
  3150. object N83: TTBXSeparatorItem
  3151. end
  3152. object Back5: TTBXItem
  3153. Action = LocalBackAction
  3154. end
  3155. object Forward5: TTBXItem
  3156. Action = LocalForwardAction
  3157. end
  3158. end
  3159. object Refresh5: TTBXItem
  3160. Action = LocalRefreshAction
  3161. end
  3162. object TBXItem36: TTBXItem
  3163. Action = LocalFilterAction
  3164. end
  3165. object AddToBookmarks5: TTBXItem
  3166. Action = LocalAddBookmarkAction2
  3167. end
  3168. object CopyPathtoClipboard7: TTBXItem
  3169. Action = LocalPathToClipboardAction2
  3170. end
  3171. object N82: TTBXSeparatorItem
  3172. end
  3173. object TBXSubmenuItem7: TTBXSubmenuItem
  3174. Caption = '&New'
  3175. HelpKeyword = 'task_index'
  3176. Hint = 'Create object|Create new object'
  3177. object TBXItem70: TTBXItem
  3178. Action = NewFileAction
  3179. end
  3180. object TBXItem71: TTBXItem
  3181. Action = NewDirAction
  3182. end
  3183. end
  3184. object TBXItem76: TTBXItem
  3185. Action = PasteAction3
  3186. end
  3187. end
  3188. object RemoteAddressPopup: TTBXPopupMenu
  3189. Images = GlyphsModule.ExplorerImages
  3190. Options = [tboShowHint]
  3191. Left = 248
  3192. Top = 400
  3193. object TBXItem33: TTBXItem
  3194. Action = RemoteRefreshAction
  3195. end
  3196. object TBXItem24: TTBXItem
  3197. Action = RemoteAddBookmarkAction2
  3198. end
  3199. object TBXItem25: TTBXItem
  3200. Action = RemotePathToClipboardAction2
  3201. end
  3202. object TBXSeparatorItem1: TTBXSeparatorItem
  3203. end
  3204. object TBXItem17: TTBXItem
  3205. Action = RemoteOpenDirAction
  3206. end
  3207. object TBXSubmenuItem2: TTBXSubmenuItem
  3208. Caption = '&Go To'
  3209. HelpKeyword = 'task_navigate'
  3210. Hint = 'Go to directory'
  3211. object TBXItem18: TTBXItem
  3212. Action = RemoteParentDirAction
  3213. end
  3214. object TBXItem19: TTBXItem
  3215. Action = RemoteRootDirAction
  3216. end
  3217. object TBXItem20: TTBXItem
  3218. Action = RemoteHomeDirAction
  3219. end
  3220. object TBXSeparatorItem2: TTBXSeparatorItem
  3221. end
  3222. object TBXItem21: TTBXItem
  3223. Action = RemoteBackAction
  3224. end
  3225. object TBXItem22: TTBXItem
  3226. Action = RemoteForwardAction
  3227. end
  3228. end
  3229. end
  3230. object SessionsPopup: TTBXPopupMenu
  3231. Images = GlyphsModule.ExplorerImages
  3232. Options = [tboShowHint]
  3233. Left = 456
  3234. Top = 176
  3235. object TBXItem124: TTBXItem
  3236. Action = CloseTabAction
  3237. end
  3238. object TBXItem219: TTBXItem
  3239. Action = DuplicateTabAction
  3240. end
  3241. object TBXItem78: TTBXItem
  3242. Action = RenameTabAction
  3243. end
  3244. object TBXSeparatorItem17: TTBXSeparatorItem
  3245. end
  3246. object ColorMenuItem: TTBXColorItem
  3247. Action = ColorMenuAction2
  3248. Color = clNone
  3249. end
  3250. object TBXSeparatorItem52: TTBXSeparatorItem
  3251. end
  3252. object TBXItem79: TTBXItem
  3253. Action = DisconnectSessionAction
  3254. end
  3255. object TBXItem80: TTBXItem
  3256. Action = ReconnectSessionAction
  3257. end
  3258. object TBXItem125: TTBXItem
  3259. Action = SaveCurrentSessionAction2
  3260. end
  3261. object TBXSeparatorItem6: TTBXSeparatorItem
  3262. end
  3263. object TBXItem56: TTBXItem
  3264. Action = FileSystemInfoAction
  3265. end
  3266. object TBXItem52: TTBXItem
  3267. Action = SessionGenerateUrlAction2
  3268. end
  3269. object TBXSeparatorItem34: TTBXSeparatorItem
  3270. end
  3271. object SessionsNewTabItem: TTBXSubmenuItem
  3272. Action = NewTabAction
  3273. DropdownCombo = True
  3274. object TBXItem104: TTBXItem
  3275. Action = NewRemoteTabAction
  3276. end
  3277. object TBXItem105: TTBXItem
  3278. Action = NewLocalTabAction
  3279. end
  3280. object TBXSeparatorItem18: TTBXSeparatorItem
  3281. end
  3282. object TBXItem106: TTBXItem
  3283. Action = DefaultToNewRemoteTabAction
  3284. end
  3285. end
  3286. object TBXSubmenuItem23: TTBXSubmenuItem
  3287. Action = SavedSessionsAction2
  3288. Options = [tboDropdownArrow]
  3289. end
  3290. object TBXSeparatorItem35: TTBXSeparatorItem
  3291. end
  3292. object SessionsTabs4: TTBXItem
  3293. Action = SessionsTabsAction2
  3294. end
  3295. end
  3296. object LocalFilePopup: TTBXPopupMenu
  3297. Images = GlyphsModule.ExplorerImages
  3298. Options = [tboShowHint]
  3299. Left = 536
  3300. Top = 336
  3301. object LocalOpenMenuItem: TTBXItem
  3302. Action = CurrentOpenAction
  3303. end
  3304. object LocalEditMenuItem: TTBXSubmenuItem
  3305. Action = CurrentEditFocusedAction
  3306. DropdownCombo = True
  3307. OnPopup = FocusedEditMenuItemPopup
  3308. end
  3309. object LocalCopyMenuItem: TTBXSubmenuItem
  3310. Action = LocalCopyFocusedAction
  3311. DropdownCombo = True
  3312. object TBXItem73: TTBXItem
  3313. Action = LocalCopyFocusedNonQueueAction
  3314. end
  3315. object TBXItem74: TTBXItem
  3316. Action = LocalCopyFocusedQueueAction
  3317. end
  3318. object TBXSeparatorItem10: TTBXSeparatorItem
  3319. end
  3320. object TBXItem54: TTBXItem
  3321. Action = LocalMoveFocusedAction
  3322. end
  3323. end
  3324. object LocalLocalCopyMenuItem: TTBXItem
  3325. Action = LocalLocalCopyFocusedAction
  3326. end
  3327. object TBXItem101: TTBXItem
  3328. Action = LocalLocalMoveFocusedAction
  3329. end
  3330. object TBXItem57: TTBXItem
  3331. Action = CurrentDeleteFocusedAction
  3332. end
  3333. object TBXItem58: TTBXItem
  3334. Action = CurrentRenameAction
  3335. end
  3336. object TBXSeparatorItem11: TTBXSeparatorItem
  3337. end
  3338. object TBXItem81: TTBXItem
  3339. Action = CurrentCopyToClipboardFocusedAction2
  3340. end
  3341. object TBXSeparatorItem3: TTBXSeparatorItem
  3342. end
  3343. object LocalFilePopupCustomCommandsMenu: TTBXSubmenuItem
  3344. Action = CustomCommandsFileAction
  3345. object TTBXItem
  3346. end
  3347. end
  3348. object TBXSubmenuItem5: TTBXSubmenuItem
  3349. Caption = '&File Names'
  3350. HelpKeyword = 'filenames'
  3351. Hint = 'Operations with name(s) of selected file(s)'
  3352. object TBXItem59: TTBXItem
  3353. Action = FileListToCommandLineAction
  3354. end
  3355. object TBXItem60: TTBXItem
  3356. Action = FileListToClipboardAction
  3357. end
  3358. object TBXItem61: TTBXItem
  3359. Action = FullFileListToClipboardAction
  3360. end
  3361. end
  3362. object TBXSeparatorItem4: TTBXSeparatorItem
  3363. end
  3364. object TBXItem63: TTBXItem
  3365. Action = CurrentPropertiesFocusedAction
  3366. end
  3367. object TBXItem50: TTBXItem
  3368. Action = CurrentSystemMenuFocusedAction
  3369. end
  3370. end
  3371. object LocalBrowserPopup: TTBXPopupMenu
  3372. Images = GlyphsModule.ExplorerImages
  3373. Options = [tboShowHint]
  3374. Left = 552
  3375. Top = 176
  3376. object TBXItem62: TTBXItem
  3377. Action = CloseTabAction
  3378. end
  3379. object TBXItem102: TTBXItem
  3380. Action = DuplicateTabAction
  3381. end
  3382. object TBXItem103: TTBXItem
  3383. Action = RenameTabAction
  3384. end
  3385. object TBXSeparatorItem21: TTBXSeparatorItem
  3386. end
  3387. object TBXSubmenuItem12: TTBXSubmenuItem
  3388. Action = NewTabAction
  3389. DropdownCombo = True
  3390. object TBXItem107: TTBXItem
  3391. Action = NewRemoteTabAction
  3392. end
  3393. object TBXItem108: TTBXItem
  3394. Action = NewLocalTabAction
  3395. end
  3396. object TBXSeparatorItem19: TTBXSeparatorItem
  3397. end
  3398. object TBXItem111: TTBXItem
  3399. Action = DefaultToNewRemoteTabAction
  3400. end
  3401. end
  3402. object TBXSubmenuItem11: TTBXSubmenuItem
  3403. Action = SavedSessionsAction2
  3404. Options = [tboDropdownArrow]
  3405. end
  3406. object TBXSeparatorItem22: TTBXSeparatorItem
  3407. end
  3408. object TBXItem110: TTBXItem
  3409. Action = SessionsTabsAction2
  3410. end
  3411. end
  3412. object NewTabPopup: TTBXPopupMenu
  3413. Images = GlyphsModule.ExplorerImages
  3414. Options = [tboShowHint]
  3415. Left = 256
  3416. Top = 176
  3417. object NewRemoteTabItem: TTBXItem
  3418. Action = NewRemoteTabAction
  3419. end
  3420. object NewLocalTabItem: TTBXItem
  3421. Action = NewLocalTabAction
  3422. end
  3423. object TBXSeparatorItem67: TTBXSeparatorItem
  3424. end
  3425. object TBXItem232: TTBXItem
  3426. Action = DefaultToNewRemoteTabAction
  3427. end
  3428. end
  3429. end