friendica/view/theme/frio/templates/js_strings.tpl

24 lines
1.1 KiB
Smarty
Raw Normal View History

{{* 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 15:21:42 +02:00
<script type="text/javascript">
var updateInterval = {{$update_interval}};
var localUser = {{if $local_user}}{{$local_user}}{{else}}false{{/if}};
var aStr = {
2023-01-09 17:23:39 +01:00
'delitem' : "{{$delitem|escape:'javascript' nofilter}}",
'blockAuthor' : "{{$blockAuthor|escape:'javascript' nofilter}}",
'ignoreAuthor' : "{{$ignoreAuthor|escape:'javascript' nofilter}}",
};
2023-03-11 17:26:00 +01:00
var aActNetErr = {
'like' : "{{$likeNetError}}",
'dislike' : "{{$dislikeNetError}}",
'announce' : "{{$annonNetError}}",
};
var aActSrvErr = {
'like' : "{{$likeSrvError}}",
'dislike' : "{{$dislikeSrvError}}",
'announce' : "{{$annonSrvError}}",
};
</script>