comparison src/languages/template.js @ 0:4c4fc447baea

start with sceditor-3.1.1
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 04 Aug 2022 15:21:29 -0600
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4c4fc447baea
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
8 // Replace <code> with the language code, e.g. no, fr, en, ect.
9 sceditor.locale['<code>'] = {
10
11 // Original string is on the left, place the translation between
12 // the quotes on the right
13 'Bold': '',
14 'Italic': '',
15 'Underline': '',
16 'Strikethrough': '',
17 'Subscript': '',
18 'Superscript': '',
19 'Align left': '',
20 'Center': '',
21 'Align right': '',
22 'Justify': '',
23 'Font Name': '',
24 'Font Size': '',
25 'Font Color': '',
26 'Remove Formatting': '',
27 'Cut': '',
28 'Your browser does not allow the cut command. Please use the keyboard shortcut Ctrl/Cmd-X': '',
29 'Copy': '',
30 'Your browser does not allow the copy command. Please use the keyboard shortcut Ctrl/Cmd-C': '',
31 'Paste': '',
32 'Your browser does not allow the paste command. Please use the keyboard shortcut Ctrl/Cmd-V': '',
33 'Paste your text inside the following box:': '',
34 'Paste Text': '',
35 'Bullet list': '',
36 'Numbered list': '',
37 'Undo': '',
38 'Redo': '',
39 'Rows:': '',
40 'Cols:': '',
41 'Insert a table': '',
42 'Insert a horizontal rule': '',
43 'Code': '',
44 'Width (optional):': '',
45 'Height (optional):': '',
46 'Insert an image': '',
47 'E-mail:': '',
48 'Insert an email': '',
49 'URL:': '',
50 'Insert a link': '',
51 'Unlink': '',
52 'More': '',
53 'Insert an emoticon': '',
54 'Video URL:': '',
55 'Insert': '',
56 'Insert a YouTube video': '',
57 'Insert current date': '',
58 'Insert current time': '',
59 'Print': '',
60 'View source': '',
61 'Description (optional):': '',
62 'Enter the image URL:': '',
63 'Enter the e-mail address:': '',
64 'Enter the displayed text:': '',
65 'Enter URL:': '',
66 'Enter the YouTube video URL or ID:': '',
67 'Insert a Quote': '',
68 'Invalid YouTube video': '',
69 'Drop files here': '',
70
71 // month format, replace - with the date format separator and order in the
72 // order used
73 dateFormat: 'day-month-year'
74 };
75 })();