liquid_feedback_frontend

view app/main/_filter_view/36_html_title.lua @ 1668:6d75df24e66e

Updated German translation
author bsw
date Sun Mar 07 09:52:36 2021 +0100 (2021-03-07)
parents f52f918b38b8
children
line source
2 app.html_title = {}
4 execute.inner()
6 -- add ":" to prefix
7 if app.html_title.prefix then
8 app.html_title.prefix = app.html_title.prefix .. ": "
9 app.html_title.prefix = encode.html( app.html_title.prefix )
10 end
12 -- add "-" to title
13 if app.html_title.title then
14 app.html_title.title = app.html_title.title .. " - "
15 app.html_title.title = encode.html( app.html_title.title )
17 end
19 -- add "-" to subtitle
20 if app.html_title.subtitle then
21 app.html_title.subtitle = app.html_title.subtitle .. " - "
22 app.html_title.subtitle = encode.html( app.html_title.subtitle )
23 end
26 slot.put_into("html_title",
27 ( app.html_title.prefix or "" )
28 ..
29 ( app.html_title.title or "" )
30 ..
31 ( app.html_title.subtitle or "" )
32 ..
33 _"LiquidFeedback" .. " - " .. config.instance_name
34 )

Impressum / About Us