2016-05-07 23:31:30 +00:00
|
|
|
|
|
|
|
{{* Strings which are needed for some js functions (e.g. translation or the interval for page update)
|
|
|
|
They are loaded into the html <head> so that js functions can use them *}}
|
2017-10-20 13:21:42 +00:00
|
|
|
<script type="text/javascript">
|
2016-05-07 23:31:30 +00:00
|
|
|
var updateInterval = {{$update_interval}};
|
|
|
|
|
|
|
|
var localUser = {{if $local_user}}{{$local_user}}{{else}}false{{/if}};
|
|
|
|
var aStr = {
|
2023-01-09 16:23:39 +00:00
|
|
|
'delitem' : "{{$delitem|escape:'javascript' nofilter}}",
|
|
|
|
'blockAuthor' : "{{$blockAuthor|escape:'javascript' nofilter}}",
|
|
|
|
'ignoreAuthor' : "{{$ignoreAuthor|escape:'javascript' nofilter}}",
|
2016-05-07 23:31:30 +00:00
|
|
|
};
|
2023-03-11 18:23:48 +00:00
|
|
|
var aActErr = {
|
|
|
|
'like' : "{{$likeError}}",
|
|
|
|
'dislike' : "{{$dislikeError}}",
|
|
|
|
'announce' : "{{$announceError}}",
|
2023-03-11 16:26:00 +00:00
|
|
|
};
|
2023-03-11 18:23:48 +00:00
|
|
|
var aErrType = {
|
|
|
|
'srvErr' : "{{$srvError}}",
|
|
|
|
'netErr' : "{{$netError}}",
|
2023-03-11 16:26:00 +00:00
|
|
|
};
|
2016-05-07 23:31:30 +00:00
|
|
|
</script>
|