aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-05-17 16:28:16 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-05-17 16:28:16 -0700
commit91d7b0f7eb7d3d7240b9ba12e2fbd71334b5a458 (patch)
treee33928bc87d27d661303c77925a0dd5b69167006 /include
parent51b6d709965faa104b02fe148dbe8cf407ff47fa (diff)
downloadvolse-hubzilla-91d7b0f7eb7d3d7240b9ba12e2fbd71334b5a458.tar.gz
volse-hubzilla-91d7b0f7eb7d3d7240b9ba12e2fbd71334b5a458.tar.bz2
volse-hubzilla-91d7b0f7eb7d3d7240b9ba12e2fbd71334b5a458.zip
more work isolating the projectname from core.
Diffstat (limited to 'include')
-rw-r--r--include/bb2diaspora.php2
-rwxr-xr-xinclude/diaspora.php8
-rw-r--r--include/enotify.php4
3 files changed, 7 insertions, 7 deletions
diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php
index 118e78639..8129ab5e6 100644
--- a/include/bb2diaspora.php
+++ b/include/bb2diaspora.php
@@ -450,7 +450,7 @@ function format_event_diaspora($ev) {
$bd_format = t('l F d, Y \@ g:i A') ; // Friday January 18, 2011 @ 8 AM
- $o = t('Redmatrix event notification:') . "\n";
+ $o = t('$Projectname event notification:') . "\n";
$o .= '**' . (($ev['summary']) ? bb2diaspora($ev['summary']) : bb2diaspora($ev['desc'])) . '**' . "\n";
diff --git a/include/diaspora.php b/include/diaspora.php
index e8a470178..43651166d 100755
--- a/include/diaspora.php
+++ b/include/diaspora.php
@@ -706,8 +706,8 @@ function diaspora_request($importer,$xml) {
$cnv = random_string();
$mid = random_string();
- $msg = t('You have started sharing with a Redmatrix premium channel.');
- $msg .= t('Redmatrix premium channels are not available for sharing with Diaspora members. This sharing request has been blocked.') . "\r";
+ $msg = t('You have started sharing with a $Projectname premium channel.');
+ $msg .= t('$Projectname premium channels are not available for sharing with Diaspora members. This sharing request has been blocked.') . "\r";
$msg .= t('Please do not reply to this message, as this channel is not sharing with you and any reply will not be seen by the recipient.') . "\r";
$created = datetime_convert('UTC','UTC',$item['created'],'Y-m-d H:i:s \U\T\C');
@@ -2458,7 +2458,7 @@ function diaspora_send_status($item,$owner,$contact,$public_batch = false) {
'$handle' => xmlify($myaddr),
'$public' => $public,
'$created' => $created,
- '$provider' => (($item['app']) ? $item['app'] : 'redmatrix')
+ '$provider' => (($item['app']) ? $item['app'] : t('$projectname'))
));
} else {
$tpl = get_markup_template('diaspora_post.tpl');
@@ -2469,7 +2469,7 @@ function diaspora_send_status($item,$owner,$contact,$public_batch = false) {
'$handle' => xmlify($myaddr),
'$public' => $public,
'$created' => $created,
- '$provider' => (($item['app']) ? $item['app'] : 'redmatrix')
+ '$provider' => (($item['app']) ? $item['app'] : t('projectname'))
));
}
diff --git a/include/enotify.php b/include/enotify.php
index b5495dc7c..b1aae816b 100644
--- a/include/enotify.php
+++ b/include/enotify.php
@@ -55,8 +55,8 @@ function notification($params) {
push_lang($recip['account_language']); // should probably have a channel language
- $banner = t('Red Matrix Notification');
- $product = t('redmatrix'); // PLATFORM_NAME;
+ $banner = t('$Projectname Notification');
+ $product = t('$projectname'); // PLATFORM_NAME;
$siteurl = $a->get_baseurl(true);
$thanks = t('Thank You,');
$sitename = get_config('system','sitename');