Remove obsolete stuffs
202
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/Background.xml
vendored
Normal file
@@ -0,0 +1,202 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!--
|
||||
=== configuration ===
|
||||
description:
|
||||
root node, one per file
|
||||
child nodes:
|
||||
window
|
||||
|
||||
=== window ===
|
||||
attributes:
|
||||
type
|
||||
may be "PANELS", "EDITOR", "VIEWER"
|
||||
child nodes:
|
||||
panel, disabled, color, title, img
|
||||
Note: "color, title, img" nodes may exists only in EDITOR/VIEWER
|
||||
|
||||
=== disabled ===
|
||||
syntax:
|
||||
<disabled/>
|
||||
description:
|
||||
turn off coloring of this item
|
||||
|
||||
=== panel ===
|
||||
attributes:
|
||||
type
|
||||
values: "DRIVE", "PLUGIN", "INFO", "QVIEW", "TREE"
|
||||
pathtype [optional]
|
||||
"TEMP" means "%TEMP%" or X:\...\TEMP\...
|
||||
pathmatch [optional]
|
||||
one or several standard masks, delimited with "|"
|
||||
example: pathmatch="*/.svn/*|*/.git/*|*/.hg/*|*/.bzr/*|*/CVS/*"
|
||||
drivetype [optional]
|
||||
may be used with type="DRIVE" only
|
||||
values: "REMOVABLE", "REMOTE", "CDROM", "RAMDISK", "FIXED"
|
||||
format [optional]
|
||||
may be used with type="PLUGIN" only
|
||||
one or several standard masks, delimited with "|"
|
||||
each mask will be compared with panel [A|P]Panel.Prefix or [A|P]Panel.Format
|
||||
child nodes:
|
||||
disabled, color, space, title, img
|
||||
|
||||
=== color ===
|
||||
attributes:
|
||||
rgb
|
||||
color value RRGGBB, you can use hexadecimal or decimal formats
|
||||
example, light green
|
||||
hexadecimal: rgb="#00FF00"
|
||||
or decimal: rgb="65280"
|
||||
bgr
|
||||
color value BBGGRR (WinAPI COLORREF), hexadecimal or decimal formats
|
||||
example, light red
|
||||
hexadecimal: bgr="#0000FF"
|
||||
or decimal: bgr="255"
|
||||
rgb_light, bgr_light
|
||||
color of drive used space
|
||||
rgb_dark, bgr_dark
|
||||
color of sprites and drive free space
|
||||
shift
|
||||
values: "yes", "no"
|
||||
"yes" enables color 'rotation' of drive letter
|
||||
|
||||
=== space ===
|
||||
description:
|
||||
drive used/free space bar, which located in status area
|
||||
see also: rgb_light, bgr_light, rgb_dark, bgr_dark
|
||||
attributes:
|
||||
type
|
||||
"small", "large", "off"
|
||||
|
||||
=== title ===
|
||||
syntax:
|
||||
<title>token[+token[+token[...]]</title>
|
||||
where 'token' may be verbatim string,
|
||||
or one of predefined 'variables'
|
||||
PanelFormat - [A|P]Panel.Prefix or [A|P]Panel.Format
|
||||
Volume - drive letter with colon
|
||||
VolumeSize - drive size
|
||||
VolumeFree - free drive space
|
||||
example:
|
||||
<title>Volume+" "+VolumeSize</title>
|
||||
|
||||
=== img ===
|
||||
attributes:
|
||||
ref
|
||||
full or relative (of plugin folder) path to 'sprite'
|
||||
environment variables allowed
|
||||
|
||||
-->
|
||||
|
||||
<configuration>
|
||||
<window type="PANELS">
|
||||
<!--Temp folder-->
|
||||
<panel type="DRIVE" pathtype="TEMP">
|
||||
<color rgb="#663300"/> <!--Brown-->
|
||||
<space type="small"/>
|
||||
<title>"Temporary files"</title>
|
||||
<img ref="img/trash.png"/>
|
||||
</panel>
|
||||
<!--Repositories-->
|
||||
<panel type="DRIVE" pathmatch="*/.svn/*|*/.git/*|*/.hg/*|*/.bzr/*|*/CVS/*">
|
||||
<color rgb="#333333"/> <!--DarkGray-->
|
||||
<title>PathMatch</title>
|
||||
<img ref="img/caution.png"/>
|
||||
</panel>
|
||||
<!--Drives-->
|
||||
<panel type="DRIVE" drivetype="REMOVABLE">
|
||||
<color rgb="#8cd900" shift="yes"/>
|
||||
<title>Volume+" "+VolumeSize</title>
|
||||
<img ref="img/drive_removable.png"/>
|
||||
</panel>
|
||||
<panel type="DRIVE" drivetype="REMOTE">
|
||||
<color rgb="#e600ff" shift="yes"/>
|
||||
<title>Volume+" "+VolumeSize</title>
|
||||
<img ref="img/drive_network.png"/>
|
||||
</panel>
|
||||
<panel type="DRIVE" drivetype="CDROM">
|
||||
<color rgb="#ff007e" shift="yes"/>
|
||||
<title>Volume+" "+VolumeSize</title>
|
||||
<img ref="img/drive_cdrom.png"/>
|
||||
</panel>
|
||||
<panel type="DRIVE" drivetype="RAMDISK">
|
||||
<color rgb="#808000" shift="yes"/>
|
||||
<title>Volume+" "+VolumeSize</title>
|
||||
<img ref="img/drive_ramdisk.png"/>
|
||||
</panel>
|
||||
<panel type="DRIVE" drivetype="FIXED">
|
||||
<color rgb="#0000ff" shift="yes"/>
|
||||
<title>Volume+" "+VolumeSize</title>
|
||||
<img ref="img/drive_fixed.png"/>
|
||||
</panel>
|
||||
<!--All other drive types-->
|
||||
<panel type="DRIVE">
|
||||
<color rgb="#0000ff" shift="yes"/>
|
||||
<title>Volume+" "+VolumeSize</title>
|
||||
<img ref="img/drive_fixed.png"/>
|
||||
</panel>
|
||||
|
||||
<!--RegEditor or RegBrowser-->
|
||||
<panel type="PLUGIN" format="reg|reg2">
|
||||
<color bgr="#808080"/>
|
||||
<title>"Registry"</title>
|
||||
<img ref="img/caution.png"/>
|
||||
</panel>
|
||||
<!--Temp panel-->
|
||||
<panel type="PLUGIN" format="tmp">
|
||||
<color bgr="#808080"/>
|
||||
<title>"Temp panel"</title>
|
||||
<img ref="img/plugin.png"/>
|
||||
</panel>
|
||||
<!--Network-->
|
||||
<panel type="PLUGIN" format="Network|net:netg">
|
||||
<color bgr="#808080"/>
|
||||
<title>"Network"</title>
|
||||
<img ref="img/network.png"/>
|
||||
</panel>
|
||||
<!--'MultiArc' plugin provides format as e.g. 'ZIP archive', 'RAR archive'-->
|
||||
<panel type="PLUGIN" format="* archive">
|
||||
<color bgr="#808080"/>
|
||||
<title>PanelFormat</title>
|
||||
<img ref="img/archive.png"/>
|
||||
</panel>
|
||||
<!--'arclite' plugin (MultiArc replacement) uses 'arc' constant-->
|
||||
<panel type="PLUGIN" format="arc">
|
||||
<color bgr="#808080"/>
|
||||
<title>PanelFormat+" archive"</title>
|
||||
<img ref="img/archive.png"/>
|
||||
</panel>
|
||||
<!--Other plugin panels-->
|
||||
<panel type="PLUGIN">
|
||||
<color bgr="#808080"/>
|
||||
<title>PanelFormat</title>
|
||||
<img ref="img/plugin.png"/>
|
||||
</panel>
|
||||
|
||||
<!--Other panel types-->
|
||||
<panel type="INFO">
|
||||
<disabled/>
|
||||
</panel>
|
||||
<panel type="QVIEW">
|
||||
<disabled/>
|
||||
</panel>
|
||||
<panel type="TREE">
|
||||
<disabled/>
|
||||
</panel>
|
||||
<!--Finally, unknown panel type-->
|
||||
<panel>
|
||||
<!--Standard panel background-->
|
||||
<disabled/>
|
||||
</panel>
|
||||
</window>
|
||||
|
||||
<!--Other Far window types, not supported yet-->
|
||||
<!--
|
||||
<window type="EDITOR">
|
||||
<disabled/>
|
||||
</window>
|
||||
<window type="VIEWER">
|
||||
<disabled/>
|
||||
</window>
|
||||
-->
|
||||
</configuration>
|
||||
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/ConEmuBg.dll
vendored
Normal file
2442
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/ConEmuBg.map
vendored
Normal file
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/ConEmuBg.x64.dll
vendored
Normal file
2721
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/ConEmuBg.x64.map
vendored
Normal file
9
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/ConEmuBg_en.lng
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
.Language=English,English
|
||||
|
||||
// Plugin title
|
||||
"ConEmu Background"
|
||||
"&Enable plugin"
|
||||
"&Settings file path (Background.xml)"
|
||||
"&Monitor xml-file changes"
|
||||
"OK"
|
||||
"Cancel"
|
||||
9
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/ConEmuBg_ru.lng
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
.Language=Russian,Russian (<28>ãá᪨©)
|
||||
|
||||
// Plugin title
|
||||
"ConEmu Background"
|
||||
"<22>« £¨ &¢ª«îç¥"
|
||||
"&<26>ãâì ª ä ©«ã áâ஥ª (Background.xml)"
|
||||
"&‘«¥¤¨âì § ¨§¬¥¥¨ï¬¨ xml-ä ©« "
|
||||
"OK"
|
||||
"Žâ¬¥ "
|
||||
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/archive.png
vendored
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/caution.png
vendored
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/database.png
vendored
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/downloads.png
vendored
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/drive_cdrom.png
vendored
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/drive_cloud.png
vendored
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/drive_fixed.png
vendored
Normal file
|
After Width: | Height: | Size: 8.0 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/drive_network.png
vendored
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/drive_ramdisk.png
vendored
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/drive_removable.png
vendored
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/dropbox.png
vendored
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/globe.png
vendored
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/music.png
vendored
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/network.png
vendored
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/plugin.png
vendored
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/recycle.png
vendored
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/science.png
vendored
Normal file
|
After Width: | Height: | Size: 6.6 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Background/img/trash.png
vendored
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/ConEmu.dll
vendored
Normal file
3767
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/ConEmu.map
vendored
Normal file
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/ConEmu.x64.dll
vendored
Normal file
4442
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/ConEmu.x64.map
vendored
Normal file
49
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/ConEmuPlugin_en.lng
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
.Language=English,English
|
||||
|
||||
// Plugin title
|
||||
"ConEmu"
|
||||
"ConEmu plugin"
|
||||
"edit"
|
||||
"view"
|
||||
"{Temporary panel"
|
||||
"Console output"
|
||||
"Stop Synchro waiting"
|
||||
"&1. Edit console output"
|
||||
"&2. View console output"
|
||||
"&3. Switch tab visibility"
|
||||
"&4. Switch next tab"
|
||||
"&5. Switch previous tab"
|
||||
"&6. Switch tab commit"
|
||||
"&T. Show all tabs list"
|
||||
"&P. Show all panels list"
|
||||
"&~. Execute ConEmu macro"
|
||||
"&7. Attach to ConEmu"
|
||||
"&8. Start ConEmu debug"
|
||||
"&9. Console information"
|
||||
"ConEmu - tabs list"
|
||||
"ConEmu - panels list"
|
||||
"ConEmu GUI Macro"
|
||||
"&Macro text:"
|
||||
"&Result:"
|
||||
"&Run"
|
||||
"Cancel"
|
||||
"ConEmu plugin\nConEmu is not available in terminal mode"
|
||||
"ConEmu plugin\nDebugger is already attached to current process"
|
||||
"ConEmu plugin\nDebugger is not available in terminal mode"
|
||||
"ConEmu plugin\nEnvironment variable 'ConEmuBaseDir' not defined\nDebugger is not available"
|
||||
"ConEmu plugin\nCan't create debugger process"
|
||||
"Can't start console server process (ConEmuC.exe)"
|
||||
"Can't find console server file (ConEmuC.exe)"
|
||||
"Can't start console server process (ConEmuC.exe)\nConEmuC.exe not found"
|
||||
"The console already belongs to ConEmu"
|
||||
"ConEmu plugin\nGetConsoleWindow()==FarHwnd is NULL"
|
||||
"ConEmu plugin\nShellExecuteEx raised exception.\nFAR restart is recommended."
|
||||
"ConEmu plugin\nCan't retrieve opened tabs information!"
|
||||
"ConEmu plugin\nCan't retrieve opened panels information!"
|
||||
"ConEmu plugin\nCECMD_SETBACKGROUND command execution failed"
|
||||
"ConEmu plugin\nInvalid *RegisterBackgroundArg"
|
||||
"ConEmu plugin\n\"Allow plugins\" unchecked in ConEmu settings (\"Main\" page)"
|
||||
"ConEmu plugin\nConsole is closing. This is not an error, just information"
|
||||
"ConEmu plugin\nUnexpected error in ConEmu"
|
||||
"ConEmu plugin\nInvalid RegisterBackgroundArg.cbSize"
|
||||
"ConEmu plugin\nInvalid RegisterBackgroundArg.PaintConEmuBackground"
|
||||
49
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/ConEmuPlugin_ru.lng
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
.Language=Russian,Russian (<28>ãá᪨©)
|
||||
|
||||
// Plugin title
|
||||
"ConEmu"
|
||||
"ConEmu plugin"
|
||||
"। ªâ¨à®¢ ¨¥"
|
||||
"¯à®á¬®âà"
|
||||
"{‚६¥ ï ¯ ¥«ì"
|
||||
"Š®á®«ìë© ¢ë¢®¤"
|
||||
"Žáâ ®¢¨âì ®¦¨¤ ¨¥ Synchro"
|
||||
"&1. Žâªàëâì ª®á®«ìë© ¢ë¢®¤ (edit)"
|
||||
"&2. Žâªàëâì ª®á®«ìë© ¢ë¢®¤ (view)"
|
||||
"&3. <20>®ª § âì/á¯àïâ âì â ¡ë"
|
||||
"&4. <20> á«¥¤ãîéãî § ª« ¤ªã"
|
||||
"&5. <20> ¯à¥¤ë¤ãéãî § ª« ¤ªã"
|
||||
"&6. Žâ®¡à §¨âì § ª« ¤ªã"
|
||||
"&T. <20>®ª § âì ᯨ᮪ â ¡®¢"
|
||||
"&P. <20>®ª § âì ᯨ᮪ ¯ ¥«¥©"
|
||||
"&~. ‚믮«¨âì ¬ ªà®á ConEmu"
|
||||
"&7. <20>à¨æ¥¯¨âì ª ConEmu"
|
||||
"&8. ‡ ¯ãáâ¨âì ConEmu debug"
|
||||
"&9. ˆä®à¬ æ¨ï ® ª®á®«¨"
|
||||
"ConEmu - ᯨ᮪ â ¡®¢"
|
||||
"ConEmu - ᯨ᮪ ¯ ¥«¥©"
|
||||
"ConEmu GUI Macro"
|
||||
"’¥ªáâ &¬ ªà®á :"
|
||||
"&<26>¥§ã«ìâ â:"
|
||||
"&‚믮«¨âì"
|
||||
"Žâ¬¥ "
|
||||
"ConEmu plugin\n‚ â¥à¬¨ «ì®¬ ०¨¬¥ ConEmu ¥¤®áâ㯥"
|
||||
"ConEmu plugin\n’¥ªã騩 ¯à®æ¥áá 㦥 ¯®¤ ®â« ¤ç¨ª®¬"
|
||||
"ConEmu plugin\n‚ â¥à¬¨ «ì®¬ ०¨¬¥ ®â« ¤ç¨ª ¥¤®áâ㯥"
|
||||
"ConEmu plugin\n<>¥ ®¯à¥¤¥«¥ ¯¥à¥¬¥ ï ®ªà㦥¨ï 'ConEmuBaseDir'\nŽâ« ¤ç¨ª ¥¤®áâ㯥"
|
||||
"ConEmu plugin\n<>¥ 㤠«®áì § ¯ãáâ¨âì ¯à®æ¥áá ®â« ¤ç¨ª "
|
||||
"<22>¥ 㤠«®áì § ¯ãáâ¨âì ¯à®æ¥áá á¥à¢¥à ª®á®«¨ (ConEmuC.exe)"
|
||||
"<22>¥ 㤠«®áì ©â¨ ä ©« á¥à¢¥à ª®á®«¨ (ConEmuC.exe)"
|
||||
"<22>¥ 㤠«®áì § ¯ãáâ¨âì ¯à®æ¥áá á¥à¢¥à ª®á®«¨ (ConEmuC.exe)\nConEmuC.exe ¥ ©¤¥"
|
||||
"Š®á®«ì 㦥 à ¡®â ¥â ¢ ConEmu"
|
||||
"ConEmu plugin\nGetConsoleWindow()==FarHwnd is NULL"
|
||||
"ConEmu plugin\n<>ந§®è«® ¨áª«î票¥ ¢ äãªæ¨¨ ShellExecuteEx.\n<>¥ª®¬¥¤ã¥âáï ¯¥à¥§ ¯ãáâ¨âì FAR."
|
||||
"ConEmu plugin\n<>¥ 㤠«®áì ¯®«ãç¨âì ¨ä®à¬ æ¨î ®¡ ®âªàëâëå â ¡ å!"
|
||||
"ConEmu plugin\n<>¥ 㤠«®áì ¯®«ãç¨âì ¨ä®à¬ æ¨î ®¡ ®âªàëâëå ¯ ¥«ïå!"
|
||||
"ConEmu plugin\n<>¥ 㤠«®áì ¢ë¯®«¨âì ª®¬ ¤ã CECMD_SETBACKGROUND"
|
||||
"ConEmu plugin\nInvalid *RegisterBackgroundArg"
|
||||
"ConEmu plugin\n\”« ¦®ª \"Allow plugins\" ¢ëª«îç¥ ¢ áâனª å ConEmu (¢ª« ¤ª \"Main\")"
|
||||
"ConEmu plugin\nConsole is closing. This is not an error, just information"
|
||||
"ConEmu plugin\nUnexpected error in ConEmu"
|
||||
"ConEmu plugin\nInvalid RegisterBackgroundArg.cbSize"
|
||||
"ConEmu plugin\nInvalid RegisterBackgroundArg.PaintConEmuBackground"
|
||||
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Lines/ConEmuLn.dll
vendored
Normal file
1951
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Lines/ConEmuLn.map
vendored
Normal file
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Lines/ConEmuLn.x64.dll
vendored
Normal file
2199
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Lines/ConEmuLn.x64.map
vendored
Normal file
15
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Lines/ConEmuLn_en.lng
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
.Language=English,English
|
||||
|
||||
// Plugin title
|
||||
"ConEmu Underlines"
|
||||
"&Enable plugin"
|
||||
"&Panels (0xBBGGRR):"
|
||||
"&Editor (0xBBGGRR):"
|
||||
"&Viewer (0xBBGGRR):"
|
||||
"Drawing style:"
|
||||
"&Underlines"
|
||||
"&Stripes"
|
||||
"&Hilight plugin panels"
|
||||
"&Back color (0xBBGGRR):"
|
||||
"OK"
|
||||
"Cancel"
|
||||
15
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Lines/ConEmuLn_ru.lng
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
.Language=Russian,Russian (<28>ãá᪨©)
|
||||
|
||||
// Plugin title
|
||||
"ConEmu Underlines"
|
||||
"<22>« £¨ &¢ª«îç¥"
|
||||
"&<26> ¥«¨ (0xBBGGRR):"
|
||||
"&<26>¥¤ ªâ®à (0xBBGGRR):"
|
||||
"&‚ìà (0xBBGGRR):"
|
||||
"‚¨¤ ®âà¨á®¢ª¨:"
|
||||
"&‹¨¨¨"
|
||||
"&<26>®«®áë"
|
||||
"<22>®¤á¢¥ç¨¢ âì ¯ ¥«¨ &¯« £¨®¢"
|
||||
"–¢¥â &ä® (0xBBGGRR):"
|
||||
"OK"
|
||||
"Žâ¬¥ "
|
||||
42
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Readme.txt
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
About
|
||||
=====
|
||||
Far Manager plugins are located in this folder.
|
||||
|
||||
You may download Far Manager from official site:
|
||||
http://www.farmanager.com/download.php
|
||||
|
||||
Supported Far Manager versions:
|
||||
1.75 build 2479 or higher (x86 & x64)
|
||||
2.0 build 1761 or higher (x86 & x64)
|
||||
3.0 build 2798 [pre Lua] (x86 & x64)
|
||||
3.0 build 2876 or higher (x86 & x64)
|
||||
|
||||
|
||||
List of plugins
|
||||
===============
|
||||
|
||||
Main Far Manager module (Tabs, Drag&Drop, RClick, and so on)
|
||||
-----
|
||||
ConEmu.dll
|
||||
ConEmu.x64.dll
|
||||
|
||||
|
||||
Enables thumbnails and tiles in Far Manager panels
|
||||
-----
|
||||
Thumbs\ConEmuTh.dll
|
||||
Thumbs\ConEmuTh.x64.dll
|
||||
|
||||
|
||||
This plugin colorize Far panels, display mnemonic picture (drive, network,
|
||||
and so on), and progress bar of used drive space at status line area.
|
||||
ConEmu Background can be customized via Background.xml configuration file.
|
||||
-----
|
||||
Background\ConEmuBg.dll
|
||||
Background\ConEmuBg.x64.dll
|
||||
|
||||
|
||||
Simple background plugin
|
||||
-----
|
||||
Lines\ConEmuLn.dll
|
||||
Lines\ConEmuLn.x64.dll
|
||||
|
||||
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Thumbs/ConEmuTh.dll
vendored
Normal file
3101
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Thumbs/ConEmuTh.map
vendored
Normal file
BIN
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Thumbs/ConEmuTh.x64.dll
vendored
Normal file
3607
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Thumbs/ConEmuTh.x64.map
vendored
Normal file
36
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Thumbs/ConEmuTh_en.lng
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
.Language=English,English
|
||||
|
||||
// Plugin title
|
||||
"ConEmu Panel Views"
|
||||
// Panel modes
|
||||
"Thumbnails mode"
|
||||
// Panel modes
|
||||
"Tiles mode"
|
||||
// Panel modes
|
||||
"Icons mode"
|
||||
// Panel modes
|
||||
"Turn off"
|
||||
// Column titles
|
||||
"Thumbnails"
|
||||
"Tiles"
|
||||
// Some strings for Tiles mode
|
||||
"Folder"
|
||||
"Sym."
|
||||
"Junc."
|
||||
// Error messages
|
||||
"ConEmu PanelViews\nConEmu plugin not found,\nThumbnails will not be available."
|
||||
"ConEmu PanelViews\nOld version of ConEmu plugin,\nThumbnails will not be available."
|
||||
"ConEmu PanelViews\nThumbnails are not available in plain Far.\nFar Manager was not started under ConEmu?"
|
||||
"ConEmu PanelViews\nPlugin requires checked\noption in panel settings:\n[x] Show column titles"
|
||||
"ConEmu PanelViews\nPlugin requires space for checkmark\nin panel settings (flag 'M' in 'N' columns)\OK"
|
||||
"ConEmu PanelViews\nIcons mode required\nFar 3 bis build 2579 or higher\OK"
|
||||
"ConEmu PanelViews\nCreateThread(DisplayThread) failed\nErrCode=0x%08X"
|
||||
"ConEmu PanelViews\nThread activation timeout (DisplayThread)"
|
||||
"ConEmu PanelViews\nPostThreadmessage(DisplayThread) failed\nErrCode=0x%08X"
|
||||
"ConEmu PanelViews\nDisplayThread was terminated\nCode=0x%08X"
|
||||
"ConEmu PanelViews\nRegisterClass failed\nCode=0x%08X"
|
||||
"ConEmu PanelViews\nCreateWindow failed\nCode=0x%08X"
|
||||
"ConEmu PanelViews\nView registration in ConEmu failed\nErrCode=%i"
|
||||
"ConEmu PanelViews\nInternal error. Unknown panel mode was requested."
|
||||
"ConEmu PanelViews\nInternal error. Invalid settings was recieved."
|
||||
"ConEmu PanelViews\nConEmu is not available in terminal mode\nCheck TERM environment variable\nOK"
|
||||
36
bin/cmder/vendor/conemu-maximus5/plugins/ConEmu/Thumbs/ConEmuTh_ru.lng
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
.Language=Russian,Russian (<28>ãá᪨©)
|
||||
|
||||
// Plugin title
|
||||
"ConEmu Panel Views"
|
||||
// Panel modes
|
||||
"<22>¥¦¨¬ í᪨§®¢"
|
||||
// Panel modes
|
||||
"<22>¥¦¨¬ ¯«¨âª¨"
|
||||
// Panel modes
|
||||
"<22>¥¦¨¬ ¨ª®®ª"
|
||||
// Panel modes
|
||||
"Žâª«îç¨âì"
|
||||
// Column titles
|
||||
"<22>᪨§ë"
|
||||
"<22>«¨âª "
|
||||
// Some strings for Tiles mode
|
||||
"<22> ¯ª "
|
||||
"‘á뫪 "
|
||||
"‘¢ï§ì"
|
||||
// Error messages
|
||||
"ConEmu PanelViews\n<>« £¨ ConEmu ¥ ©¤¥,\nThumbnails ¥¤®áâã¯ë."
|
||||
"ConEmu PanelViews\nŽ¡ à㦥 áâ à ï ¢¥àá¨ï ¯« £¨ ConEmu,\nThumbnails ¥¤®áâã¯ë."
|
||||
"ConEmu PanelViews\nThumbnails ¥¤®áâã¯ë ¢ 'ç¨á⮬' Far.\nFar Manager ¡ë« § ¯ãé¥ ¡¥§ ConEmu?"
|
||||
"ConEmu PanelViews\n„«ï à ¡®âë ª®à४⮩ à ¡®âë ¯« £¨ \n¥®¡å®¤¨¬® ¢ª«îç¨âì ä« ¦®ª ¢ áâனª¥ ¯ ¥«¨:\n[x] <20>®ª §ë¢ âì § £®«®¢ª¨ ª®«®®ª"
|
||||
"ConEmu PanelViews\n„«ï ®â®¡à ¦¥¨ï ¨ª®®ª ¥®¡å®¤¨¬®\nà §à¥è¨âì ᨬ¢®«ë ¯®¬¥â®ª ¢ ०¨¬ å ¯ ¥«¥©\n(¤®¡ ¢¨âì ä« £ 'M' ª ª®«®ª¥ 'N')\OK"
|
||||
"ConEmu PanelViews\n„«ï ®â®¡à ¦¥¨ï ¨ª®®ª ¥®¡å®¤¨¬®ãáâ ®¢¨âì\ná¡®àªã Far 3 bis build 2579 ¨«¨ ¢ëè¥\OK"
|
||||
"ConEmu PanelViews\nŽè¨¡ª á®§¤ ¨ï ¯®â®ª DisplayThread\nErrCode=0x%08X"
|
||||
"ConEmu PanelViews\nˆá⥪«® ¢à¥¬ï ®¦¨¤ ¨ï ªâ¨¢ 樨 DisplayThread"
|
||||
"ConEmu PanelViews\nŽè¨¡ª ¯®á뫪¨ á®®¡é¥¨ï ¢ DisplayThread\nErrCode=0x%08X"
|
||||
"ConEmu PanelViews\n<>®â®ª DisplayThread ¡ë« § ¢¥àè¥\nCode=0x%08X"
|
||||
"ConEmu PanelViews\n<>¥ 㤠«®áì § ॣ¨áâà¨à®¢ âì ª« áá\nErrCode=0x%08X"
|
||||
"ConEmu PanelViews\n<>¥ 㤠«®áì á®§¤ âì ®ª® ¯ ¥«¨\nErrCode=0x%08X"
|
||||
"ConEmu PanelViews\n<>¥ 㤠«®áì § ॣ¨áâà¨à®¢ âì ¢¨¤ ¢ ConEmu\nErrCode=%i"
|
||||
"ConEmu PanelViews\n‚ãâà¥ïï ®è¨¡ª . ‡ ¯à®è¥ ¥¨§¢¥áâë© à¥¦¨¬ ¯ ¥«¨."
|
||||
"ConEmu PanelViews\n‚ãâà¥ïï ®è¨¡ª . <20>®«ãç¥ ¥ª®à४â ï áâàãªâãà áâ஥ª."
|
||||
"ConEmu PanelViews\n‚ â¥à¬¨ «ì®¬ ०¨¬¥ ConEmu ¥¤®áâ㯥\n<>஢¥àì⥠¯¥à¥¬¥ãî ®ªà㦥¨ï TERM\nOK"
|
||||