aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-05-29 21:34:08 -0700
committerfriendica <info@friendica.com>2014-05-29 21:34:08 -0700
commit33cf83175d2af2bc62b694368dae7126d9bfc9bc (patch)
treef44be46120fb813477060dde0c39243012ed703c
parent832cbbec15ae2abbd04d775e4cfb056e797722f1 (diff)
downloadvolse-hubzilla-33cf83175d2af2bc62b694368dae7126d9bfc9bc.tar.gz
volse-hubzilla-33cf83175d2af2bc62b694368dae7126d9bfc9bc.tar.bz2
volse-hubzilla-33cf83175d2af2bc62b694368dae7126d9bfc9bc.zip
use consistent capitalisation in the item actions menu
-rw-r--r--include/ItemObject.php12
-rwxr-xr-xinclude/text.php2
-rwxr-xr-xmod/events.php2
3 files changed, 8 insertions, 8 deletions
diff --git a/include/ItemObject.php b/include/ItemObject.php
index b6a9a2897..e8a7e853c 100644
--- a/include/ItemObject.php
+++ b/include/ItemObject.php
@@ -115,7 +115,7 @@ class Item extends BaseObject {
);
}
- $filer = (($conv->get_profile_owner() == local_user()) ? t("save to folder") : false);
+ $filer = (($conv->get_profile_owner() == local_user()) ? t("Save to Folder") : false);
$profile_avatar = $item['author']['xchan_photo_m'];
$profile_link = chanlink_url($item['author']['xchan_url']);
@@ -164,9 +164,9 @@ class Item extends BaseObject {
// FIXME we don't need all this stuff, some can be done in the template
$star = array(
- 'do' => t("add star"),
- 'undo' => t("remove star"),
- 'toggle' => t("toggle star status"),
+ 'do' => t("Add Star"),
+ 'undo' => t("Remove Star"),
+ 'toggle' => t("Toggle Star Status"),
'classdo' => (($item['item_flags'] & ITEM_STARRED) ? "hidden" : ""),
'classundo' => (($item['item_flags'] & ITEM_STARRED) ? "" : "hidden"),
'isstarred' => (($item['item_flags'] & ITEM_STARRED) ? "starred icon-star" : "unstarred icon-star-empty"),
@@ -187,7 +187,7 @@ class Item extends BaseObject {
// FIXME - check this permission
if($conv->get_profile_owner() == local_user()) {
$tagger = array(
- 'tagit' => t("add tag"),
+ 'tagit' => t("Add Tag"),
'classtagger' => "",
);
}
@@ -208,7 +208,7 @@ class Item extends BaseObject {
$like = array( t("I like this \x28toggle\x29"), t("like"));
$dislike = array( t("I don't like this \x28toggle\x29"), t("dislike"));
if ($shareable)
- $share = array( t('Share this'), t('share'));
+ $share = array( t('Share This'), t('share'));
}
if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0)
diff --git a/include/text.php b/include/text.php
index b249c9767..b5b8ec41a 100755
--- a/include/text.php
+++ b/include/text.php
@@ -1482,7 +1482,7 @@ function get_plink($item,$conversation_mode = true) {
if(x($item,$key)) {
return array(
'href' => zid($item[$key]),
- 'title' => t('link to source'),
+ 'title' => t('Link to Source'),
);
}
else {
diff --git a/mod/events.php b/mod/events.php
index fa45c2c15..e7b5e35a9 100755
--- a/mod/events.php
+++ b/mod/events.php
@@ -352,7 +352,7 @@ function events_content(&$a) {
'is_first'=>$is_first,
'item'=>$rr,
'html'=>$html,
- 'plink' => array($rr['plink'],t('link to source'),'',''),
+ 'plink' => array($rr['plink'],t('Link to Source'),'',''),
);