├── .command.json ├── .gitignore ├── .menu.json ├── .no-sublime-package ├── LICENSE ├── Localize.py ├── LocalizedMenu.sublime-settings ├── README.md ├── locale ├── de_DE │ ├── de_DE.json │ └── menu.json ├── en │ └── en.json ├── en_GB │ └── en_GB.json ├── en_US │ └── en_US.json ├── es │ ├── es.json │ └── menu.json ├── es_ES │ └── es_ES.json ├── fr_FR │ ├── fr_FR.json │ └── menu.json ├── hu │ ├── hu.json │ └── menu.json ├── hy │ └── hy.json ├── pt_BR │ ├── menu.json │ └── pt_BR.json ├── ru │ ├── menu.json │ └── ru.json ├── sv_SE │ ├── menu.json │ └── sv_SE.json ├── zh │ └── zh.json ├── zh_CN │ ├── menu.json │ └── zh_CN.json └── zh_TW │ ├── menu.json │ └── zh_TW.json ├── menu ├── 3 │ ├── en │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Line Endings.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json │ ├── sv_SE │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Line Endings.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json │ ├── zh_CN │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Line Endings.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json │ └── zh_TW │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Line Endings.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json ├── 4 │ ├── en │ │ ├── Console Input Widget Context.sublime-menu.json │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Line Endings.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ ├── Tab Sidebar Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json │ ├── es │ │ ├── Console Input Widget Context.sublime-menu.json │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Line Endings.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ ├── Tab Sidebar Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json │ ├── ru │ │ ├── Console Input Widget Context.sublime-menu.json │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Line Endings.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ ├── Tab Sidebar Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json │ ├── zh_CN │ │ ├── Console Input Widget Context.sublime-menu.json │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Line Endings.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ ├── Tab Sidebar Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json │ └── zh_TW │ │ ├── Console Input Widget Context.sublime-menu.json │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Line Endings.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ ├── Tab Sidebar Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json ├── 2221 │ ├── en │ │ ├── Context.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json │ ├── ru │ │ ├── Context.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json │ ├── zh_CN │ │ ├── Context.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json │ └── zh_TW │ │ ├── Context.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json ├── 3114 │ ├── en │ │ └── Main.sublime-menu.json │ ├── zh_CN │ │ └── Main.sublime-menu.json │ └── zh_TW │ │ └── Main.sublime-menu.json ├── 3124 │ ├── en │ │ └── Main.sublime-menu.json │ ├── zh_CN │ │ └── Main.sublime-menu.json │ └── zh_TW │ │ └── Main.sublime-menu.json ├── 3126 │ ├── en │ │ └── Main.sublime-menu.json │ ├── fr_FR │ │ └── Main.sublime-menu.json │ ├── hy │ │ └── Main.sublime-menu.json │ ├── ru │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Line Endings.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json │ ├── zh_CN │ │ └── Main.sublime-menu.json │ └── zh_TW │ │ └── Main.sublime-menu.json ├── 3143 │ ├── en │ │ └── Main.sublime-menu.json │ ├── es_ES │ │ └── Main.sublime-menu.json │ ├── fr_FR │ │ └── Main.sublime-menu.json │ ├── sv_SE │ │ └── Main.sublime-menu.json │ ├── zh_CN │ │ └── Main.sublime-menu.json │ └── zh_TW │ │ └── Main.sublime-menu.json ├── 3170 │ ├── fr_FR │ │ ├── Main.sublime-menu.json │ │ └── Side Bar.sublime-menu.json │ ├── zh_CN │ │ ├── Main.sublime-menu.json │ │ └── Side Bar.sublime-menu.json │ └── zh_TW │ │ ├── Main.sublime-menu.json │ │ └── Side Bar.sublime-menu.json ├── 3176 │ └── fr_FR │ │ ├── Main.sublime-menu.json │ │ └── Side Bar.sublime-menu.json ├── 3200 │ ├── zh_CN │ │ ├── Context.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ └── Side Bar.sublime-menu.json │ └── zh_TW │ │ ├── Context.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ └── Side Bar.sublime-menu.json ├── 3211 │ └── pt_BR │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Line Endings.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json ├── 4107 │ ├── en │ │ └── Main.sublime-menu.json │ ├── ru │ │ └── Main.sublime-menu.json │ ├── zh_CN │ │ └── Main.sublime-menu.json │ └── zh_TW │ │ └── Main.sublime-menu.json ├── 4121 │ ├── en │ │ ├── Encoding.sublime-menu.json │ │ └── Main.sublime-menu.json │ ├── ru │ │ ├── Encoding.sublime-menu.json │ │ └── Main.sublime-menu.json │ ├── zh_CN │ │ ├── Encoding.sublime-menu.json │ │ └── Main.sublime-menu.json │ └── zh_TW │ │ ├── Encoding.sublime-menu.json │ │ └── Main.sublime-menu.json ├── 4126 │ ├── de_DE │ │ ├── Console Input Widget Context.sublime-menu.json │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Line Endings.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ ├── Tab Sidebar Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json │ ├── en │ │ ├── Encoding.sublime-menu.json │ │ └── Main.sublime-menu.json │ ├── fr_FR │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Find in Files.sublime-menu.json │ │ ├── Indentation.sublime-menu.json │ │ ├── Line Endings.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar Mount Point.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Syntax.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Widget Context.sublime-menu.json │ ├── ru │ │ ├── Encoding.sublime-menu.json │ │ └── Main.sublime-menu.json │ ├── zh_CN │ │ ├── Encoding.sublime-menu.json │ │ └── Main.sublime-menu.json │ └── zh_TW │ │ ├── Encoding.sublime-menu.json │ │ └── Main.sublime-menu.json ├── 4143 │ ├── en │ │ ├── Encoding.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ ├── ru │ │ ├── Encoding.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ ├── zh_CN │ │ ├── Encoding.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ └── zh_TW │ │ ├── Encoding.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json ├── 4152 │ ├── en │ │ ├── Encoding.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ ├── ru │ │ ├── Encoding.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ ├── zh_CN │ │ ├── Encoding.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ └── zh_TW │ │ ├── Encoding.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json ├── 4166 │ ├── en │ │ ├── Encoding.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ ├── ru │ │ ├── Encoding.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ ├── zh_CN │ │ ├── Encoding.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ └── zh_TW │ │ ├── Encoding.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json ├── 4169 │ ├── en │ │ ├── Encoding.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ ├── es │ │ ├── Encoding.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ ├── hu │ │ ├── Encoding.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ └── ru │ │ ├── Encoding.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json ├── 4180 │ ├── en │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Image Context.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ ├── hu │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Image Context.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ ├── zh_CN │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Image Context.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ └── zh_TW │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Image Context.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json ├── 4186 │ ├── en │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Image Context.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ ├── hu │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Image Context.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ ├── zh_CN │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Image Context.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json │ └── zh_TW │ │ ├── Context.sublime-menu.json │ │ ├── Encoding.sublime-menu.json │ │ ├── Image Context.sublime-menu.json │ │ ├── Main.sublime-menu.json │ │ ├── Side Bar.sublime-menu.json │ │ ├── Tab Context.sublime-menu.json │ │ └── Tab Sidebar Context.sublime-menu.json └── 4192 │ ├── en │ ├── Context.sublime-menu.json │ ├── Encoding.sublime-menu.json │ ├── Image Context.sublime-menu.json │ ├── Main.sublime-menu.json │ ├── Side Bar.sublime-menu.json │ ├── Tab Context.sublime-menu.json │ └── Tab Sidebar Context.sublime-menu.json │ └── es │ ├── Context.sublime-menu.json │ ├── Encoding.sublime-menu.json │ ├── Image Context.sublime-menu.json │ ├── Main.sublime-menu.json │ ├── Side Bar.sublime-menu.json │ ├── Tab Context.sublime-menu.json │ └── Tab Sidebar Context.sublime-menu.json └── readme ├── README.de_DE.md ├── README.es_ES.md ├── README.fr_FR.md ├── README.hu.md ├── README.hy.md ├── README.md ├── README.pt_BR.md ├── README.ru.md ├── README.sv_SE.md ├── README.zh_CN.md └── README.zh_TW.md /.command.json: -------------------------------------------------------------------------------- 1 | 2 | [ 3 | { 4 | "caption": "LocalizedMenu: Detect", 5 | "command": "localize_run", 6 | "args": 7 | { 8 | "action": "detect" 9 | } 10 | }, 11 | { 12 | "caption": "LocalizedMenu: Reset", 13 | "command": "localize_run", 14 | "args": 15 | { 16 | "action": "reset" 17 | } 18 | }, 19 | { 20 | "caption": "LocalizedMenu: Add Language…", 21 | "command": "localize_run", 22 | "args": 23 | { 24 | "action": "add" 25 | } 26 | }, 27 | { 28 | "caption": "LocalizedMenu: Submit Language…", 29 | "command": "localize_run", 30 | "args": 31 | { 32 | "action": "submit" 33 | } 34 | } 35 | ] 36 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.sublime-commands 3 | *.sublime-menu 4 | 5 | .firstRun 6 | .lastRun 7 | -------------------------------------------------------------------------------- /.no-sublime-package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zam1024t/LocalizedMenu/7434fd3b5ef7683fe5a3aa7d13af8e6760aec94e/.no-sublime-package -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /LocalizedMenu.sublime-settings: -------------------------------------------------------------------------------- 1 | { 2 | // locale code 3 | // en|en_GB|en_US|zh|zh_CN|zh_TW|ru|pt_BR 4 | "locale": "en", 5 | 6 | // allow to find localized menu of similar version for current locale 7 | // true|false 8 | "findSimilarVer": true 9 | } -------------------------------------------------------------------------------- /locale/de_DE/de_DE.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "hidden": false, 4 | "caption": "Deutsch", 5 | "mnemonic": "D" 6 | } 7 | -------------------------------------------------------------------------------- /locale/de_DE/menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "id": "preferences", "children": [ 3 | { "id": "package-settings", "caption": "Package-Einstellungen", "children": 4 | [ 5 | { "caption": "LocalizedMenu", "children": 6 | [ 7 | { "caption": "Einstellungen – Standard", "command": "open_file", "args": {"file": "${packages}/LocalizedMenu/LocalizedMenu.sublime-settings"} }, 8 | { "caption": "Einstellungen – Benutzer", "command": "open_file", "args": {"file": "${packages}/User/LocalizedMenu.sublime-settings"} }, 9 | { "caption": "-" } 10 | ] 11 | } 12 | ] 13 | }, 14 | { "caption": "-" }, 15 | { "caption": "Languages", "id": "locales", "children": 16 | [ 17 | { "caption": "Erkennen", "command": "localize_run", "args": {"action": "detect"} }, 18 | { "caption": "Zurücksetzen", "command": "localize_run", "args": {"action": "reset"} }, 19 | { "caption": "Sprache hinzufügen…", "command": "localize_run", "args": {"action": "add"} }, 20 | { "caption": "Sprache übermitteln…", "command": "localize_run", "args": {"action": "submit"} }, 21 | { "caption": "-" } 22 | ] 23 | }, 24 | { "caption": "-" } 25 | ] 26 | } 27 | ] 28 | -------------------------------------------------------------------------------- /locale/en/en.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "hidden": false, 4 | "caption": "English", 5 | "mnemonic": "n" 6 | } 7 | -------------------------------------------------------------------------------- /locale/en_GB/en_GB.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "hidden": false, 4 | "caption": "English", 5 | "mnemonic": "g", 6 | "link": "en" 7 | } 8 | -------------------------------------------------------------------------------- /locale/en_US/en_US.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "hidden": false, 4 | "caption": "English", 5 | "mnemonic": "u", 6 | "link": "en" 7 | } 8 | -------------------------------------------------------------------------------- /locale/es/es.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "hidden": false, 4 | "caption": "Español", 5 | "mnemonic": "e" 6 | } 7 | -------------------------------------------------------------------------------- /locale/es_ES/es_ES.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "hidden": false, 4 | "caption": "Español", 5 | "mnemonic": "e", 6 | "link": "es" 7 | } 8 | -------------------------------------------------------------------------------- /locale/fr_FR/fr_FR.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "hidden": false, 4 | "caption": "Français", 5 | "mnemonic": "n", 6 | } 7 | -------------------------------------------------------------------------------- /locale/hu/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "link": "", 3 | "hidden": false, 4 | "caption": "Magyar", 5 | "mnemonic": "M" 6 | } 7 | -------------------------------------------------------------------------------- /locale/hy/hy.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "link": "", 4 | "hidden": false, 5 | "caption": "Armenian", 6 | "mnemonic": "m" 7 | } 8 | -------------------------------------------------------------------------------- /locale/pt_BR/pt_BR.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "hidden": false, 4 | "caption": "Português do Brasil", 5 | "mnemonic": "B" 6 | } 7 | -------------------------------------------------------------------------------- /locale/ru/ru.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "hidden": false, 4 | "caption": "Русский", 5 | "mnemonic": "r" 6 | } 7 | -------------------------------------------------------------------------------- /locale/sv_SE/sv_SE.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "hidden": false, 4 | "caption": "Svenska", 5 | "mnemonic": "n" 6 | } 7 | -------------------------------------------------------------------------------- /locale/zh/zh.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "hidden": false, 4 | "caption": "中文", 5 | "mnemonic": "z", 6 | "link": "zh_CN" 7 | } 8 | -------------------------------------------------------------------------------- /locale/zh_CN/zh_CN.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "hidden": false, 4 | "caption": "简体中文", 5 | "mnemonic": "c" 6 | } 7 | -------------------------------------------------------------------------------- /locale/zh_TW/zh_TW.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "hidden": false, 4 | "caption": "繁体中文", 5 | "mnemonic": "t" 6 | } 7 | -------------------------------------------------------------------------------- /menu/2221/en/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "copy" }, 3 | { "command": "cut" }, 4 | { "command": "paste" }, 5 | { "caption": "-", "id": "selection" }, 6 | { "command": "select_all" }, 7 | { "caption": "-", "id": "file" }, 8 | { "command": "open_in_browser", "caption": "Open in Browser" }, 9 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Open Containing Folder…" }, 10 | { "command": "copy_path", "caption": "Copy File Path" }, 11 | { "command": "reveal_in_side_bar", "caption": "Reveal in Side Bar" }, 12 | { "caption": "-", "id": "end" } 13 | ] 14 | -------------------------------------------------------------------------------- /menu/2221/en/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "clear_location", "caption": "Clear" }, 3 | { "command": "add_directory", "caption": "Add Folder" }, 4 | { "command": "add_where_snippet", "args": {"snippet": "*.${0:txt}"}, "caption": "Add Include Filter" }, 5 | { "command": "add_where_snippet", "args": {"snippet": "-*.${0:txt}"}, "caption": "Add Exclude Filter" }, 6 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Add Open Folders" }, 7 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Add Open Files" } 8 | ] 9 | -------------------------------------------------------------------------------- /menu/2221/en/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "folder_commands" }, 3 | { "caption": "Remove Folder from Project", "command": "remove_folder", "args": { "dirs": []} } 4 | ] 5 | -------------------------------------------------------------------------------- /menu/2221/en/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "New File", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "Rename…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "Delete File", "command": "delete_file", "args": {"files": []} }, 5 | { "caption": "Open Containing Folder…", "command": "open_containing_folder", "args": {"files": []} }, 6 | { "caption": "-", "id": "folder_commands" }, 7 | { "caption": "New Folder…", "command": "new_folder", "args": {"dirs": []} }, 8 | { "caption": "Delete Folder", "command": "delete_folder", "args": {"dirs": []} }, 9 | { "caption": "Find in Folder…", "command": "find_in_folder", "args": {"dirs": []} }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/2221/en/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "Syntax", 4 | "children": [ { "command": "$file_types" } ] 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /menu/2221/en/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close others" }, 4 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close tabs to the right" }, 5 | { "caption": "-" }, 6 | { "command": "new_file" }, 7 | { "command": "prompt_open_file", "caption": "Open file" } 8 | ] 9 | -------------------------------------------------------------------------------- /menu/2221/en/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "copy" }, 3 | { "command": "cut" }, 4 | { "command": "paste" }, 5 | { "caption": "-" }, 6 | { "command": "select_all" } 7 | ] 8 | -------------------------------------------------------------------------------- /menu/2221/ru/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "copy", "caption": "Копировать" }, 3 | { "command": "cut", "caption": "Вырезать" }, 4 | { "command": "paste", "caption": "Вставить" }, 5 | { "caption": "-", "id": "selection" }, 6 | { "command": "select_all", "caption": "Выделить всё" }, 7 | { "caption": "-", "id": "file" }, 8 | { "command": "open_in_browser", "caption": "Открыть в браузере" }, 9 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Открыть папку файла…" }, 10 | { "command": "copy_path", "caption": "Копировать путь к файлу" }, 11 | { "command": "reveal_in_side_bar", "caption": "Показать в боковой панели" }, 12 | { "caption": "-", "id": "end" } 13 | ] 14 | -------------------------------------------------------------------------------- /menu/2221/ru/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "clear_location", "caption": "Очистить" }, 3 | { "command": "add_directory", "caption": "Добавить папку" }, 4 | { "command": "add_where_snippet", "args": {"snippet": "*.${0:txt}"}, "caption": "Фильтр файлов по маске" }, 5 | { "command": "add_where_snippet", "args": {"snippet": "-*.${0:txt}"}, "caption": "Исключить файлы по маске" }, 6 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Добавить открытые папки" }, 7 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Добавить открытые файлы" } 8 | ] 9 | -------------------------------------------------------------------------------- /menu/2221/ru/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "folder_commands" }, 3 | { "caption": "Удалить папку из проекта", "command": "remove_folder", "args": { "dirs": []} } 4 | ] -------------------------------------------------------------------------------- /menu/2221/ru/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "Новый файл", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "Переименовать…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "Удалить файл", "command": "delete_file", "args": {"files": []} }, 5 | { "caption": "Открыть папку файла…", "command": "open_containing_folder", "args": {"files": []} }, 6 | { "caption": "-", "id": "folder_commands" }, 7 | { "caption": "Новая папка…", "command": "new_folder", "args": {"dirs": []} }, 8 | { "caption": "Удалить папку", "command": "delete_folder", "args": {"dirs": []} }, 9 | { "caption": "Найти в папке…", "command": "find_in_folder", "args": {"dirs": []} }, 10 | { "caption": "-", "id": "end" } 11 | ] -------------------------------------------------------------------------------- /menu/2221/ru/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "Синтаксис", 4 | "children": [ { "command": "$file_types" } ] 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /menu/2221/ru/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неактивные" }, 4 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладки справа" }, 5 | { "caption": "-" }, 6 | { "command": "new_file", "caption": "Новый файл" }, 7 | { "command": "prompt_open_file", "caption": "Открыть файл" } 8 | ] 9 | -------------------------------------------------------------------------------- /menu/2221/ru/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "copy", "caption": "Копировать" }, 3 | { "command": "cut", "caption": "Вырезать" }, 4 | { "command": "paste", "caption": "Вставить" }, 5 | { "caption": "-" }, 6 | { "command": "select_all", "caption": "Выделить всё" } 7 | ] 8 | -------------------------------------------------------------------------------- /menu/2221/zh_CN/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "copy", "caption": "复制" }, 3 | { "command": "cut", "caption": "剪切" }, 4 | { "command": "paste", "caption": "粘贴" }, 5 | { "caption": "-", "id": "selection" }, 6 | { "command": "select_all", "caption": "全选" }, 7 | { "caption": "-", "id": "file" }, 8 | { "command": "open_in_browser", "caption": "在浏览器中打开" }, 9 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "打开所在文件夹…" }, 10 | { "command": "copy_path", "caption": "复制文件路径" }, 11 | { "command": "reveal_in_side_bar", "caption": "在侧边栏中显示" }, 12 | { "caption": "-", "id": "end" } 13 | ] 14 | -------------------------------------------------------------------------------- /menu/2221/zh_CN/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "clear_location", "caption": "清除" }, 3 | { "command": "add_directory", "caption": "添加文件夹" }, 4 | { "command": "add_where_snippet", "args": {"snippet": "*.${0:txt}"}, "caption": "添加包括过滤" }, 5 | { "command": "add_where_snippet", "args": {"snippet": "-*.${0:txt}"}, "caption": "添加排除过滤" }, 6 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加打开的文件夹" }, 7 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加打开的文件" } 8 | ] 9 | -------------------------------------------------------------------------------- /menu/2221/zh_CN/Indentation.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "toggle_setting", "args": {"setting": "translate_tabs_to_spaces"}, "caption": "使用空格缩进", "checkbox": true }, 3 | { "caption": "-" }, 4 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 1}, "caption": "制表符宽度: 1", "checkbox": true }, 5 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 2}, "caption": "制表符宽度: 2", "checkbox": true }, 6 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 3}, "caption": "制表符宽度: 3", "checkbox": true }, 7 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 4}, "caption": "制表符宽度: 4", "checkbox": true }, 8 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 5}, "caption": "制表符宽度: 5", "checkbox": true }, 9 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 6}, "caption": "制表符宽度: 6", "checkbox": true }, 10 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 7}, "caption": "制表符宽度: 7", "checkbox": true }, 11 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 8}, "caption": "制表符宽度: 8", "checkbox": true }, 12 | { "caption": "-" }, 13 | { "command": "detect_indentation", "caption": "使用缓冲区缩进方式" }, 14 | { "caption": "-" }, 15 | { "command": "expand_tabs", "caption": "转为空格缩进", "args": {"set_translate_tabs": true} }, 16 | { "command": "unexpand_tabs", "caption": "转为制表符缩进", "args": {"set_translate_tabs": true} } 17 | ] 18 | -------------------------------------------------------------------------------- /menu/2221/zh_CN/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "folder_commands" }, 3 | { "caption": "从项目中移除文件夹", "command": "remove_folder", "args": { "dirs": []} } 4 | ] 5 | -------------------------------------------------------------------------------- /menu/2221/zh_CN/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "新建文件", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "重命名…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "删除文件", "command": "delete_file", "args": {"files": []} }, 5 | { "caption": "打开所在文件夹…", "command": "open_containing_folder", "args": {"files": []} }, 6 | { "caption": "-", "id": "folder_commands" }, 7 | { "caption": "新文件夹…", "command": "new_folder", "args": {"dirs": []} }, 8 | { "caption": "删除文件夹", "command": "delete_folder", "args": {"dirs": []} }, 9 | { "caption": "在文件夹中查找…", "command": "find_in_folder", "args": {"dirs": []} }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/2221/zh_CN/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "语法", 4 | "children": [ { "command": "$file_types" } ] 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /menu/2221/zh_CN/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭其它" }, 4 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭右侧选项卡" }, 5 | { "caption": "-" }, 6 | { "command": "new_file", "caption": "新建文件" }, 7 | { "command": "prompt_open_file", "caption": "打开文件" } 8 | ] 9 | -------------------------------------------------------------------------------- /menu/2221/zh_CN/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "copy", "caption": "复制" }, 3 | { "command": "cut", "caption": "剪切" }, 4 | { "command": "paste", "caption": "粘贴" }, 5 | { "caption": "-" }, 6 | { "command": "select_all", "caption": "全选" } 7 | ] 8 | -------------------------------------------------------------------------------- /menu/2221/zh_TW/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "copy", "caption": "復制" }, 3 | { "command": "cut", "caption": "剪切" }, 4 | { "command": "paste", "caption": "粘貼" }, 5 | { "caption": "-", "id": "selection" }, 6 | { "command": "select_all", "caption": "全選" }, 7 | { "caption": "-", "id": "file" }, 8 | { "command": "open_in_browser", "caption": "在瀏覽器中打開" }, 9 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "打開所在文件夾…" }, 10 | { "command": "copy_path", "caption": "復制文件路徑" }, 11 | { "command": "reveal_in_side_bar", "caption": "在側邊欄中顯示" }, 12 | { "caption": "-", "id": "end" } 13 | ] 14 | -------------------------------------------------------------------------------- /menu/2221/zh_TW/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "clear_location", "caption": "清除" }, 3 | { "command": "add_directory", "caption": "添加文件夾" }, 4 | { "command": "add_where_snippet", "args": {"snippet": "*.${0:txt}"}, "caption": "添加包括過濾" }, 5 | { "command": "add_where_snippet", "args": {"snippet": "-*.${0:txt}"}, "caption": "添加排除過濾" }, 6 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加打開的文件夾" }, 7 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加打開的文件" } 8 | ] 9 | -------------------------------------------------------------------------------- /menu/2221/zh_TW/Indentation.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "toggle_setting", "args": {"setting": "translate_tabs_to_spaces"}, "caption": "使用空格縮進", "checkbox": true }, 3 | { "caption": "-" }, 4 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 1}, "caption": "制表符寬度: 1", "checkbox": true }, 5 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 2}, "caption": "制表符寬度: 2", "checkbox": true }, 6 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 3}, "caption": "制表符寬度: 3", "checkbox": true }, 7 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 4}, "caption": "制表符寬度: 4", "checkbox": true }, 8 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 5}, "caption": "制表符寬度: 5", "checkbox": true }, 9 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 6}, "caption": "制表符寬度: 6", "checkbox": true }, 10 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 7}, "caption": "制表符寬度: 7", "checkbox": true }, 11 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 8}, "caption": "制表符寬度: 8", "checkbox": true }, 12 | { "caption": "-" }, 13 | { "command": "detect_indentation", "caption": "使用緩沖區縮進方式" }, 14 | { "caption": "-" }, 15 | { "command": "expand_tabs", "caption": "轉為空格縮進", "args": {"set_translate_tabs": true} }, 16 | { "command": "unexpand_tabs", "caption": "轉為制表符縮進", "args": {"set_translate_tabs": true} } 17 | ] 18 | -------------------------------------------------------------------------------- /menu/2221/zh_TW/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "folder_commands" }, 3 | { "caption": "從項目中移除文件夾", "command": "remove_folder", "args": { "dirs": []} } 4 | ] 5 | -------------------------------------------------------------------------------- /menu/2221/zh_TW/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "新建文件", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "重命名…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "刪除文件", "command": "delete_file", "args": {"files": []} }, 5 | { "caption": "打開所在文件夾…", "command": "open_containing_folder", "args": {"files": []} }, 6 | { "caption": "-", "id": "folder_commands" }, 7 | { "caption": "新文件夾…", "command": "new_folder", "args": {"dirs": []} }, 8 | { "caption": "刪除文件夾", "command": "delete_folder", "args": {"dirs": []} }, 9 | { "caption": "在文件夾中查找…", "command": "find_in_folder", "args": {"dirs": []} }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/2221/zh_TW/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "語法", 4 | "children": [ { "command": "$file_types" } ] 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /menu/2221/zh_TW/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉其它" }, 4 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉右側選項卡" }, 5 | { "caption": "-" }, 6 | { "command": "new_file", "caption": "新建文件" }, 7 | { "command": "prompt_open_file", "caption": "打開文件" } 8 | ] 9 | -------------------------------------------------------------------------------- /menu/2221/zh_TW/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "copy", "caption": "復制" }, 3 | { "command": "cut", "caption": "剪切" }, 4 | { "command": "paste", "caption": "粘貼" }, 5 | { "caption": "-" }, 6 | { "command": "select_all", "caption": "全選" } 7 | ] 8 | -------------------------------------------------------------------------------- /menu/3/en/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url" }, 3 | { "command": "context_goto_definition", "caption": "Goto Definition" }, 4 | { "caption": "-", "id": "clipboard" }, 5 | { "command": "copy" }, 6 | { "command": "cut" }, 7 | { "command": "paste" }, 8 | { "caption": "-", "id": "selection" }, 9 | { "command": "select_all" }, 10 | { "caption": "-", "id": "file" }, 11 | { "command": "open_in_browser", "caption": "Open in Browser" }, 12 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Open Containing Folder…" }, 13 | { "command": "copy_path", "caption": "Copy File Path" }, 14 | { "command": "reveal_in_side_bar", "caption": "Reveal in Side Bar" }, 15 | { "caption": "-", "id": "end" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/3/en/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "clear_location", "caption": "Clear" }, 3 | { "command": "add_directory", "caption": "Add Folder" }, 4 | { "command": "add_where_snippet", "args": {"snippet": "*.${0:txt}"}, "caption": "Add Include Filter" }, 5 | { "command": "add_where_snippet", "args": {"snippet": "-*.${0:txt}"}, "caption": "Add Exclude Filter" }, 6 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Add Open Folders" }, 7 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Add Open Files" }, 8 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Add Current File" }, 9 | ] 10 | -------------------------------------------------------------------------------- /menu/3/en/Line Endings.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "set_line_ending", "args": {"type": "windows"}, "caption": "Windows Line Endings (CRLF)", "checkbox": true }, 3 | { "command": "set_line_ending", "args": {"type": "unix"}, "caption": "Unix Line Endings (LF)", "checkbox": true }, 4 | { "command": "set_line_ending", "args": {"type": "cr"}, "caption": "Mac OS 9 Line Endings (CR)", "checkbox": true } 5 | ] 6 | -------------------------------------------------------------------------------- /menu/3/en/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "folder_commands" }, 3 | { "caption": "Remove Folder from Project", "command": "remove_folder", "args": { "dirs": []} } 4 | ] 5 | -------------------------------------------------------------------------------- /menu/3/en/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "New File", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "Rename…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "Delete File", "command": "delete_file", "args": {"files": []} }, 5 | { "caption": "Open Containing Folder…", "command": "open_containing_folder", "args": {"files": []} }, 6 | { "caption": "-", "id": "folder_commands" }, 7 | { "caption": "New Folder…", "command": "new_folder", "args": {"dirs": []} }, 8 | { "caption": "Delete Folder", "command": "delete_folder", "args": {"dirs": []} }, 9 | { "caption": "Find in Folder…", "command": "find_in_folder", "args": {"dirs": []} }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/3/en/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "Syntax", 4 | "children": [ { "command": "$file_types" } ] 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /menu/3/en/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Other Tabs" }, 4 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tabs to the Right" }, 5 | { "caption": "-" }, 6 | { "command": "new_file", "caption": "New File" }, 7 | { "command": "prompt_open_file", "caption": "Open File" } 8 | ] 9 | -------------------------------------------------------------------------------- /menu/3/en/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "copy" }, 3 | { "command": "cut" }, 4 | { "command": "paste" }, 5 | { "caption": "-" }, 6 | { "command": "select_all" } 7 | ] 8 | -------------------------------------------------------------------------------- /menu/3/sv_SE/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url" }, 3 | { "command": "context_goto_definition", "caption": "Gå till definition" }, 4 | { "caption": "-", "id": "clipboard" }, 5 | { "command": "copy", "caption": "Kopiera" }, 6 | { "command": "cut", "caption": "Klipp ut" }, 7 | { "command": "paste", "caption": "Klistra in" }, 8 | { "caption": "-", "id": "selection" }, 9 | { "command": "select_all", "caption": "Välj alla" }, 10 | { "caption": "-", "id": "file" }, 11 | { "command": "open_in_browser", "caption": "Öppna i webbläsare" }, 12 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Öppna innehållande mapp…" }, 13 | { "command": "copy_path", "caption": "Kopiera filsökväg" }, 14 | { "command": "reveal_in_side_bar", "caption": "Visa i sidofältet" }, 15 | { "caption": "-", "id": "end" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/3/sv_SE/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "clear_location", "caption": "Rensa" }, 3 | { "command": "add_directory", "caption": "Lägg till mapp" }, 4 | { "command": "add_where_snippet", "args": {"snippet": "*.${0:txt}"}, "caption": "Lägg till inkluderande filter" }, 5 | { "command": "add_where_snippet", "args": {"snippet": "-*.${0:txt}"}, "caption": "Lägg till exkluderande filter" }, 6 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Lägg till öppna mappar" }, 7 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Lägg till öppna filer" }, 8 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Lägg till nuvarande fil" }, 9 | ] 10 | -------------------------------------------------------------------------------- /menu/3/sv_SE/Line Endings.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "set_line_ending", "args": {"type": "windows"}, "caption": "Windows Radslut (CRLF)", "checkbox": true }, 3 | { "command": "set_line_ending", "args": {"type": "unix"}, "caption": "Unix Radslut (LF)", "checkbox": true }, 4 | { "command": "set_line_ending", "args": {"type": "cr"}, "caption": "Mac OS 9 Radslut (CR)", "checkbox": true } 5 | ] 6 | -------------------------------------------------------------------------------- /menu/3/sv_SE/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "folder_commands" }, 3 | { "caption": "Ta bort mapp från projekt", "command": "remove_folder", "args": { "dirs": []} } 4 | ] 5 | -------------------------------------------------------------------------------- /menu/3/sv_SE/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "Ny fil", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "By namn…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "Radera fil", "command": "delete_file", "args": {"files": []} }, 5 | { "caption": "Öppna innehållande mapp…", "command": "open_containing_folder", "args": {"files": []} }, 6 | { "caption": "-", "id": "folder_commands" }, 7 | { "caption": "Ny mapp…", "command": "new_folder", "args": {"dirs": []} }, 8 | { "caption": "Radera mapp", "command": "delete_folder", "args": {"dirs": []} }, 9 | { "caption": "Sök i mapp…", "command": "find_in_folder", "args": {"dirs": []} }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/3/sv_SE/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "Syntax", 4 | "children": [ { "command": "$file_types" } ] 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /menu/3/sv_SE/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Stäng" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Stäng andra flikar" }, 4 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Stäng flikar till höger" }, 5 | { "caption": "-" }, 6 | { "command": "new_file", "caption": "Ny fil" }, 7 | { "command": "prompt_open_file", "caption": "Öppna fil" } 8 | ] 9 | -------------------------------------------------------------------------------- /menu/3/sv_SE/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "copy", "caption": "Kopiera" }, 3 | { "command": "cut", "caption": "Klipp ut" }, 4 | { "command": "paste", "caption": "Klistra in" }, 5 | { "caption": "-" }, 6 | { "command": "select_all", "caption": "Välj alla" }, 7 | ] 8 | -------------------------------------------------------------------------------- /menu/3/zh_CN/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url", "caption": "打开URL链接" }, 3 | { "command": "context_goto_definition", "caption": "转到定义处" }, 4 | { "caption": "-", "id": "clipboard" }, 5 | { "command": "copy", "caption": "复制" }, 6 | { "command": "cut", "caption": "剪切" }, 7 | { "command": "paste", "caption": "粘贴" }, 8 | { "caption": "-", "id": "selection" }, 9 | { "command": "select_all", "caption": "全选" }, 10 | { "caption": "-", "id": "file" }, 11 | { "command": "open_in_browser", "caption": "在浏览器中打开" }, 12 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "打开所在文件夹…" }, 13 | { "command": "copy_path", "caption": "复制文件路径" }, 14 | { "command": "reveal_in_side_bar", "caption": "在侧边栏中显示" }, 15 | { "caption": "-", "id": "end" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/3/zh_CN/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "clear_location", "caption": "清除当前路径" }, 3 | { "command": "add_directory", "caption": "添加搜索文件夹" }, 4 | { "command": "add_where_snippet", "args": {"snippet": "*.${0:txt}"}, "caption": "添加包括过滤(通配符)" }, 5 | { "command": "add_where_snippet", "args": {"snippet": "-*.${0:txt}"}, "caption": "添加排除过滤(通配符)" }, 6 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加打开的文件夹" }, 7 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加打开的文件" }, 8 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加当前文件" }, 9 | ] 10 | -------------------------------------------------------------------------------- /menu/3/zh_CN/Indentation.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "toggle_setting", "args": {"setting": "translate_tabs_to_spaces"}, "caption": "使用空格缩进", "checkbox": true }, 3 | { "caption": "-" }, 4 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 1}, "caption": "制表符宽度: 1", "checkbox": true }, 5 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 2}, "caption": "制表符宽度: 2", "checkbox": true }, 6 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 3}, "caption": "制表符宽度: 3", "checkbox": true }, 7 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 4}, "caption": "制表符宽度: 4", "checkbox": true }, 8 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 5}, "caption": "制表符宽度: 5", "checkbox": true }, 9 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 6}, "caption": "制表符宽度: 6", "checkbox": true }, 10 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 7}, "caption": "制表符宽度: 7", "checkbox": true }, 11 | { "command": "set_setting", "args": {"setting": "tab_size", "value": 8}, "caption": "制表符宽度: 8", "checkbox": true }, 12 | { "caption": "-" }, 13 | { "command": "detect_indentation", "caption": "使用缓冲区缩进方式" }, 14 | { "caption": "-" }, 15 | { "command": "expand_tabs", "caption": "转为空格缩进", "args": {"set_translate_tabs": true} }, 16 | { "command": "unexpand_tabs", "caption": "转为制表符缩进", "args": {"set_translate_tabs": true} } 17 | ] 18 | -------------------------------------------------------------------------------- /menu/3/zh_CN/Line Endings.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "set_line_ending", "args": {"type": "windows"}, "caption": "Windows (CRLF)", "checkbox": true }, 3 | { "command": "set_line_ending", "args": {"type": "unix"}, "caption": "Unix (LF)", "checkbox": true }, 4 | { "command": "set_line_ending", "args": {"type": "cr"}, "caption": "Mac OS X (CR)", "checkbox": true } 5 | ] 6 | -------------------------------------------------------------------------------- /menu/3/zh_CN/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "folder_commands" }, 3 | { "caption": "从项目中移除文件夹", "command": "remove_folder", "args": { "dirs": []} } 4 | ] 5 | -------------------------------------------------------------------------------- /menu/3/zh_CN/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "新建文件", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "重命名…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "删除文件", "command": "delete_file", "args": {"files": []} }, 5 | { "caption": "打开所在文件夹…", "command": "open_containing_folder", "args": {"files": []} }, 6 | { "caption": "-", "id": "folder_commands" }, 7 | { "caption": "新建文件夹…", "command": "new_folder", "args": {"dirs": []} }, 8 | { "caption": "删除文件夹", "command": "delete_folder", "args": {"dirs": []} }, 9 | { "caption": "在文件夹中查找…", "command": "find_in_folder", "args": {"dirs": []} }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/3/zh_CN/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "语法", 4 | "children": [ { "command": "$file_types" } ] 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /menu/3/zh_CN/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭其它选项卡" }, 4 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭右侧选项卡" }, 5 | { "caption": "-" }, 6 | { "command": "new_file", "caption": "新建文件" }, 7 | { "command": "prompt_open_file", "caption": "打开文件" } 8 | ] 9 | -------------------------------------------------------------------------------- /menu/3/zh_CN/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "cut", "caption": "剪切" }, 3 | { "command": "copy", "caption": "复制" }, 4 | { "command": "paste", "caption": "粘贴" }, 5 | { "caption": "-" }, 6 | { "command": "select_all", "caption": "全选" } 7 | ] 8 | -------------------------------------------------------------------------------- /menu/3/zh_TW/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url", "caption": "打開URL鏈接" }, 3 | { "command": "context_goto_definition", "caption": "轉到定義處" }, 4 | { "caption": "-", "id": "clipboard" }, 5 | { "command": "copy", "caption": "復制" }, 6 | { "command": "cut", "caption": "剪切" }, 7 | { "command": "paste", "caption": "粘貼" }, 8 | { "caption": "-", "id": "selection" }, 9 | { "command": "select_all", "caption": "全選" }, 10 | { "caption": "-", "id": "file" }, 11 | { "command": "open_in_browser", "caption": "在瀏覽器中打開" }, 12 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "打開所在文件夾…" }, 13 | { "command": "copy_path", "caption": "復制文件路徑" }, 14 | { "command": "reveal_in_side_bar", "caption": "在側邊欄中顯示" }, 15 | { "caption": "-", "id": "end" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/3/zh_TW/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "clear_location", "caption": "清除當前路徑" }, 3 | { "command": "add_directory", "caption": "添加搜索文件夾" }, 4 | { "command": "add_where_snippet", "args": {"snippet": "*.${0:txt}"}, "caption": "添加包括過濾(通配符)" }, 5 | { "command": "add_where_snippet", "args": {"snippet": "-*.${0:txt}"}, "caption": "添加排除過濾(通配符)" }, 6 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加打開的文件夾" }, 7 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加打開的文件" }, 8 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加當前文件" }, 9 | ] 10 | -------------------------------------------------------------------------------- /menu/3/zh_TW/Line Endings.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "set_line_ending", "args": {"type": "windows"}, "caption": "Windows (CRLF)", "checkbox": true }, 3 | { "command": "set_line_ending", "args": {"type": "unix"}, "caption": "Unix (LF)", "checkbox": true }, 4 | { "command": "set_line_ending", "args": {"type": "cr"}, "caption": "Mac OS X (CR)", "checkbox": true } 5 | ] 6 | -------------------------------------------------------------------------------- /menu/3/zh_TW/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "folder_commands" }, 3 | { "caption": "從項目中移除文件夾", "command": "remove_folder", "args": { "dirs": []} } 4 | ] 5 | -------------------------------------------------------------------------------- /menu/3/zh_TW/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "新建文件", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "重命名…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "刪除文件", "command": "delete_file", "args": {"files": []} }, 5 | { "caption": "打開所在文件夾…", "command": "open_containing_folder", "args": {"files": []} }, 6 | { "caption": "-", "id": "folder_commands" }, 7 | { "caption": "新建文件夾…", "command": "new_folder", "args": {"dirs": []} }, 8 | { "caption": "刪除文件夾", "command": "delete_folder", "args": {"dirs": []} }, 9 | { "caption": "在文件夾中查找…", "command": "find_in_folder", "args": {"dirs": []} }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/3/zh_TW/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "語法", 4 | "children": [ { "command": "$file_types" } ] 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /menu/3/zh_TW/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉其它選項卡" }, 4 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉右側選項卡" }, 5 | { "caption": "-" }, 6 | { "command": "new_file", "caption": "新建文件" }, 7 | { "command": "prompt_open_file", "caption": "打開文件" } 8 | ] 9 | -------------------------------------------------------------------------------- /menu/3/zh_TW/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "cut", "caption": "剪切" }, 3 | { "command": "copy", "caption": "復制" }, 4 | { "command": "paste", "caption": "粘貼" }, 5 | { "caption": "-" }, 6 | { "command": "select_all", "caption": "全選" } 7 | ] 8 | -------------------------------------------------------------------------------- /menu/3126/ru/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url" }, 3 | { "command": "context_goto_definition", "caption": "Перейти к определению" }, 4 | { "caption": "-", "id": "clipboard" }, 5 | { "command": "copy", "caption": "Копировать" }, 6 | { "command": "cut", "caption": "Вырезать" }, 7 | { "command": "paste", "caption": "Вставить" }, 8 | { "caption": "-", "id": "selection" }, 9 | { "command": "select_all", "caption": "Выделить всё" }, 10 | { "caption": "-", "id": "file" }, 11 | { "command": "open_in_browser", "caption": "Открыть в браузере" }, 12 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Открыть папку файла…" }, 13 | { "command": "copy_path", "caption": "Копировать путь к файлу" }, 14 | { "command": "reveal_in_side_bar", "caption": "Показать в боковой панели" }, 15 | { "caption": "-", "id": "end" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/3126/ru/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "clear_location", "caption": "Очистить" }, 3 | { "command": "add_directory", "caption": "Добавить папку" }, 4 | { "command": "add_where_snippet", "args": {"snippet": "*.${0:txt}"}, "caption": "Фильтр файлов по маске" }, 5 | { "command": "add_where_snippet", "args": {"snippet": "-*.${0:txt}"}, "caption": "Исключить файлы по маске" }, 6 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Добавить открытые папки" }, 7 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Добавить открытые файлы" }, 8 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Добавить текущий файл" }, 9 | ] 10 | -------------------------------------------------------------------------------- /menu/3126/ru/Line Endings.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "set_line_ending", "args": {"type": "windows"}, "caption": "Windows Line Endings (CRLF)", "checkbox": true }, 3 | { "command": "set_line_ending", "args": {"type": "unix"}, "caption": "Unix Line Endings (LF)", "checkbox": true }, 4 | { "command": "set_line_ending", "args": {"type": "cr"}, "caption": "Mac OS 9 Line Endings (CR)", "checkbox": true } 5 | ] 6 | -------------------------------------------------------------------------------- /menu/3126/ru/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "folder_commands" }, 3 | { "caption": "Удалить папку из проекта", "command": "remove_folder", "args": { "dirs": []} } 4 | ] 5 | -------------------------------------------------------------------------------- /menu/3126/ru/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "Новый файл", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "Переименовать…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "Удалить файл", "command": "delete_file", "args": {"files": []} }, 5 | { "caption": "Открыть папку файла…", "command": "open_containing_folder", "args": {"files": []} }, 6 | { "caption": "-", "id": "folder_commands" }, 7 | { "caption": "Новая папка…", "command": "new_folder", "args": {"dirs": []} }, 8 | { "caption": "Удалить папку", "command": "delete_folder", "args": {"dirs": []} }, 9 | { "caption": "Найти в папке…", "command": "find_in_folder", "args": {"dirs": []} }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/3126/ru/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "Синтаксис", 4 | "children": [ { "command": "$file_types" } ] 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /menu/3126/ru/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть другие вкладки" }, 4 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладки справа" }, 5 | { "caption": "-" }, 6 | { "command": "new_file", "caption": "Новый файл", "caption": "Новый файл" }, 7 | { "command": "prompt_open_file", "caption": "Открыть файл" } 8 | ] 9 | -------------------------------------------------------------------------------- /menu/3126/ru/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "copy", "caption": "Копировать" }, 3 | { "command": "cut", "caption": "Вырезать" }, 4 | { "command": "paste", "caption": "Вставить" }, 5 | { "caption": "-" }, 6 | { "command": "select_all", "caption": "Выделить всё" } 7 | ] 8 | -------------------------------------------------------------------------------- /menu/3170/fr_FR/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "Nouveau fichier", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "Renommer…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "Supprimer le fichier", "command": "delete_file", "args": {"files": []} }, 5 | { "caption": "Ouvrir le dossier conteneur…", "command": "open_containing_folder", "args": {"files": []} }, 6 | { "caption": "Révéler le lien source", "command": "reveal_link_source", "args": {"dirs": []} }, 7 | { "caption": "-", "id": "folder_commands" }, 8 | { "caption": "Nouveau dossier…", "command": "new_folder", "args": {"dirs": []} }, 9 | { "caption": "Supprimer le dossier", "command": "delete_folder", "args": {"dirs": []} }, 10 | { "caption": "Trouver dans le dossier…", "command": "find_in_folder", "args": {"dirs": []} }, 11 | { "caption": "-", "id": "end" } 12 | ] 13 | -------------------------------------------------------------------------------- /menu/3170/zh_CN/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "新建文件", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "重命名…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "删除文件", "command": "delete_file", "args": {"files": []} }, 5 | { "caption": "打开所在文件夹…", "command": "open_containing_folder", "args": {"files": []} }, 6 | { "caption": "打开链接目录", "command": "reveal_link_source", "args": {"dirs": []} }, 7 | { "caption": "-", "id": "folder_commands" }, 8 | { "caption": "新建文件夹…", "command": "new_folder", "args": {"dirs": []} }, 9 | { "caption": "删除文件夹", "command": "delete_folder", "args": {"dirs": []} }, 10 | { "caption": "在文件夹中查找…", "command": "find_in_folder", "args": {"dirs": []} }, 11 | { "caption": "-", "id": "end" } 12 | ] 13 | -------------------------------------------------------------------------------- /menu/3170/zh_TW/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "新建文件", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "重命名…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "刪除文件", "command": "delete_file", "args": {"files": []} }, 5 | { "caption": "打開所在文件夾…", "command": "open_containing_folder", "args": {"files": []} }, 6 | { "caption": "打開鏈接目錄", "command": "reveal_link_source", "args": {"dirs": []} }, 7 | { "caption": "-", "id": "folder_commands" }, 8 | { "caption": "新建文件夾…", "command": "new_folder", "args": {"dirs": []} }, 9 | { "caption": "刪除文件夾", "command": "delete_folder", "args": {"dirs": []} }, 10 | { "caption": "在文件夾中查找…", "command": "find_in_folder", "args": {"dirs": []} }, 11 | { "caption": "-", "id": "end" } 12 | ] 13 | -------------------------------------------------------------------------------- /menu/3176/fr_FR/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "Nouveau fichier", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "Renommer…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "Supprimer le fichier", "command": "delete_file", "args": {"files": []} }, 5 | { "caption": "Ouvrir le dossier conteneur…", "command": "open_containing_folder", "args": {"files": []} }, 6 | { "caption": "Révéler le lien source", "command": "reveal_link_source", "args": {"dirs": []} }, 7 | { "caption": "-", "id": "folder_commands" }, 8 | { "caption": "Nouveau dossier…", "command": "new_folder", "args": {"dirs": []} }, 9 | { "caption": "Supprimer le dossier", "command": "delete_folder", "args": {"dirs": []} }, 10 | { "caption": "Trouver dans le dossier…", "command": "find_in_folder", "args": {"dirs": []} }, 11 | { "caption": "-", "id": "end" } 12 | ] 13 | -------------------------------------------------------------------------------- /menu/3200/zh_CN/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url", "caption": "打开URL链接" }, 3 | { "command": "context_goto_definition", "caption": "转到定义处" }, 4 | { "caption": "-", "id": "diff" }, 5 | { "command": "toggle_inline_diff", "caption": "切换显示行内差异" }, 6 | { "caption": "-", "id": "clipboard" }, 7 | { "command": "cut", "caption": "剪切" }, 8 | { "command": "copy", "caption": "复制" }, 9 | { "command": "paste", "caption": "粘贴" }, 10 | { "caption": "-", "id": "selection" }, 11 | { "command": "select_all", "caption": "全选" }, 12 | { "caption": "-", "id": "repo_commands" }, 13 | { "caption": "打开Git仓库…", "command": "sublime_merge_open_repo" }, 14 | { "caption": "文件历史…", "command": "sublime_merge_file_history" }, 15 | { "caption": "行历史…", "command": "sublime_merge_line_history" }, 16 | { "caption": "审查文件…", "command": "sublime_merge_blame_file" }, 17 | { "caption": "-", "id": "file" }, 18 | { "command": "open_in_browser", "caption": "在浏览器中打开" }, 19 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "打开所在文件夹…" }, 20 | { "command": "copy_path", "caption": "复制文件路径" }, 21 | { "command": "reveal_in_side_bar", "caption": "在侧边栏中显示" }, 22 | { "caption": "-", "id": "end" } 23 | ] 24 | -------------------------------------------------------------------------------- /menu/3200/zh_CN/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "新建文件", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "重命名…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "删除文件", "command": "delete_file", "args": {"files": []} }, 5 | { "caption": "打开所在文件夹…", "command": "open_containing_folder", "args": {"files": []} }, 6 | { "caption": "打开链接目录", "command": "reveal_link_source", "args": {"dirs": []} }, 7 | { "caption": "-", "id": "repo_commands" }, 8 | { "caption": "打开Git仓库…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 9 | { "caption": "文件历史…", "command": "sublime_merge_file_history", "args": {"files": []}}, 10 | { "caption": "目录历史…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 11 | { "caption": "审查文件…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 12 | { "caption": "-", "id": "folder_commands" }, 13 | { "caption": "新建文件夹…", "command": "new_folder", "args": {"dirs": []} }, 14 | { "caption": "删除文件夹", "command": "delete_folder", "args": {"dirs": []} }, 15 | { "caption": "在文件夹中查找…", "command": "find_in_folder", "args": {"dirs": []} }, 16 | { "caption": "-", "id": "end" } 17 | ] 18 | -------------------------------------------------------------------------------- /menu/3200/zh_TW/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url", "caption": "打開URL鏈接" }, 3 | { "command": "context_goto_definition", "caption": "轉到定義處" }, 4 | { "caption": "-", "id": "diff" }, 5 | { "command": "toggle_inline_diff", "caption": "切換顯示行內差異" }, 6 | { "caption": "-", "id": "clipboard" }, 7 | { "command": "cut", "caption": "剪切" }, 8 | { "command": "copy", "caption": "復制" }, 9 | { "command": "paste", "caption": "粘貼" }, 10 | { "caption": "-", "id": "selection" }, 11 | { "command": "select_all", "caption": "全選" }, 12 | { "caption": "-", "id": "repo_commands" }, 13 | { "caption": "打開Git倉庫…", "command": "sublime_merge_open_repo" }, 14 | { "caption": "文件歷史…", "command": "sublime_merge_file_history" }, 15 | { "caption": "行歷史…", "command": "sublime_merge_line_history" }, 16 | { "caption": "審查文件…", "command": "sublime_merge_blame_file" }, 17 | { "caption": "-", "id": "file" }, 18 | { "command": "open_in_browser", "caption": "在瀏覽器中打開" }, 19 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "打開所在文件夾…" }, 20 | { "command": "copy_path", "caption": "復制文件路徑" }, 21 | { "command": "reveal_in_side_bar", "caption": "在側邊欄中顯示" }, 22 | { "caption": "-", "id": "end" } 23 | ] 24 | -------------------------------------------------------------------------------- /menu/3200/zh_TW/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "新建文件", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "重命名…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "刪除文件", "command": "delete_file", "args": {"files": []} }, 5 | { "caption": "打開所在文件夾…", "command": "open_containing_folder", "args": {"files": []} }, 6 | { "caption": "打開鏈接目錄", "command": "reveal_link_source", "args": {"dirs": []} }, 7 | { "caption": "-", "id": "repo_commands" }, 8 | { "caption": "打開Git倉庫…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 9 | { "caption": "文件歷史…", "command": "sublime_merge_file_history", "args": {"files": []}}, 10 | { "caption": "目錄歷史…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 11 | { "caption": "審查文件…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 12 | { "caption": "-", "id": "folder_commands" }, 13 | { "caption": "新建文件夾…", "command": "new_folder", "args": {"dirs": []} }, 14 | { "caption": "刪除文件夾", "command": "delete_folder", "args": {"dirs": []} }, 15 | { "caption": "在文件夾中查找…", "command": "find_in_folder", "args": {"dirs": []} }, 16 | { "caption": "-", "id": "end" } 17 | ] 18 | -------------------------------------------------------------------------------- /menu/3211/pt_BR/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url" }, 3 | { "command": "context_goto_definition", "caption": "Ir para Definição" }, 4 | { "caption": "-", "id": "diff" }, 5 | { "command": "toggle_inline_diff" , "caption": "Mostrar Pedaço de Diferente" }, 6 | { "caption": "-", "id": "clipboard" }, 7 | { "command": "cut" , "caption": "Recortar" }, 8 | { "command": "copy" , "caption": "Copiar" }, 9 | { "command": "paste" , "caption": "Colar" }, 10 | { "caption": "-", "id": "selection" }, 11 | { "command": "select_all" , "caption": "Selecionar Todos" }, 12 | { "caption": "-", "id": "repo_commands" }, 13 | { "caption": "Abrir Repositório Git…", "command": "sublime_merge_open_repo" }, 14 | { "caption": "Histórico de Arquivo…", "command": "sublime_merge_file_history" }, 15 | { "caption": "Histórico da Linha…", "command": "sublime_merge_line_history" }, 16 | { "caption": "Blame File…", "command": "sublime_merge_blame_file" }, 17 | { "caption": "-", "id": "file" }, 18 | { "command": "open_in_browser", "caption": "Abrir no Navegador" }, 19 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Abrir Conteúdo da Pasta…" }, 20 | { "command": "copy_path", "caption": "Copiar Caminho do Arquivo" }, 21 | { "command": "reveal_in_side_bar", "caption": "Revelar na Barra Lateral" }, 22 | { "caption": "-", "id": "end" } 23 | ] 24 | -------------------------------------------------------------------------------- /menu/3211/pt_BR/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "clear_location", "caption": "Limpar" }, 3 | { "command": "add_directory", "caption": "Adicionar Pasta" }, 4 | { "command": "add_where_snippet", "args": {"snippet": "*.${0:txt}"}, "caption": "Adicionar Filtro de Inclusão" }, 5 | { "command": "add_where_snippet", "args": {"snippet": "-*.${0:txt}"}, "caption": "Adicionar Filtro de Exclusão" }, 6 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Adicionar Pastas Abertas" }, 7 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Adicionar Arquivos Abertos" }, 8 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Adicionar Arquivo Atual" }, 9 | ] 10 | -------------------------------------------------------------------------------- /menu/3211/pt_BR/Line Endings.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "set_line_ending", "args": {"type": "windows"}, "caption": "Final de Linha do Windows (CRLF)", "checkbox": true }, 3 | { "command": "set_line_ending", "args": {"type": "unix"}, "caption": "Final de Linha do Unix (LF)", "checkbox": true }, 4 | { "command": "set_line_ending", "args": {"type": "cr"}, "caption": "Final de Linha do Mac OS 9 (CR)", "checkbox": true } 5 | ] 6 | -------------------------------------------------------------------------------- /menu/3211/pt_BR/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "folder_commands" }, 3 | { "caption": "Remover Pasta do Projeto", "command": "remove_folder", "args": { "dirs": []} } 4 | ] 5 | -------------------------------------------------------------------------------- /menu/3211/pt_BR/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "Novo Arquivo", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "Renomear…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "Excluir Arquivo", "command": "delete_file", "args": {"files": []} }, 5 | { "caption": "Abrir Conteúdo da Pasta…", "command": "open_containing_folder", "args": {"files": []} }, 6 | { "caption": "Revelar link da Fonte", "command": "reveal_link_source", "args": {"dirs": []} }, 7 | { "caption": "-", "id": "repo_commands" }, 8 | { "caption": "Abrir Repositório Git…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 9 | { "caption": "Histórico de Arquivo…", "command": "sublime_merge_file_history", "args": {"files": []}}, 10 | { "caption": "Histórico de Pasta…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 11 | { "caption": "Blame File…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 12 | { "caption": "-", "id": "folder_commands" }, 13 | { "caption": "Nova Pasta…", "command": "new_folder", "args": {"dirs": []} }, 14 | { "caption": "Excluir Pasta…", "command": "delete_folder", "args": {"dirs": []} }, 15 | { "caption": "Localizar na Pasta…", "command": "find_in_folder", "args": {"dirs": []} }, 16 | { "caption": "-", "id": "end" } 17 | ] 18 | -------------------------------------------------------------------------------- /menu/3211/pt_BR/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "Sintaxe", 4 | "children": [ { "command": "$file_types" } ] 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /menu/3211/pt_BR/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Fechar" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Fechar Outras Abas" }, 4 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Fechar Abas à Direita" }, 5 | { "caption": "-" }, 6 | { "command": "new_file", "caption": "Novo Arquivo" }, 7 | { "command": "prompt_open_file", "caption": "Abrir Arquivo" } 8 | ] 9 | -------------------------------------------------------------------------------- /menu/3211/pt_BR/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "cut" }, 3 | { "command": "copy" }, 4 | { "command": "paste" }, 5 | { "caption": "-" }, 6 | { "command": "select_all" } 7 | ] 8 | -------------------------------------------------------------------------------- /menu/4/en/Console Input Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "cut" }, 3 | { "command": "copy" }, 4 | { "command": "paste" }, 5 | { "caption": "-" }, 6 | { "command": "select_all" }, 7 | { "caption": "-" }, 8 | { "command": "console_python_version", "args": {"version": "3.8"}, "checkbox": true }, 9 | { "command": "console_python_version", "args": {"version": "3.3"}, "checkbox": true }, 10 | ] 11 | -------------------------------------------------------------------------------- /menu/4/en/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url" }, 3 | { "command": "goto_definition", "caption": "Goto Definition" }, 4 | { "caption": "-", "id": "diff" }, 5 | { "command": "toggle_inline_diff" }, 6 | { "command": "revert_hunk", "caption": "Revert Diff Hunk" }, 7 | { "caption": "-", "id": "clipboard" }, 8 | { "command": "cut" }, 9 | { "command": "copy" }, 10 | { "command": "paste" }, 11 | { "caption": "-", "id": "selection" }, 12 | { "command": "select_all" }, 13 | { "caption": "-", "id": "repo_commands" }, 14 | { "caption": "Open Git Repository…", "command": "sublime_merge_open_repo" }, 15 | { "caption": "File History…", "command": "sublime_merge_file_history" }, 16 | { "caption": "Line History…", "command": "sublime_merge_line_history" }, 17 | { "caption": "Blame File…", "command": "sublime_merge_blame_file" }, 18 | { "caption": "-", "id": "file" }, 19 | { "command": "open_in_browser", "caption": "Open in Browser" }, 20 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Open Containing Folder…" }, 21 | { "command": "copy_path", "caption": "Copy File Path" }, 22 | { "command": "reveal_in_side_bar", "caption": "Reveal in Side Bar" }, 23 | { "caption": "-", "id": "end" } 24 | ] 25 | -------------------------------------------------------------------------------- /menu/4/en/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "clear_location", "caption": "Clear" }, 3 | { "command": "add_directory", "caption": "Add Folder" }, 4 | { "command": "add_where_snippet", "args": {"snippet": "*.${0:txt}"}, "caption": "Add Include Filter" }, 5 | { "command": "add_where_snippet", "args": {"snippet": "-*.${0:txt}"}, "caption": "Add Exclude Filter" }, 6 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Add Project Filters" }, 7 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Add Open Folders" }, 8 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Add Open Files" }, 9 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Add Current File" }, 10 | ] 11 | -------------------------------------------------------------------------------- /menu/4/en/Line Endings.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "set_line_ending", "args": {"type": "windows"}, "caption": "Windows Line Endings (CRLF)", "checkbox": true }, 3 | { "command": "set_line_ending", "args": {"type": "unix"}, "caption": "Unix Line Endings (LF)", "checkbox": true }, 4 | { "command": "set_line_ending", "args": {"type": "cr"}, "caption": "Mac OS 9 Line Endings (CR)", "checkbox": true } 5 | ] 6 | -------------------------------------------------------------------------------- /menu/4/en/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "folder_commands" }, 3 | { "caption": "Remove Folder from Project", "command": "remove_folder", "args": { "dirs": []} } 4 | ] 5 | -------------------------------------------------------------------------------- /menu/4/en/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "New File", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "Rename…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "Delete File", "command": "delete_file", "args": {"files": [], "prompt": false} }, 5 | { "caption": "Open Folder…", "command": "open_folder", "args": {"dirs": []} }, 6 | { "caption": "Open Containing Folder…", "command": "open_containing_folder", "args": {"files": []} }, 7 | { "caption": "Reveal Link Source", "command": "reveal_link_source", "args": {"dirs": []} }, 8 | { "caption": "-", "id": "repo_commands" }, 9 | { "caption": "Open Git Repository…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 10 | { "caption": "File History…", "command": "sublime_merge_file_history", "args": {"files": []}}, 11 | { "caption": "Folder History…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 12 | { "caption": "Blame File…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 13 | { "caption": "-", "id": "folder_commands" }, 14 | { "caption": "New Folder…", "command": "new_folder", "args": {"dirs": []} }, 15 | { "caption": "Delete Folder", "command": "delete_folder", "args": {"dirs": [], "prompt": true} }, 16 | { "caption": "Find in Folder…", "command": "find_in_folder", "args": {"dirs": []} }, 17 | { "caption": "-", "id": "end" } 18 | ] 19 | -------------------------------------------------------------------------------- /menu/4/en/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "Syntax", 4 | "children": [ { "command": "$file_types" } ] 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /menu/4/en/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Other Tabs" }, 4 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tabs to the Right" }, 5 | { "command": "close_unmodified", "args": { "group": -1 }, "caption": "Close Unmodified Tabs" }, 6 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs to the Right" }, 7 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Close Tabs With Deleted Files" }, 8 | { "caption": "-" }, 9 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1 }, "caption": "Split View" }, 10 | { "caption": "-" }, 11 | { "command": "new_file", "caption": "New File" }, 12 | { "command": "prompt_open_file", "caption": "Open File" } 13 | ] 14 | -------------------------------------------------------------------------------- /menu/4/en/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_selected", "args": { "group": -1 }, "caption": "Close" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Others" }, 4 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified" }, 5 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Others Below" }, 6 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Below" }, 7 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Close Deleted Files" }, 8 | { "caption": "-" }, 9 | { "command": "new_file", "caption": "New File" }, 10 | { "command": "prompt_open_file", "caption": "Open File" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/4/en/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url" }, 3 | { "caption": "-" }, 4 | { "command": "cut" }, 5 | { "command": "copy" }, 6 | { "command": "paste" }, 7 | { "caption": "-" }, 8 | { "command": "select_all" } 9 | ] 10 | -------------------------------------------------------------------------------- /menu/4/es/Console Input Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "cut", "caption": "Cortar" }, 3 | { "command": "copy", "caption": "Copiar" }, 4 | { "command": "paste", "caption": "Pegar" }, 5 | { "caption": "-" }, 6 | { "command": "select_all", "caption": "Seleccionar Todo" }, 7 | { "caption": "-" }, 8 | { "command": "console_python_version", "caption": "Usar Python 3.8", "args": {"version": "3.8"}, "checkbox": true }, 9 | { "command": "console_python_version", "caption": "Usar Python 3.3", "args": {"version": "3.3"}, "checkbox": true } 10 | ] 11 | -------------------------------------------------------------------------------- /menu/4/es/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url", "caption": "Abrir enlace" }, 3 | { "command": "goto_definition", "caption": "Ir a la definición" }, 4 | { "caption": "-", "id": "diff" }, 5 | { "command": "toggle_inline_diff", "caption": "Alternar Vista de Cambios" }, 6 | { "command": "revert_hunk", "caption": "Revertir los Cambios" }, 7 | { "caption": "-", "id": "clipboard" }, 8 | { "command": "cut", "caption": "Cortar" }, 9 | { "command": "copy", "caption": "Copiar" }, 10 | { "command": "paste", "caption": "Pegar" }, 11 | { "caption": "-", "id": "selection" }, 12 | { "command": "select_all", "caption": "Seleccionar Todo" }, 13 | { "caption": "-", "id": "repo_commands" }, 14 | { "caption": "Abrir en el Repositorio Git…", "command": "sublime_merge_open_repo" }, 15 | { "caption": "Historial de Archivos…", "command": "sublime_merge_file_history" }, 16 | { "caption": "Historial de Líneas…", "command": "sublime_merge_line_history" }, 17 | { "caption": "Abrir con Blame…", "command": "sublime_merge_blame_file" }, 18 | { "caption": "-", "id": "file" }, 19 | { "command": "open_in_browser", "caption": "Abrir en el Navegador" }, 20 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Abrir Carpeta Contenedora…" }, 21 | { "command": "copy_path", "caption": "Copiar Ruta del Archivo" }, 22 | { "command": "reveal_in_side_bar", "caption": "Mostrar en la Barra Lateral" }, 23 | { "caption": "-", "id": "end" } 24 | ] 25 | -------------------------------------------------------------------------------- /menu/4/es/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "clear_location", "caption": "Borrar filtros" }, 3 | { "command": "add_directory", "caption": "Añadir Carpeta" }, 4 | { "command": "add_where_snippet", "args": {"snippet": "*.${0:txt}"}, "caption": "Añadir al Filtro de Inclusión" }, 5 | { "command": "add_where_snippet", "args": {"snippet": "-*.${0:txt}"}, "caption": "Añadir al Filtro de Exclusión" }, 6 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Añadir al Filtro del Proyecto" }, 7 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Añadir Carpetas Abiertas" }, 8 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Añadir Archivos Abiertos" }, 9 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "Añadir el Archivo Actual" } 10 | ] 11 | -------------------------------------------------------------------------------- /menu/4/es/Line Endings.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "set_line_ending", "args": {"type": "windows"}, "caption": "Final de línea en Windows (CRLF)", "checkbox": true }, 3 | { "command": "set_line_ending", "args": {"type": "unix"}, "caption": "Final de línea Unix (LF)", "checkbox": true }, 4 | { "command": "set_line_ending", "args": {"type": "cr"}, "caption": "Final de línea en Mac OS 9 (CR)", "checkbox": true } 5 | ] 6 | -------------------------------------------------------------------------------- /menu/4/es/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "folder_commands" }, 3 | { "caption": "Cerrar Carpeta", "command": "remove_folder", "args": { "dirs": []} } 4 | ] 5 | -------------------------------------------------------------------------------- /menu/4/es/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "Sintaxis", 4 | "children": [ { "command": "$file_types" } ] 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /menu/4/es/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestaña" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Otras Pestañas" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Cerrar Pestañas Seleccionadas" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "Cerrar Pestañas No Seleccionadas" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas a la Derecha" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas Sin Modificar" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas No Modificadas a la Derecha" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Cerrar Pestañas Con el Archivo Borrado" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "Clonar Vista" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "Nuevo Archivo" }, 15 | { "command": "prompt_open_file", "caption": "Abrir Archivo" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4/es/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestaña" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Otras Pestañas" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Cerrar Pestañas Seleccionadas" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Cerrar Pestañas No Seleccionadas" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas Inferiores" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas Sin Modificar" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas Inferiores Sin Modificar" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Cerrar Pestañas Con Archivos Borrados" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "Nuevo Archivo" }, 13 | { "command": "prompt_open_file", "caption": "Abrir Archivo" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4/es/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url", "caption": "Abrir enlace" }, 3 | { "caption": "-" }, 4 | { "command": "cut", "caption": "Cortar" }, 5 | { "command": "copy", "caption": "Copiar" }, 6 | { "command": "paste", "caption": "Pegar" }, 7 | { "caption": "-" }, 8 | { "command": "select_all", "caption": "Seleccionar Todo" } 9 | ] 10 | -------------------------------------------------------------------------------- /menu/4/ru/Console Input Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"command":"cut","caption":"Вырезать"}, 3 | {"command":"copy","caption":"Копировать"}, 4 | {"command":"paste","caption":"Вставить"}, 5 | {"caption":"-"}, 6 | {"command":"select_all","caption":"Выделить всё"}, 7 | {"caption":"-"}, 8 | {"command":"console_python_version","args":{"version":"3.8"},"checkbox":true}, 9 | {"command":"console_python_version","args":{"version":"3.3"},"checkbox":true} 10 | ] -------------------------------------------------------------------------------- /menu/4/ru/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"command":"open_context_url","caption":"Открыть URL"}, 3 | {"command":"goto_definition","caption":"Перейти к определению"}, 4 | {"caption":"-","id":"diff"}, 5 | {"command":"toggle_inline_diff","caption":"Показать/Скрыть отличия"}, 6 | {"command":"revert_hunk","caption":"Отменить редактирование"}, 7 | {"caption":"-","id":"clipboard"}, 8 | {"caption":"Вырезать","command":"cut"}, 9 | {"caption":"Копировать","command":"copy"}, 10 | {"caption":"Вставить","command":"paste"}, 11 | {"caption":"-","id":"selection"}, 12 | {"caption":"Выделить всё","command":"select_all"}, 13 | {"caption":"-","id":"repo_commands"}, 14 | {"caption":"Открыть Git репозиторий…","command":"sublime_merge_open_repo"}, 15 | {"caption":"История файла…","command":"sublime_merge_file_history"}, 16 | {"caption":"История строк…","command":"sublime_merge_line_history"}, 17 | {"caption":"Команда 'blame'…","command":"sublime_merge_blame_file"}, 18 | {"caption":"-","id":"file"}, 19 | {"caption":"Открыть в браузере","command":"open_in_browser"}, 20 | {"caption":"Открыть родительскую папку…","command":"open_dir","args":{"dir":"$file_path","file":"$file_name"}}, 21 | {"caption":"Скопировать путь к файлу","command":"copy_path"}, 22 | {"caption":"Показать на боковой панели","command":"reveal_in_side_bar"}, 23 | {"caption":"-","id":"end"} 24 | ] -------------------------------------------------------------------------------- /menu/4/ru/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"caption":"Очистить","command":"clear_location"}, 3 | {"caption":"Добавить папку","command":"add_directory"}, 4 | {"caption":"Фильтр файлов по маске","command":"add_where_snippet","args":{"snippet":"*.${0:txt}"}}, 5 | {"caption":"Исключить файлы по маске","command":"add_where_snippet","args":{"snippet":"-*.${0:txt}"}}, 6 | {"command":"add_where_snippet","args":{"snippet":""},"caption":"Добавить фильтры проекта"}, 7 | {"caption":"Добавить открытые папки","command":"add_where_snippet","args":{"snippet":""}}, 8 | {"caption":"Добавить открытые файлы","command":"add_where_snippet","args":{"snippet":""}}, 9 | {"caption":"Добавить текущий файл","command":"add_where_snippet","args":{"snippet":""}} 10 | ] -------------------------------------------------------------------------------- /menu/4/ru/Indentation.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"caption":"Использовать в отступах пробелы","checkbox":true,"command":"toggle_setting","args":{"setting":"translate_tabs_to_spaces"}}, 3 | {"caption":"-"}, 4 | {"caption":"Размер отступа: 1","checkbox":true,"command":"set_setting","args":{"setting":"tab_size","value":1}}, 5 | {"caption":"Размер отступа: 2","checkbox":true,"command":"set_setting","args":{"setting":"tab_size","value":2}}, 6 | {"caption":"Размер отступа: 3","checkbox":true,"command":"set_setting","args":{"setting":"tab_size","value":3}}, 7 | {"caption":"Размер отступа: 4","checkbox":true,"command":"set_setting","args":{"setting":"tab_size","value":4}}, 8 | {"caption":"Размер отступа: 5","checkbox":true,"command":"set_setting","args":{"setting":"tab_size","value":5}}, 9 | {"caption":"Размер отступа: 6","checkbox":true,"command":"set_setting","args":{"setting":"tab_size","value":6}}, 10 | {"caption":"Размер отступа: 7","checkbox":true,"command":"set_setting","args":{"setting":"tab_size","value":7}}, 11 | {"caption":"Размер отступа: 8","checkbox":true,"command":"set_setting","args":{"setting":"tab_size","value":8}}, 12 | {"caption":"-"}, 13 | {"caption":"Определить отступ по содержимому","command":"detect_indentation"}, 14 | {"caption":"-"}, 15 | {"caption":"Преобразовать отступы в пробелы","command":"expand_tabs","args":{"set_translate_tabs":true}}, 16 | {"caption":"Преобразовать отступы в табуляцию","command":"unexpand_tabs","args":{"set_translate_tabs":true}} 17 | ] -------------------------------------------------------------------------------- /menu/4/ru/Line Endings.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"caption":"Окончания строк Windows (CRLF)","checkbox":true,"command":"set_line_ending","args":{"type":"windows"}}, 3 | {"caption":"Окончания строк Unix (LF)","checkbox":true,"command":"set_line_ending","args":{"type":"unix"}}, 4 | {"caption":"Окончания строк Mac OS 9 (CR)","checkbox":true,"command":"set_line_ending","args":{"type":"cr"}} 5 | ] -------------------------------------------------------------------------------- /menu/4/ru/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"caption":"-","id":"folder_commands"}, 3 | {"caption":"Удалить папку из проекта","command":"remove_folder","args":{"dirs":[]}} 4 | ] -------------------------------------------------------------------------------- /menu/4/ru/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"caption":"Новый файл","command":"new_file_at","args":{"dirs":[]}}, 3 | {"caption":"Переименовать…","command":"rename_path","args":{"paths":[]}}, 4 | {"caption":"Удалить файл","command":"delete_file","args":{"files":[],"prompt":false}}, 5 | {"caption":"Открыть папку…","command":"open_folder","args":{"dirs":[]}}, 6 | {"caption":"Открыть родительскую папку…","command":"open_containing_folder","args":{"files":[]}}, 7 | {"caption":"Показать источник ссылки","command":"reveal_link_source","args":{"dirs":[]}}, 8 | {"caption":"-","id":"repo_commands"}, 9 | {"caption":"Открыть Git репозиторий…","command":"sublime_merge_open_repo","args":{"paths":[]}}, 10 | {"caption":"История файла…","command":"sublime_merge_file_history","args":{"files":[]}}, 11 | {"caption":"История папки…","command":"sublime_merge_folder_history","args":{"paths":[]}}, 12 | {"caption":"Команда 'blame'…","command":"sublime_merge_blame_file","args":{"files":[]}}, 13 | {"caption":"-","id":"folder_commands"}, 14 | {"caption":"Новая папка…","command":"new_folder","args":{"dirs":[]}}, 15 | {"caption":"Удалить папку","command":"delete_folder","args":{"dirs":[],"prompt":true}}, 16 | {"caption":"Найти в папке…","command":"find_in_folder","args":{"dirs":[]}}, 17 | {"caption":"-","id":"end"} 18 | ] -------------------------------------------------------------------------------- /menu/4/ru/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "Синтаксис", 4 | "children": [ { "command": "$file_types" } ] 5 | } 6 | ] -------------------------------------------------------------------------------- /menu/4/ru/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"command":"close_by_index","args":{"group":-1,"index":-1},"caption":"Закрыть"}, 3 | {"command":"close_others_by_index","args":{"group":-1,"index":-1},"caption":"Закрыть другие вкладки"}, 4 | {"command":"close_to_right_by_index","args":{"group":-1,"index":-1},"caption":"Закрыть вкладки справа"}, 5 | {"command":"close_unmodified","args":{"group":-1},"caption":"Закрыть неизменённые вкладки"}, 6 | {"command":"close_unmodified_to_right_by_index","args":{"group":-1,"index":-1},"caption":"Закрыть неизменённые вкладки справа"}, 7 | {"command":"close_deleted_files","args":{"group":-1},"caption":"Закрыть вкладки с удалёнными файлами"}, 8 | {"caption":"-"}, 9 | {"command":"clone_file","args":{"add_to_selection":true,"group":-1,"index":-1},"caption":"Дублировать вкладку"}, 10 | {"caption":"-"}, 11 | {"command":"new_file","caption":"Новый файл"}, 12 | {"command":"prompt_open_file","caption":"Открыть файл"} 13 | ] -------------------------------------------------------------------------------- /menu/4/ru/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"command":"close_selected","args":{"group":-1},"caption":"Закрыть"}, 3 | {"command":"close_others_by_index","args":{"group":-1,"index":-1},"caption":"Закрыть другие файлы"}, 4 | {"command":"close_unmodified","args":{"group":-1,"index":-1},"caption":"Закрыть неизменённые файлы"}, 5 | {"command":"close_to_right_by_index","args":{"group":-1,"index":-1},"caption":"Закрыть другие файлы ниже"}, 6 | {"command":"close_unmodified_to_right_by_index","args":{"group":-1,"index":-1},"caption":"Закрыть неизменённые файлы ниже"}, 7 | {"command":"close_deleted_files","args":{"group":-1},"caption":"Закрыть удалённые файлы"}, 8 | {"caption":"-"}, 9 | {"command":"new_file","caption":"Новый файл"}, 10 | {"command":"prompt_open_file","caption":"Открыть файл"} 11 | ] -------------------------------------------------------------------------------- /menu/4/ru/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"command":"open_context_url","caption":"Открыть URL"}, 3 | {"caption":"-"}, 4 | {"command":"cut","caption":"Вырезать"}, 5 | {"command":"copy","caption":"Копировать"}, 6 | {"command":"paste","caption":"Вставить"}, 7 | {"caption":"-"}, 8 | {"command":"select_all","caption":"Выделить всё"} 9 | ] -------------------------------------------------------------------------------- /menu/4/zh_CN/Console Input Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "cut", "caption": "剪切" }, 3 | { "command": "copy", "caption": "复制" }, 4 | { "command": "paste", "caption": "粘贴" }, 5 | { "caption": "-" }, 6 | { "command": "select_all", "caption": "全选" }, 7 | { "caption": "-" }, 8 | { "command": "console_python_version", "args": {"version": "3.8"}, "checkbox": true }, 9 | { "command": "console_python_version", "args": {"version": "3.3"}, "checkbox": true }, 10 | ] 11 | -------------------------------------------------------------------------------- /menu/4/zh_CN/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url", "caption": "打开URL链接" }, 3 | { "command": "goto_definition", "caption": "转到定义处" }, 4 | { "caption": "-", "id": "diff" }, 5 | { "command": "toggle_inline_diff", "caption": "切换显示行内差异" }, 6 | { "command": "revert_hunk", "caption": "还原差异块" }, 7 | { "caption": "-", "id": "clipboard" }, 8 | { "command": "cut", "caption": "剪切" }, 9 | { "command": "copy", "caption": "复制" }, 10 | { "command": "paste", "caption": "粘贴" }, 11 | { "caption": "-", "id": "selection" }, 12 | { "command": "select_all", "caption": "全选" }, 13 | { "caption": "-", "id": "repo_commands" }, 14 | { "caption": "打开Git仓库…", "command": "sublime_merge_open_repo" }, 15 | { "caption": "文件历史…", "command": "sublime_merge_file_history" }, 16 | { "caption": "行历史…", "command": "sublime_merge_line_history" }, 17 | { "caption": "审查文件…", "command": "sublime_merge_blame_file" }, 18 | { "caption": "-", "id": "file" }, 19 | { "command": "open_in_browser", "caption": "在浏览器中打开" }, 20 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "打开所在文件夹…" }, 21 | { "command": "copy_path", "caption": "复制文件路径" }, 22 | { "command": "reveal_in_side_bar", "caption": "在侧边栏中显示" }, 23 | { "caption": "-", "id": "end" } 24 | ] 25 | -------------------------------------------------------------------------------- /menu/4/zh_CN/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "clear_location", "caption": "清除当前路径" }, 3 | { "command": "add_directory", "caption": "添加搜索文件夹" }, 4 | { "command": "add_where_snippet", "args": {"snippet": "*.${0:txt}"}, "caption": "添加包括过滤(通配符)" }, 5 | { "command": "add_where_snippet", "args": {"snippet": "-*.${0:txt}"}, "caption": "添加排除过滤(通配符)" }, 6 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加排除过滤项目" }, 7 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加打开的文件夹" }, 8 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加打开的文件" }, 9 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加当前文件" }, 10 | ] 11 | -------------------------------------------------------------------------------- /menu/4/zh_CN/Line Endings.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "set_line_ending", "args": {"type": "windows"}, "caption": "Windows (CRLF)", "checkbox": true }, 3 | { "command": "set_line_ending", "args": {"type": "unix"}, "caption": "Unix (LF)", "checkbox": true }, 4 | { "command": "set_line_ending", "args": {"type": "cr"}, "caption": "Mac OS X (CR)", "checkbox": true } 5 | ] 6 | -------------------------------------------------------------------------------- /menu/4/zh_CN/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "folder_commands" }, 3 | { "caption": "从项目中移除文件夹", "command": "remove_folder", "args": { "dirs": []} } 4 | ] 5 | -------------------------------------------------------------------------------- /menu/4/zh_CN/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "新建文件", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "重命名…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "删除文件", "command": "delete_file", "args": {"files": [], "prompt": false} }, 5 | { "caption": "打开文件夹…", "command": "open_folder", "args": {"dirs": []} }, 6 | { "caption": "打开所在文件夹…", "command": "open_containing_folder", "args": {"files": []} }, 7 | { "caption": "打开链接目录", "command": "reveal_link_source", "args": {"dirs": []} }, 8 | { "caption": "-", "id": "repo_commands" }, 9 | { "caption": "打开Git仓库…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 10 | { "caption": "文件历史…", "command": "sublime_merge_file_history", "args": {"files": []}}, 11 | { "caption": "目录历史…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 12 | { "caption": "审查文件…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 13 | { "caption": "-", "id": "folder_commands" }, 14 | { "caption": "新建文件夹…", "command": "new_folder", "args": {"dirs": []} }, 15 | { "caption": "删除文件夹", "command": "delete_folder", "args": {"dirs": [], "prompt": true} }, 16 | { "caption": "在文件夹中查找…", "command": "find_in_folder", "args": {"dirs": []} }, 17 | { "caption": "-", "id": "end" } 18 | ] 19 | -------------------------------------------------------------------------------- /menu/4/zh_CN/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "语法", 4 | "children": [ { "command": "$file_types" } ] 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /menu/4/zh_CN/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭其它选项卡" }, 4 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭右侧选项卡" }, 5 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "关闭未改" }, 6 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭右侧未改" }, 7 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "关闭已删" }, 8 | { "caption": "-" }, 9 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1 }, "caption": "拆分视图" }, 10 | { "caption": "-" }, 11 | { "command": "new_file", "caption": "新建文件" }, 12 | { "command": "prompt_open_file", "caption": "打开文件" } 13 | ] 14 | -------------------------------------------------------------------------------- /menu/4/zh_CN/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_selected", "args": { "group": -1 }, "caption": "关闭" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭其它" }, 4 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "关闭未改" }, 5 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭右侧" }, 6 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭右侧未改" }, 7 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "关闭已删" }, 8 | { "caption": "-" }, 9 | { "command": "new_file", "caption": "新建文件" }, 10 | { "command": "prompt_open_file", "caption": "打开文件" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/4/zh_CN/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url", "caption": "打开URL链接" }, 3 | { "caption": "-" }, 4 | { "command": "cut", "caption": "剪切" }, 5 | { "command": "copy", "caption": "复制" }, 6 | { "command": "paste", "caption": "粘贴" }, 7 | { "caption": "-" }, 8 | { "command": "select_all", "caption": "全选" } 9 | ] 10 | -------------------------------------------------------------------------------- /menu/4/zh_TW/Console Input Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "cut", "caption": "剪切" }, 3 | { "command": "copy", "caption": "復制" }, 4 | { "command": "paste", "caption": "粘貼" }, 5 | { "caption": "-" }, 6 | { "command": "select_all", "caption": "全選" }, 7 | { "caption": "-" }, 8 | { "command": "console_python_version", "args": {"version": "3.8"}, "checkbox": true }, 9 | { "command": "console_python_version", "args": {"version": "3.3"}, "checkbox": true }, 10 | ] 11 | -------------------------------------------------------------------------------- /menu/4/zh_TW/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url", "caption": "打開URL鏈接" }, 3 | { "command": "goto_definition", "caption": "轉到定義處" }, 4 | { "caption": "-", "id": "diff" }, 5 | { "command": "toggle_inline_diff", "caption": "切換顯示行內差異" }, 6 | { "command": "revert_hunk", "caption": "還原差異塊" }, 7 | { "caption": "-", "id": "clipboard" }, 8 | { "command": "cut", "caption": "剪切" }, 9 | { "command": "copy", "caption": "復制" }, 10 | { "command": "paste", "caption": "粘貼" }, 11 | { "caption": "-", "id": "selection" }, 12 | { "command": "select_all", "caption": "全選" }, 13 | { "caption": "-", "id": "repo_commands" }, 14 | { "caption": "打開Git倉庫…", "command": "sublime_merge_open_repo" }, 15 | { "caption": "文件歷史…", "command": "sublime_merge_file_history" }, 16 | { "caption": "行歷史…", "command": "sublime_merge_line_history" }, 17 | { "caption": "審查文件…", "command": "sublime_merge_blame_file" }, 18 | { "caption": "-", "id": "file" }, 19 | { "command": "open_in_browser", "caption": "在瀏覽器中打開" }, 20 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "打開所在文件夾…" }, 21 | { "command": "copy_path", "caption": "復制文件路徑" }, 22 | { "command": "reveal_in_side_bar", "caption": "在側邊欄中顯示" }, 23 | { "caption": "-", "id": "end" } 24 | ] 25 | -------------------------------------------------------------------------------- /menu/4/zh_TW/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "clear_location", "caption": "清除當前路徑" }, 3 | { "command": "add_directory", "caption": "添加搜索文件夾" }, 4 | { "command": "add_where_snippet", "args": {"snippet": "*.${0:txt}"}, "caption": "添加包括過濾(通配符)" }, 5 | { "command": "add_where_snippet", "args": {"snippet": "-*.${0:txt}"}, "caption": "添加排除過濾(通配符)" }, 6 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加排除過濾項目" }, 7 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加打開的文件夾" }, 8 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加打開的文件" }, 9 | { "command": "add_where_snippet", "args": {"snippet": ""}, "caption": "添加當前文件" }, 10 | ] 11 | -------------------------------------------------------------------------------- /menu/4/zh_TW/Line Endings.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "set_line_ending", "args": {"type": "windows"}, "caption": "Windows (CRLF)", "checkbox": true }, 3 | { "command": "set_line_ending", "args": {"type": "unix"}, "caption": "Unix (LF)", "checkbox": true }, 4 | { "command": "set_line_ending", "args": {"type": "cr"}, "caption": "Mac OS X (CR)", "checkbox": true } 5 | ] 6 | -------------------------------------------------------------------------------- /menu/4/zh_TW/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "folder_commands" }, 3 | { "caption": "從項目中移除文件夾", "command": "remove_folder", "args": { "dirs": []} } 4 | ] 5 | -------------------------------------------------------------------------------- /menu/4/zh_TW/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "新建文件", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "重命名…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "刪除文件", "command": "delete_file", "args": {"files": [], "prompt": false} }, 5 | { "caption": "打開文件夾…", "command": "open_folder", "args": {"dirs": []} }, 6 | { "caption": "打開所在文件夾…", "command": "open_containing_folder", "args": {"files": []} }, 7 | { "caption": "打開鏈接目錄", "command": "reveal_link_source", "args": {"dirs": []} }, 8 | { "caption": "-", "id": "repo_commands" }, 9 | { "caption": "打開Git倉庫…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 10 | { "caption": "文件歷史…", "command": "sublime_merge_file_history", "args": {"files": []}}, 11 | { "caption": "目錄歷史…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 12 | { "caption": "審查文件…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 13 | { "caption": "-", "id": "folder_commands" }, 14 | { "caption": "新建文件夾…", "command": "new_folder", "args": {"dirs": []} }, 15 | { "caption": "刪除文件夾", "command": "delete_folder", "args": {"dirs": [], "prompt": true} }, 16 | { "caption": "在文件夾中查找…", "command": "find_in_folder", "args": {"dirs": []} }, 17 | { "caption": "-", "id": "end" } 18 | ] 19 | -------------------------------------------------------------------------------- /menu/4/zh_TW/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "語法", 4 | "children": [ { "command": "$file_types" } ] 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /menu/4/zh_TW/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉其它選項卡" }, 4 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉右側選項卡" }, 5 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "關閉未改" }, 6 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉右側未改" }, 7 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "關閉已刪" }, 8 | { "caption": "-" }, 9 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1 }, "caption": "拆分視圖" }, 10 | { "caption": "-" }, 11 | { "command": "new_file", "caption": "新建文件" }, 12 | { "command": "prompt_open_file", "caption": "打開文件" } 13 | ] 14 | -------------------------------------------------------------------------------- /menu/4/zh_TW/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_selected", "args": { "group": -1 }, "caption": "關閉" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉其它" }, 4 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "關閉未改" }, 5 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉右側" }, 6 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉右側未改" }, 7 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "關閉已刪" }, 8 | { "caption": "-" }, 9 | { "command": "new_file", "caption": "新建文件" }, 10 | { "command": "prompt_open_file", "caption": "打開文件" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/4/zh_TW/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url", "caption": "打開URL鏈接" }, 3 | { "caption": "-" }, 4 | { "command": "cut", "caption": "剪切" }, 5 | { "command": "copy", "caption": "復制" }, 6 | { "command": "paste", "caption": "粘貼" }, 7 | { "caption": "-" }, 8 | { "command": "select_all", "caption": "全選" } 9 | ] 10 | -------------------------------------------------------------------------------- /menu/4126/de_DE/Console Input Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | // Kontextmenü 2 | [ 3 | { "caption": "Ausschneiden", "command": "cut" }, 4 | { "caption": "Kopieren", "command": "copy" }, 5 | { "caption": "Einfügen", "command": "paste" }, 6 | { "caption": "-"}, 7 | { "caption": "Alles auswählen", "command": "select_all" }, 8 | { "caption": "-"}, 9 | { "checkbox": true, "args": {"version": "3.8"}, "command": "console_python_version"}, 10 | { "checkbox": true, "args": {"version": "3.3"}, "command": "console_python_version"} 11 | ] 12 | -------------------------------------------------------------------------------- /menu/4126/de_DE/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | // Drei-Punkte-Button (...) im Menü "In Dateien suchen..." 2 | [ 3 | {"caption": "Löschen", "command": "clear_location"}, 4 | {"caption": "Ordner hinzufügen", "command": "add_directory"}, 5 | {"caption": "Include-Filter hinzufügen", "args": {"snippet": "*.${0:txt}"}, "command": "add_where_snippet"}, 6 | {"caption": "Exclude-Filter hinzufügen", "args": {"snippet": "-*.${0:txt}"}, "command": "add_where_snippet"}, 7 | {"caption": "Projekt-Filter hinzufügen", "args": {"snippet": ""}, "command": "add_where_snippet"}, 8 | {"caption": "Geöffnete Ordner hinzufügen", "args": {"snippet": ""}, "command": "add_where_snippet"}, 9 | {"caption": "Geöffnete Dateien hinzufügen", "args": {"snippet": ""}, "command": "add_where_snippet"}, 10 | {"caption": "Aktuelle Datei hinzufügen", "args": {"snippet": ""}, "command": "add_where_snippet"} 11 | ] 12 | -------------------------------------------------------------------------------- /menu/4126/de_DE/Line Endings.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"caption": "Windows-Zeilenende (CRLF)", "args": {"type": "windows"}, "command": "set_line_ending", "checkbox": true }, 3 | {"caption": "Unix-Zeilenende (LF)", "args": {"type": "unix"}, "command": "set_line_ending", "checkbox": true }, 4 | {"caption": "Mac OS 9-Zeilenende (CR)", "args": {"type": "cr"}, "command": "set_line_ending", "checkbox": true } 5 | ] 6 | -------------------------------------------------------------------------------- /menu/4126/de_DE/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"caption": "-", "id": "folder_commands"}, 3 | {"caption": "Ordner aus Projekt entfernen", "args": {"dirs": [] }, "command": "remove_folder"} 4 | ] 5 | -------------------------------------------------------------------------------- /menu/4126/de_DE/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"caption": "Neue Datei", "args": {"dirs": []}, "command": "new_file_at"}, 3 | {"caption": "Datei umbenennen…", "args": {"paths": [] }, "command": "rename_path"}, 4 | {"caption": "Datei löschen", "args": {"files": [], "prompt": false }, "command": "delete_file"}, 5 | {"caption": "Ordner öffnen…", "args": {"dirs": [] }, "command": "open_folder"}, 6 | {"caption": "Unterordner öffnen…", "args": {"files": [] }, "command": "open_containing_folder"}, 7 | {"caption": "Link-Quelle anzeigen", "args": {"dirs": [] }, "command": "reveal_link_source"}, 8 | {"caption": "-", "id": "repo_commands"}, 9 | {"caption": "Git-Repository öffnen…", "args": {"paths": [] }, "command": "sublime_merge_open_repo"}, 10 | {"caption": "Datei-Historie…", "args": {"files": [] }, "command": "sublime_merge_file_history"}, 11 | {"caption": "Ordner-Historie…", "args": {"paths": [] }, "command": "sublime_merge_folder_history"}, 12 | {"caption": "Dateiänderungen nachverfolgen…", "args": {"files": [] }, "command": "sublime_merge_blame_file"}, 13 | {"caption": "-", "id": "folder_commands"}, 14 | {"caption": "Neuer Ordner…", "args": {"dirs": [] }, "command": "new_folder"}, 15 | {"caption": "Ordner löschen", "args": {"prompt": true, "dirs": [] }, "command": "delete_folder"}, 16 | {"caption": "Im Ordner suchen…", "args": {"dirs": [] }, "command": "find_in_folder"}, 17 | {"caption": "-", "id": "end"} 18 | ] 19 | -------------------------------------------------------------------------------- /menu/4126/de_DE/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"caption": "Syntax", "children": [{"command": "$file_types"} ] } 3 | ] 4 | -------------------------------------------------------------------------------- /menu/4126/de_DE/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | // Kontextmenü über Reitern 2 | [ 3 | {"caption": "Schließen", "args": {"group": -1, "index": -1 }, "command": "close_by_index"}, 4 | {"caption": "Schließen: andere Tabs", "args": {"group": -1, "index": -1 }, "command": "close_others_by_index"}, 5 | {"caption": "Schließen: andere Tabs rechts", "args": {"group": -1, "index": -1 }, "command": "close_to_right_by_index"}, 6 | {"caption": "Schließen: unveränderte Tabs", "args": {"group": -1 }, "command": "close_unmodified"}, 7 | {"caption": "Schließen: unveränderte Tabs rechts", "args": {"group": -1, "index": -1 }, "command": "close_unmodified_to_right_by_index"}, 8 | {"caption": "Schließen: Tabs mit gelöschten Dateien", "args": {"group": -1 }, "command": "close_deleted_files"}, 9 | {"caption": "-"}, 10 | {"caption": "Anzeige aufteilen", "args": {"add_to_selection": true, "index": -1, "group": -1 }, "command": "clone_file"}, 11 | {"caption": "-"}, 12 | {"caption": "Neue Datei", "command": "new_file"}, 13 | {"caption": "Datei öffnen…", "command": "prompt_open_file"} 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4126/de_DE/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | // Kontextmenü in linker Seitenleiste 2 | [ 3 | {"caption": "Schließen", "args": {"group": -1 }, "command": "close_selected"}, 4 | {"caption": "Schließen: andere Dateien", "args": {"group": -1, "index": -1 }, "command": "close_others_by_index"}, 5 | {"caption": "Schließen: andere Dateien darunter", "args": {"group": -1, "index": -1 }, "command": "close_to_right_by_index"}, 6 | {"caption": "Schließen: unveränderte Dateien", "args": {"group": -1, "index": -1 }, "command": "close_unmodified"}, 7 | {"caption": "Schließen: unveränderte Dateien darunter", "args": {"group": -1, "index": -1 }, "command": "close_unmodified_to_right_by_index"}, 8 | {"caption": "Schließen: gelöschte Dateien", "args": {"group": -1 }, "command": "close_deleted_files"}, 9 | {"caption": "-"}, 10 | {"caption": "Neue Datei", "command": "new_file"}, 11 | {"caption": "Datei öffnen…", "command": "prompt_open_file"} 12 | ] 13 | -------------------------------------------------------------------------------- /menu/4126/de_DE/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"caption": "URL öffnen", "command": "open_context_url"}, 3 | {"caption": "-"}, 4 | {"caption": "Ausschneiden", "command": "cut"}, 5 | {"caption": "Kopieren", "command": "copy"}, 6 | {"caption": "Einfügen", "command": "paste"}, 7 | {"caption": "-"}, 8 | {"caption": "Alles auswählen", "command": "select_all"} 9 | ] 10 | -------------------------------------------------------------------------------- /menu/4126/fr_FR/Find in Files.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "Effacer", 4 | "command": "clear_location" 5 | }, 6 | { 7 | "caption": "Ajouter un dossier", 8 | "command": "add_directory" 9 | }, 10 | { 11 | "caption": "Ajouter un filtre d'inclusion", 12 | "command": "add_where_snippet", 13 | "args": { 14 | "snippet": "*.${0:txt}" 15 | } 16 | }, 17 | { 18 | "caption": "Ajouter un filtre d'exclusion", 19 | "command": "add_where_snippet", 20 | "args": { 21 | "snippet": "-*.${0:txt}" 22 | } 23 | }, 24 | { 25 | "caption": "Ajouter les dossiers ouverts", 26 | "command": "add_where_snippet", 27 | "args": { 28 | "snippet": "" 29 | } 30 | }, 31 | { 32 | "caption": "Ajouter les fichiers ouverts", 33 | "command": "add_where_snippet", 34 | "args": { 35 | "snippet": "" 36 | } 37 | }, 38 | { 39 | "caption": "Ajouter le fichier courant", 40 | "command": "add_where_snippet", 41 | "args": { 42 | "snippet": "" 43 | } 44 | } 45 | ] 46 | -------------------------------------------------------------------------------- /menu/4126/fr_FR/Line Endings.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "Fin de ligne Windows (CRLF)", 4 | "checkbox": true, 5 | "command": "set_line_ending", 6 | "args": { 7 | "type": "windows" 8 | } 9 | }, 10 | { 11 | "caption": "Fin de ligne Unix (LF)", 12 | "checkbox": true, 13 | "command": "set_line_ending", 14 | "args": { 15 | "type": "unix" 16 | } 17 | }, 18 | { 19 | "caption": "Fin de ligne Mac OS 9 (CR)", 20 | "checkbox": true, 21 | "command": "set_line_ending", 22 | "args": { 23 | "type": "cr" 24 | } 25 | } 26 | ] 27 | -------------------------------------------------------------------------------- /menu/4126/fr_FR/Side Bar Mount Point.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "-", 4 | "id": "folder_commands" 5 | }, 6 | { 7 | "caption": "Retirer le dossier du projet", 8 | "command": "remove_folder", 9 | "args": { 10 | "dirs": [] 11 | } 12 | } 13 | ] 14 | -------------------------------------------------------------------------------- /menu/4126/fr_FR/Syntax.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "Syntaxe", 4 | "children": [ 5 | { 6 | "command": "$file_types" 7 | } 8 | ] 9 | } 10 | ] 11 | -------------------------------------------------------------------------------- /menu/4126/fr_FR/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "Fermer", 4 | "command": "close_by_index", 5 | "args": { 6 | "group": -1, 7 | "index": -1 8 | } 9 | }, 10 | { 11 | "caption": "Fermer les autres onglets", 12 | "command": "close_others_by_index", 13 | "args": { 14 | "group": -1, 15 | "index": -1 16 | } 17 | }, 18 | { 19 | "caption": "Fermer les onglets à droite", 20 | "command": "close_to_right_by_index", 21 | "args": { 22 | "group": -1, 23 | "index": -1 24 | } 25 | }, 26 | { 27 | "caption": "-" 28 | }, 29 | { 30 | "caption": "Nouveau fichier", 31 | "command": "new_file" 32 | }, 33 | { 34 | "caption": "Ouvrir un fichier", 35 | "command": "prompt_open_file" 36 | } 37 | ] 38 | -------------------------------------------------------------------------------- /menu/4126/fr_FR/Widget Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "command": "cut", "caption": "Couper" 4 | }, 5 | { 6 | "command": "copy", "caption": "Copier" 7 | }, 8 | { 9 | "command": "paste", "caption": "Coller" 10 | }, 11 | { 12 | "caption": "-" 13 | }, 14 | { 15 | "command": "select_all", "caption": "Tout sélectionner" 16 | } 17 | ] 18 | -------------------------------------------------------------------------------- /menu/4143/en/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tab" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Other Tabs" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Close Selected Tabs" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "Close Unselected Tabs" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tabs to the Right" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs to the Right" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Close Tabs With Deleted Files" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1 }, "caption": "Split View" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "New File" }, 15 | { "command": "prompt_open_file", "caption": "Open File" }, 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4143/en/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tab" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Other Tabs" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Close Selected Tabs" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Close Unselected Tabs" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tabs Below" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs Below" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Close Tabs With Deleted Files" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "New File" }, 13 | { "command": "prompt_open_file", "caption": "Open File" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4143/ru/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладку" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть другие вкладки" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group": -1, "index": -1}, "caption": "Закрыть выбранные вкладки" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Закрыть другие вкладки" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладки справа" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неизменённые вкладки" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неизменённые вкладки справа" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Закрыть вкладки чьи файлы удалены" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1 }, "caption": "Дублировать вкладку" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "Новый файл" }, 15 | { "command": "prompt_open_file", "caption": "Открыть файл" }, 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4143/ru/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладку" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть другие вкладки" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group": -1, "index": -1}, "caption": "Закрыть выбранные вкладки" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Закрыть другие вкладки" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладки ниже" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неизменённые вкладки" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неизменённые вкладки ниже" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Закрыть вкладки чьи файлы удалены" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "Новый файл" }, 13 | { "command": "prompt_open_file", "caption": "Открыть файл" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4143/zh_CN/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "关闭已选" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "关闭未选" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭右侧" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "关闭未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭右侧未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "关闭已删" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1 }, "caption": "拆分视图" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "新建文件" }, 15 | { "command": "prompt_open_file", "caption": "打开文件" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4143/zh_CN/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "关闭已选" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "关闭未选" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭以下" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "关闭未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭以下未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "关闭已删" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "新建文件" }, 13 | { "command": "prompt_open_file", "caption": "打开文件" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4143/zh_TW/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "關閉已選" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "關閉未選" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉右側" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "關閉未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉右側未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "關閉已刪" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1 }, "caption": "拆分視圖" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "新建文件" }, 15 | { "command": "prompt_open_file", "caption": "打開文件" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4143/zh_TW/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "關閉已選" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "關閉未選" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉以下" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "關閉未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉以下未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "關閉已刪" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "新建文件" }, 13 | { "command": "prompt_open_file", "caption": "打開文件" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4152/en/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tab" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Other Tabs" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Close Selected Tabs" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "Close Unselected Tabs" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tabs to the Right" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs to the Right" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Close Tabs With Deleted Files" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "Split View" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "New File" }, 15 | { "command": "prompt_open_file", "caption": "Open File" }, 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4152/en/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tab" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Other Tabs" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Close Selected Tabs" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Close Unselected Tabs" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tabs Below" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs Below" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Close Tabs With Deleted Files" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "New File" }, 13 | { "command": "prompt_open_file", "caption": "Open File" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4152/ru/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладку" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть другие вкладки" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group": -1, "index": -1}, "caption": "Закрыть выбранные вкладки" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Закрыть другие вкладки" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладки справа" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неизменённые вкладки" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неизменённые вкладки справа" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Закрыть вкладки чьи файлы удалены" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "Дублировать вкладку" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "Новый файл" }, 15 | { "command": "prompt_open_file", "caption": "Открыть файл" }, 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4152/ru/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладку" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть другие вкладки" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group": -1, "index": -1}, "caption": "Закрыть выбранные вкладки" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Закрыть другие вкладки" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладки ниже" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неизменённые вкладки" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неизменённые вкладки ниже" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Закрыть вкладки чьи файлы удалены" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "Новый файл" }, 13 | { "command": "prompt_open_file", "caption": "Открыть файл" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4152/zh_CN/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "关闭已选" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "关闭未选" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭右侧" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "关闭未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭右侧未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "关闭已删" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "拆分视图" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "新建文件" }, 15 | { "command": "prompt_open_file", "caption": "打开文件" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4152/zh_CN/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "关闭已选" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "关闭未选" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭以下" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "关闭未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭以下未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "关闭已删" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "新建文件" }, 13 | { "command": "prompt_open_file", "caption": "打开文件" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4152/zh_TW/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "關閉已選" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "關閉未選" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉右側" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "關閉未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉右側未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "關閉已刪" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "拆分視圖" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "新建文件" }, 15 | { "command": "prompt_open_file", "caption": "打開文件" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4152/zh_TW/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "關閉已選" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "關閉未選" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉以下" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "關閉未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉以下未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "關閉已刪" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "新建文件" }, 13 | { "command": "prompt_open_file", "caption": "打開文件" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4166/en/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "New File", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "Rename…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "Delete File", "command": "delete_file", "args": {"files": [], "prompt": false} }, 5 | { "caption": "Open Folder…", "command": "open_folder", "args": {"dirs": []} }, 6 | { "caption": "Open Containing Folder…", "command": "open_containing_folder", "args": {"files": []} }, 7 | { "caption": "Copy Path", "command": "copy_path_sidebar", "args": {"paths": []} }, 8 | { "caption": "Reveal Link Source", "command": "reveal_link_source", "args": {"dirs": []} }, 9 | { "caption": "-", "id": "repo_commands" }, 10 | { "caption": "Open Git Repository…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 11 | { "caption": "File History…", "command": "sublime_merge_file_history", "args": {"files": []}}, 12 | { "caption": "Folder History…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 13 | { "caption": "Blame File…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 14 | { "caption": "-", "id": "folder_commands" }, 15 | { "caption": "New Folder…", "command": "new_folder", "args": {"dirs": []} }, 16 | { "caption": "Delete Folder", "command": "delete_folder", "args": {"dirs": [], "prompt": true} }, 17 | { "caption": "Find in Folder…", "command": "find_in_folder", "args": {"dirs": []} }, 18 | { "caption": "-", "id": "end" } 19 | ] 20 | -------------------------------------------------------------------------------- /menu/4166/en/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tab" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Other Tabs" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Close Selected Tabs" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "Close Unselected Tabs" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tabs to the Right" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs to the Right" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Close Tabs With Deleted Files" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "Split View" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "New File" }, 15 | { "command": "prompt_open_file", "caption": "Open File" }, 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4166/en/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tab" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Other Tabs" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Close Selected Tabs" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Close Unselected Tabs" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tabs Below" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs Below" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Close Tabs With Deleted Files" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "New File" }, 13 | { "command": "prompt_open_file", "caption": "Open File" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4166/ru/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"caption":"Новый файл","command":"new_file_at","args":{"dirs":[]}}, 3 | {"caption":"Переименовать…","command":"rename_path","args":{"paths":[]}}, 4 | {"caption":"Удалить файл","command":"delete_file","args":{"files":[],"prompt":false}}, 5 | {"caption":"Открыть папку…","command":"open_folder","args":{"dirs":[]}}, 6 | {"caption":"Открыть родительскую папку…","command":"open_containing_folder","args":{"files":[]}}, 7 | {"caption":"Скопировать путь","command":"copy_path_sidebar","args":{"paths":[]}}, 8 | {"caption":"Показать источник ссылки","command":"reveal_link_source","args":{"dirs":[]}}, 9 | {"caption":"-","id":"repo_commands"}, 10 | {"caption":"Открыть Git репозиторий…","command":"sublime_merge_open_repo","args":{"paths":[]}}, 11 | {"caption":"История файла…","command":"sublime_merge_file_history","args":{"files":[]}}, 12 | {"caption":"История папки…","command":"sublime_merge_folder_history","args":{"paths":[]}}, 13 | {"caption":"Команда 'blame'…","command":"sublime_merge_blame_file","args":{"files":[]}}, 14 | {"caption":"-","id":"folder_commands"}, 15 | {"caption":"Новая папка…","command":"new_folder","args":{"dirs":[]}}, 16 | {"caption":"Удалить папку","command":"delete_folder","args":{"dirs":[],"prompt":true}}, 17 | {"caption":"Найти в папке…","command":"find_in_folder","args":{"dirs":[]}}, 18 | {"caption":"-","id":"end"} 19 | ] -------------------------------------------------------------------------------- /menu/4166/ru/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладку" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть другие вкладки" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group": -1, "index": -1}, "caption": "Закрыть выбранные вкладки" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Закрыть другие вкладки" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладки справа" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неизменённые вкладки" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неизменённые вкладки справа" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Закрыть вкладки чьи файлы удалены" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "Дублировать вкладку" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "Новый файл" }, 15 | { "command": "prompt_open_file", "caption": "Открыть файл" }, 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4166/ru/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладку" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть другие вкладки" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group": -1, "index": -1}, "caption": "Закрыть выбранные вкладки" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Закрыть другие вкладки" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладки ниже" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неизменённые вкладки" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неизменённые вкладки ниже" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Закрыть вкладки чьи файлы удалены" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "Новый файл" }, 13 | { "command": "prompt_open_file", "caption": "Открыть файл" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4166/zh_CN/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "新建文件", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "重命名…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "删除文件", "command": "delete_file", "args": {"files": [], "prompt": false} }, 5 | { "caption": "打开文件夹…", "command": "open_folder", "args": {"dirs": []} }, 6 | { "caption": "打开所在文件夹…", "command": "open_containing_folder", "args": {"files": []} }, 7 | { "caption": "复制文件路径", "command": "copy_path_sidebar", "args": {"paths": []} }, 8 | { "caption": "打开链接目录", "command": "reveal_link_source", "args": {"dirs": []} }, 9 | { "caption": "-", "id": "repo_commands" }, 10 | { "caption": "打开Git仓库…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 11 | { "caption": "文件历史…", "command": "sublime_merge_file_history", "args": {"files": []}}, 12 | { "caption": "目录历史…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 13 | { "caption": "审查文件…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 14 | { "caption": "-", "id": "folder_commands" }, 15 | { "caption": "新建文件夹…", "command": "new_folder", "args": {"dirs": []} }, 16 | { "caption": "删除文件夹", "command": "delete_folder", "args": {"dirs": [], "prompt": true} }, 17 | { "caption": "在文件夹中查找…", "command": "find_in_folder", "args": {"dirs": []} }, 18 | { "caption": "-", "id": "end" } 19 | ] 20 | -------------------------------------------------------------------------------- /menu/4166/zh_CN/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "关闭已选" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "关闭未选" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭右侧" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "关闭未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭右侧未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "关闭已删" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "拆分视图" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "新建文件" }, 15 | { "command": "prompt_open_file", "caption": "打开文件" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4166/zh_CN/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "关闭已选" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "关闭未选" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭以下" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "关闭未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭以下未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "关闭已删" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "新建文件" }, 13 | { "command": "prompt_open_file", "caption": "打开文件" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4166/zh_TW/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "新建文件", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "重命名…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "刪除文件", "command": "delete_file", "args": {"files": [], "prompt": false} }, 5 | { "caption": "打開文件夾…", "command": "open_folder", "args": {"dirs": []} }, 6 | { "caption": "打開所在文件夾…", "command": "open_containing_folder", "args": {"files": []} }, 7 | { "caption": "複制文件路徑", "command": "copy_path_sidebar", "args": {"paths": []} }, 8 | { "caption": "打開鏈接目錄", "command": "reveal_link_source", "args": {"dirs": []} }, 9 | { "caption": "-", "id": "repo_commands" }, 10 | { "caption": "打開Git倉庫…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 11 | { "caption": "文件歷史…", "command": "sublime_merge_file_history", "args": {"files": []}}, 12 | { "caption": "目錄歷史…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 13 | { "caption": "審查文件…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 14 | { "caption": "-", "id": "folder_commands" }, 15 | { "caption": "新建文件夾…", "command": "new_folder", "args": {"dirs": []} }, 16 | { "caption": "刪除文件夾", "command": "delete_folder", "args": {"dirs": [], "prompt": true} }, 17 | { "caption": "在文件夾中查找…", "command": "find_in_folder", "args": {"dirs": []} }, 18 | { "caption": "-", "id": "end" } 19 | ] 20 | -------------------------------------------------------------------------------- /menu/4166/zh_TW/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "關閉已選" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "關閉未選" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉右側" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "關閉未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉右側未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "關閉已刪" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "拆分視圖" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "新建文件" }, 15 | { "command": "prompt_open_file", "caption": "打開文件" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4166/zh_TW/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "關閉已選" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "關閉未選" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉以下" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "關閉未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉以下未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "關閉已刪" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "新建文件" }, 13 | { "command": "prompt_open_file", "caption": "打開文件" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4169/en/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "New File", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "Rename…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "Delete File", "command": "delete_file", "args": {"files": [], "prompt": false} }, 5 | { "caption": "Open Folder…", "command": "open_folder", "args": {"dirs": []} }, 6 | { "caption": "Open Containing Folder…", "command": "open_containing_folder", "args": {"files": []} }, 7 | { "caption": "Copy Path", "command": "copy_path_sidebar", "args": {"paths": []} }, 8 | { "caption": "Reveal Link Source", "command": "reveal_link_source", "args": {"dirs": []} }, 9 | { "caption": "-", "id": "repo_commands" }, 10 | { "caption": "Open Git Repository…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 11 | { "caption": "File History…", "command": "sublime_merge_file_history", "args": {"files": []}}, 12 | { "caption": "Folder History…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 13 | { "caption": "Blame File…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 14 | { "caption": "-", "id": "folder_commands" }, 15 | { "caption": "New Folder…", "command": "new_folder", "args": {"dirs": []} }, 16 | { "caption": "Delete Folder", "command": "delete_folder", "args": {"dirs": [], "prompt": true} }, 17 | { "caption": "Find in Folder…", "command": "find_in_folder", "args": {"dirs": []} }, 18 | { "caption": "-", "id": "end" } 19 | ] 20 | -------------------------------------------------------------------------------- /menu/4169/en/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tab" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Other Tabs" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Close Selected Tabs" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "Close Unselected Tabs" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tabs to the Right" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs to the Right" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Close Tabs With Deleted Files" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "Split View" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "New File" }, 15 | { "command": "prompt_open_file", "caption": "Open File" }, 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4169/en/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tab" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Other Tabs" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Close Selected Tabs" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Close Unselected Tabs" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tabs Below" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs Below" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Close Tabs With Deleted Files" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "New File" }, 13 | { "command": "prompt_open_file", "caption": "Open File" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4169/es/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestaña" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Otras Pestañas" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Cerrar Pestañas Seleccionadas" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "Cerrar Pestañas No Seleccionadas" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas a la Derecha" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas Sin Modificar" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas No Modificadas a la Derecha" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Cerrar Pestañas Con el Archivo Borrado" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "Clonar Vista" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "Nuevo Archivo" }, 15 | { "command": "prompt_open_file", "caption": "Abrir Archivo" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4169/es/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestaña" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Otras Pestañas" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Cerrar Pestañas Seleccionadas" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Cerrar Pestañas No Seleccionadas" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas Inferiores" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas Sin Modificar" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas Inferiores Sin Modificar" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Cerrar Pestañas Con Archivos Borrados" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "Nuevo Archivo" }, 13 | { "command": "prompt_open_file", "caption": "Abrir Archivo" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4169/hu/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Lap bezárása" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Többi lap bezárása" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Kiválasztott lapok bezárása" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "Nem kiválasztott lapok bezárása" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Jobbra lévő lapok bezárása" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Változatlan lapok bezárása" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Jobbra lévő, változatlan lapok bezárása" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Törölt fájlokhoz tartozó lapok bezárása" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "Hozzáadás osztott nézethez" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "Új fájl" }, 15 | { "command": "prompt_open_file", "caption": "Fájl megnyitása" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4169/hu/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Lap bezárása" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Többi lap bezárása" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Kiválasztott lapok bezárása" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Nem kiválasztott lapok bezárása" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Lenti lapok bezárása" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Változatlan lapok bezárása" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Lenti, változatlan lapok bezárása" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Törölt fájlokhoz tartozó lapok bezárása" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "Új fájl" }, 13 | { "command": "prompt_open_file", "caption": "Fájl megnyitása" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4169/ru/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"caption":"Новый файл","command":"new_file_at","args":{"dirs":[]}}, 3 | {"caption":"Переименовать…","command":"rename_path","args":{"paths":[]}}, 4 | {"caption":"Удалить файл","command":"delete_file","args":{"files":[],"prompt":false}}, 5 | {"caption":"Открыть папку…","command":"open_folder","args":{"dirs":[]}}, 6 | {"caption":"Открыть родительскую папку…","command":"open_containing_folder","args":{"files":[]}}, 7 | {"caption":"Скопировать путь","command":"copy_path_sidebar","args":{"paths":[]}}, 8 | {"caption":"Показать источник ссылки","command":"reveal_link_source","args":{"dirs":[]}}, 9 | {"caption":"-","id":"repo_commands"}, 10 | {"caption":"Открыть Git репозиторий…","command":"sublime_merge_open_repo","args":{"paths":[]}}, 11 | {"caption":"История файла…","command":"sublime_merge_file_history","args":{"files":[]}}, 12 | {"caption":"История папки…","command":"sublime_merge_folder_history","args":{"paths":[]}}, 13 | {"caption":"Команда 'blame'…","command":"sublime_merge_blame_file","args":{"files":[]}}, 14 | {"caption":"-","id":"folder_commands"}, 15 | {"caption":"Новая папка…","command":"new_folder","args":{"dirs":[]}}, 16 | {"caption":"Удалить папку","command":"delete_folder","args":{"dirs":[],"prompt":true}}, 17 | {"caption":"Найти в папке…","command":"find_in_folder","args":{"dirs":[]}}, 18 | {"caption":"-","id":"end"} 19 | ] -------------------------------------------------------------------------------- /menu/4169/ru/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладку" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть другие вкладки" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group": -1, "index": -1}, "caption": "Закрыть выбранные вкладки" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Закрыть другие вкладки" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладки справа" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неизменённые вкладки" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неизменённые вкладки справа" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Закрыть вкладки чьи файлы удалены" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "Дублировать вкладку" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "Новый файл" }, 15 | { "command": "prompt_open_file", "caption": "Открыть файл" }, 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4169/ru/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладку" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть другие вкладки" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group": -1, "index": -1}, "caption": "Закрыть выбранные вкладки" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Закрыть другие вкладки" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть вкладки ниже" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неизменённые вкладки" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Закрыть неизменённые вкладки ниже" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Закрыть вкладки чьи файлы удалены" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "Новый файл" }, 13 | { "command": "prompt_open_file", "caption": "Открыть файл" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4180/en/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url" }, 3 | { "command": "goto_definition", "caption": "Goto Definition" }, 4 | { "caption": "-", "id": "diff" }, 5 | { "command": "toggle_inline_diff" }, 6 | { "command": "revert_hunk", "caption": "Revert Diff Hunk" }, 7 | { "caption": "-", "id": "clipboard" }, 8 | { "command": "cut" }, 9 | { "command": "copy" }, 10 | { "command": "paste" }, 11 | { "caption": "-", "id": "selection" }, 12 | { "command": "select_all" }, 13 | { "caption": "-", "id": "repo_commands" }, 14 | { "caption": "Open Git Repository…", "command": "sublime_merge_open_repo" }, 15 | { "caption": "File History…", "command": "sublime_merge_file_history" }, 16 | { "caption": "Line History…", "command": "sublime_merge_line_history" }, 17 | { "caption": "Blame File…", "command": "sublime_merge_blame_file" }, 18 | { "caption": "-", "id": "file" }, 19 | { "command": "open_in_browser", "caption": "Open in Browser" }, 20 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Open Containing Folder…" }, 21 | { "command": "copy_path", "caption": "Copy File Path" }, 22 | { "command": "reveal_in_side_bar", "caption": "Reveal in Side Bar" }, 23 | { "command": "force_reopen_as", "args": {"type": "image"}, "caption": "Reopen File as Image" }, 24 | { "caption": "-", "id": "end" } 25 | ] 26 | -------------------------------------------------------------------------------- /menu/4180/en/Image Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "repo_commands" }, 3 | { "caption": "Open Git Repository…", "command": "sublime_merge_open_repo" }, 4 | { "caption": "File History…", "command": "sublime_merge_file_history" }, 5 | { "caption": "-", "id": "file" }, 6 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Open Containing Folder…" }, 7 | { "command": "copy_path", "caption": "Copy File Path" }, 8 | { "command": "reveal_in_side_bar", "caption": "Reveal in Side Bar" }, 9 | { "command": "force_reopen_as", "args": {"type": "text"}, "caption": "Reopen File as Text" }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/4180/en/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "New File", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "Rename…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "Delete File", "command": "delete_file", "args": {"files": [], "prompt": false} }, 5 | { "caption": "Open Folder…", "command": "open_folder", "args": {"dirs": []} }, 6 | { "caption": "Open Containing Folder…", "command": "open_containing_folder", "args": {"files": []} }, 7 | { "caption": "Copy Path", "command": "copy_path_sidebar", "args": {"paths": []} }, 8 | { "caption": "Reveal Link Source", "command": "reveal_link_source", "args": {"dirs": []} }, 9 | { "caption": "-", "id": "repo_commands" }, 10 | { "caption": "Open Git Repository…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 11 | { "caption": "File History…", "command": "sublime_merge_file_history", "args": {"files": []}}, 12 | { "caption": "Folder History…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 13 | { "caption": "Blame File…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 14 | { "caption": "-", "id": "folder_commands" }, 15 | { "caption": "New Folder…", "command": "new_folder", "args": {"dirs": []} }, 16 | { "caption": "Delete Folder", "command": "delete_folder", "args": {"dirs": [], "prompt": true} }, 17 | { "caption": "Find in Folder…", "command": "find_in_folder", "args": {"dirs": []} }, 18 | { "caption": "-", "id": "end" } 19 | ] 20 | -------------------------------------------------------------------------------- /menu/4180/en/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tab" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Other Tabs" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Close Selected Tabs" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "Close Unselected Tabs" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tabs to the Right" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs to the Right" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Close Tabs With Deleted Files" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "Split View" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "New File" }, 15 | { "command": "prompt_open_file", "caption": "Open File" }, 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4180/en/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tab" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Other Tabs" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Close Selected Tabs" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Close Unselected Tabs" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tabs Below" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs Below" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Close Tabs With Deleted Files" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "New File" }, 13 | { "command": "prompt_open_file", "caption": "Open File" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4180/hu/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url" }, 3 | { "command": "goto_definition", "caption": "Ugrás a definícióra" }, 4 | { "caption": "-", "id": "diff" }, 5 | { "command": "toggle_inline_diff" }, 6 | { "command": "revert_hunk", "caption": "Szakasz visszavonása" }, 7 | { "caption": "-", "id": "clipboard" }, 8 | { "command": "cut", "caption": "Kivágás" }, 9 | { "command": "copy", "caption": "Másolás" }, 10 | { "command": "paste", "caption": "Beillesztés" }, 11 | { "caption": "-", "id": "selection" }, 12 | { "command": "select_all" }, 13 | { "caption": "-", "id": "repo_commands" }, 14 | { "caption": "Git adattár megnyitása…", "command": "sublime_merge_open_repo" }, 15 | { "caption": "Fájltörténet…", "command": "sublime_merge_file_history" }, 16 | { "caption": "Sortörténet…", "command": "sublime_merge_line_history" }, 17 | { "caption": "Felelős szerzők/commit-ok…", "command": "sublime_merge_blame_file" }, 18 | { "caption": "-", "id": "file" }, 19 | { "command": "open_in_browser", "caption": "Megnyitás böngészőben" }, 20 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Megnyitás mappában…" }, 21 | { "command": "copy_path", "caption": "Fájlútvonal másolása" }, 22 | { "command": "reveal_in_side_bar", "caption": "Megjelenítáé az oldalsávon" }, 23 | { "command": "force_reopen_as", "args": {"type": "image"}, "caption": "Fájl újranyitása képként" }, 24 | { "caption": "-", "id": "end" } 25 | ] 26 | -------------------------------------------------------------------------------- /menu/4180/hu/Image Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "repo_commands" }, 3 | { "caption": "Git adattár megnyitása…", "command": "sublime_merge_open_repo" }, 4 | { "caption": "Fájltörténet…", "command": "sublime_merge_file_history" }, 5 | { "caption": "-", "id": "file" }, 6 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Megnyitás mappában…" }, 7 | { "command": "copy_path", "caption": "Fájlútvonal másolása" }, 8 | { "command": "reveal_in_side_bar", "caption": "Megjelenítés az oldalsávon" }, 9 | { "command": "force_reopen_as", "args": {"type": "text"}, "caption": "Fájl újranyitása szövegként" }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/4180/hu/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Lap bezárása" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Többi lap bezárása" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Kiválasztott lapok bezárása" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "Nem kiválasztott lapok bezárása" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Jobbra lévő lapok bezárása" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Változatlan lapok bezárása" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Jobbra lévő, változatlan lapok bezárása" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Törölt fájlokhoz tartozó lapok bezárása" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "Hozzáadás osztott nézethez" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "Új fájl" }, 15 | { "command": "prompt_open_file", "caption": "Fájl megnyitása" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4180/hu/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Lap bezárása" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Többi lap bezárása" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Kiválasztott lapok bezárása" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Nem kiválasztott lapok bezárása" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Lenti lapok bezárása" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Változatlan lapok bezárása" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Lenti, változatlan lapok bezárása" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Törölt fájlokhoz tartozó lapok bezárása" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "Új fájl" }, 13 | { "command": "prompt_open_file", "caption": "Fájl megnyitása" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4180/zh_CN/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url", "caption": "打开URL链接" }, 3 | { "command": "goto_definition", "caption": "转到定义处" }, 4 | { "caption": "-", "id": "diff" }, 5 | { "command": "toggle_inline_diff", "caption": "切换显示行内差异" }, 6 | { "command": "revert_hunk", "caption": "还原差异块" }, 7 | { "caption": "-", "id": "clipboard" }, 8 | { "command": "cut", "caption": "剪切" }, 9 | { "command": "copy", "caption": "复制" }, 10 | { "command": "paste", "caption": "粘贴" }, 11 | { "caption": "-", "id": "selection" }, 12 | { "command": "select_all", "caption": "全选" }, 13 | { "caption": "-", "id": "repo_commands" }, 14 | { "caption": "打开Git仓库…", "command": "sublime_merge_open_repo" }, 15 | { "caption": "文件历史…", "command": "sublime_merge_file_history" }, 16 | { "caption": "行历史…", "command": "sublime_merge_line_history" }, 17 | { "caption": "审查文件…", "command": "sublime_merge_blame_file" }, 18 | { "caption": "-", "id": "file" }, 19 | { "command": "open_in_browser", "caption": "在浏览器中打开" }, 20 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "打开所在文件夹…" }, 21 | { "command": "copy_path", "caption": "复制文件路径" }, 22 | { "command": "reveal_in_side_bar", "caption": "在侧边栏中显示" }, 23 | { "command": "force_reopen_as", "args": {"type": "image"}, "caption": "作为图片重新打开" }, 24 | { "caption": "-", "id": "end" } 25 | ] 26 | -------------------------------------------------------------------------------- /menu/4180/zh_CN/Image Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "repo_commands" }, 3 | { "caption": "打开Git仓库…", "command": "sublime_merge_open_repo" }, 4 | { "caption": "文件历史…", "command": "sublime_merge_file_history" }, 5 | { "caption": "-", "id": "file" }, 6 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "打开所在文件夹…" }, 7 | { "command": "copy_path", "caption": "复制文件路径" }, 8 | { "command": "reveal_in_side_bar", "caption": "在侧边栏中显示" }, 9 | { "command": "force_reopen_as", "args": {"type": "text"}, "caption": "作为文本重新打开" }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/4180/zh_CN/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "新建文件", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "重命名…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "删除文件", "command": "delete_file", "args": {"files": [], "prompt": false} }, 5 | { "caption": "打开文件夹…", "command": "open_folder", "args": {"dirs": []} }, 6 | { "caption": "打开所在文件夹…", "command": "open_containing_folder", "args": {"files": []} }, 7 | { "caption": "复制文件路径", "command": "copy_path_sidebar", "args": {"paths": []} }, 8 | { "caption": "打开链接目录", "command": "reveal_link_source", "args": {"dirs": []} }, 9 | { "caption": "-", "id": "repo_commands" }, 10 | { "caption": "打开Git仓库…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 11 | { "caption": "文件历史…", "command": "sublime_merge_file_history", "args": {"files": []}}, 12 | { "caption": "目录历史…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 13 | { "caption": "审查文件…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 14 | { "caption": "-", "id": "folder_commands" }, 15 | { "caption": "新建文件夹…", "command": "new_folder", "args": {"dirs": []} }, 16 | { "caption": "删除文件夹", "command": "delete_folder", "args": {"dirs": [], "prompt": true} }, 17 | { "caption": "在文件夹中查找…", "command": "find_in_folder", "args": {"dirs": []} }, 18 | { "caption": "-", "id": "end" } 19 | ] 20 | -------------------------------------------------------------------------------- /menu/4180/zh_CN/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "关闭已选" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "关闭未选" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭右侧" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "关闭未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭右侧未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "关闭已删" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "拆分视图" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "新建文件" }, 15 | { "command": "prompt_open_file", "caption": "打开文件" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4180/zh_CN/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "关闭已选" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "关闭未选" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭以下" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "关闭未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭以下未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "关闭已删" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "新建文件" }, 13 | { "command": "prompt_open_file", "caption": "打开文件" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4180/zh_TW/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url", "caption": "打開URL鏈接" }, 3 | { "command": "goto_definition", "caption": "轉到定義處" }, 4 | { "caption": "-", "id": "diff" }, 5 | { "command": "toggle_inline_diff", "caption": "切換顯示行內差異" }, 6 | { "command": "revert_hunk", "caption": "還原差異塊" }, 7 | { "caption": "-", "id": "clipboard" }, 8 | { "command": "cut", "caption": "剪切" }, 9 | { "command": "copy", "caption": "復制" }, 10 | { "command": "paste", "caption": "粘貼" }, 11 | { "caption": "-", "id": "selection" }, 12 | { "command": "select_all", "caption": "全選" }, 13 | { "caption": "-", "id": "repo_commands" }, 14 | { "caption": "打開Git倉庫…", "command": "sublime_merge_open_repo" }, 15 | { "caption": "文件歷史…", "command": "sublime_merge_file_history" }, 16 | { "caption": "行歷史…", "command": "sublime_merge_line_history" }, 17 | { "caption": "審查文件…", "command": "sublime_merge_blame_file" }, 18 | { "caption": "-", "id": "file" }, 19 | { "command": "open_in_browser", "caption": "在瀏覽器中打開" }, 20 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "打開所在文件夾…" }, 21 | { "command": "copy_path", "caption": "復制文件路徑" }, 22 | { "command": "reveal_in_side_bar", "caption": "在側邊欄中顯示" }, 23 | { "command": "force_reopen_as", "args": {"type": "image"}, "caption": "作為圖片重新打開"}, 24 | { "caption": "-", "id": "end" } 25 | ] 26 | -------------------------------------------------------------------------------- /menu/4180/zh_TW/Image Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "repo_commands" }, 3 | { "caption": "打開Git倉庫…", "command": "sublime_merge_open_repo" }, 4 | { "caption": "文件歷史…", "command": "sublime_merge_file_history" }, 5 | { "caption": "-", "id": "file" }, 6 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "打開所在文件夾…" }, 7 | { "command": "copy_path", "caption": "復制文件路徑" }, 8 | { "command": "reveal_in_side_bar", "caption": "在側邊欄中顯示" }, 9 | { "command": "force_reopen_as", "args": {"type": "text"}, "caption": "作為文本重新打開" }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/4180/zh_TW/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "新建文件", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "重命名…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "刪除文件", "command": "delete_file", "args": {"files": [], "prompt": false} }, 5 | { "caption": "打開文件夾…", "command": "open_folder", "args": {"dirs": []} }, 6 | { "caption": "打開所在文件夾…", "command": "open_containing_folder", "args": {"files": []} }, 7 | { "caption": "複制文件路徑", "command": "copy_path_sidebar", "args": {"paths": []} }, 8 | { "caption": "打開鏈接目錄", "command": "reveal_link_source", "args": {"dirs": []} }, 9 | { "caption": "-", "id": "repo_commands" }, 10 | { "caption": "打開Git倉庫…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 11 | { "caption": "文件歷史…", "command": "sublime_merge_file_history", "args": {"files": []}}, 12 | { "caption": "目錄歷史…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 13 | { "caption": "審查文件…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 14 | { "caption": "-", "id": "folder_commands" }, 15 | { "caption": "新建文件夾…", "command": "new_folder", "args": {"dirs": []} }, 16 | { "caption": "刪除文件夾", "command": "delete_folder", "args": {"dirs": [], "prompt": true} }, 17 | { "caption": "在文件夾中查找…", "command": "find_in_folder", "args": {"dirs": []} }, 18 | { "caption": "-", "id": "end" } 19 | ] 20 | -------------------------------------------------------------------------------- /menu/4180/zh_TW/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "關閉已選" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "關閉未選" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉右側" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "關閉未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉右側未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "關閉已刪" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "拆分視圖" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "新建文件" }, 15 | { "command": "prompt_open_file", "caption": "打開文件" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4180/zh_TW/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "關閉已選" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "關閉未選" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉以下" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "關閉未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉以下未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "關閉已刪" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "新建文件" }, 13 | { "command": "prompt_open_file", "caption": "打開文件" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4186/en/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url" }, 3 | { "command": "goto_definition", "caption": "Goto Definition" }, 4 | { "caption": "-", "id": "diff" }, 5 | { "command": "toggle_inline_diff" }, 6 | { "command": "revert_hunk", "caption": "Revert Diff Hunk" }, 7 | { "caption": "-", "id": "clipboard" }, 8 | { "command": "cut" }, 9 | { "command": "copy" }, 10 | { "command": "paste" }, 11 | { "caption": "-", "id": "selection" }, 12 | { "command": "select_all" }, 13 | { "caption": "-", "id": "repo_commands" }, 14 | { "caption": "Open Git Repository…", "command": "sublime_merge_open_repo" }, 15 | { "caption": "File History…", "command": "sublime_merge_file_history" }, 16 | { "caption": "Line History…", "command": "sublime_merge_line_history" }, 17 | { "caption": "Blame File…", "command": "sublime_merge_blame_file" }, 18 | { "caption": "-", "id": "file" }, 19 | { "command": "open_in_browser", "caption": "Open in Browser" }, 20 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Open Containing Folder…" }, 21 | { "command": "copy_path", "caption": "Copy File Path" }, 22 | { "command": "reveal_in_side_bar", "caption": "Reveal in Side Bar" }, 23 | { "command": "force_reopen_as", "args": {"type": "image"}, "caption": "Reopen File as Image" }, 24 | { "caption": "-", "id": "end" } 25 | ] 26 | -------------------------------------------------------------------------------- /menu/4186/en/Image Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "repo_commands" }, 3 | { "caption": "Open Git Repository…", "command": "sublime_merge_open_repo" }, 4 | { "caption": "File History…", "command": "sublime_merge_file_history" }, 5 | { "caption": "-", "id": "file" }, 6 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Open Containing Folder…" }, 7 | { "command": "copy_path", "caption": "Copy File Path" }, 8 | { "command": "reveal_in_side_bar", "caption": "Reveal in Side Bar" }, 9 | { "command": "force_reopen_as", "args": {"type": "text"}, "caption": "Reopen File as Text" }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/4186/en/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "New File", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "Rename…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "Delete File", "command": "delete_file", "args": {"files": [], "prompt": false} }, 5 | { "caption": "Open Folder…", "command": "open_folder", "args": {"dirs": []} }, 6 | { "caption": "Open Containing Folder…", "command": "open_containing_folder", "args": {"files": []} }, 7 | { "caption": "Copy Path", "command": "copy_path_sidebar", "args": {"paths": []} }, 8 | { "caption": "Reveal Link Source", "command": "reveal_link_source", "args": {"dirs": []} }, 9 | { "caption": "-", "id": "repo_commands" }, 10 | { "caption": "Open Git Repository…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 11 | { "caption": "File History…", "command": "sublime_merge_file_history", "args": {"files": []}}, 12 | { "caption": "Folder History…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 13 | { "caption": "Blame File…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 14 | { "caption": "-", "id": "folder_commands" }, 15 | { "caption": "New Folder…", "command": "new_folder", "args": {"dirs": []} }, 16 | { "caption": "Delete Folder", "command": "delete_folder", "args": {"dirs": [], "prompt": true} }, 17 | { "caption": "Find in Folder…", "command": "find_in_folder", "args": {"dirs": []} }, 18 | { "caption": "-", "id": "end" } 19 | ] 20 | -------------------------------------------------------------------------------- /menu/4186/en/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tab" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Other Tabs" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Close Selected Tabs" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "Close Unselected Tabs" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tabs to the Right" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs to the Right" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Close Tabs With Deleted Files" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "Split View" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "New File" }, 15 | { "command": "prompt_open_file", "caption": "Open File" }, 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4186/en/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tab" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Other Tabs" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Close Selected Tabs" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Close Unselected Tabs" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tabs Below" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs Below" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Close Tabs With Deleted Files" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "New File" }, 13 | { "command": "prompt_open_file", "caption": "Open File" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4186/hu/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url" }, 3 | { "command": "goto_definition", "caption": "Ugrás a definícióra" }, 4 | { "caption": "-", "id": "diff" }, 5 | { "command": "toggle_inline_diff" }, 6 | { "command": "revert_hunk", "caption": "Szakasz visszavonása" }, 7 | { "caption": "-", "id": "clipboard" }, 8 | { "command": "cut", "caption": "Kivágás" }, 9 | { "command": "copy", "caption": "Másolás" }, 10 | { "command": "paste", "caption": "Beillesztés" }, 11 | { "caption": "-", "id": "selection" }, 12 | { "command": "select_all" }, 13 | { "caption": "-", "id": "repo_commands" }, 14 | { "caption": "Git adattár megnyitása…", "command": "sublime_merge_open_repo" }, 15 | { "caption": "Fájltörténet…", "command": "sublime_merge_file_history" }, 16 | { "caption": "Sortörténet…", "command": "sublime_merge_line_history" }, 17 | { "caption": "Felelős szerzők/commit-ok…", "command": "sublime_merge_blame_file" }, 18 | { "caption": "-", "id": "file" }, 19 | { "command": "open_in_browser", "caption": "Megnyitás böngészőben" }, 20 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Megnyitás mappában…" }, 21 | { "command": "copy_path", "caption": "Fájlútvonal másolása" }, 22 | { "command": "reveal_in_side_bar", "caption": "Megjelenítáé az oldalsávon" }, 23 | { "command": "force_reopen_as", "args": {"type": "image"}, "caption": "Fájl újranyitása képként" }, 24 | { "caption": "-", "id": "end" } 25 | ] 26 | -------------------------------------------------------------------------------- /menu/4186/hu/Image Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "repo_commands" }, 3 | { "caption": "Git adattár megnyitása…", "command": "sublime_merge_open_repo" }, 4 | { "caption": "Fájltörténet…", "command": "sublime_merge_file_history" }, 5 | { "caption": "-", "id": "file" }, 6 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Megnyitás mappában…" }, 7 | { "command": "copy_path", "caption": "Fájlútvonal másolása" }, 8 | { "command": "reveal_in_side_bar", "caption": "Megjelenítés az oldalsávon" }, 9 | { "command": "force_reopen_as", "args": {"type": "text"}, "caption": "Fájl újranyitása szövegként" }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/4186/hu/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Lap bezárása" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Többi lap bezárása" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Kiválasztott lapok bezárása" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "Nem kiválasztott lapok bezárása" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Jobbra lévő lapok bezárása" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Változatlan lapok bezárása" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Jobbra lévő, változatlan lapok bezárása" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Törölt fájlokhoz tartozó lapok bezárása" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "Hozzáadás osztott nézethez" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "Új fájl" }, 15 | { "command": "prompt_open_file", "caption": "Fájl megnyitása" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4186/hu/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Lap bezárása" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Többi lap bezárása" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Kiválasztott lapok bezárása" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Nem kiválasztott lapok bezárása" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Lenti lapok bezárása" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Változatlan lapok bezárása" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Lenti, változatlan lapok bezárása" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Törölt fájlokhoz tartozó lapok bezárása" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "Új fájl" }, 13 | { "command": "prompt_open_file", "caption": "Fájl megnyitása" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4186/zh_CN/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url", "caption": "打开URL链接" }, 3 | { "command": "goto_definition", "caption": "转到定义处" }, 4 | { "caption": "-", "id": "diff" }, 5 | { "command": "toggle_inline_diff", "caption": "切换显示行内差异" }, 6 | { "command": "revert_hunk", "caption": "还原差异块" }, 7 | { "caption": "-", "id": "clipboard" }, 8 | { "command": "cut", "caption": "剪切" }, 9 | { "command": "copy", "caption": "复制" }, 10 | { "command": "paste", "caption": "粘贴" }, 11 | { "caption": "-", "id": "selection" }, 12 | { "command": "select_all", "caption": "全选" }, 13 | { "caption": "-", "id": "repo_commands" }, 14 | { "caption": "打开Git仓库…", "command": "sublime_merge_open_repo" }, 15 | { "caption": "文件历史…", "command": "sublime_merge_file_history" }, 16 | { "caption": "行历史…", "command": "sublime_merge_line_history" }, 17 | { "caption": "审查文件…", "command": "sublime_merge_blame_file" }, 18 | { "caption": "-", "id": "file" }, 19 | { "command": "open_in_browser", "caption": "在浏览器中打开" }, 20 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "打开所在文件夹…" }, 21 | { "command": "copy_path", "caption": "复制文件路径" }, 22 | { "command": "reveal_in_side_bar", "caption": "在侧边栏中显示" }, 23 | { "command": "force_reopen_as", "args": {"type": "image"}, "caption": "作为图片重新打开" }, 24 | { "caption": "-", "id": "end" } 25 | ] 26 | -------------------------------------------------------------------------------- /menu/4186/zh_CN/Image Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "repo_commands" }, 3 | { "caption": "打开Git仓库…", "command": "sublime_merge_open_repo" }, 4 | { "caption": "文件历史…", "command": "sublime_merge_file_history" }, 5 | { "caption": "-", "id": "file" }, 6 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "打开所在文件夹…" }, 7 | { "command": "copy_path", "caption": "复制文件路径" }, 8 | { "command": "reveal_in_side_bar", "caption": "在侧边栏中显示" }, 9 | { "command": "force_reopen_as", "args": {"type": "text"}, "caption": "作为文本重新打开" }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/4186/zh_CN/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "新建文件", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "重命名…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "删除文件", "command": "delete_file", "args": {"files": [], "prompt": false} }, 5 | { "caption": "打开文件夹…", "command": "open_folder", "args": {"dirs": []} }, 6 | { "caption": "打开所在文件夹…", "command": "open_containing_folder", "args": {"files": []} }, 7 | { "caption": "复制文件路径", "command": "copy_path_sidebar", "args": {"paths": []} }, 8 | { "caption": "打开链接目录", "command": "reveal_link_source", "args": {"dirs": []} }, 9 | { "caption": "-", "id": "repo_commands" }, 10 | { "caption": "打开Git仓库…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 11 | { "caption": "文件历史…", "command": "sublime_merge_file_history", "args": {"files": []}}, 12 | { "caption": "目录历史…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 13 | { "caption": "审查文件…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 14 | { "caption": "-", "id": "folder_commands" }, 15 | { "caption": "新建文件夹…", "command": "new_folder", "args": {"dirs": []} }, 16 | { "caption": "删除文件夹", "command": "delete_folder", "args": {"dirs": [], "prompt": true} }, 17 | { "caption": "在文件夹中查找…", "command": "find_in_folder", "args": {"dirs": []} }, 18 | { "caption": "-", "id": "end" } 19 | ] 20 | -------------------------------------------------------------------------------- /menu/4186/zh_CN/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "关闭已选" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "关闭未选" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭右侧" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "关闭未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭右侧未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "关闭已删" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "拆分视图" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "新建文件" }, 15 | { "command": "prompt_open_file", "caption": "打开文件" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4186/zh_CN/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "关闭已选" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "关闭未选" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭以下" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "关闭未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "关闭以下未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "关闭已删" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "新建文件" }, 13 | { "command": "prompt_open_file", "caption": "打开文件" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4186/zh_TW/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url", "caption": "打開URL鏈接" }, 3 | { "command": "goto_definition", "caption": "轉到定義處" }, 4 | { "caption": "-", "id": "diff" }, 5 | { "command": "toggle_inline_diff", "caption": "切換顯示行內差異" }, 6 | { "command": "revert_hunk", "caption": "還原差異塊" }, 7 | { "caption": "-", "id": "clipboard" }, 8 | { "command": "cut", "caption": "剪切" }, 9 | { "command": "copy", "caption": "復制" }, 10 | { "command": "paste", "caption": "粘貼" }, 11 | { "caption": "-", "id": "selection" }, 12 | { "command": "select_all", "caption": "全選" }, 13 | { "caption": "-", "id": "repo_commands" }, 14 | { "caption": "打開Git倉庫…", "command": "sublime_merge_open_repo" }, 15 | { "caption": "文件歷史…", "command": "sublime_merge_file_history" }, 16 | { "caption": "行歷史…", "command": "sublime_merge_line_history" }, 17 | { "caption": "審查文件…", "command": "sublime_merge_blame_file" }, 18 | { "caption": "-", "id": "file" }, 19 | { "command": "open_in_browser", "caption": "在瀏覽器中打開" }, 20 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "打開所在文件夾…" }, 21 | { "command": "copy_path", "caption": "復制文件路徑" }, 22 | { "command": "reveal_in_side_bar", "caption": "在側邊欄中顯示" }, 23 | { "command": "force_reopen_as", "args": {"type": "image"}, "caption": "作為圖片重新打開"}, 24 | { "caption": "-", "id": "end" } 25 | ] 26 | -------------------------------------------------------------------------------- /menu/4186/zh_TW/Image Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "repo_commands" }, 3 | { "caption": "打開Git倉庫…", "command": "sublime_merge_open_repo" }, 4 | { "caption": "文件歷史…", "command": "sublime_merge_file_history" }, 5 | { "caption": "-", "id": "file" }, 6 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "打開所在文件夾…" }, 7 | { "command": "copy_path", "caption": "復制文件路徑" }, 8 | { "command": "reveal_in_side_bar", "caption": "在側邊欄中顯示" }, 9 | { "command": "force_reopen_as", "args": {"type": "text"}, "caption": "作為文本重新打開" }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/4186/zh_TW/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "新建文件", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "重命名…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "刪除文件", "command": "delete_file", "args": {"files": [], "prompt": false} }, 5 | { "caption": "打開文件夾…", "command": "open_folder", "args": {"dirs": []} }, 6 | { "caption": "打開所在文件夾…", "command": "open_containing_folder", "args": {"files": []} }, 7 | { "caption": "複制文件路徑", "command": "copy_path_sidebar", "args": {"paths": []} }, 8 | { "caption": "打開鏈接目錄", "command": "reveal_link_source", "args": {"dirs": []} }, 9 | { "caption": "-", "id": "repo_commands" }, 10 | { "caption": "打開Git倉庫…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 11 | { "caption": "文件歷史…", "command": "sublime_merge_file_history", "args": {"files": []}}, 12 | { "caption": "目錄歷史…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 13 | { "caption": "審查文件…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 14 | { "caption": "-", "id": "folder_commands" }, 15 | { "caption": "新建文件夾…", "command": "new_folder", "args": {"dirs": []} }, 16 | { "caption": "刪除文件夾", "command": "delete_folder", "args": {"dirs": [], "prompt": true} }, 17 | { "caption": "在文件夾中查找…", "command": "find_in_folder", "args": {"dirs": []} }, 18 | { "caption": "-", "id": "end" } 19 | ] 20 | -------------------------------------------------------------------------------- /menu/4186/zh_TW/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "關閉已選" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "關閉未選" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉右側" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "關閉未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉右側未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "關閉已刪" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "拆分視圖" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "新建文件" }, 15 | { "command": "prompt_open_file", "caption": "打開文件" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4186/zh_TW/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉其它" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "關閉已選" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "關閉未選" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉以下" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "關閉未改" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "關閉以下未改" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "關閉已刪" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "新建文件" }, 13 | { "command": "prompt_open_file", "caption": "打開文件" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4192/en/Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "open_context_url" }, 3 | { "command": "goto_definition", "caption": "Goto Definition" }, 4 | { "caption": "-", "id": "diff" }, 5 | { "command": "toggle_inline_diff" }, 6 | { "command": "revert_hunk", "caption": "Revert Diff Hunk" }, 7 | { "caption": "-", "id": "clipboard" }, 8 | { "command": "cut" }, 9 | { "command": "copy" }, 10 | { "command": "paste" }, 11 | { "caption": "-", "id": "selection" }, 12 | { "command": "select_all" }, 13 | { "caption": "-", "id": "repo_commands" }, 14 | { "caption": "Open Git Repository…", "command": "sublime_merge_open_repo" }, 15 | { "caption": "File History…", "command": "sublime_merge_file_history" }, 16 | { "caption": "Line History…", "command": "sublime_merge_line_history" }, 17 | { "caption": "Blame File…", "command": "sublime_merge_blame_file" }, 18 | { "caption": "-", "id": "file" }, 19 | { "command": "open_in_browser", "caption": "Open in Browser" }, 20 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Open Containing Folder…" }, 21 | { "command": "copy_path", "caption": "Copy File Path" }, 22 | { "command": "reveal_in_side_bar", "caption": "Reveal in Side Bar" }, 23 | { "command": "force_reopen_as", "args": {"type": "image"}, "caption": "Reopen File as Image" }, 24 | { "caption": "-", "id": "end" } 25 | ] 26 | -------------------------------------------------------------------------------- /menu/4192/en/Image Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "repo_commands" }, 3 | { "caption": "Open Git Repository…", "command": "sublime_merge_open_repo" }, 4 | { "caption": "File History…", "command": "sublime_merge_file_history" }, 5 | { "caption": "-", "id": "file" }, 6 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Open Containing Folder…" }, 7 | { "command": "copy_path", "caption": "Copy File Path" }, 8 | { "command": "reveal_in_side_bar", "caption": "Reveal in Side Bar" }, 9 | { "command": "force_reopen_as", "args": {"type": "text"}, "caption": "Reopen File as Text" }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/4192/en/Side Bar.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "New File", "command": "new_file_at", "args": {"dirs": []} }, 3 | { "caption": "Rename…", "command": "rename_path", "args": {"paths": []} }, 4 | { "caption": "Delete File", "command": "delete_file", "args": {"files": [], "prompt": false} }, 5 | { "caption": "Open Folder…", "command": "open_folder", "args": {"dirs": []} }, 6 | { "caption": "Open Containing Folder…", "command": "open_containing_folder", "args": {"files": []} }, 7 | { "caption": "Copy Path", "command": "copy_path_sidebar", "args": {"paths": []} }, 8 | { "caption": "Reveal Link Source", "command": "reveal_link_source", "args": {"dirs": []} }, 9 | { "caption": "-", "id": "repo_commands" }, 10 | { "caption": "Open Git Repository…", "command": "sublime_merge_open_repo", "args": {"paths": []}}, 11 | { "caption": "File History…", "command": "sublime_merge_file_history", "args": {"files": []}}, 12 | { "caption": "Folder History…", "command": "sublime_merge_folder_history", "args": {"paths": []}}, 13 | { "caption": "Blame File…", "command": "sublime_merge_blame_file", "args": {"files": []}}, 14 | { "caption": "-", "id": "folder_commands" }, 15 | { "caption": "New Folder…", "command": "new_folder", "args": {"dirs": []} }, 16 | { "caption": "Delete Folder", "command": "delete_folder", "args": {"dirs": [], "prompt": true} }, 17 | { "caption": "Find in Folder…", "command": "find_in_folder", "args": {"dirs": []} }, 18 | { "caption": "-", "id": "end" } 19 | ] 20 | -------------------------------------------------------------------------------- /menu/4192/en/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tab" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Other Tabs" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Close Selected Tabs" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "Close Unselected Tabs" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tabs to the Right" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs to the Right" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Close Tabs With Deleted Files" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "Split View" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "New File" }, 15 | { "command": "prompt_open_file", "caption": "Open File" }, 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4192/en/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tab" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Other Tabs" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Close Selected Tabs" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Close Unselected Tabs" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Tabs Below" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Close Unmodified Tabs Below" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Close Tabs With Deleted Files" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "New File" }, 13 | { "command": "prompt_open_file", "caption": "Open File" } 14 | ] 15 | -------------------------------------------------------------------------------- /menu/4192/es/Image Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "caption": "-", "id": "repo_commands" }, 3 | { "caption": "Abrir repositorio Git…", "command": "sublime_merge_open_repo" }, 4 | { "caption": "Historial del Archivo…", "command": "sublime_merge_file_history" }, 5 | { "caption": "-", "id": "file" }, 6 | { "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"}, "caption": "Abrir Carpeta Contenedora…" }, 7 | { "command": "copy_path", "caption": "Copiar Ruta del Archivo" }, 8 | { "command": "reveal_in_side_bar", "caption": "Mostrar en la Barra Lateral" }, 9 | { "command": "force_reopen_as", "args": {"type": "text"}, "caption": "Reabrir Archivo Como Texto" }, 10 | { "caption": "-", "id": "end" } 11 | ] 12 | -------------------------------------------------------------------------------- /menu/4192/es/Tab Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestaña" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Otras Pestañas" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Cerrar Pestañas Seleccionadas" }, 6 | { "command": "close_unselected", "args": {"group":-1, "index": -1}, "caption": "Cerrar Pestañas No Seleccionadas" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas a la Derecha" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas Sin Modificar" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas No Modificadas a la Derecha" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Cerrar Pestañas Con el Archivo Borrado" }, 11 | { "caption": "-" }, 12 | { "command": "clone_file", "args": { "add_to_selection": true, "group": -1, "index": -1, "retain_viewport_position": true }, "caption": "Clonar Vista" }, 13 | { "caption": "-" }, 14 | { "command": "new_file", "caption": "Nuevo Archivo" }, 15 | { "command": "prompt_open_file", "caption": "Abrir Archivo" } 16 | ] 17 | -------------------------------------------------------------------------------- /menu/4192/es/Tab Sidebar Context.sublime-menu.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "command": "close_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestaña" }, 3 | { "command": "close_others_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Otras Pestañas" }, 4 | { "caption": "-" }, 5 | { "command": "close_selected", "args": {"group":-1, "index": -1}, "caption": "Cerrar Pestañas Seleccionadas" }, 6 | { "command": "close_unselected", "args": {"group": -1, "index": -1}, "caption": "Cerrar Pestañas No Seleccionadas" }, 7 | { "command": "close_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas Inferiores" }, 8 | { "command": "close_unmodified", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas Sin Modificar" }, 9 | { "command": "close_unmodified_to_right_by_index", "args": { "group": -1, "index": -1 }, "caption": "Cerrar Pestañas Inferiores Sin Modificar" }, 10 | { "command": "close_deleted_files", "args": { "group": -1 }, "caption": "Cerrar Pestañas Con Archivos Borrados" }, 11 | { "caption": "-" }, 12 | { "command": "new_file", "caption": "Nuevo Archivo" }, 13 | { "command": "prompt_open_file", "caption": "Abrir Archivo" } 14 | ] 15 | --------------------------------------------------------------------------------