liquid_feedback_frontend
annotate env/util/gregor.lua @ 24:81586ea68d57
Minor bugfixes
app/main/initiative/_list.lua:
Replaced single by optional object mode
locale/translations.de.lua:
Consistent translation
app/main/initiative/_show.lua:
Added missing case "not approved" in voting info box
app/main/initiative/_show_voting.lua:
Added link to initiative
app/main/initiative/_show_voting.lua:
Added missing argument for link
app/main/member/show_tab.lua:
Added outgoing argument to show outgoing delegations correctly
app/main/initiative/_list.lua:
Replaced single by optional object mode
locale/translations.de.lua:
Consistent translation
app/main/initiative/_show.lua:
Added missing case "not approved" in voting info box
app/main/initiative/_show_voting.lua:
Added link to initiative
app/main/initiative/_show_voting.lua:
Added missing argument for link
app/main/member/show_tab.lua:
Added outgoing argument to show outgoing delegations correctly
| author | bsw |
|---|---|
| date | Sun Feb 21 14:09:11 2010 +0100 (2010-02-21) |
| parents | 77d58efe99fd |
| children | 77260f05fd4b |
| rev | line source |
|---|---|
| bsw@11 | 1 function util.gregor(el_id) |
| bsw@11 | 2 ui.script{ script = |
| bsw@11 | 3 'gregor_addGui({' .. |
| bsw@11 | 4 'element_id: "' .. el_id .. '",' .. |
| bsw@11 | 5 'month_names: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],' .. |
| bsw@11 | 6 'weekday_names: ["Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"],' .. |
| bsw@11 | 7 'week_mode: "iso",' .. |
| bsw@11 | 8 'week_numbers: "left",' .. |
| bsw@11 | 9 '});' |
| bsw@11 | 10 } |
| bsw@11 | 11 end |