-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.nls.json
291 lines (291 loc) · 25.8 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
{
"command.filterLinesIncludingString.title": "Filter lines including a string",
"command.filterLinesIncludingStringToNewEditor.title": "Filter lines including a string into a new editor",
"command.copyLinesIncludingStringToClipboard.title": "Copy lines including a string to the clipboard",
"command.cutLinesIncludingStringToClipboard.title": "Cut lines including a string to the clipboard",
"command.filterLinesMatchingRegex.title": "Filter lines matching a regex (grep)",
"command.filterLinesMatchingRegexToNewEditor.title": "Filter lines matching a regex (grep) into a new editor",
"command.copyLinesMatchingRegexToClipboard.title": "Copy lines matching a regex (grep) to clipboard",
"command.cutLinesMatchingRegexToClipboard.title": "Cut lines matching a regex (grep) to clipboard",
"command.filterLinesIncludingSelection.title": "Filter lines including the selected text",
"command.filterLinesIncludingSelectionToNewEditor.title": "Filter lines including the selected text into a new editor",
"command.filterLinesNotIncludingString.title": "Filter lines not including a string",
"command.filterLinesNotIncludingStringToNewEditor.title": "Filter lines not including a string into a new editor",
"command.copyLinesNotIncludingStringToClipboard.title": "Copy lines not including a string to clipboard",
"command.cutLinesNotIncludingStringToClipboard.title": "Cut lines not including a string to clipboard",
"command.filterLinesNotMatchingRegex.title": "Filter lines not matching a regex (grep)",
"command.filterLinesNotMatchingRegexToNewEditor.title": "Filter lines not matching a regex (grep) into a new editor",
"command.copyLinesNotMatchingRegexToClipboard.title": "Copy lines not matching a regex (grep) to clipboard",
"command.cutLinesNotMatchingRegexToClipboard.title": "Cut lines not matching a regex (grep) to clipboard",
"command.filterLinesNotIncludingSelection.title": "Filter lines not including the selected text",
"command.filterLinesNotIncludingSelectionToNewEditor.title": "Filter lines not including the selected text into a new editor",
"command.extractInformation.title": "Extract information from text",
"command.extractInformationToNewEditor.title": "Extract information from text into a new editor",
"command.countOccurrences.title": "Count line occurrences",
"command.countOccurrencesToNewEditor.title": "Count line occurrences into a new editor",
"command.countAdjacentDuplicates.title": "Count adjacent duplicates",
"command.countAdjacentDuplicatesToNewEditor.title": "Count adjacent duplicates into a new editor",
"command.padStart.title": "Pad start (left) with default string",
"command.padStartWithCustomString.title": "Pad start (left) with custom string",
"command.padEnd.title": "Pad end (right) with default string",
"command.padEndWithCustomString.title": "Pad end (right) with custom string",
"command.appendPrefixToAllLines.title": "Append prefix to all lines",
"command.appendSuffixToAllLines.title": "Append suffix to all lines",
"command.wrapAllLinesWithTextSame.title": "Wrap all lines with text (same prefix and suffix)",
"command.wrapAllLinesWithTextDifferent.title": "Wrap all lines with text (different prefix and suffix)",
"command.separateWordsWithSpaces.title": "Separate words with spaces",
"command.separateWordsWithForwardSlashes.title": "Separate words with forward slashes",
"command.separateWordsWithBackslashes.title": "Separate words with backslashes",
"command.trimStart.title": "Trim leading whitespace",
"command.trim.title": "Trim leading & trailing whitespace",
"command.formatContentAsTableByTabulator.title": "Format content as table using tabulator as splitter",
"command.formatContentAsTableBySemicolon.title": "Format content as table using semicolon as splitter",
"command.formatContentAsTableByComma.title": "Format content as table using comma as splitter",
"command.formatContentAsTableByPipe.title": "Format content as table using pipe as splitter",
"command.formatContentAsTableByCustomCharacter.title": "Format content as table using custom string as splitter",
"command.formatContentAsTableBySemicolonWithPadding.title": "Format content as table using semicolon as splitter (with padding)",
"command.formatContentAsTableByPipeWithPadding.title": "Format content as table using pipe as splitter (with padding)",
"command.formatContentAsTableByCustomCharacterWithPadding.title": "Format content as table using custom string as splitter (with padding)",
"command.changeCaseToCamelCase.title": "Change case to camel case (camelCase)",
"command.changeCaseToPascalCase.title": "Change case to Pascal case (PascalCase)",
"command.changeCaseToSnakeCase.title": "Change case to snake case (snake_case)",
"command.changeCaseToDashCase.title": "Change case to dash case (dash-case)",
"command.changeCaseToConstantCase.title": "Change case to constant case (CONSTANT_CASE)",
"command.changeCaseToDotCase.title": "Change case to dot case (dot.case)",
"command.changeCaseToTitleCase.title": "Change case to title case (Title Case)",
"command.changeCaseToSentenceCase.title": "Change case to sentence case (Sentence case)",
"command.changeCaseToSpongeCase.title": "Change case to sponge case (random capitalization)",
"command.changeCaseToSwapCase.title": "Swap text case",
"command.latinize.title": "Latinize text",
"command.slugify.title": "Slugify text",
"command.unicodeNormalizationNFC.title": "Convert to NFC Unicode normalization form",
"command.unicodeNormalizationNFD.title": "Convert to NFD Unicode normalization form",
"command.unicodeNormalizationNFKC.title": "Convert to NFKC Unicode normalization form",
"command.unicodeNormalizationNFKD.title": "Convert to NFKD Unicode normalization form",
"command.joinEvery2Lines.title": "Join every two lines",
"command.joinEvery2LinesWithSpace.title": "Join every two lines with space",
"command.joinEvery2LinesWithComma.title": "Join every two lines with comma",
"command.joinEvery2LinesWithSemicolon.title": "Join every two lines with semicolon",
"command.joinEvery2LinesWithPipe.title": "Join every two lines with pipe",
"command.joinEvery2LinesWithCustomString.title": "Join every two lines with custom string",
"command.joinEveryNLines.title": "Join every N lines",
"command.joinEveryNLinesWithSpace.title": "Join every N lines with space",
"command.joinEveryNLinesWithComma.title": "Join every N lines with comma",
"command.joinEveryNLinesWithSemicolon.title": "Join every N lines with semicolon",
"command.joinEveryNLinesWithPipe.title": "Join every N lines with pipe",
"command.joinEveryNLinesWithCustomString.title": "Join every N lines with custom string",
"command.splitLinesBySpace.title": "Split lines by space",
"command.splitLinesByComma.title": "Split lines by comma",
"command.splitLinesBySemicolon.title": "Split lines by semicolon",
"command.splitLinesByPipe.title": "Split lines by pipe",
"command.splitLinesByCustomString.title": "Split lines by custom string",
"command.caseSensitiveSortAscending.title": "Sort lines ascending (case sensitive)",
"command.caseSensitiveSortDescending.title": "Sort lines descending (case sensitive)",
"command.caseSensitiveSortAscendingAtColumn.title": "Sort lines ascending (case sensitive at column of selection start)",
"command.caseSensitiveSortDescendingAtColumn.title": "Sort lines descending (case sensitive at column of selection start)",
"command.caseInsensitiveSortAscendingAtColumn.title": "Sort lines ascending (case insensitive at column of selection start)",
"command.caseInsensitiveSortDescendingAtColumn.title": "Sort lines descending (case insensitive at column of selection start)",
"command.sortByLengthCaseSensitiveAscending.title": "Sort lines ascending by length (and then case sensitive)",
"command.sortByLengthCaseSensitiveDescending.title": "Sort lines descending by length (and then case sensitive)",
"command.sortByLengthCaseInsensitiveAscending.title": "Sort lines ascending by length (and then case insensitive)",
"command.sortByLengthCaseInsensitiveDescending.title": "Sort lines descending by length (and then case insensitive)",
"command.sortByWordCountAscending.title": "Sort lines ascending by word count",
"command.sortByWordCountDescending.title": "Sort lines descending by word count",
"command.sortByGraphemeCountAscending.title": "Sort lines ascending by grapheme count",
"command.sortByGraphemeCountDescending.title": "Sort lines descending by grapheme count",
"command.semverSortAscending.title": "Sort lines ascending using semver rules",
"command.semverSortDescending.title": "Sort lines descending using semver rules",
"command.ipAddressSortAscending.title": "Sort IP addresses ascending",
"command.ipAddressSortDescending.title": "Sort IP addresses descending",
"command.sortByDecimalValueAscending.title": "Sort lines ascending by decimal number value",
"command.sortByDecimalValueDescending.title": "Sort lines descending by decimal number value",
"command.sortByHexadecimalValueAscending.title": "Sort lines ascending by hexadecimal number value",
"command.sortByHexadecimalValueDescending.title": "Sort lines descending by hexadecimal number value",
"command.shuffleLines.title": "Shuffle lines (sort by random order)",
"command.reverseLines.title": "Reverse lines",
"command.generateRandomFromUserInput.title": "Generate random items from user input",
"command.generateRandomDecimalNumbersFromRange.title": "Generate random decimal numbers from range",
"command.generateRandomHexadecimalNumbersFromRange.title": "Generate random hexadecimal numbers from range",
"command.generateRandomRealNumbersFromRange.title": "Generate random real numbers from range",
"command.generateFakeData.title": "Generate fake/random data...",
"command.generateWordsContainingRandomLowercaseLettersSequence.title": "Generate words containing random lowercase letters",
"command.generateWordsContainingRandomUppercaseLettersSequence.title": "Generate words containing random uppercase letters",
"command.generateWordsContainingRandomLettersSequence.title": "Generate words containing random letters",
"command.generateWordsContainingRandomAlphanumericCharactersSequence.title": "Generate words containing random alphanumeric characters",
"command.generateWordsContainingRandomAsciiCharactersSequence.title": "Generate words containing random ASCII characters",
"command.generateWordsContainingRandomDecimalCharactersSequence.title": "Generate words containing random decimal characters",
"command.generateWordsContainingRandomHexCharactersSequence.title": "Generate words containing random hex characters",
"command.generateRandomGuids.title": "Generate random GUIDs",
"command.generateRandomIpv4Addresses.title": "Generate random IPv4 Addresses",
"command.generateRandomIpv6Addresses.title": "Generate random IPv6 Addresses",
"command.generateRandomCoordinates.title": "Generate random WGS84 coordinates",
"command.generateRandomEuropeanCoordinates.title": "Generate random European WGS84 coordinates",
"command.generateRandomNorthAmericanCoordinates.title": "Generate random North American WGS84 coordinates",
"command.generateRandomAsianCoordinates.title": "Generate random Asian coordinates",
"command.generateLoremIpsumSentence.title": "Generate Lorem ipsum sentences",
"command.generateLoremIpsumParagraph.title": "Generate Lorem ipsum paragraphs",
"command.insertFullFilePath.title": "Insert full path of the opened file",
"command.insertDirectoryPath.title": "Insert directory path of the opened file",
"command.insertFileName.title": "Insert file name of the opened file",
"command.insertDate.title": "Insert date",
"command.insertLocalDate.title": "Insert date (formatted using custom locale)",
"command.insertTime.title": "Insert time",
"command.insertLocalTime.title": "Insert time (formatted using custom locale)",
"command.insertTimestamp.title": "Insert timestamp",
"command.insertLocalTimestamp.title": "Insert timestamp (formatted using custom locale)",
"command.insertUtcTimestamp.title": "Insert UTC timestamp (ISO 8601)",
"command.insertUnixTimestamp.title": "Insert Unix timestamp",
"command.insertDecimalNumbers.title": "Insert decimal number sequence",
"command.insertDecimalNumbersStartingAt.title": "Insert decimal number sequence starting at...",
"command.insertDecimalNumbersWithIncrements.title": "Insert decimal number sequence with custom increments",
"command.insertDecimalNumbersWithIncrementsStartingAt.title": "Insert decimal number sequence with custom increments starting at...",
"command.insertHexNumbers.title": "Insert hex number sequence",
"command.insertHexNumbersStartingAt.title": "Insert hex number sequence starting at...",
"command.insertHexNumbersWithIncrements.title": "Insert hex number sequence with custom increments",
"command.insertHexNumbersWithIncrementsStartingAt.title": "Insert hex number sequence with custom increments starting at...",
"command.insertRomanNumerals.title": "Insert Roman numeral sequence",
"command.insertRomanNumeralsStartingAt.title": "Insert Roman numeral sequence starting at...",
"command.insertRomanNumeralsWithIncrements.title": "Insert Roman numeral sequence with custom increments",
"command.insertRomanNumeralsWithIncrementsStartingAt.title": "Insert Roman numeral sequence with custom increments starting at...",
"command.insertLineNumbers.title": "Insert line numbers",
"command.insertLineNumbersFixedLength.title": "Insert fixed length line numbers",
"command.insertRelativeLineNumbers.title": "Insert line numbers starting with 1 at the first selected line",
"command.insertRelativeLineNumbersFixedLength.title": "Insert fixed line numbers starting with 1 at the first selected line",
"command.insertSequence.title": "Insert series of items...",
"command.insertLowercaseLetterSequence.title": "Insert series of lowercase letters",
"command.insertUppercaseLetterSequence.title": "Insert series of uppercase letters",
"command.insertLowercaseGreekLetterSequence.title": "Insert series of lowercase Greek letters",
"command.insertUppercaseGreekLetterSequence.title": "Insert series of uppercase Greek letters",
"command.insertNatoPhoneticAlphabetSequence.title": "Insert series of NATO phonetic alphabet items",
"command.insertLongEnglishMonthNamesSequence.title": "Insert series of long English month names",
"command.insertShortEnglishMonthNamesSequence.title": "Insert series of short English month names",
"command.insertLongLocaleMonthNamesSequence.title": "Insert series of long current/custom locale month names",
"command.insertShortLocaleMonthNamesSequence.title": "Insert series of short current/custom locale month names",
"command.insertLongEnglishDayNamesSequence.title": "Insert series of long English day names",
"command.insertShortEnglishDayNamesSequence.title": "Insert series of short English day names",
"command.insertLongLocaleDayNamesSequence.title": "Insert series of long current/custom locale day names",
"command.insertShortLocaleDayNamesSequence.title": "Insert series of short current/custom locale day names",
"command.spreadPasteFromClipboard.title": "Spread paste lines from clipboard",
"command.spreadPasteFromClipboardSkipEmpty.title": "Spread paste lines from clipboard (skip empty lines)",
"command.spreadPasteRepeatedlyFromClipboard.title": "Spread paste lines repeatedly from clipboard",
"command.spreadPasteRepeatedlyFromClipboardSkipEmpty.title": "Spread paste lines repeatedly from clipboard (skip empty lines)",
"command.pasteTextSlot1Content.title": "Paste text slot 1 content",
"command.pasteTextSlot2Content.title": "Paste text slot 2 content",
"command.pasteTextSlot3Content.title": "Paste text slot 3 content",
"command.pasteTextSlot4Content.title": "Paste text slot 4 content",
"command.pasteTextSlot5Content.title": "Paste text slot 5 content",
"command.setTextSlot1Content.title": "Set text slot 1 content",
"command.setTextSlot2Content.title": "Set text slot 2 content",
"command.setTextSlot3Content.title": "Set text slot 3 content",
"command.setTextSlot4Content.title": "Set text slot 4 content",
"command.setTextSlot5Content.title": "Set text slot 5 content",
"command.convertHexadecimalNumbersToDecimal.title": "Convert selected hexadecimal numbers to decimal",
"command.convertHexadecimalNumbersToDecimal8bit.title": "Convert selected hexadecimal numbers to decimal (using 8 bit arithmetic)",
"command.convertHexadecimalNumbersToDecimal16bit.title": "Convert selected hexadecimal numbers to decimal (using 16 bit arithmetic)",
"command.convertHexadecimalNumbersToDecimal32bit.title": "Convert selected hexadecimal numbers to decimal (using 32 bit arithmetic)",
"command.convertHexadecimalNumbersToDecimal64bit.title": "Convert selected hexadecimal numbers to decimal (using 64 bit arithmetic)",
"command.convertDecimalNumbersToHexadecimal.title": "Convert selected decimal numbers to hexadecimal",
"command.convertDecimalNumbersToHexadecimal8bit.title": "Convert selected decimal numbers to hexadecimal (using 8 bit arithmetic)",
"command.convertDecimalNumbersToHexadecimal16bit.title": "Convert selected decimal numbers to hexadecimal (using 16 bit arithmetic)",
"command.convertDecimalNumbersToHexadecimal32bit.title": "Convert selected decimal numbers to hexadecimal (using 32 bit arithmetic)",
"command.convertDecimalNumbersToHexadecimal64bit.title": "Convert selected decimal numbers to hexadecimal (using 64 bit arithmetic)",
"command.convertToZalgoUltraLight.title": "Convert selection to ultra light zalgo text",
"command.convertToZalgoLight.title": "Convert selection to light zalgo text",
"command.convertToZalgoMedium.title": "Convert selection to medium zalgo text",
"command.convertToZalgoHeavy.title": "Convert selection to heavy zalgo text",
"command.increaseDecimalNumbersWithOne.title": "Increase decimal numbers with 1",
"command.increaseHexNumbersWithOne.title": "Increase hexadecimal numbers with 1",
"command.increaseHexNumbersWithOne8bit.title": "Increase hexadecimal numbers with 1 (using 8 bit arithmetic)",
"command.increaseHexNumbersWithOne16bit.title": "Increase hexadecimal numbers with 1 (using 16 bit arithmetic)",
"command.increaseHexNumbersWithOne32bit.title": "Increase hexadecimal numbers with 1 (using 32 bit arithmetic)",
"command.increaseHexNumbersWithOne64bit.title": "Increase hexadecimal numbers with 1 (using 64 bit arithmetic)",
"command.decreaseDecimalNumbersWithOne.title": "Decrease decimal numbers with 1",
"command.decreaseHexNumbersWithOne.title": "Decrease hexadecimal numbers with 1",
"command.decreaseHexNumbersWithOne8bit.title": "Decrease hexadecimal numbers with 1 (using 8 bit arithmetic)",
"command.decreaseHexNumbersWithOne16bit.title": "Decrease hexadecimal numbers with 1 (using 16 bit arithmetic)",
"command.decreaseHexNumbersWithOne32bit.title": "Decrease hexadecimal numbers with 1 (using 32 bit arithmetic)",
"command.decreaseHexNumbersWithOne64bit.title": "Decrease hexadecimal numbers with 1 (using 64 bit arithmetic)",
"command.changeDecimalNumbersWithIncrement.title": "Increase/decrease decimal numbers with a custom value",
"command.changeHexNumbersWithIncrement.title": "Increase/decrease hexadecimal numbers with a custom value",
"command.changeHexNumbersWithIncrement8bit.title": "Increase/decrease hexadecimal numbers with a custom value (using 8 bit arithmetic)",
"command.changeHexNumbersWithIncrement16bit.title": "Increase/decrease hexadecimal numbers with a custom value (using 16 bit arithmetic)",
"command.changeHexNumbersWithIncrement32bit.title": "Increase/decrease hexadecimal numbers with a custom value (using 32 bit arithmetic)",
"command.changeHexNumbersWithIncrement64bit.title": "Increase/decrease hexadecimal numbers with a custom value (using 64 bit arithmetic)",
"command.urlEncodeText.title": "URL encode text",
"command.urlEncodeTextOnEachLine.title": "URL encode text on each line",
"command.urlDecodeText.title": "Decode URL encoded text",
"command.encodeHtmlEntities.title": "Encode HTML entities",
"command.encodeHtmlEntitiesOnEachLine.title": "Encode HTML entities on each lines",
"command.encodeHtmlEntitiesWithNonAscii.title": "Encode HTML entities (including non ASCII characters)",
"command.encodeHtmlEntitiesWithNonAsciiOnEachLine.title": "Encode HTML entities (including non ASCII characters) on each line",
"command.encodeHtmlEntitiesAllNamedReferences.title": "Encode HTML entities (all named references)",
"command.encodeHtmlEntitiesAllNamedReferencesOnEachLine.title": "Encode HTML entities (all named references) on each line",
"command.decodeHtmlEntities.title": "Decode HTML entities",
"command.encodeXmlEntities.title": "Encode XML entities",
"command.encodeXmlEntitiesOnEachLine.title": "Encode XML entities on each line",
"command.decodeXmlEntities.title": "Decode XML entities",
"command.escapeTextForJson.title": "Escape text for JSON",
"command.unescapeTextForJson.title": "Unescape JSON escaped text",
"command.convertToJsonString.title": "Convert text to JSON string",
"command.convertToUnicodeEscapeSequences.title": "Convert to Unicode escape sequences",
"command.decodeUnicodeEscapeSequences.title": "Decode Unicode escape sequences",
"command.base64EncodeText.title": "Encode text with base64",
"command.base64EncodeTextOnEachLine.title": "Encode text with base64 on each line",
"command.base64DecodeText.title": "Decode base64 text",
"command.base64DecodeTextOnEachLine.title": "Decode base64 text on each line",
"command.encodeDomainNameWithPunycode.title": "Encode domain name with punycode (IDNA)",
"command.decodeDomainNameFromPunycode.title": "Decode domain name from punycode (IDNA)",
"command.duplicateSelectionContent.title": "Duplicate selection content",
"command.repeatSelectionContent.title": "Repeat selection content",
"command.copySelectionsToNewEditor.title": "Copy content of selections to a new editor",
"command.removeWhitespaceCharacters.title": "Remove whitespace characters",
"command.removeNewLines.title": "Remove newlines",
"command.trimAndRemoveNewLines.title": "Trim whitespace and remove newlines",
"command.replaceWhitespaceWithASingleSpace.title": "Replace whitespace with a single space",
"command.replaceNewLinesAndWhitespaceWithASingleSpace.title": "Replace new lines and whitespace with a single space",
"command.removeDuplicates.title": "Remove duplicated lines",
"command.caseInsensitiveRemoveDuplicates.title": "Remove duplicated lines (case insensitive)",
"command.removeAdjacentDuplicates.title": "Remove adjacent duplicated lines",
"command.caseInsensitiveRemoveAdjacentDuplicates.title": "Remove adjacent duplicated lines (case insensitive)",
"command.keepOnlyDuplicates.title": "Keep only duplicated lines",
"command.caseInsensitiveKeepOnlyDuplicates.title": "Keep only duplicated lines (case insensitive)",
"command.keepOnlyAdjacentDuplicates.title": "Keep only adjacent duplicated lines",
"command.caseInsensitiveKeepOnlyAdjacentDuplicates.title": "Keep only adjacent duplicated lines (case insensitive)",
"command.keepOnlyUniques.title": "Keep only unique lines",
"command.caseInsensitiveKeepOnlyUniques.title": "Keep only unique lines (case insensitive)",
"command.keepNumberOfRandomLines.title": "Keep a number of random lines",
"command.keepPercentageOfRandomLines.title": "Keep a percentage of random lines",
"command.removeEmptyLines.title": "Remove empty lines",
"command.removeSurplusEmptyLines.title": "Remove surplus empty lines",
"command.removeBlankLines.title": "Remove blank lines",
"command.removeSurplusBlankLines.title": "Remove surplus blank lines",
"command.removeControlCharacters.title": "Remove control characters",
"command.removeAnsiEscapeCodes.title": "Remove ANSI escape codes",
"submenu.filterLines.label": "Filter lines (like grep)",
"submenu.extraction.label": "Extract info",
"submenu.formatContent.label": "Format content",
"submenu.changeLetters.label": "Change letters",
"submenu.insertFacts.label": "Insert facts",
"submenu.insertNumbers.label": "Insert numbers",
"submenu.insertSequences.label": "Insert series of items",
"submenu.paste.label": "Paste",
"submenu.textSlots.label": "Text slots (clipboard-like)",
"submenu.convert.label": "Convert",
"submenu.increaseDecrease.label": "Increase/decrease numbers",
"submenu.encodeDecode.label": "Encode/decode",
"submenu.joinSplitLines.label": "Join/split lines",
"submenu.sortLines.label": "Sort lines",
"submenu.generateFakeContent.label": "Generate fake/random content",
"submenu.selection.label": "Selection",
"submenu.remove.label": "Remove content",
"properties.caseSensitiveFiltering.description": "Use case sensitive comparison when performing filter operations.",
"properties.defaultPadString.description": "Default pad string for the 'Pad start (left)' and 'Pad end (right)' functions.",
"properties.insertUppercaseHexNumbers.description": "Insert uppercase hex numbers when using the 'Insert hex number' and other numeric functions.",
"properties.insertUppercaseGuids.description": "Insert uppercase GUIDs when using the 'Generate a GUID' or 'Generate multiple GUIDs' functions.",
"properties.defaultGuidType.description": "Type of the GUIDs inserted when using the 'Generate a GUID' or 'Generate multiple GUIDs' functions. By default the method will ask the type of GUID you want to generate.",
"properties.loremIpsum.wordsPerSentence.min.description": "Minimum number of words in a sentence in generated Lorem ipsum texts.",
"properties.loremIpsum.wordsPerSentence.max.description": "Maximum number of words in a sentence in generated Lorem ipsum texts.",
"properties.loremIpsum.sentencesPerParagraph.min.description": "Minimum number of sentences in a paragraph in generated Lorem ipsum texts.",
"properties.loremIpsum.sentencesPerParagraph.max.description": "Maximum number of sentences in a paragraph in generated Lorem ipsum texts.",
"properties.customLocale.description": "Custom locale (eg. `en-US`, `hu-HU`) to use instead of system locale when running date and time related comamnds."
}