|
| 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 | +}); |
0 commit comments