Skip to content

Commit 23a984f

Browse files
committed
Add Japanese translation
1 parent 51bb06e commit 23a984f

File tree

3 files changed

+51
-0
lines changed

3 files changed

+51
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Adobe Brackets `developer tools` extension. [@yasinkuyu](https://twitter.com/yas
1919
* Portuguese
2020
* Russian
2121
* Czech
22+
* Japanese
2223
* Remove Empty Lines
2324
* Remove Break Lines
2425
* To Upper Case

nls/ja/strings.js

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* Copyright (c) 2012 Yasin Kuyu - twitter.com/yasinkuyu. All rights reserved.
3+
*
4+
* Permission is hereby granted, free of charge, to any person obtaining a
5+
* copy of this software and associated documentation files (the "Software"),
6+
* to deal in the Software without restriction, including without limitation
7+
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
8+
* and/or sell copies of the Software, and to permit persons to whom the
9+
* Software is furnished to do so, subject to the following conditions:
10+
*
11+
* The above copyright notice and this permission notice shall be included in
12+
* all copies or substantial portions of the Software.
13+
*
14+
*/
15+
16+
// Japanese Translation @s1r-J
17+
18+
/*jslint vars: true, plusplus: true, devel: true, nomen: true, indent: 4, maxerr: 50 */
19+
/*global define */
20+
21+
define({
22+
"MENU_LABEL" : "ツール",
23+
"MENU_NEW_DOC" : "新規HTML5ファイル作成",
24+
"VIEW_HIGHLIGHT" : "指定単語をハイライト",
25+
"STRING_REMOVE_EMPTY_LINES" : "空白行の削除",
26+
"STRING_REMOVE_BREAK_LINES" : "改行の削除",
27+
"STRING_REMOVE_LINE_NUMBERS" : "連番の削除",
28+
"STRING_REMOVE_DUPLICATE_LINES" : "重複行の削除",
29+
"STRING_UPPERCASE" : "大文字に変換",
30+
"STRING_LOWERCASE" : "小文字に変換",
31+
"STRING_TITLECASE" : "先頭文字を大文字に変換",
32+
"STRING_HTML_ENCODE" : "HTMLエンコード",
33+
"STRING_HTML_DECODE" : "HTMLデコード",
34+
"STRING_ENCODE_URI" : "URLエンコード",
35+
"STRING_DECODE_URI" : "URLデコード",
36+
"STRING_HTML_TAG_STRIP" : "HTMLタグの削除",
37+
"STRING_TRIM" : "トリム",
38+
"STRING_LTRIM" : "左側のみトリム",
39+
"STRING_RTRIM" : "右側のみトリム",
40+
"STRING_FxCHAR_REMOVE" : "先頭からX文字分削除",
41+
"STRING_LxCHAR_REMOVE" : "末尾からX文字分削除",
42+
"STRING_SEO_URL" : "SEO URLに変換",
43+
"STRING_WORD_TO_ARRAY" : "単語を配列に変換",
44+
"STRING_WORD_TO_LIST" : "単語をul/liリストに変換",
45+
"STRING_LINE_TO_LIST" : "行をul/liリストに変換",
46+
"INPUT_TITLE" : "文字の削除",
47+
"INPUT_TEXT" : "削除する文字数を入力",
48+
"SETTINGS" : "設定"
49+
});

nls/strings.js

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ define(function (require, exports, module) {
3333
"cs": true,
3434
"de": true,
3535
"it": true,
36+
"ja": true,
3637
"pt": true,
3738
"ru": true,
3839
"tr": true,

0 commit comments

Comments
 (0)