-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.nls.json
More file actions
71 lines (71 loc) · 4.56 KB
/
Copy pathpackage.nls.json
File metadata and controls
71 lines (71 loc) · 4.56 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
{
"extension.description": "Offline text and data utilities: change case, encode, hash, reformat JSON, generate values, and test regular expressions without a hung editor. No network, no telemetry.",
"command.transform.title": "Transform Selection…",
"command.transformAgain.title": "Apply Last Transform Again",
"command.transformClipboard.title": "Transform Clipboard…",
"command.replaceMatches.title": "Replace by Pattern…",
"command.upperCase.title": "UPPER CASE",
"command.lowerCase.title": "lower case",
"command.camelCase.title": "camelCase",
"command.pascalCase.title": "PascalCase",
"command.snakeCase.title": "snake_case",
"command.kebabCase.title": "kebab-case",
"command.constantCase.title": "CONSTANT_CASE",
"command.titleCase.title": "Title Case",
"command.base64Encode.title": "Base64 Encode",
"command.base64Decode.title": "Base64 Decode",
"command.urlEncode.title": "URL Encode",
"command.urlDecode.title": "URL Decode",
"command.sortLines.title": "Sort Lines",
"command.dedupeLines.title": "Remove Duplicate Lines",
"command.jsonFormat.title": "Format JSON",
"command.jsonMinify.title": "Minify JSON",
"command.jsonSortKeys.title": "Sort JSON Keys",
"command.generateUuid.title": "Insert UUID (v4)",
"command.generateUuidV7.title": "Insert UUID (v7, time-ordered)",
"command.generatePassword.title": "Insert Password…",
"command.generateLorem.title": "Insert Lorem Ipsum…",
"command.insertDate.title": "Insert Date / Time…",
"command.convertTimestamp.title": "Convert Unix Timestamp…",
"command.hash.title": "Hash Selection…",
"command.hmac.title": "HMAC Selection…",
"command.manageSecrets.title": "Manage Secrets…",
"command.inspect.title": "Inspect Selection",
"command.openRegexTester.title": "Open Regex Tester",
"command.reportState.title": "Report State (for bug reports)",
"command.history.clear.title": "Clear History",
"command.history.copy.title": "Copy Output",
"command.history.reapply.title": "Apply Again",
"command.history.loadMore.title": "Load More History",
"command.tools.resetFavorites.title": "Remove All Favorites",
"command.insertPreset.title": "Insert Workspace Snippet…",
"command.reloadPresets.title": "Reload Workspace Snippets",
"command.watchFiles.title": "Watch Files…",
"view.tools.name": "Tools",
"view.history.name": "History",
"view.history.welcome": "Operations you run show up here.\n[Transform Selection…](command:quickUtils.transform)",
"config.logLevel.description": "Log level for the Quick Utils output channel. The Output panel's own level selector applies on top of this.",
"config.datePatterns.description": "Date patterns offered by Insert Date / Time. Tokens: YYYY YY MM M DD D HH H hh h mm m ss s SSS A a Z ZZ. Wrap literal text in square brackets, e.g. YYYY-MM-DD[T]HH:mm:ssZ.",
"config.jsonIndent.description": "Indentation used when reformatting JSON.",
"config.jsonIndent.editor": "Follow editor.tabSize",
"config.jsonIndent.two": "Two spaces",
"config.jsonIndent.four": "Four spaces",
"config.jsonIndent.tab": "Tabs",
"config.historySize.description": "Maximum operations kept in the History view. Set to 0 to record nothing.",
"config.historyPageSize.description": "History entries shown before a \"Load more…\" row appears.",
"config.hashAlgorithm.description": "Algorithm preselected in the digest picker. MD5 and SHA-1 are offered for checksums only — neither is collision resistant.",
"config.passwordLength.description": "Default length proposed by Insert Password.",
"config.regexTimeoutMs.description": "How long a pattern may run in the regex worker before it is abandoned. Raise this only if a slow pattern is genuinely expected to finish.",
"config.showStatusBar.description": "Show selection statistics in the status bar while text is selected.",
"command.transformPipeline.title": "Run Transform Pipeline…",
"command.extractMatches.title": "Extract Matches from Selection…",
"command.hmacDefault.title": "HMAC with Default Key",
"command.setDefaultSecret.title": "Set Default Signing Key…",
"command.collectDiagnostics.title": "Collect Diagnostics to Output",
"command.inspectDocument.title": "Log Document Details",
"view.scratchpad.name": "Scratchpad",
"config.hmacKeyEncoding.description": "How a stored signing secret is read into key bytes. A 64-character hex secret is 32 key bytes; reading it as text produces a different key and a signature that never matches.",
"config.hmacKeyEncoding.utf8": "Text (UTF-8)",
"config.hmacKeyEncoding.hex": "Hexadecimal",
"config.hmacKeyEncoding.base64": "Base64"
}