bsw@441: slot.select("title", function() bsw@441: ui.container{ bsw@441: attr = { class = "lang_chooser" }, bsw@441: content = function() bsw@441: for i, lang in ipairs{"en", "de", "eo"} do bsw@441: ui.link{ bsw@441: content = function() bsw@441: ui.image{ bsw@441: static = "lang/" .. lang .. ".png", bsw@441: attr = { style = "margin-left: 0.5em;", alt = lang, title = lang } bsw@441: } bsw@441: end, bsw@441: text = _('Select language "#{langcode}"', { langcode = lang }), bsw@441: module = "index", bsw@441: action = "set_lang", bsw@441: params = { lang = lang }, bsw@441: routing = { bsw@441: default = { bsw@441: mode = "redirect", bsw@441: module = request.get_module(), bsw@441: view = request.get_view(), bsw@441: id = param.get_id_cgi(), bsw@441: params = param.get_all_cgi() bsw@441: } bsw@441: } bsw@441: } bsw@441: end bsw@441: end bsw@441: } bsw@441: end) bsw@441: