forked from alefragnani/vscode-bookmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.nls.json
61 lines (61 loc) · 6.41 KB
/
package.nls.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"bookmarks.activitybar.title": "Bookmarks",
"bookmarks.views.Explorer.name": "Explorer",
"bookmarks.views.HelpAndFeedback.name": "Help and Feedback",
"bookmarks.viewsWelcome.bookmarksExplorer.contents.whenEmpty": "In order to use Bookmarks, you have to open a folder or workspace first.\n[Open a Folder](command:_bookmarks.openFolderWelcome)\n[Open a Workspace](command:workbench.action.openWorkspace)\nTo learn more about how to use Bookmarks in VS Code [read the docs](http://github.com/alefragnani/vscode-bookmarks/#bookmarks).",
"bookmarks.viewsWelcome.bookmarksExplorer.contents.whenNoFileOpen": "No bookmarks yet.\nIn order to use Bookmarks, you have to open a file in the editor.\n[Open a File](command:workbench.action.quickOpen)\nTo learn more about how to use Bookmarks in VS Code [read the docs](http://github.com/alefragnani/vscode-bookmarks/#bookmarks).",
"bookmarks.viewsWelcome.bookmarksExplorer.contents.whenHasFileOpen": "No bookmarks yet.\nIn order to use Bookmarks, place the cursor in any location in the file and run the command:\n[Bookmarks: Toggle](command:bookmarks.toggle)\nTo learn more about how to use Bookmarks in VS Code [read the docs](http://github.com/alefragnani/vscode-bookmarks/#bookmarks).",
"bookmarks.editor.context.label": "Bookmarks",
"bookmarks.editor.title.label": "Bookmarks",
"bookmarks.commands.category.bookmarks": "Bookmarks",
"bookmarks.commands.category.bookmarks.selection": "Bookmarks (Selection)",
"bookmarks.commands.toggle.title": "Toggle",
"bookmarks.commands.jumpToNext.title": "Jump to Next",
"bookmarks.commands.jumpToPrevious.title": "Jump to Previous",
"bookmarks.commands.jumpTo.title": "Jump to Document/Line",
"bookmarks.commands.selectLines.title": "Select Lines",
"bookmarks.commands.expandSelectionToNext.title": "Expand Selection to Next",
"bookmarks.commands.expandSelectionToPrevious.title": "Expand Selection to Previous",
"bookmarks.commands.shrinkSelection.title": "Shrink Selection",
"bookmarks.commands.list.title": "List",
"bookmarks.commands.toggleLabeled.title": "Toggle Labeled",
"bookmarks.commands.refresh.title": "Refresh",
"bookmarks.commands.viewAsTree#sideBar.title": "View as Tree",
"bookmarks.commands.viewAsList#sideBar.title": "View as List",
"bookmarks.commands.openSettings.title": "Open Settings",
"bookmarks.commands.hidePosition.title": "Hide Position",
"bookmarks.commands.showPosition.title": "Show Position",
"bookmarks.commands.clear.title": "Clear",
"bookmarks.commands.clearFromFile.title": "Clear",
"bookmarks.commands.deleteBookmark.title": "Delete",
"bookmarks.commands.editLabel.title": "Edit Label",
"bookmarks.commands.listFromAllFiles.title": "List from All Files",
"bookmarks.commands.clearFromAllFiles.title": "Clear from All Files",
"bookmarks.commands.whatsNew.title": "What's New",
"bookmarks.commands.whatsNewContextMenu.title": "What's New",
"bookmarks.commands.openFolderWelcome.title": "Open Folder",
"bookmarks.commands.supportBookmarks.title": "Support Bookmarks",
"bookmarks.configuration.title": "Bookmarks",
"bookmarks.configuration.saveBookmarksInProject.description": "Allow bookmarks to be saved (and restored) locally in the opened Project/Folder instead of VS Code",
"bookmarks.configuration.gutterIconPath.description": "Path to another image to be presented as Bookmark",
"bookmarks.configuration.backgroundLineColor.description": "Background color of the decoration. Use rgba() and define transparent background colors to play well with other decorations. Ex.: rgba(21, 126, 251, 0.1)",
"bookmarks.configuration.backgroundLineColor.deprecation": "Use `bookmarks.lineBackground` in `workbench.colorCustomizations` instead",
"bookmarks.configuration.navigateThroughAllFiles.description": "Allow navigation look for bookmarks in all files in the project, instead of only the current",
"bookmarks.configuration.wrapNavigation.description": "Allow navigation to wrap around at the first and last bookmarks in scope (current file or all files)",
"bookmarks.configuration.useWorkaroundForFormatters.description": "Use a workaround for formatters like Prettier, which does not notify on document changes and messes Bookmark's Sticky behavior",
"bookmarks.configuration.experimental.enableNewStickyEngine.description": "Experimental. Enables the new Sticky engine with support for Formatters, improved source change detections and undo operations",
"bookmarks.configuration.showNoMoreBookmarksWarning.description": "Specifies whether a notification will be shown when attempting to navigate between bookmarks when no more exist.",
"bookmarks.configuration.showCommandsInContextMenu.description": "Specifies whether Bookmarks commands are displayed on the context menu",
"bookmarks.configuration.sidebar.expanded.description": "Specifies whether the Side Bar show be displayed expanded",
"bookmarks.configuration.multicursor.toggleMode.description": "Specifies how multi cursor handles already bookmarked lines",
"bookmarks.configuration.multicursor.toggleMode.enumDescriptions.allLinesAtOnce": "Creates bookmarks in all selected lines at once, if at least one of the lines don't have a bookmark",
"bookmarks.configuration.multicursor.toggleMode.enumDescriptions.eachLineIndependently": "Literally toggles a bookmark in each line, instead of making all lines equal",
"bookmarks.configuration.label.suggestion.description": "Specifies how labels are suggested when creating bookmarks",
"bookmarks.configuration.label.suggestion.enumDescriptions.dontUse": "Don't use the selection (original behavior)",
"bookmarks.configuration.label.suggestion.enumDescriptions.useWhenSelected": "Use the selected text (if available) directly, no confirmation required",
"bookmarks.configuration.label.suggestion.enumDescriptions.suggestWhenSelected": "Suggests the selected text (if available). You still need to confirm.",
"bookmarks.configuration.label.suggestion.enumDescriptions.suggestWhenSelectedOrLineWhenNoSelected": "Suggests the selected text (if available) or the entire line (when has no selection). You still need to confirm.",
"bookmarks.colors.lineBackground.description": "Background color for the bookmarked line",
"bookmarks.colors.lineBorder.description": "Background color for the border around the bookmarked line",
"bookmarks.colors.overviewRuler.description": "Overview ruler marker color for bookmarks"
}