-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.nls.json
78 lines (78 loc) · 7.57 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"description": "Solve Pintia (PTA) problems in VS Code",
"contributes.commands.pintia.openPintiaHome": "Open PTA's Home",
"contributes.commands.pintia.clearCache": "Clear Cache",
"contributes.commands.pintia.signIn": "Sign In",
"contributes.commands.pintia.signOut": "Sign Out",
"contributes.commands.pintia.refreshExplorer": "Refresh Problem Lists",
"contributes.commands.pintia.changeDefaultLanguage": "Change the Default Language",
"contributes.commands.pintia.changeWorkspaceFolder": "Change the Workspace Folder",
"contributes.commands.pintia.checkIn": "Check In PTA",
"contributes.commands.pintia.reportIssue": "Report Issue",
"contributes.commands.pintia.searchProblem": "Search Problem",
"contributes.commands.pintia.refreshProblemSearchIndex": "Refresh Problem Search Index",
"contributes.commands.pintia.openWorkspace": "Open the Pintia Workspace",
"contributes.commands.pintia.welcome": "Open Tutorial",
"contributes.commands.pintia.openExtensionRepo": "Open PTA Repo",
"contributes.commands.pintia.clearViewedProblems": "Clear Problem Preview History",
"contributes.commands.pintia.clearFavoriteProblems": "Clear My Favorites",
"contributes.views.pintia.pintiaExplorer": "Problems",
"contributes.views.pintia.pintiaMyFavorites": "My Favorites",
"contributes.views.pintia.pintiaProblemHistory": "Problem Preview History",
"contributes.viewsWelcome.pintiaExplorer": "Welcome to use the Pintia extension to practice PTA exercises. Please refer to the user manual for instructions on how to use this extension. Alternatively, visit the extension homepage at [vscode-pintia](https://github.com/jinzcdev/vscode-pintia) for more detailed information. \n[Sign in PTA](command:pintia.signIn) \n[Open Tutorial](command:pintia.welcome)",
"configuration.pintia.workspaceFolder": "The path of the workspace folder to store the problem files.",
"configuration.pintia.previewProblem.openAndCodeIt": "Specify whether to automatically open the code editor when previewing a problem. It is recommended not to set `#pintia.previewProblem.defaultOpenedMethod#` to `Always Ask` when enabled.",
"configuration.pintia.previewProblem.defaultOpenedMethod": "Specify the method of opening the code editor when previewing a problem and the default is `Always Ask`.",
"configuration.pintia.paging.pageSize": "Specify whether to page the problem list when the problem set is too large. It is not paged when pageSize is 0.",
"configuration.pintia.codeColorTheme": "Specify the code color theme.",
"configuration.pintia.showLocked": "Show locked problems.",
"configuration.pintia.enableStatusBar": "Specify whether the Pintia status bar is displayed.",
"configuration.pintia.autoCheckIn": "Specify whether to automatically check in Pintia's education supermarket when the Pintia Extension is activated.",
"configuration.pintia.defaultLanguage": "Default language for solving the problems.",
"configuration.pintia.editor.shortcuts": "Customize the shortcuts in editors.",
"configuration.pintia.editor.shortcuts.label.submit": "Submit",
"configuration.pintia.editor.shortcuts.label.test": "Test",
"configuration.pintia.editor.shortcuts.label.preview": "Preview",
"configuration.pintia.editor.shortcuts.submit": "Submit your answer to pintia.",
"configuration.pintia.editor.shortcuts.test": "Test your answer with customized test cases.",
"configuration.pintia.editor.shortcuts.preview": "Preview the problem in the webview.",
"configuration.pintia.searchIndex.ignoreZOJ": "Specify whether to ignore the problem set, ***ZOJ Problem Set***, in the problem search index.",
"configuration.pintia.searchIndex.ignoreLockedProblemSets": "Specify whether to ignore locked problem sets in the problem search index.",
"configuration.pintia.searchIndex.autoRefresh": "Specify whether to automatically refresh exercise problem search index when the Pintia Extension is activated. It is not recommended to set it due to the low-frequency update and time-consuming.",
"configuration.pintia.autoCreateProblemSetFolder": "Specify whether to automatically create a problem set folder and place source code files in this directory when coding a problem.",
"configuration.pintia.problemHistoryListSize": "Specify the size of the problem preview history list.",
"configuration.pintia.previewProblem.defaultOpenedMethod.alwaysAsk": "Always ask",
"configuration.pintia.previewProblem.defaultOpenedMethod.justOpenProblemFile": "Just open the problem file",
"configuration.pintia.previewProblem.defaultOpenedMethod.openInCurrentWindow": "Open in current window",
"configuration.pintia.previewProblem.defaultOpenedMethod.openInNewWindow": "Open in new window",
"configuration.pintia.previewProblem.defaultOpenedMethod.addToWorkspace": "Add to workspace",
"walkthroughs.title": "Get Started with Pintia (PTA)",
"walkthroughs.description": "Practice the problems in Pintia (PTA) in VS Code!",
"walkthroughs.overview.title": "Overview",
"walkthroughs.overview.description": "PTA Extension in VS Code\n[Open in GitHub](command:pintia.openExtensionRepo)",
"walkthroughs.overview.media.markdown": "docs/walkthroughs/Overview_en-US.md",
"walkthroughs.signIn.title": "Sign In",
"walkthroughs.signIn.description": "Use WeChat to scan QR codes to sign in the Pintia(PTA).\n[Sign In](command:pintia.signIn)",
"walkthroughs.signIn.media.altText": "Sign In",
"walkthroughs.previewProblem.title": "Preview/Code Problem",
"walkthroughs.previewProblem.description": "After logging in to your account, click on a problem title in the list to preview its content.",
"walkthroughs.previewProblem.media.altText": "Preview Problem",
"walkthroughs.submitTestSolution.title": "Submit/Test Solution",
"walkthroughs.submitTestSolution.description": "Click the shortcut ``Submit/Test`` in the editor to submit/test your solution to PTA.",
"walkthroughs.submitTestSolution.media.altText": "Submit & Test Solution",
"walkthroughs.searchProblem.title": "Search Problem",
"walkthroughs.searchProblem.description": "You can search for exercise problems in the following two ways:\n1. Open the [Command Palette](command:workbench.action.showCommands) and run the command \n``Pintia: Search Problem``.\n[Search Problem](command:pintia.searchProblem)\n2. Click the ``Search`` icon at the top of PTA view.",
"walkthroughs.searchProblem.media.altText": "Search for Problems",
"walkthroughs.testCustomSolution.title": "Test Custom Samples",
"walkthroughs.testCustomSolution.description": "Type ``ptatest`` to quickly add custom test samples\nClick ``Test custom sample N`` to test your samples.",
"walkthroughs.testCustomSolution.media.altText": "Test Custom Samples",
"walkthroughs.takeNotes.title": "Take Notes",
"walkthroughs.takeNotes.description": "Type ``ptanote`` to quickly add note block. You can take notes in Markdown.",
"walkthroughs.takeNotes.media.altText": "Take Notes",
"walkthroughs.addTemplates.title": "Add Code Templates",
"walkthroughs.addTemplates.description": "Type the prefix of ``pta`` to add common code templates",
"walkthroughs.addTemplates.media.altText": "Add Templates",
"walkthroughs.commandPalette.title": "Use Shortcut Commands",
"walkthroughs.commandPalette.description": "Open the [Command Palette](command:workbench.action.showCommands) and run shortcut commands.\n1. ``Cmd+Shift+P`` (in Mac)\n2. ``Ctrl+Shift+P`` (in Windows/Linux)",
"walkthroughs.commandPalette.media.markdown": "docs/walkthroughs/CMDs_en-US.md"
}