default.inc.php 1.9 KB

123456789101112131415161718192021222324252627
  1. <?php
  2. /*
  3. * Filename: assets/plugins/tinymce/lang/japanese-utf8.inc.php
  4. * Function: Japanese language file for TinyMCE. Needs to be translated and re-encoded!
  5. * Encoding: ISO-Latin-1
  6. * Author: yamamoto
  7. * Date: 2006/07/03
  8. * Version: 2.0.6.1
  9. * MODx version: 0.9.2
  10. */
  11. include_once(dirname(dirname(__FILE__)).'/en/default.inc.php'); // fallback for missing defaults or new additions
  12. $_lang['tinymce_editor_theme_title'] = "テーマ:";
  13. $_lang['tinymce_editor_theme_message'] = "テーマを選択し、ツールバーアイコンのセットおよびエディタのデザインを変更できます。";
  14. $_lang['tinymce_editor_custom_plugins_title'] = "Custom Plugins:";
  15. $_lang['tinymce_editor_custom_plugins_message'] = "Enter the plugins to use for the 'custom' theme as a comma separated list.";
  16. $_lang['tinymce_editor_custom_buttons_title'] = "Custom Buttons:";
  17. $_lang['tinymce_editor_custom_buttons_message'] = "Enter the buttons to use for the 'custom' theme as a comma separated list for each row. Be sure that each button has the required plugin enabled in the 'Custom Plugins' setting.";
  18. $_lang['tinymce_editor_css_selectors_title'] = "CSSスタイルセレクタ:";
  19. $_lang['tinymce_editor_css_selectors_message'] = "class=xxxxxという形で任意のタグに割り当てる「CSSセレクタ」をここで設定できます。<br />書式:'等幅フォント=mono;小さい文字=smallText'<br />上記のように、複数のスタイルをセミコロンで区切って指定します。最後の項目の後ろにはセミコロンを付けないでください。";
  20. $_lang['tinymce_settings'] = "TinyMCEの設定";
  21. $_lang['tinymce_theme_simple'] = "Simple";
  22. $_lang['tinymce_theme_advanced'] = "Advanced";
  23. $_lang['tinymce_theme_editor'] = "Content Editor";
  24. $_lang['tinymce_theme_custom'] = "Custom";
  25. ?>