NonVisual.dfm 103 KB

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