26 lines
919 B
JavaScript
26 lines
919 B
JavaScript
|
|
// I18N constants
|
||
|
|
// LANG: "ja", ENCODING: UTF-8
|
||
|
|
{
|
||
|
|
// messages
|
||
|
|
"Substitute this occurrence?": "置換しますか?",
|
||
|
|
"Enter the text you want to find": "検索したいテキストを入力します",
|
||
|
|
"Inform a replacement word": "単語の置換を知らせる",
|
||
|
|
"found items": "件が検索されました",
|
||
|
|
"replaced items": "件が置換されました",
|
||
|
|
"found item": "件が検索されました",
|
||
|
|
"replaced item": "件が置換されました",
|
||
|
|
"not found": "はありません",
|
||
|
|
// window
|
||
|
|
"Find and Replace": "検索/置換",
|
||
|
|
"Search for:": "検索:",
|
||
|
|
"Replace with:": "置換:",
|
||
|
|
"Options": "設定",
|
||
|
|
"Whole words only": "完全一致のみ",
|
||
|
|
"Case sensitive search": "大文字/小文字区別",
|
||
|
|
"Substitute all occurrences": "すべて置換",
|
||
|
|
"Clear": "通常表示",
|
||
|
|
"Highlight": "強調表示",
|
||
|
|
"Undo": "元に戻す",
|
||
|
|
"Next": "次を検索",
|
||
|
|
"Done": "終了"
|
||
|
|
};
|