liquid_feedback_frontend
annotate app/main/unit/list.lua @ 1785:2e3d7415dff2
Added missing translation entry
| author | bsw | 
|---|---|
| date | Tue Oct 19 14:53:36 2021 +0200 (2021-10-19) | 
| parents | 2a0d86117d54 | 
| children | 
| rev | line source | 
|---|---|
| bsw@1045 | 1 ui.title(_"Unit list") | 
| bsw@262 | 2 | 
| bsw@1504 | 3 ui.grid{ content = function() | 
| bsw@1504 | 4 ui.cell_main{ content = function() | 
| bsw@1504 | 5 | 
| bsw@1504 | 6 ui.container{ attr = { class = "mdl-card mdl-card__fullwidth mdl-shadow--2dp" }, content = function() | 
| bsw@1504 | 7 ui.container{ attr = { class = "mdl-card__title mdl-card--border" }, content = function() | 
| bsw@1504 | 8 ui.heading { attr = { class = "mdl-card__title-text" }, level = 2, content = _"Unit list" } | 
| bsw@1504 | 9 end } | 
| bsw@1504 | 10 ui.container{ attr = { class = "mdl-card__content mdl-card--border" }, content = function() | 
| bsw@1504 | 11 | 
| bsw@1504 | 12 execute.view{ module = "unit", view = "_list" } | 
| bsw@1504 | 13 end } | 
| bsw@1504 | 14 end } | 
| bsw@1504 | 15 end } | 
| bsw@1504 | 16 end } | 
| bsw@433 | 17 | 
| bsw@433 | 18 | 
| bsw@433 | 19 |