Merge pull request #2869 from Hypolite/fix-frio-calendar-strings
Fix frio calendar strings
This commit is contained in:
commit
5205f14aee
2 changed files with 132 additions and 62 deletions
|
@ -30,21 +30,62 @@
|
||||||
$('#id_finish_text').prop("disabled", false);
|
$('#id_finish_text').prop("disabled", false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#events-calendar').fullCalendar({
|
$('#events-calendar').fullCalendar({
|
||||||
firstDay: {{$i18n.firstDay}},
|
firstDay: '{{$i18n.firstDay|escape:'quotes'}}',
|
||||||
monthNames: ['{{$i18n.January}}','{{$i18n.February}}','{{$i18n.March}}','{{$i18n.April}}','{{$i18n.May}}','{{$i18n.June}}','{{$i18n.July}}','{{$i18n.August}}','{{$i18n.September}}','{{$i18n.October}}','{{$i18n.November}}','{{$i18n.December}}'],
|
monthNames: [
|
||||||
monthNamesShort: ['{{$i18n.Jan}}','{{$i18n.Feb}}','{{$i18n.Mar}}','{{$i18n.Apr}}','{{$i18n.May}}','{{$i18n.Jun}}','{{$i18n.Jul}}','{{$i18n.Aug}}','{{$i18n.Sep}}','{{$i18n.Oct}}','{{$i18n.Nov}}','{{$i18n.Dec}}'],
|
'{{$i18n.January|escape:'quotes'}}',
|
||||||
dayNames: ['{{$i18n.Sunday}}','{{$i18n.Monday}}','{{$i18n.Tuesday}}','{{$i18n.Wednesday}}','{{$i18n.Thursday}}','{{$i18n.Friday}}','{{$i18n.Saturday}}'],
|
'{{$i18n.February|escape:'quotes'}}',
|
||||||
dayNamesShort: ['{{$i18n.Sun}}','{{$i18n.Mon}}','{{$i18n.Tue}}','{{$i18n.Wed}}','{{$i18n.Thu}}','{{$i18n.Fri}}','{{$i18n.Sat}}'],
|
'{{$i18n.March|escape:'quotes'}}',
|
||||||
allDayText: '{{$i18n.allday}}',
|
'{{$i18n.April|escape:'quotes'}}',
|
||||||
noEventsMessage: '{{$i18n.noevent}}',
|
'{{$i18n.May|escape:'quotes'}}',
|
||||||
|
'{{$i18n.June|escape:'quotes'}}',
|
||||||
|
'{{$i18n.July|escape:'quotes'}}',
|
||||||
|
'{{$i18n.August|escape:'quotes'}}',
|
||||||
|
'{{$i18n.September|escape:'quotes'}}',
|
||||||
|
'{{$i18n.October|escape:'quotes'}}',
|
||||||
|
'{{$i18n.November|escape:'quotes'}}',
|
||||||
|
'{{$i18n.December|escape:'quotes'}}'
|
||||||
|
],
|
||||||
|
monthNamesShort: [
|
||||||
|
'{{$i18n.Jan|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Feb|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Mar|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Apr|escape:'quotes'}}',
|
||||||
|
'{{$i18n.May|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Jun|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Jul|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Aug|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Sep|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Oct|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Nov|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Dec|escape:'quotes'}}'
|
||||||
|
],
|
||||||
|
dayNames: [
|
||||||
|
'{{$i18n.Sunday|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Monday|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Tuesday|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Wednesday|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Thursday|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Friday|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Saturday|escape:'quotes'}}'
|
||||||
|
],
|
||||||
|
dayNamesShort: [
|
||||||
|
'{{$i18n.Sun|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Mon|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Tue|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Wed|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Thu|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Fri|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Sat|escape:'quotes'}}'
|
||||||
|
],
|
||||||
|
allDayText: '{{$i18n.allday|escape:'quotes'}}',
|
||||||
|
noEventsMessage: '{{$i18n.noevent|escape:'quotes'}}',
|
||||||
buttonText: {
|
buttonText: {
|
||||||
today: '{{$i18n.today}}',
|
today: '{{$i18n.today|escape:'quotes'}}',
|
||||||
month: '{{$i18n.month}}',
|
month: '{{$i18n.month|escape:'quotes'}}',
|
||||||
week: '{{$i18n.week}}',
|
week: '{{$i18n.week|escape:'quotes'}}',
|
||||||
day: '{{$i18n.day}}'
|
day: '{{$i18n.day|escape:'quotes'}}'
|
||||||
},
|
},
|
||||||
events: '{{$baseurl}}{{$module_url}}/json/',
|
events: '{{$baseurl}}{{$module_url}}/json/',
|
||||||
header: {
|
header: {
|
||||||
|
@ -63,7 +104,6 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
eventRender: function(event, element, view) {
|
eventRender: function(event, element, view) {
|
||||||
//console.log(view.name);
|
|
||||||
if (event.item['author-name']==null) return;
|
if (event.item['author-name']==null) return;
|
||||||
switch(view.name){
|
switch(view.name){
|
||||||
case "month":
|
case "month":
|
||||||
|
@ -99,15 +139,15 @@
|
||||||
|
|
||||||
// center on date
|
// center on date
|
||||||
var args=location.href.replace(baseurl,"").split("/");
|
var args=location.href.replace(baseurl,"").split("/");
|
||||||
{{if $modparams == 2}}
|
{{if $modparams == 2}}
|
||||||
if (args.length>=5) {
|
if (args.length>=5) {
|
||||||
$("#events-calendar").fullCalendar('gotoDate',args[3] , args[4]-1);
|
$("#events-calendar").fullCalendar('gotoDate',args[3] , args[4]-1);
|
||||||
}
|
}
|
||||||
{{else}}
|
{{else}}
|
||||||
if (args.length>=4) {
|
if (args.length>=4) {
|
||||||
$("#events-calendar").fullCalendar('gotoDate',args[2] , args[3]-1);
|
$("#events-calendar").fullCalendar('gotoDate',args[2] , args[3]-1);
|
||||||
}
|
}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
// show event popup
|
// show event popup
|
||||||
var hash = location.hash.split("-")
|
var hash = location.hash.split("-")
|
||||||
|
@ -116,13 +156,11 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
{{if $editselect != 'none'}}
|
{{if $editselect != 'none'}}
|
||||||
<script language="javascript" type="text/javascript"
|
<script language="javascript" type="text/javascript"
|
||||||
src="{{$baseurl}}/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
|
src="{{$baseurl}}/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
|
||||||
<script language="javascript" type="text/javascript">
|
<script language="javascript" type="text/javascript">
|
||||||
|
|
||||||
|
|
||||||
tinyMCE.init({
|
tinyMCE.init({
|
||||||
theme : "advanced",
|
theme : "advanced",
|
||||||
mode : "textareas",
|
mode : "textareas",
|
||||||
|
@ -139,8 +177,6 @@
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
//force_p_newlines : false,
|
|
||||||
//force_br_newlines : true,
|
|
||||||
forced_root_block : 'div',
|
forced_root_block : 'div',
|
||||||
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
|
@ -155,15 +191,14 @@
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('.comment-edit-bb').hide();
|
$('.comment-edit-bb').hide();
|
||||||
});
|
});
|
||||||
{{else}}
|
{{else}}
|
||||||
<script language="javascript" type="text/javascript">
|
<script language="javascript" type="text/javascript">
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
{{if $editselect = 'none'}}
|
{{if $editselect = 'none'}}
|
||||||
$("#comment-edit-text-desc").bbco_autocomplete('bbcode');
|
$("#comment-edit-text-desc").bbco_autocomplete('bbcode');
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
$('#id_share').change(function() {
|
$('#id_share').change(function() {
|
||||||
|
|
||||||
|
@ -175,7 +210,6 @@
|
||||||
}
|
}
|
||||||
}).trigger('change');
|
}).trigger('change');
|
||||||
|
|
||||||
|
|
||||||
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
|
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
|
||||||
var selstr;
|
var selstr;
|
||||||
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
|
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
|
||||||
|
|
|
@ -6,27 +6,67 @@
|
||||||
<script type="text/javascript" src="{{$baseurl}}/library/fullcalendar/fullcalendar.min.js"></script>
|
<script type="text/javascript" src="{{$baseurl}}/library/fullcalendar/fullcalendar.min.js"></script>
|
||||||
<script type="text/javascript" src="view/theme/frio/js/mod_events.js"></script>
|
<script type="text/javascript" src="view/theme/frio/js/mod_events.js"></script>
|
||||||
|
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript">
|
<script language="javascript" type="text/javascript">
|
||||||
// pass php translation strings to js variables/arrays so we can make use of it in js files
|
// pass php translation strings to js variables/arrays so we can make use of it in js files
|
||||||
aStr.monthNames = ['{{$i18n.January}}','{{$i18n.February}}','{{$i18n.March}}','{{$i18n.April}}','{{$i18n.May}}','{{$i18n.June}}','{{$i18n.July}}','{{$i18n.August}}','{{$i18n.September}}','{{$i18n.October}}','{{$i18n.November}}','{{$i18n.December}}'];
|
aStr.monthNames = [
|
||||||
aStr.monthNamesShort = ['{{$i18n.Jan}}','{{$i18n.Feb}}','{{$i18n.Mar}}','{{$i18n.Apr}}','{{$i18n.May}}','{{$i18n.Jun}}','{{$i18n.Jul}}','{{$i18n.Aug}}','{{$i18n.Sep}}','{{$i18n.Oct}}','{{$i18n.Nov}}','{{$i18n.Dec}}'];
|
'{{$i18n.January|escape:'quotes'}}',
|
||||||
aStr.monthNamesShort = ['{{$i18n.Jan}}','{{$i18n.Feb}}','{{$i18n.Mar}}','{{$i18n.Apr}}','{{$i18n.May}}','{{$i18n.Jun}}','{{$i18n.Jul}}','{{$i18n.Aug}}','{{$i18n.Sep}}','{{$i18n.Oct}}','{{$i18n.Nov}}','{{$i18n.Dec}}'];
|
'{{$i18n.February|escape:'quotes'}}',
|
||||||
aStr.dayNames = ['{{$i18n.Sunday}}','{{$i18n.Monday}}','{{$i18n.Tuesday}}','{{$i18n.Wednesday}}','{{$i18n.Thursday}}','{{$i18n.Friday}}','{{$i18n.Saturday}}'];
|
'{{$i18n.March|escape:'quotes'}}',
|
||||||
aStr.dayNamesShort = ['{{$i18n.Sun}}','{{$i18n.Mon}}','{{$i18n.Tue}}','{{$i18n.Wed}}','{{$i18n.Thu}}','{{$i18n.Fri}}','{{$i18n.Sat}}'];
|
'{{$i18n.April|escape:'quotes'}}',
|
||||||
|
'{{$i18n.May|escape:'quotes'}}',
|
||||||
|
'{{$i18n.June|escape:'quotes'}}',
|
||||||
|
'{{$i18n.July|escape:'quotes'}}',
|
||||||
|
'{{$i18n.August|escape:'quotes'}}',
|
||||||
|
'{{$i18n.September|escape:'quotes'}}',
|
||||||
|
'{{$i18n.October|escape:'quotes'}}',
|
||||||
|
'{{$i18n.November|escape:'quotes'}}',
|
||||||
|
'{{$i18n.December|escape:'quotes'}}'
|
||||||
|
];
|
||||||
|
aStr.monthNamesShort = [
|
||||||
|
'{{$i18n.Jan|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Feb|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Mar|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Apr|escape:'quotes'}}',
|
||||||
|
'{{$i18n.May|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Jun|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Jul|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Aug|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Sep|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Oct|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Nov|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Dec|escape:'quotes'}}'
|
||||||
|
];
|
||||||
|
aStr.dayNames = [
|
||||||
|
'{{$i18n.Sunday|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Monday|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Tuesday|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Wednesday|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Thursday|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Friday|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Saturday|escape:'quotes'}}'
|
||||||
|
];
|
||||||
|
aStr.dayNamesShort = [
|
||||||
|
'{{$i18n.Sun|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Mon|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Tue|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Wed|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Thu|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Fri|escape:'quotes'}}',
|
||||||
|
'{{$i18n.Sat|escape:'quotes'}}'
|
||||||
|
];
|
||||||
|
|
||||||
aStr.firstDay = '{{$i18n.firstDay}}';
|
aStr.firstDay = '{{$i18n.firstDay|escape:'quotes'}}';
|
||||||
aStr.today = '{{$i18n.today}}';
|
aStr.today = '{{$i18n.today|escape:'quotes'}}';
|
||||||
aStr.month = '{{$i18n.month}}';
|
aStr.month = '{{$i18n.month|escape:'quotes'}}';
|
||||||
aStr.week = '{{$i18n.week}}';
|
aStr.week = '{{$i18n.week|escape:'quotes'}}';
|
||||||
aStr.day = '{{$i18n.day}}';
|
aStr.day = '{{$i18n.day|escape:'quotes'}}';
|
||||||
|
|
||||||
aStr.allday = '{{$i18n.allday}}';
|
aStr.allday = '{{$i18n.allday|escape:'quotes'}}';
|
||||||
aStr.noevent = '{{$i18n.noevent}}';
|
aStr.noevent = '{{$i18n.noevent|escape:'quotes'}}';
|
||||||
|
|
||||||
aStr.dtstartLabel = '{{$i18n.dtstart_label}}';
|
aStr.dtstartLabel = '{{$i18n.dtstart_label|escape:'quotes'}}';
|
||||||
aStr.dtendLabel = '{{$i18n.dtend_label}}';
|
aStr.dtendLabel = '{{$i18n.dtend_label|escape:'quotes'}}';
|
||||||
aStr.locationLabel = '{{$i18n.location_label}}';
|
aStr.locationLabel = '{{$i18n.location_label|escape:'quotes'}}';
|
||||||
|
|
||||||
var moduleUrl = '{{$module_url}}';
|
var moduleUrl = '{{$module_url}}';
|
||||||
var modparams = {{$modparams}}
|
var modparams = {{$modparams}}
|
||||||
|
@ -38,7 +78,6 @@
|
||||||
src="{{$baseurl}}/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
|
src="{{$baseurl}}/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
|
||||||
<script language="javascript" type="text/javascript">
|
<script language="javascript" type="text/javascript">
|
||||||
|
|
||||||
|
|
||||||
tinyMCE.init({
|
tinyMCE.init({
|
||||||
theme : "advanced",
|
theme : "advanced",
|
||||||
mode : "textareas",
|
mode : "textareas",
|
||||||
|
@ -55,8 +94,6 @@
|
||||||
entity_encoding : "raw",
|
entity_encoding : "raw",
|
||||||
add_unload_trigger : false,
|
add_unload_trigger : false,
|
||||||
remove_linebreaks : false,
|
remove_linebreaks : false,
|
||||||
//force_p_newlines : false,
|
|
||||||
//force_br_newlines : true,
|
|
||||||
forced_root_block : 'div',
|
forced_root_block : 'div',
|
||||||
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
content_css: "{{$baseurl}}/view/custom_tinymce.css",
|
||||||
theme_advanced_path : false,
|
theme_advanced_path : false,
|
||||||
|
@ -71,15 +108,14 @@
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('.comment-edit-bb').hide();
|
$('.comment-edit-bb').hide();
|
||||||
});
|
});
|
||||||
{{else}}
|
{{else}}
|
||||||
<script language="javascript" type="text/javascript">
|
<script language="javascript" type="text/javascript">
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
{{if $editselect = 'none'}}
|
{{if $editselect = 'none'}}
|
||||||
$("#comment-edit-text-desc").bbco_autocomplete('bbcode');
|
$("#comment-edit-text-desc").bbco_autocomplete('bbcode');
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue