summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2010-01-14 23:32:40 +0100
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2010-01-14 23:32:40 +0100
commit68a2e46390092f034101bf1a1c9fc4a5ecc41b06 (patch)
tree9c800732b7714de4f6bb122e474f48894093c820
parent31940f930953ef16d828e359155df3950668bcde (diff)
Make page titles more consistent: no title case in four cases.
-rw-r--r--actions/confirmaddress.php2
-rw-r--r--actions/editapplication.php2
-rw-r--r--actions/newapplication.php2
-rw-r--r--actions/othersettings.php2
4 files changed, 4 insertions, 4 deletions
diff --git a/actions/confirmaddress.php b/actions/confirmaddress.php
index 6fd74f3ff..cc8351d8d 100644
--- a/actions/confirmaddress.php
+++ b/actions/confirmaddress.php
@@ -141,7 +141,7 @@ class ConfirmaddressAction extends Action
function title()
{
- return _('Confirm Address');
+ return _('Confirm address');
}
/**
diff --git a/actions/editapplication.php b/actions/editapplication.php
index 9cc3e3cea..3b120259a 100644
--- a/actions/editapplication.php
+++ b/actions/editapplication.php
@@ -51,7 +51,7 @@ class EditApplicationAction extends OwnerDesignAction
function title()
{
- return _('Edit Application');
+ return _('Edit application');
}
/**
diff --git a/actions/newapplication.php b/actions/newapplication.php
index c499fe7c7..bc5b4edaf 100644
--- a/actions/newapplication.php
+++ b/actions/newapplication.php
@@ -49,7 +49,7 @@ class NewApplicationAction extends OwnerDesignAction
function title()
{
- return _('New Application');
+ return _('New application');
}
/**
diff --git a/actions/othersettings.php b/actions/othersettings.php
index 0de7cd908..10e9873b3 100644
--- a/actions/othersettings.php
+++ b/actions/othersettings.php
@@ -57,7 +57,7 @@ class OthersettingsAction extends AccountSettingsAction
function title()
{
- return _('Other Settings');
+ return _('Other settings');
}
/**