-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.nls.json
More file actions
93 lines (93 loc) · 10 KB
/
Copy pathpackage.nls.json
File metadata and controls
93 lines (93 loc) · 10 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"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",
"configuration.pintia.file.problemFileNameFormat": "Set the naming format of the problem file.\n\n**Supported variables**:\n- `{label}`: Problem label (e.g., A1001)\n- `{title}`: Problem title\n- `{pid}`: Problem ID\n- `{psid}`: Problem set ID\n\n**Examples**:\n- `{label} {title}` → `A1001 Hello World`\n- `{pid}-{label}` → `12345-A1001`\n\nInvalid characters like `<>:\"/\\|?*` will be replaced with `_`. Default value is `{label} {title}`.",
"configuration.pintia.file.replaceSpaceWithUnderscore": "Specify whether to replace spaces in problem file names with underscores. When enabled, \"A1001 Hello World\" will become \"A1001_Hello_World\". Multiple consecutive spaces will be replaced with a single underscore.",
"configuration.pintia.file.convertChineseCharacters": "Convert Chinese characters in the problem file name (including folders) to pinyin and Chinese punctuation to English punctuation to avoid compilation or debugging issues with some compilers. If you need to customize the folder name of the problem set, you can use the `#pintia.file.customProblemSetName` configuration option.",
"configuration.pintia.file.customProblemSetName": "Customize the problem set folder name. If other file configuration options do not meet your requirements, you can use this configuration option. This option accepts a JSON string that maps the problem set ID to a custom name and has the highest priority.\n\n**Example**:\n```json\n{\n \"12\": \"C_Programming_3rd_Edition\",\n \"13\": \"C_Programming_Lab_3rd_Edition\",\n \"14\": \"Basic_Programming\",\n \"15\": \"Data_Structures_Algorithms_CN\",\n \"16\": \"Data_Structures_Algorithms_EN\",\n \"17\": \"MOOC_DS_Self_Test\",\n \"434\": \"Data_Structures_2nd_Edition\"\n}\n```\n\nWith this setting, the problem set with ID 12 will use \"C_Programming_3rd_Edition\" as its folder name.",
"configuration.title.workspace": "Workspace",
"configuration.title.coding": "Coding",
"configuration.title.file": "File Naming",
"configuration.title.appearance": "Appearance",
"configuration.title.browsing": "Problem Browsing",
"configuration.title.search": "Search",
"configuration.title.account": "Account",
"walkthroughs.title": "Get Started with Pintia (PTA)",
"walkthroughs.description": "Practice the problems in Pintia (PTA) in VS Code!",
"walkthroughs.changelog.title": "Changelog",
"walkthroughs.changelog.description": "View the latest release of the extension\n[View](https://github.com/jinzcdev/vscode-pintia/releases)",
"walkthroughs.changelog.media.markdown": "docs/CHANGELOG_en-US.md",
"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.submitTestSolution.media.markdown": "docs/walkthroughs/SubmitTestSolution_en-US.md",
"walkthroughs.signIn.title": "Sign In",
"walkthroughs.signIn.description": "Use WeChat to scan QR codes or Cookie 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"
}