-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.nls.ja.json
281 lines (281 loc) · 25.6 KB
/
package.nls.ja.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
{
"command.filterLinesIncludingString.title": "文字列を含む行を抽出",
"command.filterLinesIncludingStringToNewEditor.title": "文字列を含む行を抽出(新しいエディター)",
"command.copyLinesIncludingStringToClipboard.title": "文字列を含む行をクリップボードにコピー",
"command.cutLinesIncludingStringToClipboard.title": "文字列を含む行を切り取り",
"command.filterLinesMatchingRegex.title": "正規表現と一致する行を抽出",
"command.filterLinesMatchingRegexToNewEditor.title": "正規表現と一致する行を抽出(新しいエディター)",
"command.copyLinesMatchingRegexToClipboard.title": "正規表現と一致する行をクリップボードにコピー",
"command.cutLinesMatchingRegexToClipboard.title": "正規表現と一致する行を切り取り",
"command.filterLinesIncludingSelection.title": "選択した文字列を含む行を抽出",
"command.filterLinesIncludingSelectionToNewEditor.title": "選択した文字列を含む行を抽出(新しいエディター)",
"command.filterLinesNotIncludingString.title": "文字列を含まない行を抽出",
"command.filterLinesNotIncludingStringToNewEditor.title": "文字列を含まない行を抽出(新しいエディター)",
"command.copyLinesNotIncludingStringToClipboard.title": "文字列を含まない行をクリップボードにコピー",
"command.cutLinesNotIncludingStringToClipboard.title": "文字列を含まない行を切り取り",
"command.filterLinesNotMatchingRegex.title": "正規表現と一致しない行を抽出",
"command.filterLinesNotMatchingRegexToNewEditor.title": "正規表現と一致しない行を抽出(新しいエディター)",
"command.copyLinesNotMatchingRegexToClipboard.title": "正規表現と一致しない行をクリップボードにコピー",
"command.cutLinesNotMatchingRegexToClipboard.title": "正規表現と一致しない行を切り取り",
"command.filterLinesNotIncludingSelection.title": "選択した文字列を含まない行を抽出",
"command.filterLinesNotIncludingSelectionToNewEditor.title": "選択した文字列を含まない行を抽出(新しいエディター)",
"command.extractInformation.title": "正規表現と一致する行を抽出して置換",
"command.extractInformationToNewEditor.title": "正規表現と一致する行を抽出して置換(新しいエディター)",
"command.countOccurrences.title": "重複する行をカウント",
"command.countOccurrencesToNewEditor.title": "重複する行をカウント(新しいエディター)",
"command.countAdjacentDuplicates.title": "隣接して重複する行をカウント",
"command.countAdjacentDuplicatesToNewEditor.title": "隣接して重複する行をカウント(新しいエディター)",
"command.padStart.title": "左パディング(デフォルト文字)",
"command.padStartWithCustomString.title": "左パディング(任意の文字)",
"command.padEnd.title": "右パディング(デフォルト文字)",
"command.padEndWithCustomString.title": "右パディング(任意の文字)",
"command.appendPrefixToAllLines.title": "先頭に文字列を追加",
"command.appendSuffixToAllLines.title": "末尾に文字列を追加",
"command.wrapAllLinesWithTextSame.title": "先頭と末尾に同じ文字列を追加",
"command.wrapAllLinesWithTextDifferent.title": "先頭と末尾に異なる文字列を追加",
"command.separateWordsWithSpaces.title": "単語をスペースで分割",
"command.separateWordsWithForwardSlashes.title": "単語をスラッシュで分割",
"command.separateWordsWithBackslashes.title": "単語をバックスラッシュで分割",
"command.trimStart.title": "先頭の空白のトリミング",
"command.trim.title": "先頭と末尾の空白のトリミング",
"command.formatContentAsTableByTabulator.title": "表の整列(タブ区切り)",
"command.formatContentAsTableBySemicolon.title": "表の整列(セミコロン区切り)",
"command.formatContentAsTableByComma.title": "表の整列(カンマ区切り)",
"command.formatContentAsTableByPipe.title": "表の整列(パイプ区切り)",
"command.formatContentAsTableByCustomCharacter.title": "表の整列(任意の区切り文字)",
"command.formatContentAsTableBySemicolonWithPadding.title": "表の整列(セミコロン区切り、パディング有)",
"command.formatContentAsTableByPipeWithPadding.title": "表の整列(パイプ区切り、パディング有)",
"command.formatContentAsTableByCustomCharacterWithPadding.title": "表の整列(任意の区切り文字、パディング有)",
"command.changeCaseToCamelCase.title": "キャメル ケースに変換(camelCase)",
"command.changeCaseToPascalCase.title": "パスカル ケースに変換(PascalCase)",
"command.changeCaseToSnakeCase.title": "スネーク ケースに変換(snake_case)",
"command.changeCaseToDashCase.title": "ダッシュ ケースに変換(dash-case)",
"command.changeCaseToConstantCase.title": "コンスタント ケースに変換(CONSTANT_CASE)",
"command.changeCaseToDotCase.title": "ドット ケースに変換(dot.case)",
"command.changeCaseToTitleCase.title": "タイトル ケースに変換(Title Case)",
"command.changeCaseToSentenceCase.title": "センテンス ケースに変換(Sentence case)",
"command.changeCaseToSpongeCase.title": "大文字・小文字をランダムに変換",
"command.changeCaseToSwapCase.title": "大文字と小文字を入れ替え",
"command.latinize.title": "ラテン文字化(ダイアクリティカルマークの除去)",
"command.slugify.title": "スラッグ化",
"command.unicodeNormalizationNFC.title": "Unicode正規化:正準合成(NFC)",
"command.unicodeNormalizationNFD.title": "Unicode正規化:正準分解(NFD)",
"command.unicodeNormalizationNFKC.title": "Unicode正規化:互換合成(NFKC)",
"command.unicodeNormalizationNFKD.title": "Unicode正規化:互換分解(NFKD)",
"command.joinEvery2Lines.title": "2行ごとに結合",
"command.joinEvery2LinesWithSpace.title": "2行ごとに結合(スペース区切り)",
"command.joinEvery2LinesWithComma.title": "2行ごとに結合(カンマ区切り)",
"command.joinEvery2LinesWithSemicolon.title": "2行ごとに結合(セミコロン区切り)",
"command.joinEvery2LinesWithPipe.title": "2行ごとに結合(パイプ区切り)",
"command.joinEvery2LinesWithCustomString.title": "2行ごとに結合(任意の結合文字)",
"command.joinEveryNLines.title": "N行ごとに結合",
"command.joinEveryNLinesWithSpace.title": "N行ごとに結合(スペース区切り)",
"command.joinEveryNLinesWithComma.title": "N行ごとに結合(カンマ区切り)",
"command.joinEveryNLinesWithSemicolon.title": "N行ごとに結合(セミコロン区切り)",
"command.joinEveryNLinesWithPipe.title": "N行ごとに結合(パイプ区切り)",
"command.joinEveryNLinesWithCustomString.title": "N行ごとに結合(任意の結合文字)",
"command.splitLinesBySpace.title": "スペースで行を分割",
"command.splitLinesByComma.title": "カンマで行を分割",
"command.splitLinesBySemicolon.title": "セミコロンで行を分割",
"command.splitLinesByPipe.title": "パイプで行を分割",
"command.splitLinesByCustomString.title": "任意の文字で行を分割",
"command.caseSensitiveSortAscending.title": "行を昇順に並べ替え(大文字と小文字を区別)",
"command.caseSensitiveSortDescending.title": "行を降順に並べ替え(大文字と小文字を区別)",
"command.caseSensitiveSortAscendingAtColumn.title": "行を昇順に並べ替え(選択開始位置で大文字と小文字を区別)",
"command.caseSensitiveSortDescendingAtColumn.title": "行を降順に並べ替え(選択開始位置で大文字と小文字を区別)",
"command.caseInsensitiveSortAscendingAtColumn.title": "行を昇順に並べ替え(選択開始位置で大文字と小文字を区別しない)",
"command.caseInsensitiveSortDescendingAtColumn.title": "行を降順に並べ替え(選択開始位置で大文字と小文字を区別しない)",
"command.sortByLengthCaseSensitiveAscending.title": "行を短い順に並べ替え(大文字と小文字を区別)",
"command.sortByLengthCaseSensitiveDescending.title": "行を長い順に並べ替え(大文字と小文字を区別)",
"command.sortByLengthCaseInsensitiveAscending.title": "行を短い順に並べ替え(大文字と小文字を区別しない)",
"command.sortByLengthCaseInsensitiveDescending.title": "行を長い順に並べ替え(大文字と小文字を区別しない)",
"command.sortByWordCountAscending.title": "行を単語数の少ない順に並べ替え",
"command.sortByWordCountDescending.title": "行を単語数の多い順に並べ替え",
"command.sortByGraphemeCountAscending.title": "行を文字数の少ない順に並べ替え",
"command.sortByGraphemeCountDescending.title": "行を文字数の多い順に並べ替え",
"command.semverSortAscending.title": "行をバージョンの小さい順に並べ替え",
"command.semverSortDescending.title": "行をバージョンの大きい順に並べ替え",
"command.ipAddressSortAscending.title": "行をIPアドレス昇順に並べ替え",
"command.ipAddressSortDescending.title": "行をIPアドレス降順に並べ替え",
"command.sortByDecimalValueAscending.title": "行を数値の小さい順に並べ替え",
"command.sortByDecimalValueDescending.title": "行を数値の大きいに並べ替え",
"command.sortByHexadecimalValueAscending.title": "行を16進数値の小さい順に並べ替え",
"command.sortByHexadecimalValueDescending.title": "行を16進数値の大きい順に並べ替え",
"command.shuffleLines.title": "行をランダムに並べ替え",
"command.reverseLines.title": "行を逆順に並べ替え",
"command.generateRandomFromUserInput.title": "リストからランダムに文字列を挿入",
"command.generateRandomDecimalNumbersFromRange.title": "乱数を生成(整数)",
"command.generateRandomHexadecimalNumbersFromRange.title": "乱数を生成(16進数)",
"command.generateRandomRealNumbersFromRange.title": "乱数を生成(実数)",
"command.generateFakeData.title": "ダミー・ランダム文字列を生成...",
"command.generateRandomGuids.title": "GUIDを生成",
"command.generateRandomIpv4Addresses.title": "IPv4アドレスを生成",
"command.generateRandomIpv6Addresses.title": "IPv6アドレスを生成",
"command.generateRandomCoordinates.title": "WGS84位置座標を生成",
"command.generateRandomEuropeanCoordinates.title": "ヨーロッパのWGS84位置座標を生成",
"command.generateRandomNorthAmericanCoordinates.title": "北アメリカのWGS84位置座標を生成",
"command.generateRandomAsianCoordinates.title": "アジアのWGS84位置座標を生成",
"command.generateLoremIpsumSentence.title": "Lorem ipsumの一文を挿入",
"command.generateLoremIpsumParagraph.title": "Lorem ipsumの段落を挿入",
"command.insertFullFilePath.title": "ファイルのパスを挿入",
"command.insertDirectoryPath.title": "ディレクトリのパスを挿入",
"command.insertFileName.title": "ファイル名を挿入",
"command.insertDate.title": "日付を挿入(アメリカ式)",
"command.insertLocalDate.title": "日付を挿入(表示言語に基づく形式)",
"command.insertTime.title": "時刻を挿入(アメリカ式)",
"command.insertLocalTime.title": "時刻を挿入(表示言語に基づく形式)",
"command.insertTimestamp.title": "日時を挿入(アメリカ式)",
"command.insertLocalTimestamp.title": "日時を挿入(表示言語に基づく形式)",
"command.insertUtcTimestamp.title": "UTC日時を挿入(ISO 8601形式)",
"command.insertUnixTimestamp.title": "日時を挿入(UNIXタイムスタンプ)",
"command.insertDecimalNumbers.title": "連番を挿入",
"command.insertDecimalNumbersStartingAt.title": "連番を挿入(任意の開始値)",
"command.insertDecimalNumbersWithIncrements.title": "連番を挿入(任意の増分値)",
"command.insertDecimalNumbersWithIncrementsStartingAt.title": "連番を挿入(任意の開始値・増分値)",
"command.insertHexNumbers.title": "16進数の連番を挿入",
"command.insertHexNumbersStartingAt.title": "16進数の連番を挿入(任意の開始値)",
"command.insertHexNumbersWithIncrements.title": "16進数の連番を挿入(任意の増分値)",
"command.insertHexNumbersWithIncrementsStartingAt.title": "16進数の連番を挿入(任意の開始値・増分値)",
"command.insertRomanNumerals.title": "ローマ数字の連番を挿入",
"command.insertRomanNumeralsStartingAt.title": "ローマ数字の連番を挿入(任意の開始値)",
"command.insertRomanNumeralsWithIncrements.title": "ローマ数字の連番を挿入(任意の増分値)",
"command.insertRomanNumeralsWithIncrementsStartingAt.title": "ローマ数字の連番を挿入(任意の開始値・増分値)",
"command.insertLineNumbers.title": "行番号を挿入",
"command.insertLineNumbersFixedLength.title": "行番号を挿入(ゼロ埋め有)",
"command.insertRelativeLineNumbers.title": "選択範囲の行番号を挿入",
"command.insertRelativeLineNumbersFixedLength.title": "選択範囲の行番号を挿入(ゼロ埋め有)",
"command.insertSequence.title": "連続する文字列を挿入...",
"command.insertLowercaseLetterSequence.title": "英小文字を順番に挿入",
"command.insertUppercaseLetterSequence.title": "英大文字を順番に挿入",
"command.insertLowercaseGreekLetterSequence.title": "ギリシャ小文字を順番に挿入",
"command.insertUppercaseGreekLetterSequence.title": "ギリシャ大文字を順番に挿入",
"command.insertNatoPhoneticAlphabetSequence.title": "NATOフォネティックコードを順番に挿入",
"command.insertLongEnglishMonthNamesSequence.title": "月名を順番に挿入(英語)",
"command.insertShortEnglishMonthNamesSequence.title": "月名を順番に挿入(英語略記)",
"command.insertLongLocaleMonthNamesSequence.title": "月名を順番に挿入(表示言語)",
"command.insertShortLocaleMonthNamesSequence.title": "月名を順番に挿入(表示言語略記)",
"command.insertLongEnglishDayNamesSequence.title": "曜日を順番に挿入(英語)",
"command.insertShortEnglishDayNamesSequence.title": "曜日を順番に挿入(英語略記)",
"command.insertLongLocaleDayNamesSequence.title": "曜日を順番に挿入(表示言語)",
"command.insertShortLocaleDayNamesSequence.title": "曜日を順番に挿入(表示言語略記)",
"command.spreadPasteFromClipboard.title": "展開貼り付け",
"command.spreadPasteFromClipboardSkipEmpty.title": "展開貼り付け(空行をスキップ)",
"command.spreadPasteRepeatedlyFromClipboard.title": "展開繰り返し貼り付け",
"command.spreadPasteRepeatedlyFromClipboardSkipEmpty.title": "展開繰り返し貼り付け(空行をスキップ)",
"command.pasteTextSlot1Content.title": "スロット1を貼り付け",
"command.pasteTextSlot2Content.title": "スロット2を貼り付け",
"command.pasteTextSlot3Content.title": "スロット3を貼り付け",
"command.pasteTextSlot4Content.title": "スロット4を貼り付け",
"command.pasteTextSlot5Content.title": "スロット5を貼り付け",
"command.setTextSlot1Content.title": "スロット1にコピー",
"command.setTextSlot2Content.title": "スロット2にコピー",
"command.setTextSlot3Content.title": "スロット3にコピー",
"command.setTextSlot4Content.title": "スロット4にコピー",
"command.setTextSlot5Content.title": "スロット5にコピー",
"command.convertHexadecimalNumbersToDecimal.title": "16進数を10進数に変換",
"command.convertHexadecimalNumbersToDecimal8bit.title": "16進数を10進数に変換(8ビット加算器を使用)",
"command.convertHexadecimalNumbersToDecimal16bit.title": "16進数を10進数に変換(16ビット加算器を使用)",
"command.convertHexadecimalNumbersToDecimal32bit.title": "16進数を10進数に変換(32ビット加算器を使用)",
"command.convertHexadecimalNumbersToDecimal64bit.title": "16進数を10進数に変換(64ビット加算器を使用)",
"command.convertDecimalNumbersToHexadecimal.title": "10進数を16進数に変換",
"command.convertDecimalNumbersToHexadecimal8bit.title": "10進数を16進数に変換(8ビット加算器を使用)",
"command.convertDecimalNumbersToHexadecimal16bit.title": "10進数を16進数に変換(16ビット加算器を使用)",
"command.convertDecimalNumbersToHexadecimal32bit.title": "10進数を16進数に変換(32ビット加算器を使用)",
"command.convertDecimalNumbersToHexadecimal64bit.title": "10進数を16進数に変換(64ビット加算器を使用)",
"command.convertToZalgoUltraLight.title": "ultra light zalgoテキストに変換",
"command.convertToZalgoLight.title": "light zalgoテキストに変換",
"command.convertToZalgoMedium.title": "medium zalgoテキストに変換",
"command.convertToZalgoHeavy.title": "heavy zalgoテキストに変換",
"command.increaseDecimalNumbersWithOne.title": "数値を1増やす",
"command.increaseHexNumbersWithOne.title": "16進数を1増やす",
"command.increaseHexNumbersWithOne8bit.title": "16進数を1増やす(8ビット加算器を使用)",
"command.increaseHexNumbersWithOne16bit.title": "16進数を1増やす(16ビット加算器を使用)",
"command.increaseHexNumbersWithOne32bit.title": "16進数を1増やす(32ビット加算器を使用)",
"command.increaseHexNumbersWithOne64bit.title": "16進数を1増やす(64ビット加算器を使用)",
"command.decreaseDecimalNumbersWithOne.title": "数値を1減らす",
"command.decreaseHexNumbersWithOne.title": "16進数を1減らす",
"command.decreaseHexNumbersWithOne8bit.title": "16進数を1減らす(8ビット加算器を使用)",
"command.decreaseHexNumbersWithOne16bit.title": "16進数を1減らす(16ビット加算器を使用)",
"command.decreaseHexNumbersWithOne32bit.title": "16進数を1減らす(32ビット加算器を使用)",
"command.decreaseHexNumbersWithOne64bit.title": "16進数を1減らす(64ビット加算器を使用)",
"command.changeDecimalNumbersWithIncrement.title": "数値を増やす・減らす",
"command.changeHexNumbersWithIncrement.title": "16進数を増やす・減らす",
"command.changeHexNumbersWithIncrement8bit.title": "16進数を増やす・減らす(8ビット加算器を使用)",
"command.changeHexNumbersWithIncrement16bit.title": "16進数を増やす・減らす(16ビット加算器を使用)",
"command.changeHexNumbersWithIncrement32bit.title": "16進数を増やす・減らす(32ビット加算器を使用)",
"command.changeHexNumbersWithIncrement64bit.title": "16進数を増やす・減らす(64ビット加算器を使用)",
"command.urlEncodeText.title": "URLにエンコード",
"command.urlEncodeTextOnEachLine.title": "URLにエンコード(行ごと)",
"command.urlDecodeText.title": "URLを文字列にデコード",
"command.encodeHtmlEntities.title": "HTMLエンティティにエンコード",
"command.encodeHtmlEntitiesOnEachLine.title": "HTMLエンティティにエンコード(行ごと)",
"command.encodeHtmlEntitiesWithNonAscii.title": "非ASCII文字をHTMLエンティティにエンコード",
"command.encodeHtmlEntitiesWithNonAsciiOnEachLine.title": "非ASCII文字をHTMLエンティティにエンコード(行ごと)",
"command.encodeHtmlEntitiesAllNamedReferences.title": "名前表現のある文字をHTMLエンティティにエンコード",
"command.encodeHtmlEntitiesAllNamedReferencesOnEachLine.title": "名前表現のある文字をHTMLエンティティにエンコード(行ごと)",
"command.decodeHtmlEntities.title": "HTMLエンティティをデコード",
"command.encodeXmlEntities.title": "XMLエンティティにエンコード",
"command.encodeXmlEntitiesOnEachLine.title": "XMLエンティティにエンコード(行ごと)",
"command.decodeXmlEntities.title": "XMLエンティティをデコード",
"command.escapeTextForJson.title": "JSON用エスケープ文字を追加",
"command.unescapeTextForJson.title": "JSON用エスケープ文字を削除",
"command.convertToJsonString.title": "JSON用文字列に変換",
"command.convertToUnicodeEscapeSequences.title": "Unicodeエスケープに変換",
"command.decodeUnicodeEscapeSequences.title": "Unicodeエスケープをデコード",
"command.base64EncodeText.title": "base64にエンコード",
"command.base64EncodeTextOnEachLine.title": "base64にエンコード(行ごと)",
"command.base64DecodeText.title": "base64をデコード",
"command.base64DecodeTextOnEachLine.title": "base64をデコード(行ごと)",
"command.duplicateSelectionContent.title": "繰り返し",
"command.repeatSelectionContent.title": "任意の数繰り返し",
"command.copySelectionsToNewEditor.title": "新しいエディタにコピー",
"command.removeWhitespaceCharacters.title": "空白を削除",
"command.removeNewLines.title": "改行を削除",
"command.trimAndRemoveNewLines.title": "先頭と末尾の空白をトリミングして改行を削除",
"command.replaceWhitespaceWithASingleSpace.title": "連続する空白を半角スペース1つに置換",
"command.replaceNewLinesAndWhitespaceWithASingleSpace.title": "連続する空白と改行を半角スペース1つに置換",
"command.removeDuplicates.title": "重複する行を削除",
"command.caseInsensitiveRemoveDuplicates.title": "重複する行を削除(大文字と小文字を区別)",
"command.removeAdjacentDuplicates.title": "隣接して重複する行を削除",
"command.caseInsensitiveRemoveAdjacentDuplicates.title": "隣接して重複する行を削除(大文字と小文字を区別)",
"command.keepOnlyDuplicates.title": "重複する行以外を削除",
"command.caseInsensitiveKeepOnlyDuplicates.title": "重複する行以外を削除(大文字と小文字を区別)",
"command.keepOnlyAdjacentDuplicates.title": "隣接して重複する行以外を削除",
"command.caseInsensitiveKeepOnlyAdjacentDuplicates.title": "隣接して重複する行以外を削除(大文字と小文字を区別)",
"command.keepOnlyUniques.title": "重複する行を全て削除",
"command.caseInsensitiveKeepOnlyUniques.title": "重複する行を全て削除(大文字と小文字を区別)",
"command.keepNumberOfRandomLines.title": "任意の行数をランダムに抽出",
"command.keepPercentageOfRandomLines.title": "割合を指定して行をランダムに抽出",
"command.removeEmptyLines.title": "空行を削除",
"command.removeSurplusEmptyLines.title": "連続する空行を削除",
"command.removeBlankLines.title": "空白行を削除",
"command.removeSurplusBlankLines.title": "連続する空白行を削除",
"command.removeControlCharacters.title": "制御文字を削除",
"submenu.filterLines.label": "行の抽出",
"submenu.extraction.label": "行の情報の抽出",
"submenu.formatContent.label": "コンテンツのフォーマット",
"submenu.changeLetters.label": "文字の変換",
"submenu.insertFacts.label": "パスや日時の挿入",
"submenu.insertNumbers.label": "連番の挿入",
"submenu.insertSequences.label": "連続文字列の挿入",
"submenu.paste.label": "展開貼り付け",
"submenu.textSlots.label": "テキストスロット(クリップボード)",
"submenu.convert.label": "変換",
"submenu.increaseDecrease.label": "数値を増やす・減らす",
"submenu.encodeDecode.label": "エンコード・デコード",
"submenu.joinSplitLines.label": "行の結合・分割",
"submenu.sortLines.label": "行の並べ替え",
"submenu.generateFakeContent.label": "ダミー・ランダム文字列の生成",
"submenu.selection.label": "選択範囲の操作",
"submenu.remove.label": "コンテンツの削除",
"properties.caseSensitiveFiltering.description": "文字列を抽出する際に大文字と小文字を区別します。",
"properties.defaultPadString.description": "「左パディング」「右パディング」コマンドで挿入されるデフォルトの文字。",
"properties.insertUppercaseHexNumbers.description": "16進数値を挿入する際に大文字を使用します。",
"properties.insertUppercaseGuids.description": "GUIDを挿入する際に大文字を使用します。",
"properties.defaultGuidType.description": "GUIDを挿入する際のタイプを制御します。デフォルトでは、コマンド実行時に毎回確認します。",
"properties.loremIpsum.wordsPerSentence.min.description": "生成されたLorem ipsumテキストの文中の最小単語数。",
"properties.loremIpsum.wordsPerSentence.max.description": "生成されたLorem ipsumテキストの文中の最大単語数。",
"properties.loremIpsum.sentencesPerParagraph.min.description": "生成されたLorem ipsumテキストの段落内の最小文章数。",
"properties.loremIpsum.sentencesPerParagraph.max.description": "生成されたLorem ipsumテキストの段落内の最大文章数。",
"properties.customLocale.description": "日時に関するコマンドを実行する際にシステムロケールの代わりに使用する、カスタムロケール(例: `en-US`, `ja-JP`)。"
}