aboutsummaryrefslogtreecommitdiffstats
path: root/share/skin/default
diff options
context:
space:
mode:
authormatthewt <matthewt@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2007-11-14 20:05:51 +0000
committermatthewt <matthewt@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2007-11-14 20:05:51 +0000
commit9e969ef4928c9792429b2a99ea17351a7aa4f5da (patch)
treefaece82218506cbb1ac8cb591171b66e18599abe /share/skin/default
parent27ebb6867622f4bf23121fc682d51b67a8efa290 (diff)
parent876c41dba0b40d9896b97c2b6608dcc1194b26e9 (diff)
downloadreaction-9e969ef4928c9792429b2a99ea17351a7aa4f5da.tar.gz
reaction-9e969ef4928c9792429b2a99ea17351a7aa4f5da.zip
r62507@cain (orig r402): groditi | 2007-11-14 18:33:11 +0000
r15103@deathmachine (orig r401): groditi | 2007-11-13 16:43:36 -0500 changes so far for new moose / mop r62510@cain (orig r405): groditi | 2007-11-14 19:49:50 +0000 r15169@deathmachine (orig r404): groditi | 2007-11-14 14:48:24 -0500 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 c4ba55f..473c4cd 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 />