1
|
1 |
// UK lang variables
|
|
2 |
|
|
3 |
tinyMCE.addToLang('template',{
|
|
4 |
title : 'Templates',
|
|
5 |
label : 'Template',
|
|
6 |
desc_label : 'Description',
|
|
7 |
desc : 'Insert predefined template content',
|
|
8 |
select : 'Select a template',
|
|
9 |
preview : 'Preview',
|
|
10 |
warning : 'Warning: Updating a template with a different one may cause data loss.',
|
|
11 |
def_date_format : '%Y-%m-%d %H:%M:%S',
|
|
12 |
months_long : new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"),
|
|
13 |
months_short : new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"),
|
|
14 |
day_long : new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"),
|
|
15 |
day_short : new Array("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun")
|
|
16 |
});
|