aboutsummaryrefslogtreecommitdiffstats
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
parent51b6d709965faa104b02fe148dbe8cf407ff47fa (diff)
downloadvolse-hubzilla-91d7b0f7eb7d3d7240b9ba12e2fbd71334b5a458.tar.gz
volse-hubzilla-91d7b0f7eb7d3d7240b9ba12e2fbd71334b5a458.tar.bz2
volse-hubzilla-91d7b0f7eb7d3d7240b9ba12e2fbd71334b5a458.zip
more work isolating the projectname from core.
-rw-r--r--include/bb2diaspora.php2
-rwxr-xr-xinclude/diaspora.php8
-rw-r--r--include/enotify.php4
-rw-r--r--mod/admin.php2
-rw-r--r--mod/cloud.php2
-rw-r--r--mod/dav.php2
-rw-r--r--mod/home.php2
-rw-r--r--mod/invite.php6
-rwxr-xr-xmod/like.php2
-rw-r--r--mod/mitem.php4
-rw-r--r--mod/p.php2
-rw-r--r--mod/pubsites.php2
-rwxr-xr-xmod/setup.php4
-rw-r--r--mod/siteinfo.php8
-rw-r--r--util/messages.po594
-rw-r--r--version.inc2
16 files changed, 325 insertions, 321 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');
diff --git a/mod/admin.php b/mod/admin.php
index fd2ba510b..7b6a8b723 100644
--- a/mod/admin.php
+++ b/mod/admin.php
@@ -230,7 +230,7 @@ function admin_page_summary(&$a) {
$alertmsg = '';
// annoy admin about upcoming unsupported PHP version
if (version_compare(PHP_VERSION, '5.4', '<')) {
- $alertmsg = 'Your PHP version ' . PHP_VERSION . ' will not be supported with the next major release of RedMatrix. You are strongly urged to upgrade to a current version.'
+ $alertmsg = 'Your PHP version ' . PHP_VERSION . ' will not be supported with the next major release of $Projectname. You are strongly urged to upgrade to a current version.'
. '<br>PHP 5.3 has reached its <a href="http://php.net/eol.php" class="alert-link">End of Life (EOL)</a> in August 2014.'
. ' A list about current PHP versions can be found <a href="http://php.net/supported-versions.php" class="alert-link">here</a>.';
}
diff --git a/mod/cloud.php b/mod/cloud.php
index b36e6c482..4b5d45f97 100644
--- a/mod/cloud.php
+++ b/mod/cloud.php
@@ -117,7 +117,7 @@ function cloud_init(&$a) {
if ((! $auth->observer) && (! $isapublic_file) && (! $davguest)) {
try {
- $auth->Authenticate($server, t('RedMatrix - Guests: Username: {your email address}, Password: +++'));
+ $auth->Authenticate($server, t('$Projectname - Guests: Username: {your email address}, Password: +++'));
}
catch (Exception $e) {
logger('mod_cloud: auth exception' . $e->getMessage());
diff --git a/mod/dav.php b/mod/dav.php
index f7f89b6da..2f811a7f0 100644
--- a/mod/dav.php
+++ b/mod/dav.php
@@ -118,7 +118,7 @@ function dav_init(&$a) {
if ((! $auth->observer) && (! $isapublic_file) && (! $davguest)) {
try {
- $auth->Authenticate($server, t('RedMatrix channel'));
+ $auth->Authenticate($server, t('$Projectname channel'));
}
catch (Exception $e) {
logger('mod_cloud: auth exception' . $e->getMessage());
diff --git a/mod/home.php b/mod/home.php
index 7bb138d2e..03133a217 100644
--- a/mod/home.php
+++ b/mod/home.php
@@ -50,7 +50,7 @@ function home_content(&$a, $update = 0, $load = false) {
if(get_config('system','projecthome')) {
$o .= file_get_contents('assets/home.html');
$a->page['template'] = 'full';
- $a->page['title'] = t('Red Matrix - &quot;The Network&quot;');
+ $a->page['title'] = t('$Projectname');
return $o;
}
diff --git a/mod/invite.php b/mod/invite.php
index e197278d1..1fdfbacc6 100644
--- a/mod/invite.php
+++ b/mod/invite.php
@@ -129,12 +129,12 @@ function invite_content(&$a) {
'$invite' => t('Send invitations'),
'$addr_text' => t('Enter email addresses, one per line:'),
'$msg_text' => t('Your message:'),
- '$default_message' => t('Please join my community on RedMatrix.') . "\r\n" . "\r\n"
+ '$default_message' => t('Please join my community on $Projectname.') . "\r\n" . "\r\n"
. $linktxt
. (($invonly) ? "\r\n" . "\r\n" . t('You will need to supply this invitation code: ') . $invite_code . "\r\n" . "\r\n" : '')
- . t('1. Register at any RedMatrix location (they are all inter-connected)')
+ . t('1. Register at any $Projectname location (they are all inter-connected)')
. "\r\n" . "\r\n" . z_root() . '/register'
- . "\r\n" . "\r\n" . t('2. Enter my RedMatrix network address into the site searchbar.')
+ . "\r\n" . "\r\n" . t('2. Enter my $Projectname network address into the site searchbar.')
. "\r\n" . "\r\n" . $ob['xchan_addr'] . ' (' . t('or visit ') . z_root() . '/channel/' . $channel['channel_address'] . ')'
. "\r\n" . "\r\n"
. t('3. Click [Connect]')
diff --git a/mod/like.php b/mod/like.php
index d3b6f3ecf..e79ff5f48 100755
--- a/mod/like.php
+++ b/mod/like.php
@@ -18,7 +18,7 @@ function like_content(&$a) {
if(! $observer) {
$_SESSION['return_url'] = $a->query_string;
$o .= t('This action is restricted to members.') . EOL;
- $o .= t('Please <a href="rmagic">login with your RedMatrix ID</a> or <a href="register">register as a new RedMatrix member</a> to continue.') . EOL;
+ $o .= t('Please <a href="rmagic">login with your $Projectname ID</a> or <a href="register">register as a new $Projectname member</a> to continue.') . EOL;
return $o;
}
}
diff --git a/mod/mitem.php b/mod/mitem.php
index b03280105..0961e15ff 100644
--- a/mod/mitem.php
+++ b/mod/mitem.php
@@ -160,7 +160,7 @@ function mitem_content(&$a) {
'$aclselect' => populate_acl($perm_defaults,false),
'$mitem_desc' => array('mitem_desc', t('Link Name'), '', 'Visible name of the link','*'),
'$mitem_link' => array('mitem_link', t('Link or Submenu Target'), '', t('Enter URL of the link or select a menu name to create a submenu'), '*', 'list="menu-names"'),
- '$usezid' => array('usezid', t('Use RedMatrix magic-auth if available'), true, ''),
+ '$usezid' => array('usezid', t('Use magic-auth if available'), true, ''),
'$newwin' => array('newwin', t('Open link in new window'), false,''),
'$mitem_order' => array('mitem_order', t('Order in list'),'0',t('Higher numbers will sink to bottom of listing')),
'$submit' => t('Submit and finish'),
@@ -231,7 +231,7 @@ function mitem_content(&$a) {
'$mitem_id' => intval(argv(2)),
'$mitem_desc' => array('mitem_desc', t('Link text'), $mitem['mitem_desc'], '','*'),
'$mitem_link' => array('mitem_link', t('Link or Submenu Target'), $mitem['mitem_link'], 'Enter URL of the link or select a menu name to create a submenu', '*', 'list="menu-names"'),
- '$usezid' => array('usezid', t('Use RedMatrix magic-auth if available'), (($mitem['mitem_flags'] & MENU_ITEM_ZID) ? 1 : 0), ''),
+ '$usezid' => array('usezid', t('Use magic-auth if available'), (($mitem['mitem_flags'] & MENU_ITEM_ZID) ? 1 : 0), ''),
'$newwin' => array('newwin', t('Open link in new window'), (($mitem['mitem_flags'] & MENU_ITEM_NEWWIN) ? 1 : 0),''),
'$mitem_order' => array('mitem_order', t('Order in list'),$mitem['mitem_order'],t('Higher numbers will sink to bottom of listing')),
'$submit' => t('Submit'),
diff --git a/mod/p.php b/mod/p.php
index 9d1c12dbc..924fd7eba 100644
--- a/mod/p.php
+++ b/mod/p.php
@@ -43,7 +43,7 @@ function p_init(&$a) {
'$handle' => xmlify($myaddr),
'$public' => 'true',
'$created' => $created,
- '$provider' => (($item['app']) ? $item['app'] : 'redmatrix')
+ '$provider' => (($item['app']) ? $item['app'] : t('$projectname'))
));
header('Content-type: text/xml');
diff --git a/mod/pubsites.php b/mod/pubsites.php
index ff3854492..62990c70c 100644
--- a/mod/pubsites.php
+++ b/mod/pubsites.php
@@ -16,7 +16,7 @@ function pubsites_content(&$a) {
$o .= '<h1>' . t('Public Sites') . '</h1>';
$o .= '<div class="descriptive-text">' .
- t('The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details.') . '</div>' . EOL;
+ t('The listed sites allow public registration for the $Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details.') . '</div>' . EOL;
$ret = z_fetch_url($url);
if($ret['success']) {
diff --git a/mod/setup.php b/mod/setup.php
index b885388be..eba28a9bc 100755
--- a/mod/setup.php
+++ b/mod/setup.php
@@ -163,7 +163,7 @@ function setup_content(&$a) {
global $install_wizard_pass, $db;
$o = '';
$wizard_status = "";
- $install_title = t('Red Matrix Server - Setup');
+ $install_title = t('$Projectname Server - Setup');
@@ -287,7 +287,7 @@ function setup_content(&$a) {
$o .= replace_macros($tpl, array(
'$title' => $install_title,
'$pass' => t('Database connection'),
- '$info_01' => t('In order to install Red Matrix we need to know how to connect to your database.'),
+ '$info_01' => t('In order to install $Projectname we need to know how to connect to your database.'),
'$info_02' => t('Please contact your hosting provider or site administrator if you have questions about these settings.'),
'$info_03' => t('The database you specify below should already exist. If it does not, please create it before continuing.'),
diff --git a/mod/siteinfo.php b/mod/siteinfo.php
index b6753f1ab..904228f13 100644
--- a/mod/siteinfo.php
+++ b/mod/siteinfo.php
@@ -152,8 +152,8 @@ function siteinfo_content(&$a) {
$donate .= file_get_contents('doc/site_donate.html');
$o = replace_macros(get_markup_template('siteinfo.tpl'), array(
- '$title' => t('Red'),
- '$description' => t('This is a hub of redmatrix - a global cooperative network of decentralized privacy enhanced websites.'),
+ '$title' => t('$Projectname'),
+ '$description' => t('This is a hub of $Projectname - a global cooperative network of decentralized privacy enhanced websites.'),
'$version' => $version,
'$tag_txt' => t('Tag: '),
'$tag' => $tag,
@@ -161,10 +161,10 @@ function siteinfo_content(&$a) {
'$lastpoll' => get_poller_runtime(),
'$commit' => $commit,
'$web_location' => t('Running at web location') . ' ' . z_root(),
- '$visit' => t('Please visit <a href="https://redmatrix.me">redmatrix.me</a> to learn more about the Red Matrix.'),
+ '$visit' => t('Please visit <a href="https://redmatrix.me">redmatrix.me</a> to learn more about $Projectname.'),
'$bug_text' => t('Bug reports and issues: please visit'),
'$bug_link_url' => 'https://github.com/redmatrix/redmatrix/issues',
- '$bug_link_text' => 'redmatrix issues',
+ '$bug_link_text' => '$projectname issues',
'$contact' => t('Suggestions, praise, etc. - please email "redmatrix" at librelist - dot com'),
'$donate' => $donate,
'$adminlabel' => t('Site Administrators'),
diff --git a/util/messages.po b/util/messages.po
index b2d9f402c..a78233475 100644
--- a/util/messages.po
+++ b/util/messages.po
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: 2015-05-08.1026\n"
+"Project-Id-Version: 2015-05-15.1033\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-05-08 00:03-0700\n"
+"POT-Creation-Date: 2015-05-15 00:03-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -258,8 +258,8 @@ msgstr ""
#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36
#: ../../include/RedDAV/RedBrowser.php:269 ../../include/ItemObject.php:100
-#: ../../include/apps.php:254 ../../include/menu.php:43
-#: ../../mod/settings.php:644 ../../mod/webpages.php:179
+#: ../../include/apps.php:254 ../../include/menu.php:61
+#: ../../mod/settings.php:649 ../../mod/webpages.php:180
#: ../../mod/thing.php:227 ../../mod/connections.php:382
#: ../../mod/connections.php:395 ../../mod/connections.php:414
#: ../../mod/blocks.php:152 ../../mod/editlayout.php:139
@@ -269,24 +269,24 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: ../../include/page_widgets.php:39 ../../mod/webpages.php:185
+#: ../../include/page_widgets.php:39 ../../mod/webpages.php:186
#: ../../mod/blocks.php:158 ../../mod/layouts.php:187
msgid "View"
msgstr ""
#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677
-#: ../../include/conversation.php:1155 ../../mod/webpages.php:186
+#: ../../include/conversation.php:1155 ../../mod/webpages.php:187
#: ../../mod/events.php:653 ../../mod/photos.php:970
#: ../../mod/editwebpage.php:214 ../../mod/editpost.php:149
#: ../../mod/editblock.php:176
msgid "Preview"
msgstr ""
-#: ../../include/page_widgets.php:41 ../../mod/webpages.php:187
+#: ../../include/page_widgets.php:41 ../../mod/webpages.php:188
msgid "Actions"
msgstr ""
-#: ../../include/page_widgets.php:42 ../../mod/webpages.php:188
+#: ../../include/page_widgets.php:42 ../../mod/webpages.php:189
msgid "Page Link"
msgstr ""
@@ -294,12 +294,12 @@ msgstr ""
msgid "Title"
msgstr ""
-#: ../../include/page_widgets.php:44 ../../mod/webpages.php:190
+#: ../../include/page_widgets.php:44 ../../mod/webpages.php:191
#: ../../mod/blocks.php:149 ../../mod/layouts.php:180
msgid "Created"
msgstr ""
-#: ../../include/page_widgets.php:45 ../../mod/webpages.php:191
+#: ../../include/page_widgets.php:45 ../../mod/webpages.php:192
#: ../../mod/blocks.php:150 ../../mod/layouts.php:181
msgid "Edited"
msgstr ""
@@ -441,10 +441,10 @@ msgid "Describe (optional)"
msgstr ""
#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668
-#: ../../mod/settings.php:582 ../../mod/settings.php:684
-#: ../../mod/settings.php:710 ../../mod/settings.php:738
-#: ../../mod/settings.php:761 ../../mod/settings.php:843
-#: ../../mod/settings.php:1039 ../../mod/xchan.php:11 ../../mod/connect.php:93
+#: ../../mod/settings.php:587 ../../mod/settings.php:689
+#: ../../mod/settings.php:715 ../../mod/settings.php:743
+#: ../../mod/settings.php:766 ../../mod/settings.php:848
+#: ../../mod/settings.php:1044 ../../mod/xchan.php:11 ../../mod/connect.php:93
#: ../../mod/thing.php:275 ../../mod/thing.php:318 ../../mod/events.php:656
#: ../../mod/group.php:81 ../../mod/setup.php:313 ../../mod/setup.php:358
#: ../../mod/photos.php:565 ../../mod/photos.php:642 ../../mod/photos.php:929
@@ -453,9 +453,9 @@ msgstr ""
#: ../../mod/rate.php:167 ../../mod/invite.php:142 ../../mod/locs.php:105
#: ../../mod/sources.php:104 ../../mod/sources.php:138
#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108
-#: ../../mod/poke.php:166 ../../mod/profiles.php:667 ../../mod/mitem.php:229
-#: ../../mod/admin.php:446 ../../mod/admin.php:810 ../../mod/admin.php:946
-#: ../../mod/admin.php:1077 ../../mod/admin.php:1271 ../../mod/admin.php:1356
+#: ../../mod/poke.php:166 ../../mod/profiles.php:667 ../../mod/admin.php:446
+#: ../../mod/admin.php:810 ../../mod/admin.php:946 ../../mod/admin.php:1077
+#: ../../mod/admin.php:1271 ../../mod/admin.php:1356 ../../mod/mitem.php:237
#: ../../mod/mood.php:134 ../../mod/connedit.php:679 ../../mod/mail.php:355
#: ../../mod/appman.php:99 ../../mod/poll.php:68 ../../mod/bulksetclose.php:24
#: ../../view/theme/apw/php/config.php:256
@@ -604,7 +604,7 @@ msgid "Shared"
msgstr ""
#: ../../include/RedDAV/RedBrowser.php:256
-#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/webpages.php:178
+#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/webpages.php:179
#: ../../mod/blocks.php:151 ../../mod/menu.php:104 ../../mod/layouts.php:174
#: ../../mod/new_channel.php:121
msgid "Create"
@@ -616,8 +616,8 @@ msgstr ""
msgid "Upload"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/settings.php:584
-#: ../../mod/settings.php:610 ../../mod/admin.php:953
+#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/settings.php:589
+#: ../../mod/settings.php:615 ../../mod/admin.php:953
#: ../../mod/sharedwithme.php:95
msgid "Name"
msgstr ""
@@ -636,7 +636,7 @@ msgstr ""
#: ../../include/RedDAV/RedBrowser.php:270 ../../include/ItemObject.php:120
#: ../../include/conversation.php:660 ../../include/apps.php:255
-#: ../../mod/settings.php:645 ../../mod/webpages.php:181
+#: ../../mod/settings.php:650 ../../mod/webpages.php:182
#: ../../mod/thing.php:228 ../../mod/group.php:176 ../../mod/blocks.php:154
#: ../../mod/photos.php:1050 ../../mod/editlayout.php:107
#: ../../mod/editwebpage.php:225 ../../mod/admin.php:817
@@ -658,7 +658,7 @@ msgstr ""
msgid "%1$s's bookmarks"
msgstr ""
-#: ../../include/network.php:632
+#: ../../include/network.php:635
msgid "view full size"
msgstr ""
@@ -1004,9 +1004,9 @@ msgstr ""
#: ../../include/widgets.php:429 ../../include/identity.php:394
#: ../../include/identity.php:395 ../../include/identity.php:402
-#: ../../include/profile_selectors.php:80 ../../mod/settings.php:339
-#: ../../mod/settings.php:343 ../../mod/settings.php:344
-#: ../../mod/settings.php:347 ../../mod/settings.php:358
+#: ../../include/profile_selectors.php:80 ../../mod/settings.php:344
+#: ../../mod/settings.php:348 ../../mod/settings.php:349
+#: ../../mod/settings.php:352 ../../mod/settings.php:363
#: ../../mod/connedit.php:574
msgid "Friends"
msgstr ""
@@ -2096,7 +2096,7 @@ msgid "Your bookmarks"
msgstr ""
#: ../../include/nav.php:113 ../../include/conversation.php:1645
-#: ../../include/apps.php:136 ../../mod/webpages.php:176
+#: ../../include/apps.php:136 ../../mod/webpages.php:177
msgid "Webpages"
msgstr ""
@@ -2394,7 +2394,7 @@ msgstr ""
#: ../../include/attach.php:611 ../../include/chat.php:131
#: ../../mod/profile.php:64 ../../mod/profile.php:72
#: ../../mod/achievements.php:30 ../../mod/manage.php:6
-#: ../../mod/settings.php:564 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/settings.php:569 ../../mod/api.php:26 ../../mod/api.php:31
#: ../../mod/webpages.php:69 ../../mod/thing.php:241 ../../mod/thing.php:256
#: ../../mod/thing.php:290 ../../mod/profile_photo.php:264
#: ../../mod/profile_photo.php:277 ../../mod/block.php:22
@@ -2412,17 +2412,17 @@ msgstr ""
#: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88
#: ../../mod/filestorage.php:115 ../../mod/fsuggest.php:78
#: ../../mod/poke.php:128 ../../mod/profiles.php:188
-#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 ../../mod/mitem.php:115
+#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14
#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
#: ../../mod/editblock.php:65 ../../mod/register.php:72 ../../mod/item.php:206
#: ../../mod/item.php:214 ../../mod/item.php:962 ../../mod/layouts.php:69
#: ../../mod/layouts.php:76 ../../mod/layouts.php:87 ../../mod/id.php:71
-#: ../../mod/message.php:16 ../../mod/mood.php:111 ../../mod/connedit.php:331
-#: ../../mod/mail.php:114 ../../mod/notifications.php:66
-#: ../../mod/regmod.php:17 ../../mod/new_channel.php:68
-#: ../../mod/new_channel.php:99 ../../mod/appman.php:66
-#: ../../mod/network.php:12 ../../mod/page.php:28 ../../mod/page.php:79
-#: ../../mod/bookmarks.php:46 ../../mod/channel.php:100
+#: ../../mod/message.php:16 ../../mod/mitem.php:115 ../../mod/mood.php:111
+#: ../../mod/connedit.php:331 ../../mod/mail.php:114
+#: ../../mod/notifications.php:66 ../../mod/regmod.php:17
+#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99
+#: ../../mod/appman.php:66 ../../mod/network.php:12 ../../mod/page.php:28
+#: ../../mod/page.php:82 ../../mod/bookmarks.php:46 ../../mod/channel.php:100
#: ../../mod/channel.php:219 ../../mod/channel.php:262
#: ../../mod/suggest.php:26 ../../mod/service_limits.php:7
#: ../../mod/sharedwithme.php:7 ../../index.php:190 ../../index.php:393
@@ -2796,7 +2796,7 @@ msgstr ""
msgid "Expires YYYY-MM-DD HH:MM"
msgstr ""
-#: ../../include/conversation.php:1174 ../../mod/webpages.php:180
+#: ../../include/conversation.php:1174 ../../mod/webpages.php:181
#: ../../mod/blocks.php:153 ../../mod/photos.php:949 ../../mod/layouts.php:183
msgid "Share"
msgstr ""
@@ -2923,8 +2923,8 @@ msgstr ""
msgid "OK"
msgstr ""
-#: ../../include/conversation.php:1239 ../../mod/settings.php:583
-#: ../../mod/settings.php:609 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134
+#: ../../include/conversation.php:1239 ../../mod/settings.php:588
+#: ../../mod/settings.php:614 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134
#: ../../mod/events.php:636 ../../mod/fbrowser.php:82
#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:160
msgid "Cancel"
@@ -3428,7 +3428,7 @@ msgstr ""
msgid "Profile"
msgstr ""
-#: ../../include/identity.php:1115 ../../mod/settings.php:1045
+#: ../../include/identity.php:1115 ../../mod/settings.php:1050
msgid "Full Name:"
msgstr ""
@@ -3815,7 +3815,7 @@ msgid "Profile Photo"
msgstr ""
#: ../../include/apps.php:247 ../../mod/settings.php:84
-#: ../../mod/settings.php:608
+#: ../../mod/settings.php:613
msgid "Update"
msgstr ""
@@ -3914,43 +3914,43 @@ msgstr ""
msgid "Key and Secret are required"
msgstr ""
-#: ../../mod/settings.php:124
+#: ../../mod/settings.php:129
msgid "Diaspora Policy Settings updated."
msgstr ""
-#: ../../mod/settings.php:232
+#: ../../mod/settings.php:237
msgid "Passwords do not match. Password unchanged."
msgstr ""
-#: ../../mod/settings.php:236
+#: ../../mod/settings.php:241
msgid "Empty passwords are not allowed. Password unchanged."
msgstr ""
-#: ../../mod/settings.php:250
+#: ../../mod/settings.php:255
msgid "Password changed."
msgstr ""
-#: ../../mod/settings.php:252
+#: ../../mod/settings.php:257
msgid "Password update failed. Please try again."
msgstr ""
-#: ../../mod/settings.php:266
+#: ../../mod/settings.php:271
msgid "Not valid email."
msgstr ""
-#: ../../mod/settings.php:269
+#: ../../mod/settings.php:274
msgid "Protected email address. Cannot change to that email."
msgstr ""
-#: ../../mod/settings.php:278
+#: ../../mod/settings.php:283
msgid "System failure storing new email. Please try again."
msgstr ""
-#: ../../mod/settings.php:517
+#: ../../mod/settings.php:522
msgid "Settings updated."
msgstr ""
-#: ../../mod/settings.php:573 ../../mod/api.php:106 ../../mod/photos.php:556
+#: ../../mod/settings.php:578 ../../mod/api.php:106 ../../mod/photos.php:556
#: ../../mod/menu.php:88 ../../mod/filestorage.php:151
#: ../../mod/filestorage.php:159 ../../mod/admin.php:424
#: ../../mod/removeme.php:60 ../../view/theme/redbasic/php/config.php:102
@@ -3958,7 +3958,7 @@ msgstr ""
msgid "No"
msgstr ""
-#: ../../mod/settings.php:573 ../../mod/api.php:105 ../../mod/photos.php:556
+#: ../../mod/settings.php:578 ../../mod/api.php:105 ../../mod/photos.php:556
#: ../../mod/menu.php:88 ../../mod/filestorage.php:151
#: ../../mod/filestorage.php:159 ../../mod/admin.php:426
#: ../../mod/removeme.php:60 ../../view/theme/redbasic/php/config.php:102
@@ -3966,536 +3966,536 @@ msgstr ""
msgid "Yes"
msgstr ""
-#: ../../mod/settings.php:581 ../../mod/settings.php:607
-#: ../../mod/settings.php:643
+#: ../../mod/settings.php:586 ../../mod/settings.php:612
+#: ../../mod/settings.php:648
msgid "Add application"
msgstr ""
-#: ../../mod/settings.php:584
+#: ../../mod/settings.php:589
msgid "Name of application"
msgstr ""
-#: ../../mod/settings.php:585 ../../mod/settings.php:611
+#: ../../mod/settings.php:590 ../../mod/settings.php:616
msgid "Consumer Key"
msgstr ""
-#: ../../mod/settings.php:585 ../../mod/settings.php:586
+#: ../../mod/settings.php:590 ../../mod/settings.php:591
msgid "Automatically generated - change if desired. Max length 20"
msgstr ""
-#: ../../mod/settings.php:586 ../../mod/settings.php:612
+#: ../../mod/settings.php:591 ../../mod/settings.php:617
msgid "Consumer Secret"
msgstr ""
-#: ../../mod/settings.php:587 ../../mod/settings.php:613
+#: ../../mod/settings.php:592 ../../mod/settings.php:618
msgid "Redirect"
msgstr ""
-#: ../../mod/settings.php:587
+#: ../../mod/settings.php:592
msgid ""
"Redirect URI - leave blank unless your application specifically requires this"
msgstr ""
-#: ../../mod/settings.php:588 ../../mod/settings.php:614
+#: ../../mod/settings.php:593 ../../mod/settings.php:619
msgid "Icon url"
msgstr ""
-#: ../../mod/settings.php:588
+#: ../../mod/settings.php:593
msgid "Optional"
msgstr ""
-#: ../../mod/settings.php:599
+#: ../../mod/settings.php:604
msgid "You can't edit this application."
msgstr ""
-#: ../../mod/settings.php:642
+#: ../../mod/settings.php:647
msgid "Connected Apps"
msgstr ""
-#: ../../mod/settings.php:646
+#: ../../mod/settings.php:651
msgid "Client key starts with"
msgstr ""
-#: ../../mod/settings.php:647
+#: ../../mod/settings.php:652
msgid "No name"
msgstr ""
-#: ../../mod/settings.php:648
+#: ../../mod/settings.php:653
msgid "Remove authorization"
msgstr ""
-#: ../../mod/settings.php:662
+#: ../../mod/settings.php:667
msgid "No feature settings configured"
msgstr ""
-#: ../../mod/settings.php:678
+#: ../../mod/settings.php:683
msgid "Feature/Addon Settings"
msgstr ""
-#: ../../mod/settings.php:680
+#: ../../mod/settings.php:685
msgid "Settings for the built-in Diaspora emulator"
msgstr ""
-#: ../../mod/settings.php:681
+#: ../../mod/settings.php:686
msgid "Allow any Diaspora member to comment on your public posts"
msgstr ""
-#: ../../mod/settings.php:682
+#: ../../mod/settings.php:687
msgid "Diaspora Policy Settings"
msgstr ""
-#: ../../mod/settings.php:683
+#: ../../mod/settings.php:688
msgid "Prevent your hashtags from being redirected to other sites"
msgstr ""
-#: ../../mod/settings.php:707
+#: ../../mod/settings.php:712
msgid "Account Settings"
msgstr ""
-#: ../../mod/settings.php:708
+#: ../../mod/settings.php:713
msgid "Enter New Password:"
msgstr ""
-#: ../../mod/settings.php:709
+#: ../../mod/settings.php:714
msgid "Confirm New Password:"
msgstr ""
-#: ../../mod/settings.php:709
+#: ../../mod/settings.php:714
msgid "Leave password fields blank unless changing"
msgstr ""
-#: ../../mod/settings.php:711 ../../mod/settings.php:1046
+#: ../../mod/settings.php:716 ../../mod/settings.php:1051
msgid "Email Address:"
msgstr ""
-#: ../../mod/settings.php:712 ../../mod/removeaccount.php:61
+#: ../../mod/settings.php:717 ../../mod/removeaccount.php:61
msgid "Remove Account"
msgstr ""
-#: ../../mod/settings.php:713
+#: ../../mod/settings.php:718
msgid "Remove this account including all its channels"
msgstr ""
-#: ../../mod/settings.php:729
+#: ../../mod/settings.php:734
msgid "Off"
msgstr ""
-#: ../../mod/settings.php:729
+#: ../../mod/settings.php:734
msgid "On"
msgstr ""
-#: ../../mod/settings.php:736
+#: ../../mod/settings.php:741
msgid "Additional Features"
msgstr ""
-#: ../../mod/settings.php:760
+#: ../../mod/settings.php:765
msgid "Connector Settings"
msgstr ""
-#: ../../mod/settings.php:799
+#: ../../mod/settings.php:804
msgid "No special theme for mobile devices"
msgstr ""
-#: ../../mod/settings.php:802
+#: ../../mod/settings.php:807
#, php-format
msgid "%s - (Experimental)"
msgstr ""
-#: ../../mod/settings.php:805 ../../mod/admin.php:396
+#: ../../mod/settings.php:810 ../../mod/admin.php:396
msgid "mobile"
msgstr ""
-#: ../../mod/settings.php:841
+#: ../../mod/settings.php:846
msgid "Display Settings"
msgstr ""
-#: ../../mod/settings.php:847
+#: ../../mod/settings.php:852
msgid "Display Theme:"
msgstr ""
-#: ../../mod/settings.php:848
+#: ../../mod/settings.php:853
msgid "Mobile Theme:"
msgstr ""
-#: ../../mod/settings.php:849
+#: ../../mod/settings.php:854
msgid "Enable user zoom on mobile devices"
msgstr ""
-#: ../../mod/settings.php:850
+#: ../../mod/settings.php:855
msgid "Update browser every xx seconds"
msgstr ""
-#: ../../mod/settings.php:850
+#: ../../mod/settings.php:855
msgid "Minimum of 10 seconds, no maximum"
msgstr ""
-#: ../../mod/settings.php:851
+#: ../../mod/settings.php:856
msgid "Maximum number of conversations to load at any time:"
msgstr ""
-#: ../../mod/settings.php:851
+#: ../../mod/settings.php:856
msgid "Maximum of 100 items"
msgstr ""
-#: ../../mod/settings.php:852
+#: ../../mod/settings.php:857
msgid "Show emoticons (smilies) as images"
msgstr ""
-#: ../../mod/settings.php:853
+#: ../../mod/settings.php:858
msgid "Link post titles to source"
msgstr ""
-#: ../../mod/settings.php:854
+#: ../../mod/settings.php:859
msgid "System Page Layout Editor - (advanced)"
msgstr ""
-#: ../../mod/settings.php:857
+#: ../../mod/settings.php:862
msgid "Use blog/list mode on channel page"
msgstr ""
-#: ../../mod/settings.php:857 ../../mod/settings.php:858
+#: ../../mod/settings.php:862 ../../mod/settings.php:863
msgid "(comments displayed separately)"
msgstr ""
-#: ../../mod/settings.php:858
+#: ../../mod/settings.php:863
msgid "Use blog/list mode on matrix page"
msgstr ""
-#: ../../mod/settings.php:859
+#: ../../mod/settings.php:864
msgid "Channel page max height of content (in pixels)"
msgstr ""
-#: ../../mod/settings.php:859 ../../mod/settings.php:860
+#: ../../mod/settings.php:864 ../../mod/settings.php:865
msgid "click to expand content exceeding this height"
msgstr ""
-#: ../../mod/settings.php:860
+#: ../../mod/settings.php:865
msgid "Matrix page max height of content (in pixels)"
msgstr ""
-#: ../../mod/settings.php:894
+#: ../../mod/settings.php:899
msgid "Nobody except yourself"
msgstr ""
-#: ../../mod/settings.php:895
+#: ../../mod/settings.php:900
msgid "Only those you specifically allow"
msgstr ""
-#: ../../mod/settings.php:896
+#: ../../mod/settings.php:901
msgid "Approved connections"
msgstr ""
-#: ../../mod/settings.php:897
+#: ../../mod/settings.php:902
msgid "Any connections"
msgstr ""
-#: ../../mod/settings.php:898
+#: ../../mod/settings.php:903
msgid "Anybody on this website"
msgstr ""
-#: ../../mod/settings.php:899
+#: ../../mod/settings.php:904
msgid "Anybody in this network"
msgstr ""
-#: ../../mod/settings.php:900
+#: ../../mod/settings.php:905
msgid "Anybody authenticated"
msgstr ""
-#: ../../mod/settings.php:901
+#: ../../mod/settings.php:906
msgid "Anybody on the internet"
msgstr ""
-#: ../../mod/settings.php:975
+#: ../../mod/settings.php:980
msgid "Publish your default profile in the network directory"
msgstr ""
-#: ../../mod/settings.php:980
+#: ../../mod/settings.php:985
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
-#: ../../mod/settings.php:984 ../../mod/profile_photo.php:366
+#: ../../mod/settings.php:989 ../../mod/profile_photo.php:366
msgid "or"
msgstr ""
-#: ../../mod/settings.php:989
+#: ../../mod/settings.php:994
msgid "Your channel address is"
msgstr ""
-#: ../../mod/settings.php:1037
+#: ../../mod/settings.php:1042
msgid "Channel Settings"
msgstr ""
-#: ../../mod/settings.php:1044
+#: ../../mod/settings.php:1049
msgid "Basic Settings"
msgstr ""
-#: ../../mod/settings.php:1047
+#: ../../mod/settings.php:1052
msgid "Your Timezone:"
msgstr ""
-#: ../../mod/settings.php:1048
+#: ../../mod/settings.php:1053
msgid "Default Post Location:"
msgstr ""
-#: ../../mod/settings.php:1048
+#: ../../mod/settings.php:1053
msgid "Geographical location to display on your posts"
msgstr ""
-#: ../../mod/settings.php:1049
+#: ../../mod/settings.php:1054
msgid "Use Browser Location:"
msgstr ""
-#: ../../mod/settings.php:1051
+#: ../../mod/settings.php:1056
msgid "Adult Content"
msgstr ""
-#: ../../mod/settings.php:1051
+#: ../../mod/settings.php:1056
msgid ""
"This channel frequently or regularly publishes adult content. (Please tag "
"any adult material and/or nudity with #NSFW)"
msgstr ""
-#: ../../mod/settings.php:1053
+#: ../../mod/settings.php:1058
msgid "Security and Privacy Settings"
msgstr ""
-#: ../../mod/settings.php:1055
+#: ../../mod/settings.php:1060
msgid "Your permissions are already configured. Click to view/adjust"
msgstr ""
-#: ../../mod/settings.php:1057
+#: ../../mod/settings.php:1062
msgid "Hide my online presence"
msgstr ""
-#: ../../mod/settings.php:1057
+#: ../../mod/settings.php:1062
msgid "Prevents displaying in your profile that you are online"
msgstr ""
-#: ../../mod/settings.php:1059
+#: ../../mod/settings.php:1064
msgid "Simple Privacy Settings:"
msgstr ""
-#: ../../mod/settings.php:1060
+#: ../../mod/settings.php:1065
msgid ""
"Very Public - <em>extremely permissive (should be used with caution)</em>"
msgstr ""
-#: ../../mod/settings.php:1061
+#: ../../mod/settings.php:1066
msgid ""
"Typical - <em>default public, privacy when desired (similar to social "
"network permissions but with improved privacy)</em>"
msgstr ""
-#: ../../mod/settings.php:1062
+#: ../../mod/settings.php:1067
msgid "Private - <em>default private, never open or public</em>"
msgstr ""
-#: ../../mod/settings.php:1063
+#: ../../mod/settings.php:1068
msgid "Blocked - <em>default blocked to/from everybody</em>"
msgstr ""
-#: ../../mod/settings.php:1065
+#: ../../mod/settings.php:1070
msgid "Allow others to tag your posts"
msgstr ""
-#: ../../mod/settings.php:1065
+#: ../../mod/settings.php:1070
msgid ""
"Often used by the community to retro-actively flag inappropriate content"
msgstr ""
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1072
msgid "Advanced Privacy Settings"
msgstr ""
-#: ../../mod/settings.php:1069
+#: ../../mod/settings.php:1074
msgid "Expire other channel content after this many days"
msgstr ""
-#: ../../mod/settings.php:1069
+#: ../../mod/settings.php:1074
msgid "0 or blank prevents expiration"
msgstr ""
-#: ../../mod/settings.php:1070
+#: ../../mod/settings.php:1075
msgid "Maximum Friend Requests/Day:"
msgstr ""
-#: ../../mod/settings.php:1070
+#: ../../mod/settings.php:1075
msgid "May reduce spam activity"
msgstr ""
-#: ../../mod/settings.php:1071
+#: ../../mod/settings.php:1076
msgid "Default Post Permissions"
msgstr ""
-#: ../../mod/settings.php:1072 ../../mod/mitem.php:152 ../../mod/mitem.php:221
+#: ../../mod/settings.php:1077 ../../mod/mitem.php:159 ../../mod/mitem.php:229
msgid "(click to open/close)"
msgstr ""
-#: ../../mod/settings.php:1076
+#: ../../mod/settings.php:1081
msgid "Channel permissions category:"
msgstr ""
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1087
msgid "Maximum private messages per day from unknown people:"
msgstr ""
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1087
msgid "Useful to reduce spamming"
msgstr ""
-#: ../../mod/settings.php:1085
+#: ../../mod/settings.php:1090
msgid "Notification Settings"
msgstr ""
-#: ../../mod/settings.php:1086
+#: ../../mod/settings.php:1091
msgid "By default post a status message when:"
msgstr ""
-#: ../../mod/settings.php:1087
+#: ../../mod/settings.php:1092
msgid "accepting a friend request"
msgstr ""
-#: ../../mod/settings.php:1088
+#: ../../mod/settings.php:1093
msgid "joining a forum/community"
msgstr ""
-#: ../../mod/settings.php:1089
+#: ../../mod/settings.php:1094
msgid "making an <em>interesting</em> profile change"
msgstr ""
-#: ../../mod/settings.php:1090
+#: ../../mod/settings.php:1095
msgid "Send a notification email when:"
msgstr ""
-#: ../../mod/settings.php:1091
+#: ../../mod/settings.php:1096
msgid "You receive a connection request"
msgstr ""
-#: ../../mod/settings.php:1092
+#: ../../mod/settings.php:1097
msgid "Your connections are confirmed"
msgstr ""
-#: ../../mod/settings.php:1093
+#: ../../mod/settings.php:1098
msgid "Someone writes on your profile wall"
msgstr ""
-#: ../../mod/settings.php:1094
+#: ../../mod/settings.php:1099
msgid "Someone writes a followup comment"
msgstr ""
-#: ../../mod/settings.php:1095
+#: ../../mod/settings.php:1100
msgid "You receive a private message"
msgstr ""
-#: ../../mod/settings.php:1096
+#: ../../mod/settings.php:1101
msgid "You receive a friend suggestion"
msgstr ""
-#: ../../mod/settings.php:1097
+#: ../../mod/settings.php:1102
msgid "You are tagged in a post"
msgstr ""
-#: ../../mod/settings.php:1098
+#: ../../mod/settings.php:1103
msgid "You are poked/prodded/etc. in a post"
msgstr ""
-#: ../../mod/settings.php:1101
+#: ../../mod/settings.php:1106
msgid "Show visual notifications including:"
msgstr ""
-#: ../../mod/settings.php:1103
+#: ../../mod/settings.php:1108
msgid "Unseen matrix activity"
msgstr ""
-#: ../../mod/settings.php:1104
+#: ../../mod/settings.php:1109
msgid "Unseen channel activity"
msgstr ""
-#: ../../mod/settings.php:1105
+#: ../../mod/settings.php:1110
msgid "Unseen private messages"
msgstr ""
-#: ../../mod/settings.php:1105 ../../mod/settings.php:1110
-#: ../../mod/settings.php:1111 ../../mod/settings.php:1112
+#: ../../mod/settings.php:1110 ../../mod/settings.php:1115
+#: ../../mod/settings.php:1116 ../../mod/settings.php:1117
msgid "Recommended"
msgstr ""
-#: ../../mod/settings.php:1106
+#: ../../mod/settings.php:1111
msgid "Upcoming events"
msgstr ""
-#: ../../mod/settings.php:1107
+#: ../../mod/settings.php:1112
msgid "Events today"
msgstr ""
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1113
msgid "Upcoming birthdays"
msgstr ""
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1113
msgid "Not available in all themes"
msgstr ""
-#: ../../mod/settings.php:1109
+#: ../../mod/settings.php:1114
msgid "System (personal) notifications"
msgstr ""
-#: ../../mod/settings.php:1110
+#: ../../mod/settings.php:1115
msgid "System info messages"
msgstr ""
-#: ../../mod/settings.php:1111
+#: ../../mod/settings.php:1116
msgid "System critical alerts"
msgstr ""
-#: ../../mod/settings.php:1112
+#: ../../mod/settings.php:1117
msgid "New connections"
msgstr ""
-#: ../../mod/settings.php:1113
+#: ../../mod/settings.php:1118
msgid "System Registrations"
msgstr ""
-#: ../../mod/settings.php:1114
+#: ../../mod/settings.php:1119
msgid ""
"Also show new wall posts, private messages and connections under Notices"
msgstr ""
-#: ../../mod/settings.php:1116
+#: ../../mod/settings.php:1121
msgid "Notify me of events this many days in advance"
msgstr ""
-#: ../../mod/settings.php:1116
+#: ../../mod/settings.php:1121
msgid "Must be greater than 0"
msgstr ""
-#: ../../mod/settings.php:1118
+#: ../../mod/settings.php:1123
msgid "Advanced Account/Page Type Settings"
msgstr ""
-#: ../../mod/settings.php:1119
+#: ../../mod/settings.php:1124
msgid "Change the behaviour of this account for special situations"
msgstr ""
-#: ../../mod/settings.php:1122
+#: ../../mod/settings.php:1127
msgid ""
"Please enable expert mode (in <a href=\"settings/features\">Settings > "
"Additional features</a>) to adjust!"
msgstr ""
-#: ../../mod/settings.php:1123
+#: ../../mod/settings.php:1128
msgid "Miscellaneous Settings"
msgstr ""
-#: ../../mod/settings.php:1125
+#: ../../mod/settings.php:1130
msgid "Personal menu to display in your channel pages"
msgstr ""
-#: ../../mod/settings.php:1126 ../../mod/removeme.php:61
+#: ../../mod/settings.php:1131 ../../mod/removeme.php:61
msgid "Remove Channel"
msgstr ""
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1132
msgid "Remove this channel."
msgstr ""
@@ -4529,7 +4529,7 @@ msgid ""
"and/or create new posts for you?"
msgstr ""
-#: ../../mod/webpages.php:189
+#: ../../mod/webpages.php:190
msgid "Page Title"
msgstr ""
@@ -4657,7 +4657,7 @@ msgstr ""
msgid "Item not available."
msgstr ""
-#: ../../mod/probe.php:23 ../../mod/probe.php:29
+#: ../../mod/probe.php:24 ../../mod/probe.php:30
#, php-format
msgid "Fetching URL returns error: %1$s"
msgstr ""
@@ -4747,12 +4747,12 @@ msgstr ""
msgid "Invalid item."
msgstr ""
-#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45
+#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:49
msgid "Channel not found."
msgstr ""
#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:106
-#: ../../mod/page.php:82 ../../index.php:241
+#: ../../mod/page.php:85 ../../index.php:241
msgid "Page not found."
msgstr ""
@@ -6766,114 +6766,6 @@ msgstr ""
msgid "Source of Item"
msgstr ""
-#: ../../mod/mitem.php:51
-msgid "Unable to create element."
-msgstr ""
-
-#: ../../mod/mitem.php:74
-msgid "Unable to update menu element."
-msgstr ""
-
-#: ../../mod/mitem.php:89
-msgid "Unable to add menu element."
-msgstr ""
-
-#: ../../mod/mitem.php:151 ../../mod/mitem.php:220
-msgid "Menu Item Permissions"
-msgstr ""
-
-#: ../../mod/mitem.php:154 ../../mod/mitem.php:168
-msgid "Link Name"
-msgstr ""
-
-#: ../../mod/mitem.php:155 ../../mod/mitem.php:169
-msgid "Link Target"
-msgstr ""
-
-#: ../../mod/mitem.php:156 ../../mod/mitem.php:226
-msgid "Use RedMatrix magic-auth if available"
-msgstr ""
-
-#: ../../mod/mitem.php:157 ../../mod/mitem.php:227
-msgid "Open link in new window"
-msgstr ""
-
-#: ../../mod/mitem.php:158 ../../mod/mitem.php:228
-msgid "Order in list"
-msgstr ""
-
-#: ../../mod/mitem.php:158 ../../mod/mitem.php:228
-msgid "Higher numbers will sink to bottom of listing"
-msgstr ""
-
-#: ../../mod/mitem.php:159
-msgid "Submit and finish"
-msgstr ""
-
-#: ../../mod/mitem.php:160
-msgid "Submit and continue"
-msgstr ""
-
-#: ../../mod/mitem.php:166
-msgid "Menu:"
-msgstr ""
-
-#: ../../mod/mitem.php:172
-msgid "Edit menu"
-msgstr ""
-
-#: ../../mod/mitem.php:175
-msgid "Edit element"
-msgstr ""
-
-#: ../../mod/mitem.php:176
-msgid "Drop element"
-msgstr ""
-
-#: ../../mod/mitem.php:177
-msgid "New element"
-msgstr ""
-
-#: ../../mod/mitem.php:178
-msgid "Edit this menu container"
-msgstr ""
-
-#: ../../mod/mitem.php:179
-msgid "Add menu element"
-msgstr ""
-
-#: ../../mod/mitem.php:180
-msgid "Delete this menu item"
-msgstr ""
-
-#: ../../mod/mitem.php:181
-msgid "Edit this menu item"
-msgstr ""
-
-#: ../../mod/mitem.php:198
-msgid "Menu item not found."
-msgstr ""
-
-#: ../../mod/mitem.php:209
-msgid "Menu item deleted."
-msgstr ""
-
-#: ../../mod/mitem.php:211
-msgid "Menu item could not be deleted."
-msgstr ""
-
-#: ../../mod/mitem.php:218
-msgid "Edit Menu Element"
-msgstr ""
-
-#: ../../mod/mitem.php:224
-msgid "Link text"
-msgstr ""
-
-#: ../../mod/mitem.php:225
-msgid "URL of link"
-msgstr ""
-
#: ../../mod/openid.php:26
msgid "OpenID protocol error. No ID returned."
msgstr ""
@@ -7979,6 +7871,118 @@ msgstr ""
msgid "D, d M Y - g:i A"
msgstr ""
+#: ../../mod/mitem.php:51
+msgid "Unable to create element."
+msgstr ""
+
+#: ../../mod/mitem.php:74
+msgid "Unable to update menu element."
+msgstr ""
+
+#: ../../mod/mitem.php:89
+msgid "Unable to add menu element."
+msgstr ""
+
+#: ../../mod/mitem.php:158 ../../mod/mitem.php:228
+msgid "Menu Item Permissions"
+msgstr ""
+
+#: ../../mod/mitem.php:161 ../../mod/mitem.php:176
+msgid "Link Name"
+msgstr ""
+
+#: ../../mod/mitem.php:162 ../../mod/mitem.php:233
+msgid "Link or Submenu Target"
+msgstr ""
+
+#: ../../mod/mitem.php:162
+msgid "Enter URL of the link or select a menu name to create a submenu"
+msgstr ""
+
+#: ../../mod/mitem.php:163 ../../mod/mitem.php:234
+msgid "Use RedMatrix magic-auth if available"
+msgstr ""
+
+#: ../../mod/mitem.php:164 ../../mod/mitem.php:235
+msgid "Open link in new window"
+msgstr ""
+
+#: ../../mod/mitem.php:165 ../../mod/mitem.php:236
+msgid "Order in list"
+msgstr ""
+
+#: ../../mod/mitem.php:165 ../../mod/mitem.php:236
+msgid "Higher numbers will sink to bottom of listing"
+msgstr ""
+
+#: ../../mod/mitem.php:166
+msgid "Submit and finish"
+msgstr ""
+
+#: ../../mod/mitem.php:167
+msgid "Submit and continue"
+msgstr ""
+
+#: ../../mod/mitem.php:174
+msgid "Menu:"
+msgstr ""
+
+#: ../../mod/mitem.php:177
+msgid "Link Target"
+msgstr ""
+
+#: ../../mod/mitem.php:180
+msgid "Edit menu"
+msgstr ""
+
+#: ../../mod/mitem.php:183
+msgid "Edit element"
+msgstr ""
+
+#: ../../mod/mitem.php:184
+msgid "Drop element"
+msgstr ""
+
+#: ../../mod/mitem.php:185
+msgid "New element"
+msgstr ""
+
+#: ../../mod/mitem.php:186
+msgid "Edit this menu container"
+msgstr ""
+
+#: ../../mod/mitem.php:187
+msgid "Add menu element"
+msgstr ""
+
+#: ../../mod/mitem.php:188
+msgid "Delete this menu item"
+msgstr ""
+
+#: ../../mod/mitem.php:189
+msgid "Edit this menu item"
+msgstr ""
+
+#: ../../mod/mitem.php:206
+msgid "Menu item not found."
+msgstr ""
+
+#: ../../mod/mitem.php:217
+msgid "Menu item deleted."
+msgstr ""
+
+#: ../../mod/mitem.php:219
+msgid "Menu item could not be deleted."
+msgstr ""
+
+#: ../../mod/mitem.php:226
+msgid "Edit Menu Element"
+msgstr ""
+
+#: ../../mod/mitem.php:232
+msgid "Link text"
+msgstr ""
+
#: ../../mod/mood.php:131
msgid "Set your current mood and tell your friends"
msgstr ""
@@ -8572,7 +8576,7 @@ msgstr ""
msgid "Invalid connection."
msgstr ""
-#: ../../mod/page.php:119
+#: ../../mod/page.php:122
msgid "Ipsum Lorem"
msgstr ""
diff --git a/version.inc b/version.inc
index b4af2b2ab..75841c2b0 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2015-05-14.1032
+2015-05-17.1035