aboutsummaryrefslogtreecommitdiff
path: root/Html/js/SCEditor/languages/template.js
blob: 6f3cf0bd914af8141ba4de288c591ad98b8c7ba8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/**
 * @author <Your Name> <Your e-mail/Website if you would like>
 * @license [MIT](http://www.opensource.org/licenses/mit-license.php)
 */
(function ($) {
	'use strict';

	// Replace <code> with the language code, e.g. no, fr, en, ect.
	$.sceditor.locale['<code>'] = {

		// Original string is on the left, place the translation between
		// the quotes on the right
		'Bold': '',
		'Italic': '',
		'Underline': '',
		'Strikethrough': '',
		'Subscript': '',
		'Superscript': '',
		'Align left': '',
		'Center': '',
		'Align right': '',
		'Justify': '',
		'Font Name': '',
		'Font Size': '',
		'Font Color': '',
		'Remove Formatting': '',
		'Cut': '',
		'Your browser does not allow the cut command. Please use the keyboard shortcut Ctrl/Cmd-X': '',
		'Copy': '',
		'Your browser does not allow the copy command. Please use the keyboard shortcut Ctrl/Cmd-C': '',
		'Paste': '',
		'Your browser does not allow the paste command. Please use the keyboard shortcut Ctrl/Cmd-V': '',
		'Paste your text inside the following box:': '',
		'Paste Text': '',
		'Bullet list': '',
		'Numbered list': '',
		'Undo': '',
		'Redo': '',
		'Rows:': '',
		'Cols:': '',
		'Insert a table': '',
		'Insert a horizontal rule': '',
		'Code': '',
		'Width (optional):': '',
		'Height (optional):': '',
		'Insert an image': '',
		'E-mail:': '',
		'Insert an email': '',
		'URL:': '',
		'Insert a link': '',
		'Unlink': '',
		'More': '',
		'Insert an emoticon': '',
		'Video URL:': '',
		'Insert': '',
		'Insert a YouTube video': '',
		'Insert current date': '',
		'Insert current time': '',
		'Print': '',
		'View source': '',
		'Description (optional):': '',
		'Enter the image URL:': '',
		'Enter the e-mail address:': '',
		'Enter the displayed text:': '',
		'Enter URL:': '',
		'Enter the YouTube video URL or ID:': '',
		'Insert a Quote': '',
		'Invalid YouTube video': '',

		// month format, replace - with the date format seperator and order in the
		// order used
		dateFormat: 'day-month-year'
	};
})(jQuery);