summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2009-12-23 14:31:56 -0800
committerEvan Prodromou <evan@status.net>2009-12-23 14:31:56 -0800
commitda5db060e8c2322294e7bc0866078611cc290790 (patch)
treef3cbed89ddd45b170bb2171dc4a73852d0fa2356 /lib
parent3262930ed46936140244c5385e4b172632d2dd44 (diff)
parent9c1103703fdab14c7d977263792cf5edcbd8a4da (diff)
Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
Diffstat (limited to 'lib')
-rw-r--r--lib/repeatform.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/repeatform.php b/lib/repeatform.php
index 50e5d6dbe..4f1c8aa32 100644
--- a/lib/repeatform.php
+++ b/lib/repeatform.php
@@ -104,7 +104,7 @@ class RepeatForm extends Form
*/
function formLegend()
{
- $this->out->element('legend', null, _('Repeat this notice'));
+ $this->out->element('legend', null, _('Repeat this notice?'));
}
/**
@@ -129,7 +129,7 @@ class RepeatForm extends Form
function formActions()
{
$this->out->submit('repeat-submit-' . $this->notice->id,
- _('Repeat'), 'submit', null, _('Repeat this notice'));
+ _('Yes'), 'submit', null, _('Repeat this notice'));
}
/**