aboutsummaryrefslogtreecommitdiffstats
path: root/share/skin/default
diff options
context:
space:
mode:
authorgroditi <groditi@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2007-11-14 19:48:24 +0000
committergroditi <groditi@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2007-11-14 19:48:24 +0000
commit891c9ccba7f6c31d0902e13e40e08e0acef5a44c (patch)
treef560e657059f98b77fa0712e00defc325ed01164 /share/skin/default
parent1ffe4ac8c3121d8e519403ccbcc4c2245947c790 (diff)
downloadreaction-891c9ccba7f6c31d0902e13e40e08e0acef5a44c.tar.gz
reaction-891c9ccba7f6c31d0902e13e40e08e0acef5a44c.zip
button labels for action form
Diffstat (limited to 'share/skin/default')
-rw-r--r--share/skin/default/layout/action_form.tt6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/skin/default/layout/action_form.tt b/share/skin/default/layout/action_form.tt
index 0e18a36..89cab92 100644
--- a/share/skin/default/layout/action_form.tt
+++ b/share/skin/default/layout/action_form.tt
@@ -27,15 +27,15 @@
[% allowed_events = viewport.accept_events; %]
[% IF allowed_events.grep('^ok$').size; %]
- <input type="submit" name="[% viewport.event_id_for('ok') | html%]" value="ok" />
+ <input type="submit" name="[% viewport.event_id_for('ok') | html%]" value="[% ok_label %]" />
[% END; %]
[% IF (viewport.ordered_fields.size != 0) && allowed_events.grep('^apply$').size; %]
- <input type="submit" name="[% viewport.event_id_for('apply') | html%]" value="apply" />
+ <input type="submit" name="[% viewport.event_id_for('apply') | html%]" value="[% apply_label %]" />
[% END; %]
[% IF allowed_events.grep('^close$').size; %]
- <input type="submit" name="[% viewport.event_id_for('close') | html%]" value="cancel" />
+ <input type="submit" name="[% viewport.event_id_for('close') | html%]" value="[% close_label %]" />
[% END; %]
<br />