Skip to content

Commit 5c8d677

Browse files
authored
[FINDSTR] Add Japanese (ja-JP) translation (reactos#7760)
JIRA issue: CORE-18706
1 parent 84f3a2b commit 5c8d677

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

base/applications/findstr/findstr.rc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
4040
#ifdef LANGUAGE_IT_IT
4141
#include "lang/it-IT.rc"
4242
#endif
43+
#ifdef LANGUAGE_JA_JP
44+
#include "lang/ja-JP.rc"
45+
#endif
4346
#ifdef LANGUAGE_LT_LT
4447
#include "lang/lt-LT.rc"
4548
#endif
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
LANGUAGE LANG_JAPANESE, SUBLANG_DEFAULT
2+
3+
STRINGTABLE
4+
BEGIN
5+
IDS_USAGE "FINDSTR: 文字列を含むファイルのすべての行を出力します。\n\n\
6+
FIND [ /C ] [ /I ] [ /N ] [ /V ] ""文字列"" [ ファイル... ]\n\
7+
/C 文字列を含む行の個数を数えます\n\
8+
/I 大文字小文字を無視します\n\
9+
/N 表示される行に1から番号を付けます\n\
10+
/V 文字列を含まない行を出力します"
11+
IDS_NO_SUCH_FILE "FINDSTR: %s: そのようなファイルはありません\n"
12+
IDS_CANNOT_OPEN "FINDSTR: %s: ファイルが開けません\n"
13+
END

0 commit comments

Comments
 (0)