The version of vichan running on lainchan.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
3.2KB

  1. /**
  2. * @author <Yoshihiro Misawa> <myoshi321go@gmail.com>
  3. * @license [MIT](http://www.opensource.org/licenses/mit-license.php)
  4. */
  5. (function ($) {
  6. 'use strict';
  7. $.sceditor.locale['ja'] = {
  8. 'Bold': '太字',
  9. 'Italic': '斜字',
  10. 'Underline': '下線',
  11. 'Strikethrough': '取り消し線',
  12. 'Subscript': '下付き文字',
  13. 'Superscript': '上付き文字',
  14. 'Align left': '左揃え',
  15. 'Center': '中央揃え',
  16. 'Align right': '右揃え',
  17. 'Justify': '均等揃え',
  18. 'Font Name': 'フォント名',
  19. 'Font Size': 'フォントサイズ',
  20. 'Font Color': 'フォントの色',
  21. 'Remove Formatting': '書式解除',
  22. 'Cut': '切り取り',
  23. 'Your browser does not allow the cut command. Please use the keyboard shortcut Ctrl/Cmd-X': 'お使いのブラウザではカットコマンドを許可されていません。 キーボードショートカットの Ctrl/Cmd-X をお使いください。',
  24. 'Copy': 'コピー',
  25. 'Your browser does not allow the copy command. Please use the keyboard shortcut Ctrl/Cmd-C': 'お使いのブラウザではコピーコマンドを許可されていません。 キーボードショートカットの Ctrl/Cmd-C をお使いください。',
  26. 'Paste': '貼り付け',
  27. 'Your browser does not allow the paste command. Please use the keyboard shortcut Ctrl/Cmd-V': 'お使いのブラウザでは貼り付けコマンドを許可されていません。 キーボードショートカットの Ctrl/Cmd-V をお使いください。',
  28. 'Paste your text inside the following box:': '以下にテキストを貼り付けてください。',
  29. 'Paste Text': 'テキストを貼り付け',
  30. 'Bullet list': '箇条書き',
  31. 'Numbered list': '段落番号',
  32. 'Undo': '元に戻す',
  33. 'Redo': 'やり直す',
  34. 'Rows:': '行数',
  35. 'Cols:': '列数',
  36. 'Insert a table': '表を挿入',
  37. 'Insert a horizontal rule': '水平線を挿入',
  38. 'Code': 'コード',
  39. 'Width (optional):': '幅 (オプション)',
  40. 'Height (optional):': '高さ (オプション)',
  41. 'Insert an image': '画像を挿入',
  42. 'E-mail:': 'メールアドレス',
  43. 'Insert an email': 'メールアドレスを挿入',
  44. //'URL:': ',
  45. 'Insert a link': 'リンクを挿入',
  46. 'Unlink': 'リンクを解除',
  47. //'More': ',
  48. 'Insert an emoticon': '顔文字を挿入',
  49. 'Video URL:': '動画URL',
  50. 'Insert': '挿入',
  51. 'Insert a YouTube video': 'Youtubeを挿入',
  52. 'Insert current date': '現在の日付を挿入',
  53. 'Insert current time': '現在の時間を挿入',
  54. 'Print': '印刷',
  55. 'View source': 'ソースを表示',
  56. 'Description (optional):': '説明 (オプション)',
  57. 'Enter the image URL:': '画像URLを入力してください。',
  58. 'Enter the e-mail address:': 'メールアドレスを入力してください。',
  59. 'Enter the displayed text:': '表示テキストを入力してください。',
  60. 'Enter URL:': 'URLを入力してください。',
  61. 'Enter the YouTube video URL or ID:': 'Youtubeの動画URLまたはIDを入力してください。',
  62. 'Insert a Quote': '引用を挿入',
  63. 'Invalid YouTube video': '不正なYoutube動画',
  64. 'Left-to-Right': '左から右へ',
  65. 'Right-to-Left': '右から左へ',
  66. 'Maximize': '最大化',
  67. dateFormat: 'year-month-day'
  68. };
  69. })(jQuery);