The version of vichan running on lainchan.org
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
1.9KB

  1. /**
  2. * @author <Your Name> <Your e-mail/Website if you would like>
  3. * @license [MIT](http://www.opensource.org/licenses/mit-license.php)
  4. */
  5. (function ($) {
  6. 'use strict';
  7. // Replace <code> with the language code, e.g. no, fr, en, ect.
  8. $.sceditor.locale['<code>'] = {
  9. // Original string is on the left, place the translation between
  10. // the quotes on the right
  11. 'Bold': '',
  12. 'Italic': '',
  13. 'Underline': '',
  14. 'Strikethrough': '',
  15. 'Subscript': '',
  16. 'Superscript': '',
  17. 'Align left': '',
  18. 'Center': '',
  19. 'Align right': '',
  20. 'Justify': '',
  21. 'Font Name': '',
  22. 'Font Size': '',
  23. 'Font Color': '',
  24. 'Remove Formatting': '',
  25. 'Cut': '',
  26. 'Your browser does not allow the cut command. Please use the keyboard shortcut Ctrl/Cmd-X': '',
  27. 'Copy': '',
  28. 'Your browser does not allow the copy command. Please use the keyboard shortcut Ctrl/Cmd-C': '',
  29. 'Paste': '',
  30. 'Your browser does not allow the paste command. Please use the keyboard shortcut Ctrl/Cmd-V': '',
  31. 'Paste your text inside the following box:': '',
  32. 'Paste Text': '',
  33. 'Bullet list': '',
  34. 'Numbered list': '',
  35. 'Undo': '',
  36. 'Redo': '',
  37. 'Rows:': '',
  38. 'Cols:': '',
  39. 'Insert a table': '',
  40. 'Insert a horizontal rule': '',
  41. 'Code': '',
  42. 'Width (optional):': '',
  43. 'Height (optional):': '',
  44. 'Insert an image': '',
  45. 'E-mail:': '',
  46. 'Insert an email': '',
  47. 'URL:': '',
  48. 'Insert a link': '',
  49. 'Unlink': '',
  50. 'More': '',
  51. 'Insert an emoticon': '',
  52. 'Video URL:': '',
  53. 'Insert': '',
  54. 'Insert a YouTube video': '',
  55. 'Insert current date': '',
  56. 'Insert current time': '',
  57. 'Print': '',
  58. 'View source': '',
  59. 'Description (optional):': '',
  60. 'Enter the image URL:': '',
  61. 'Enter the e-mail address:': '',
  62. 'Enter the displayed text:': '',
  63. 'Enter URL:': '',
  64. 'Enter the YouTube video URL or ID:': '',
  65. 'Insert a Quote': '',
  66. 'Invalid YouTube video': '',
  67. // month format, replace - with the date format seperator and order in the
  68. // order used
  69. dateFormat: 'day-month-year'
  70. };
  71. })(jQuery);