aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/nav.php3
-rw-r--r--mod/notifications.php326
-rw-r--r--util/messages.po7178
3 files changed, 7178 insertions, 329 deletions
diff --git a/include/nav.php b/include/nav.php
index f0dd20c6b..f89de2de0 100644
--- a/include/nav.php
+++ b/include/nav.php
@@ -147,16 +147,13 @@ EOT;
if(local_user()) {
$nav['network'] = array('network', t('Matrix'), "", t('Your matrix'));
- $nav['network']['all']=array('notifications/network', t('See all matrix notifications'), "", "");
$nav['network']['mark'] = array('', t('Mark all matrix notifications seen'), '','');
$nav['home'] = array('channel/' . $channel['channel_address'], t('Channel Home'), "", t('Channel home'));
- $nav['home']['all']=array('notifications/channel', t('See all channel notifications'), "", "");
$nav['home']['mark'] = array('', t('Mark all channel notifications seen'), '','');
$nav['intros'] = array('connections/pending', t('Intros'), "", t('New Connections'));
- $nav['intros']['all']=array('notifications/intros', t('See all channel introductions'), "", "");
$nav['notifications'] = array('notifications/system', t('Notices'), "", t('Notifications'));
diff --git a/mod/notifications.php b/mod/notifications.php
index 18f515704..f327c2fe2 100644
--- a/mod/notifications.php
+++ b/mod/notifications.php
@@ -71,157 +71,6 @@ function notifications_content(&$a) {
$o = '';
- $tabs = array(
- array(
- 'label' => t('System'),
- 'url'=>$a->get_baseurl(true) . '/notifications/system',
- 'sel'=> (($a->argv[1] == 'system') ? 'active' : ''),
- ),
-// array(
-// 'label' => t('Network'),
-// 'url'=>$a->get_baseurl(true) . '/notifications/network',
-// 'sel'=> (($a->argv[1] == 'network') ? 'active' : ''),
-// ),
- array(
- 'label' => t('Personal'),
- 'url'=>$a->get_baseurl(true) . '/notifications/personal',
- 'sel'=> (($a->argv[1] == 'personal') ? 'active' : ''),
- ),
-// array(
-// 'label' => t('Home'),
-// 'url' => $a->get_baseurl(true) . '/notifications/home',
-// 'sel'=> (($a->argv[1] == 'home') ? 'active' : ''),
-// ),
- array(
- 'label' => t('Introductions'),
- 'url' => $a->get_baseurl(true) . '/connections/pending',
- 'sel'=> (($a->argv[1] == 'intros') ? 'active' : ''),
- ),
- array(
- 'label' => t('Messages'),
- 'url' => $a->get_baseurl(true) . '/message',
- 'sel'=> '',
- ),
- );
-
- $o = "";
-
-
- if((argc() > 1) && (argv(1) == 'intros')) {
- nav_set_selected('introductions');
-
- $r = q("select * from abook left join xchan on abook_xchan = xchan_hash where uid = %d and (abook_flags & %d) and not (abook_flags & %d)",
- intval(local_user()),
- intval(ABOOK_FLAG_PENDING),
- intval(ABOOK_FLAG_IGNORED)
- );
-
- if($r) {
- // FIXME finish this
- foreach($r as $rr) {
-
- }
-
- }
- else
- info( t('No introductions.') . EOL);
-
- $o .= replace_macros($notif_tpl,array(
- '$notif_header' => t('Notifications'),
- '$tabs' => $tabs,
- '$notif_content' => $notif_content,
- ));
-
-// $o .= paginate($a);
- return $o;
-
- }
-
- elseif (($a->argc > 1) && ($a->argv[1] == 'network')) {
-
- $notif_tpl = get_markup_template('notifications.tpl');
-
- $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`,
- `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object` as `object`,
- `pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink`
- FROM `item` INNER JOIN `item` as `pitem` ON `pitem`.`id`=`item`.`parent`
- WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1 AND
- `item`.`deleted` = 0 AND `item`.`uid` = %d AND `item`.`wall` = 0 ORDER BY `item`.`created` DESC" ,
- intval(local_user())
- );
-
- $tpl_item_likes = get_markup_template('notifications_likes_item.tpl');
- $tpl_item_dislikes = get_markup_template('notifications_dislikes_item.tpl');
- $tpl_item_friends = get_markup_template('notifications_friends_item.tpl');
- $tpl_item_comments = get_markup_template('notifications_comments_item.tpl');
- $tpl_item_posts = get_markup_template('notifications_posts_item.tpl');
-
- $notif_content = '';
-
- if (count($r) > 0) {
-
- foreach ($r as $it) {
- switch($it['verb']){
- case ACTIVITY_LIKE:
- $notif_content .= replace_macros($tpl_item_likes,array(
- '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
- '$item_image' => $it['author-avatar'],
- '$item_text' => sprintf( t("%s liked %s's post"), $it['author-name'], $it['pname']),
- '$item_when' => relative_date($it['created'])
- ));
- break;
-
- case ACTIVITY_DISLIKE:
- $notif_content .= replace_macros($tpl_item_dislikes,array(
- '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
- '$item_image' => $it['author-avatar'],
- '$item_text' => sprintf( t("%s disliked %s's post"), $it['author-name'], $it['pname']),
- '$item_when' => relative_date($it['created'])
- ));
- break;
-
- case ACTIVITY_FRIEND:
-
- $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
- $obj = parse_xml_string($xmlhead.$it['object']);
- $it['fname'] = $obj->title;
-
- $notif_content .= replace_macros($tpl_item_friends,array(
- '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
- '$item_image' => $it['author-avatar'],
- '$item_text' => sprintf( t("%s is now friends with %s"), $it['author-name'], $it['fname']),
- '$item_when' => relative_date($it['created'])
- ));
- break;
-
- default:
- $item_text = (($it['id'] == $it['parent'])
- ? sprintf( t("%s created a new post"), $it['author-name'])
- : sprintf( t("%s commented on %s's post"), $it['author-name'], $it['pname']));
- $tpl = (($it['id'] == $it['parent']) ? $tpl_item_posts : $tpl_item_comments);
-
- $notif_content .= replace_macros($tpl,array(
- '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
- '$item_image' => $it['author-avatar'],
- '$item_text' => $item_text,
- '$item_when' => relative_date($it['created'])
- ));
- }
- }
-
- } else {
-
- $notif_content = t('No more network notifications.');
- }
-
- $o .= replace_macros($notif_tpl,array(
- '$notif_header' => t('Network Notifications'),
- '$tabs' => $tabs,
- '$notif_content' => $notif_content,
- ));
-
- } else if (($a->argc > 1) && ($a->argv[1] == 'system')) {
-
$notif_tpl = get_markup_template('notifications.tpl');
$not_tpl = get_markup_template('notify.tpl');
@@ -246,183 +95,8 @@ function notifications_content(&$a) {
$o .= replace_macros($notif_tpl,array(
'$notif_header' => t('System Notifications'),
- '$tabs' => $tabs,
'$notif_content' => $notif_content,
));
- } else if (($a->argc > 1) && ($a->argv[1] == 'personal')) {
-
- $notif_tpl = get_markup_template('notifications.tpl');
-
- $myurl = $a->get_baseurl(true) . '/channel/'. $a->user['nickname'];
- $myurl = substr($myurl,strpos($myurl,'://')+3);
- $myurl = str_replace(array('www.','.'),array('','\\.'),$myurl);
- $diasp_url = str_replace('/channel/','/u/',$myurl);
- $sql_extra .= sprintf(" AND ( `item`.`author-link` regexp '%s' or `item`.`tag` regexp '%s' or `item`.`tag` regexp '%s' ) ",
- dbesc($myurl . '$'),
- dbesc($myurl . '\\]'),
- dbesc($diasp_url . '\\]')
- );
-
-
- $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`,
- `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object` as `object`,
- `pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink`
- FROM `item` INNER JOIN `item` as `pitem` ON `pitem`.`id`=`item`.`parent`
- WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1
- $sql_extra
- AND `item`.`deleted` = 0 AND `item`.`uid` = %d AND `item`.`wall` = 0 ORDER BY `item`.`created` DESC" ,
- intval(local_user())
- );
-
- $tpl_item_likes = get_markup_template('notifications_likes_item.tpl');
- $tpl_item_dislikes = get_markup_template('notifications_dislikes_item.tpl');
- $tpl_item_friends = get_markup_template('notifications_friends_item.tpl');
- $tpl_item_comments = get_markup_template('notifications_comments_item.tpl');
- $tpl_item_posts = get_markup_template('notifications_posts_item.tpl');
-
- $notif_content = '';
-
- if (count($r) > 0) {
-
- foreach ($r as $it) {
- switch($it['verb']){
- case ACTIVITY_LIKE:
- $notif_content .= replace_macros($tpl_item_likes,array(
- '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
- '$item_image' => $it['author-avatar'],
- '$item_text' => sprintf( t("%s liked %s's post"), $it['author-name'], $it['pname']),
- '$item_when' => relative_date($it['created'])
- ));
- break;
-
- case ACTIVITY_DISLIKE:
- $notif_content .= replace_macros($tpl_item_dislikes,array(
- '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
- '$item_image' => $it['author-avatar'],
- '$item_text' => sprintf( t("%s disliked %s's post"), $it['author-name'], $it['pname']),
- '$item_when' => relative_date($it['created'])
- ));
- break;
-
- case ACTIVITY_FRIEND:
-
- $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
- $obj = parse_xml_string($xmlhead.$it['object']);
- $it['fname'] = $obj->title;
-
- $notif_content .= replace_macros($tpl_item_friends,array(
- '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
- '$item_image' => $it['author-avatar'],
- '$item_text' => sprintf( t("%s is now friends with %s"), $it['author-name'], $it['fname']),
- '$item_when' => relative_date($it['created'])
- ));
- break;
-
- default:
- $item_text = (($it['id'] == $it['parent'])
- ? sprintf( t("%s created a new post"), $it['author-name'])
- : sprintf( t("%s commented on %s's post"), $it['author-name'], $it['pname']));
- $tpl = (($it['id'] == $it['parent']) ? $tpl_item_posts : $tpl_item_comments);
-
- $notif_content .= replace_macros($tpl,array(
- '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
- '$item_image' => $it['author-avatar'],
- '$item_text' => $item_text,
- '$item_when' => relative_date($it['created'])
- ));
- }
- }
-
- } else {
-
- $notif_content = t('No more personal notifications.');
- }
-
- $o .= replace_macros($notif_tpl,array(
- '$notif_header' => t('Personal Notifications'),
- '$tabs' => $tabs,
- '$notif_content' => $notif_content,
- ));
-
-
- } else if (($a->argc > 1) && ($a->argv[1] == 'home')) {
-
- $notif_tpl = get_markup_template('notifications.tpl');
-
- $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`,
- `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object` as `object`,
- `pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink`
- FROM `item` INNER JOIN `item` as `pitem` ON `pitem`.`id`=`item`.`parent`
- WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1 AND
- `item`.`deleted` = 0 AND `item`.`uid` = %d AND `item`.`wall` = 1 ORDER BY `item`.`created` DESC",
- intval(local_user())
- );
-
- $tpl_item_likes = get_markup_template('notifications_likes_item.tpl');
- $tpl_item_dislikes = get_markup_template('notifications_dislikes_item.tpl');
- $tpl_item_friends = get_markup_template('notifications_friends_item.tpl');
- $tpl_item_comments = get_markup_template('notifications_comments_item.tpl');
-
- $notif_content = '';
-
- if (count($r) > 0) {
-
- foreach ($r as $it) {
- switch($it['verb']){
- case ACTIVITY_LIKE:
- $notif_content .= replace_macros($tpl_item_likes,array(
- '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
- '$item_image' => $it['author-avatar'],
- '$item_text' => sprintf( t("%s liked %s's post"), $it['author-name'], $it['pname']),
- '$item_when' => relative_date($it['created'])
- ));
-
- break;
- case ACTIVITY_DISLIKE:
- $notif_content .= replace_macros($tpl_item_dislikes,array(
- '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
- '$item_image' => $it['author-avatar'],
- '$item_text' => sprintf( t("%s disliked %s's post"), $it['author-name'], $it['pname']),
- '$item_when' => relative_date($it['created'])
- ));
-
- break;
- case ACTIVITY_FRIEND:
-
- $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
- $obj = parse_xml_string($xmlhead.$it['object']);
- $it['fname'] = $obj->title;
-
- $notif_content .= replace_macros($tpl_item_friends,array(
- '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
- '$item_image' => $it['author-avatar'],
- '$item_text' => sprintf( t("%s is now friends with %s"), $it['author-name'], $it['fname']),
- '$item_when' => relative_date($it['created'])
- ));
-
- break;
- default:
- $notif_content .= replace_macros($tpl_item_comments,array(
- '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
- '$item_image' => $it['author-avatar'],
- '$item_text' => sprintf( t("%s commented on %s's post"), $it['author-name'], $it['pname']),
- '$item_when' => relative_date($it['created'])
- ));
- }
- }
-
- } else {
- $notif_content = t('No more home notifications.');
- }
-
- $o .= replace_macros($notif_tpl,array(
- '$notif_header' => t('Home Notifications'),
- '$tabs' => $tabs,
- '$notif_content' => $notif_content,
- ));
- }
-
- $o .= paginate($a);
return $o;
}
diff --git a/util/messages.po b/util/messages.po
index e69de29bb..485d47394 100644
--- a/util/messages.po
+++ b/util/messages.po
@@ -0,0 +1,7178 @@
+# Red Communications Project
+# Copyright (C) 2013 the Red Matrix Project
+# This file is distributed under the same license as the Red package.
+# Mike Macgirvin, 2013
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: 2013-12-06.519\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-12-06 00:02-0800\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"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+#"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+
+#: ../../include/acl_selectors.php:235
+msgid "Visible to everybody"
+msgstr ""
+
+#: ../../include/acl_selectors.php:236
+msgid "show"
+msgstr ""
+
+#: ../../include/acl_selectors.php:237
+msgid "don't show"
+msgstr ""
+
+#: ../../include/activities.php:37
+msgid " and "
+msgstr ""
+
+#: ../../include/activities.php:45
+msgid "public profile"
+msgstr ""
+
+#: ../../include/activities.php:50
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr ""
+
+#: ../../include/activities.php:51
+#, php-format
+msgid "Visit %1$s's %2$s"
+msgstr ""
+
+#: ../../include/activities.php:54
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr ""
+
+#: ../../include/enotify.php:40
+msgid "Red Matrix Notification"
+msgstr ""
+
+#: ../../include/enotify.php:41
+msgid "redmatrix"
+msgstr ""
+
+#: ../../include/enotify.php:43
+msgid "Thank You,"
+msgstr ""
+
+#: ../../include/enotify.php:45
+#, php-format
+msgid "%s Administrator"
+msgstr ""
+
+#: ../../include/enotify.php:80
+#, php-format
+msgid "%s <!item_type!>"
+msgstr ""
+
+#: ../../include/enotify.php:84
+#, php-format
+msgid "[Red:Notify] New mail received at %s"
+msgstr ""
+
+#: ../../include/enotify.php:86
+#, php-format
+msgid "%1$s, %2$s sent you a new private message at %3$s."
+msgstr ""
+
+#: ../../include/enotify.php:87
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr ""
+
+#: ../../include/enotify.php:87
+msgid "a private message"
+msgstr ""
+
+#: ../../include/enotify.php:88
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr ""
+
+#: ../../include/enotify.php:139
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
+msgstr ""
+
+#: ../../include/enotify.php:147
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
+msgstr ""
+
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
+msgstr ""
+
+#: ../../include/enotify.php:167
+#, php-format
+msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:168
+#, php-format
+msgid "%1$s, %2$s commented on an item/conversation you have been following."
+msgstr ""
+
+#: ../../include/enotify.php:171 ../../include/enotify.php:190
+#: ../../include/enotify.php:216 ../../include/enotify.php:235
+#: ../../include/enotify.php:249
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr ""
+
+#: ../../include/enotify.php:178
+#, php-format
+msgid "[Red:Notify] %s posted to your profile wall"
+msgstr ""
+
+#: ../../include/enotify.php:180
+#, php-format
+msgid "%1$s, %2$s posted to your profile wall at %3$s"
+msgstr ""
+
+#: ../../include/enotify.php:182
+#, php-format
+msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
+msgstr ""
+
+#: ../../include/enotify.php:209
+#, php-format
+msgid "[Red:Notify] %s tagged you"
+msgstr ""
+
+#: ../../include/enotify.php:210
+#, php-format
+msgid "%1$s, %2$s tagged you at %3$s"
+msgstr ""
+
+#: ../../include/enotify.php:211
+#, php-format
+msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
+msgstr ""
+
+#: ../../include/enotify.php:224
+#, php-format
+msgid "[Red:Notify] %1$s poked you"
+msgstr ""
+
+#: ../../include/enotify.php:225
+#, php-format
+msgid "%1$s, %2$s poked you at %3$s"
+msgstr ""
+
+#: ../../include/enotify.php:226
+#, php-format
+msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
+msgstr ""
+
+#: ../../include/enotify.php:242
+#, php-format
+msgid "[Red:Notify] %s tagged your post"
+msgstr ""
+
+#: ../../include/enotify.php:243
+#, php-format
+msgid "%1$s, %2$s tagged your post at %3$s"
+msgstr ""
+
+#: ../../include/enotify.php:244
+#, php-format
+msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]"
+msgstr ""
+
+#: ../../include/enotify.php:256
+msgid "[Red:Notify] Introduction received"
+msgstr ""
+
+#: ../../include/enotify.php:257
+#, php-format
+msgid "%1$s, you've received an introduction from '%2$s' at %3$s"
+msgstr ""
+
+#: ../../include/enotify.php:258
+#, php-format
+msgid "%1$s, you've received [zrl=%2$s]an introduction[/zrl] from %3$s."
+msgstr ""
+
+#: ../../include/enotify.php:262 ../../include/enotify.php:281
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr ""
+
+#: ../../include/enotify.php:264
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr ""
+
+#: ../../include/enotify.php:271
+msgid "[Red:Notify] Friend suggestion received"
+msgstr ""
+
+#: ../../include/enotify.php:272
+#, php-format
+msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
+msgstr ""
+
+#: ../../include/enotify.php:273
+#, php-format
+msgid ""
+"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s."
+msgstr ""
+
+#: ../../include/enotify.php:279
+msgid "Name:"
+msgstr ""
+
+#: ../../include/enotify.php:280
+msgid "Photo:"
+msgstr ""
+
+#: ../../include/enotify.php:283
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr ""
+
+#: ../../include/ItemObject.php:88 ../../mod/photos.php:963
+msgid "Private Message"
+msgstr ""
+
+#: ../../include/ItemObject.php:95 ../../include/page_widgets.php:8
+#: ../../mod/webpages.php:101 ../../mod/settings.php:671 ../../mod/menu.php:55
+#: ../../mod/layouts.php:102 ../../mod/editlayout.php:100
+#: ../../mod/editwebpage.php:119 ../../mod/blocks.php:93
+#: ../../mod/editpost.php:97 ../../mod/editblock.php:114
+msgid "Edit"
+msgstr ""
+
+#: ../../include/ItemObject.php:107 ../../include/conversation.php:628
+#: ../../mod/settings.php:672 ../../mod/admin.php:690 ../../mod/group.php:182
+#: ../../mod/photos.php:1141 ../../mod/connections.php:374
+#: ../../mod/filestorage.php:82
+msgid "Delete"
+msgstr ""
+
+#: ../../include/ItemObject.php:113 ../../include/conversation.php:627
+msgid "Select"
+msgstr ""
+
+#: ../../include/ItemObject.php:117
+msgid "save to folder"
+msgstr ""
+
+#: ../../include/ItemObject.php:145
+msgid "add star"
+msgstr ""
+
+#: ../../include/ItemObject.php:146
+msgid "remove star"
+msgstr ""
+
+#: ../../include/ItemObject.php:147
+msgid "toggle star status"
+msgstr ""
+
+#: ../../include/ItemObject.php:151
+msgid "starred"
+msgstr ""
+
+#: ../../include/ItemObject.php:160 ../../include/conversation.php:638
+msgid "Message is verified"
+msgstr ""
+
+#: ../../include/ItemObject.php:168
+msgid "add tag"
+msgstr ""
+
+#: ../../include/ItemObject.php:174 ../../mod/photos.php:1069
+msgid "I like this (toggle)"
+msgstr ""
+
+#: ../../include/ItemObject.php:174 ../../include/taxonomy.php:251
+msgid "like"
+msgstr ""
+
+#: ../../include/ItemObject.php:175 ../../mod/photos.php:1070
+msgid "I don't like this (toggle)"
+msgstr ""
+
+#: ../../include/ItemObject.php:175 ../../include/taxonomy.php:252
+msgid "dislike"
+msgstr ""
+
+#: ../../include/ItemObject.php:177
+msgid "Share this"
+msgstr ""
+
+#: ../../include/ItemObject.php:177
+msgid "share"
+msgstr ""
+
+#: ../../include/ItemObject.php:201 ../../include/ItemObject.php:202
+#, php-format
+msgid "View %s's profile - %s"
+msgstr ""
+
+#: ../../include/ItemObject.php:203
+msgid "to"
+msgstr ""
+
+#: ../../include/ItemObject.php:204
+msgid "via"
+msgstr ""
+
+#: ../../include/ItemObject.php:205
+msgid "Wall-to-Wall"
+msgstr ""
+
+#: ../../include/ItemObject.php:206
+msgid "via Wall-To-Wall:"
+msgstr ""
+
+#: ../../include/ItemObject.php:216 ../../include/conversation.php:682
+#, php-format
+msgid " from %s"
+msgstr ""
+
+#: ../../include/ItemObject.php:219 ../../include/conversation.php:685
+#, php-format
+msgid "last edited: %s"
+msgstr ""
+
+#: ../../include/ItemObject.php:246 ../../include/conversation.php:702
+#: ../../include/conversation.php:1112 ../../mod/photos.php:1072
+#: ../../mod/message.php:332 ../../mod/message.php:516
+#: ../../mod/editlayout.php:109 ../../mod/editwebpage.php:128
+#: ../../mod/editpost.php:106 ../../mod/editblock.php:123
+msgid "Please wait"
+msgstr ""
+
+#: ../../include/ItemObject.php:267
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/ItemObject.php:268 ../../include/js_strings.php:7
+#: ../../include/contact_widgets.php:148
+msgid "show more"
+msgstr ""
+
+#: ../../include/ItemObject.php:527 ../../mod/photos.php:1088
+#: ../../mod/photos.php:1175
+msgid "This is you"
+msgstr ""
+
+#: ../../include/ItemObject.php:529 ../../include/js_strings.php:6
+#: ../../mod/photos.php:1090 ../../mod/photos.php:1177
+msgid "Comment"
+msgstr ""
+
+#: ../../include/ItemObject.php:530 ../../mod/events.php:469
+#: ../../mod/thing.php:190 ../../mod/invite.php:154 ../../mod/setup.php:302
+#: ../../mod/setup.php:345 ../../mod/settings.php:609
+#: ../../mod/settings.php:721 ../../mod/settings.php:749
+#: ../../mod/settings.php:773 ../../mod/settings.php:844
+#: ../../mod/settings.php:1005 ../../mod/connect.php:96
+#: ../../mod/sources.php:83 ../../mod/sources.php:110 ../../mod/admin.php:418
+#: ../../mod/admin.php:683 ../../mod/admin.php:823 ../../mod/admin.php:1022
+#: ../../mod/admin.php:1109 ../../mod/group.php:87 ../../mod/photos.php:685
+#: ../../mod/photos.php:790 ../../mod/photos.php:1051
+#: ../../mod/photos.php:1091 ../../mod/photos.php:1178
+#: ../../mod/message.php:333 ../../mod/message.php:515
+#: ../../mod/profiles.php:529 ../../mod/connections.php:452
+#: ../../mod/import.php:387 ../../mod/crepair.php:166 ../../mod/poke.php:166
+#: ../../mod/fsuggest.php:108 ../../mod/mood.php:137
+#: ../../view/theme/redbasic/php/config.php:85
+#: ../../view/theme/apw/php/config.php:231
+#: ../../view/theme/blogga/view/theme/blog/config.php:67
+#: ../../view/theme/blogga/php/config.php:67
+msgid "Submit"
+msgstr ""
+
+#: ../../include/ItemObject.php:531
+msgid "Bold"
+msgstr ""
+
+#: ../../include/ItemObject.php:532
+msgid "Italic"
+msgstr ""
+
+#: ../../include/ItemObject.php:533
+msgid "Underline"
+msgstr ""
+
+#: ../../include/ItemObject.php:534
+msgid "Quote"
+msgstr ""
+
+#: ../../include/ItemObject.php:535
+msgid "Code"
+msgstr ""
+
+#: ../../include/ItemObject.php:536
+msgid "Image"
+msgstr ""
+
+#: ../../include/ItemObject.php:537
+msgid "Link"
+msgstr ""
+
+#: ../../include/ItemObject.php:538
+msgid "Video"
+msgstr ""
+
+#: ../../include/ItemObject.php:539 ../../include/conversation.php:1075
+#: ../../mod/webpages.php:105 ../../mod/photos.php:1092
+#: ../../mod/editlayout.php:129 ../../mod/editwebpage.php:150
+#: ../../mod/editpost.php:126 ../../mod/editblock.php:144
+msgid "Preview"
+msgstr ""
+
+#: ../../include/ItemObject.php:542 ../../include/conversation.php:1139
+#: ../../mod/message.php:338 ../../mod/message.php:521
+#: ../../mod/editpost.php:134
+msgid "Encrypt text"
+msgstr ""
+
+#: ../../include/Contact.php:87 ../../include/contact_widgets.php:23
+#: ../../include/identity.php:613 ../../mod/match.php:62
+#: ../../mod/suggest.php:56 ../../mod/directory.php:198
+msgid "Connect"
+msgstr ""
+
+#: ../../include/Contact.php:103
+msgid "New window"
+msgstr ""
+
+#: ../../include/Contact.php:104
+msgid "Open the selected location in a different window or browser tab"
+msgstr ""
+
+#: ../../include/contact_selectors.php:30
+msgid "Unknown | Not categorised"
+msgstr ""
+
+#: ../../include/contact_selectors.php:31
+msgid "Block immediately"
+msgstr ""
+
+#: ../../include/contact_selectors.php:32
+msgid "Shady, spammer, self-marketer"
+msgstr ""
+
+#: ../../include/contact_selectors.php:33
+msgid "Known to me, but no opinion"
+msgstr ""
+
+#: ../../include/contact_selectors.php:34
+msgid "OK, probably harmless"
+msgstr ""
+
+#: ../../include/contact_selectors.php:35
+msgid "Reputable, has my trust"
+msgstr ""
+
+#: ../../include/contact_selectors.php:54
+msgid "Frequently"
+msgstr ""
+
+#: ../../include/contact_selectors.php:55
+msgid "Hourly"
+msgstr ""
+
+#: ../../include/contact_selectors.php:56
+msgid "Twice daily"
+msgstr ""
+
+#: ../../include/contact_selectors.php:57
+msgid "Daily"
+msgstr ""
+
+#: ../../include/contact_selectors.php:58
+msgid "Weekly"
+msgstr ""
+
+#: ../../include/contact_selectors.php:59
+msgid "Monthly"
+msgstr ""
+
+#: ../../include/contact_selectors.php:74
+msgid "Friendica"
+msgstr ""
+
+#: ../../include/contact_selectors.php:75
+msgid "OStatus"
+msgstr ""
+
+#: ../../include/contact_selectors.php:76
+msgid "RSS/Atom"
+msgstr ""
+
+#: ../../include/contact_selectors.php:77 ../../mod/admin.php:686
+#: ../../mod/admin.php:695 ../../boot.php:1442
+msgid "Email"
+msgstr ""
+
+#: ../../include/contact_selectors.php:78
+msgid "Diaspora"
+msgstr ""
+
+#: ../../include/contact_selectors.php:79
+msgid "Facebook"
+msgstr ""
+
+#: ../../include/contact_selectors.php:80
+msgid "Zot!"
+msgstr ""
+
+#: ../../include/contact_selectors.php:81
+msgid "LinkedIn"
+msgstr ""
+
+#: ../../include/contact_selectors.php:82
+msgid "XMPP/IM"
+msgstr ""
+
+#: ../../include/contact_selectors.php:83
+msgid "MySpace"
+msgstr ""
+
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr ""
+
+#: ../../include/datetime.php:152 ../../include/datetime.php:284
+msgid "year"
+msgstr ""
+
+#: ../../include/datetime.php:157 ../../include/datetime.php:285
+msgid "month"
+msgstr ""
+
+#: ../../include/datetime.php:162 ../../include/datetime.php:287
+msgid "day"
+msgstr ""
+
+#: ../../include/datetime.php:275
+msgid "never"
+msgstr ""
+
+#: ../../include/datetime.php:281
+msgid "less than a second ago"
+msgstr ""
+
+#: ../../include/datetime.php:284
+msgid "years"
+msgstr ""
+
+#: ../../include/datetime.php:285
+msgid "months"
+msgstr ""
+
+#: ../../include/datetime.php:286
+msgid "week"
+msgstr ""
+
+#: ../../include/datetime.php:286
+msgid "weeks"
+msgstr ""
+
+#: ../../include/datetime.php:287
+msgid "days"
+msgstr ""
+
+#: ../../include/datetime.php:288
+msgid "hour"
+msgstr ""
+
+#: ../../include/datetime.php:288
+msgid "hours"
+msgstr ""
+
+#: ../../include/datetime.php:289
+msgid "minute"
+msgstr ""
+
+#: ../../include/datetime.php:289
+msgid "minutes"
+msgstr ""
+
+#: ../../include/datetime.php:290
+msgid "second"
+msgstr ""
+
+#: ../../include/datetime.php:290
+msgid "seconds"
+msgstr ""
+
+#: ../../include/datetime.php:299
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr ""
+
+#: ../../include/dba/dba_driver.php:50
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr ""
+
+#: ../../include/event.php:11 ../../include/bb2diaspora.php:433
+msgid "l F d, Y \\@ g:i A"
+msgstr ""
+
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:439
+msgid "Starts:"
+msgstr ""
+
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:447
+msgid "Finishes:"
+msgstr ""
+
+#: ../../include/event.php:40 ../../include/identity.php:663
+#: ../../include/bb2diaspora.php:455 ../../mod/events.php:462
+#: ../../mod/directory.php:173
+msgid "Location:"
+msgstr ""
+
+#: ../../include/features.php:21
+msgid "General Features"
+msgstr ""
+
+#: ../../include/features.php:23
+msgid "Content Expiration"
+msgstr ""
+
+#: ../../include/features.php:23
+msgid "Remove posts/comments and/or private messages at a future time"
+msgstr ""
+
+#: ../../include/features.php:24
+msgid "Multiple Profiles"
+msgstr ""
+
+#: ../../include/features.php:24
+msgid "Ability to create multiple profiles"
+msgstr ""
+
+#: ../../include/features.php:25
+msgid "Web Pages"
+msgstr ""
+
+#: ../../include/features.php:25
+msgid "Provide managed web pages on your channel"
+msgstr ""
+
+#: ../../include/features.php:26
+msgid "Enhanced Photo Albums"
+msgstr ""
+
+#: ../../include/features.php:26
+msgid "Enable photo album with enhanced features"
+msgstr ""
+
+#: ../../include/features.php:28
+msgid "Extended Identity Sharing"
+msgstr ""
+
+#: ../../include/features.php:28 ../../include/js_strings.php:30
+msgid " "
+msgstr ""
+
+#: ../../include/features.php:29
+msgid "Expert Mode"
+msgstr ""
+
+#: ../../include/features.php:29
+msgid "Enable Expert Mode to provide advanced configuration options"
+msgstr ""
+
+#: ../../include/features.php:30
+msgid "Premium Channel"
+msgstr ""
+
+#: ../../include/features.php:30
+msgid ""
+"Allows you to set restrictions and terms on those that connect with your "
+"channel"
+msgstr ""
+
+#: ../../include/features.php:35
+msgid "Post Composition Features"
+msgstr ""
+
+#: ../../include/features.php:36
+msgid "Richtext Editor"
+msgstr ""
+
+#: ../../include/features.php:36
+msgid "Enable richtext editor"
+msgstr ""
+
+#: ../../include/features.php:37
+msgid "Post Preview"
+msgstr ""
+
+#: ../../include/features.php:37
+msgid "Allow previewing posts and comments before publishing them"
+msgstr ""
+
+#: ../../include/features.php:38 ../../mod/settings.php:120
+#: ../../mod/sources.php:67
+msgid "Channel Sources"
+msgstr ""
+
+#: ../../include/features.php:38
+msgid "Automatically import channel content from other channels or feeds"
+msgstr ""
+
+#: ../../include/features.php:39
+msgid "Even More Encryption"
+msgstr ""
+
+#: ../../include/features.php:39
+msgid "Allow encryption of content end-to-end with a shared secret key"
+msgstr ""
+
+#: ../../include/features.php:44
+msgid "Network and Stream Filtering"
+msgstr ""
+
+#: ../../include/features.php:45
+msgid "Search by Date"
+msgstr ""
+
+#: ../../include/features.php:45
+msgid "Ability to select posts by date ranges"
+msgstr ""
+
+#: ../../include/features.php:46
+msgid "Collections Filter"
+msgstr ""
+
+#: ../../include/features.php:46
+msgid "Enable widget to display Network posts only from selected collections"
+msgstr ""
+
+#: ../../include/features.php:47 ../../mod/search.php:17
+#: ../../mod/network.php:122
+msgid "Saved Searches"
+msgstr ""
+
+#: ../../include/features.php:47
+msgid "Save search terms for re-use"
+msgstr ""
+
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr ""
+
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr ""
+
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr ""
+
+#: ../../include/features.php:49
+msgid "Enable tab to display all new Network activity"
+msgstr ""
+
+#: ../../include/features.php:50
+msgid "Affinity Tool"
+msgstr ""
+
+#: ../../include/features.php:50
+msgid "Filter stream activity by depth of relationships"
+msgstr ""
+
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr ""
+
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr ""
+
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr ""
+
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr ""
+
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr ""
+
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr ""
+
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr ""
+
+#: ../../include/features.php:60 ../../include/contact_widgets.php:76
+msgid "Saved Folders"
+msgstr ""
+
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr ""
+
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr ""
+
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr ""
+
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr ""
+
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr ""
+
+#: ../../include/features.php:63
+msgid "Tag Cloud"
+msgstr ""
+
+#: ../../include/features.php:63
+msgid "Provide a personal tag cloud on your channel page"
+msgstr ""
+
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr ""
+
+#: ../../include/group.php:223
+msgid "Default privacy group for new contacts"
+msgstr ""
+
+#: ../../include/group.php:242 ../../mod/admin.php:695
+msgid "All Channels"
+msgstr ""
+
+#: ../../include/group.php:264
+msgid "edit"
+msgstr ""
+
+#: ../../include/group.php:285
+msgid "Collections"
+msgstr ""
+
+#: ../../include/group.php:286
+msgid "Edit collection"
+msgstr ""
+
+#: ../../include/group.php:287
+msgid "Create a new collection"
+msgstr ""
+
+#: ../../include/group.php:288
+msgid "Channels not in any collection"
+msgstr ""
+
+#: ../../include/group.php:290 ../../mod/network.php:123
+msgid "add"
+msgstr ""
+
+#: ../../include/js_strings.php:5
+msgid "Delete this item?"
+msgstr ""
+
+#: ../../include/js_strings.php:8
+msgid "show fewer"
+msgstr ""
+
+#: ../../include/js_strings.php:9
+msgid "Password too short"
+msgstr ""
+
+#: ../../include/js_strings.php:10
+msgid "Passwords do not match"
+msgstr ""
+
+#: ../../include/js_strings.php:11 ../../mod/photos.php:45
+msgid "everybody"
+msgstr ""
+
+#: ../../include/js_strings.php:12
+msgid "Secret Passphrase"
+msgstr ""
+
+#: ../../include/js_strings.php:13
+msgid "Passphrase hint"
+msgstr ""
+
+#: ../../include/js_strings.php:15
+msgid "timeago.prefixAgo"
+msgstr ""
+
+#: ../../include/js_strings.php:16
+msgid "timeago.suffixAgo"
+msgstr ""
+
+#: ../../include/js_strings.php:17
+msgid "ago"
+msgstr ""
+
+#: ../../include/js_strings.php:18
+msgid "from now"
+msgstr ""
+
+#: ../../include/js_strings.php:19
+msgid "less than a minute"
+msgstr ""
+
+#: ../../include/js_strings.php:20
+msgid "about a minute"
+msgstr ""
+
+#: ../../include/js_strings.php:21
+#, php-format
+msgid "%d minutes"
+msgstr ""
+
+#: ../../include/js_strings.php:22
+msgid "about an hour"
+msgstr ""
+
+#: ../../include/js_strings.php:23
+#, php-format
+msgid "about %d hours"
+msgstr ""
+
+#: ../../include/js_strings.php:24
+msgid "a day"
+msgstr ""
+
+#: ../../include/js_strings.php:25
+#, php-format
+msgid "%d days"
+msgstr ""
+
+#: ../../include/js_strings.php:26
+msgid "about a month"
+msgstr ""
+
+#: ../../include/js_strings.php:27
+#, php-format
+msgid "%d months"
+msgstr ""
+
+#: ../../include/js_strings.php:28
+msgid "about a year"
+msgstr ""
+
+#: ../../include/js_strings.php:29
+#, php-format
+msgid "%d years"
+msgstr ""
+
+#: ../../include/js_strings.php:31
+msgid "timeago.numbers"
+msgstr ""
+
+#: ../../include/message.php:18
+msgid "No recipient provided."
+msgstr ""
+
+#: ../../include/message.php:23
+msgid "[no subject]"
+msgstr ""
+
+#: ../../include/message.php:42
+msgid "Unable to determine sender."
+msgstr ""
+
+#: ../../include/message.php:143
+msgid "Stored post could not be verified."
+msgstr ""
+
+#: ../../include/photo/photo_driver.php:609 ../../include/photos.php:51
+#: ../../mod/photos.php:97 ../../mod/photos.php:775 ../../mod/photos.php:797
+#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:235
+#: ../../mod/profile_photo.php:346
+msgid "Profile Photos"
+msgstr ""
+
+#: ../../include/api.php:972
+msgid "Public Timeline"
+msgstr ""
+
+#: ../../include/network.php:640
+msgid "view full size"
+msgstr ""
+
+#: ../../include/bbcode.php:94 ../../include/bbcode.php:494
+#: ../../include/bbcode.php:497
+msgid "Image/photo"
+msgstr ""
+
+#: ../../include/bbcode.php:126 ../../include/bbcode.php:502
+msgid "Encrypted content"
+msgstr ""
+
+#: ../../include/bbcode.php:173
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr ""
+
+#: ../../include/bbcode.php:175
+msgid "post"
+msgstr ""
+
+#: ../../include/bbcode.php:454 ../../include/bbcode.php:474
+msgid "$1 wrote:"
+msgstr ""
+
+#: ../../include/oembed.php:150
+msgid "Embedded content"
+msgstr ""
+
+#: ../../include/oembed.php:159
+msgid "Embedding disabled"
+msgstr ""
+
+#: ../../include/notify.php:23
+msgid "created a new post"
+msgstr ""
+
+#: ../../include/notify.php:24
+#, php-format
+msgid "commented on %s's post"
+msgstr ""
+
+#: ../../include/photos.php:15 ../../include/attach.php:102
+#: ../../include/attach.php:133 ../../include/attach.php:189
+#: ../../include/attach.php:204 ../../include/attach.php:237
+#: ../../include/attach.php:251 ../../include/attach.php:272
+#: ../../include/attach.php:464 ../../include/attach.php:539
+#: ../../include/items.php:3412 ../../mod/common.php:43
+#: ../../mod/events.php:139 ../../mod/invite.php:13 ../../mod/invite.php:102
+#: ../../mod/allfriends.php:10 ../../mod/webpages.php:40 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/lastpost.php:93 ../../mod/page.php:30
+#: ../../mod/page.php:80 ../../mod/setup.php:200 ../../mod/settings.php:586
+#: ../../mod/viewconnections.php:33 ../../mod/viewconnections.php:38
+#: ../../mod/delegate.php:6 ../../mod/sources.php:48 ../../mod/mitem.php:92
+#: ../../mod/group.php:15 ../../mod/photos.php:74 ../../mod/photos.php:654
+#: ../../mod/viewsrc.php:12 ../../mod/menu.php:40 ../../mod/message.php:208
+#: ../../mod/layouts.php:27 ../../mod/layouts.php:42 ../../mod/network.php:12
+#: ../../mod/intro.php:50 ../../mod/profiles.php:163
+#: ../../mod/profiles.php:476 ../../mod/new_channel.php:66
+#: ../../mod/new_channel.php:97 ../../mod/connections.php:197
+#: ../../mod/filestorage.php:26 ../../mod/manage.php:6
+#: ../../mod/crepair.php:115 ../../mod/editlayout.php:48
+#: ../../mod/profile_photo.php:197 ../../mod/profile_photo.php:210
+#: ../../mod/editwebpage.php:42 ../../mod/editwebpage.php:64
+#: ../../mod/notifications.php:66 ../../mod/blocks.php:29
+#: ../../mod/blocks.php:44 ../../mod/editpost.php:13 ../../mod/poke.php:128
+#: ../../mod/channel.php:110 ../../mod/fsuggest.php:78
+#: ../../mod/editblock.php:48 ../../mod/item.php:181 ../../mod/item.php:189
+#: ../../mod/suggest.php:32 ../../mod/register.php:68 ../../mod/regmod.php:18
+#: ../../mod/authtest.php:13 ../../mod/mood.php:114 ../../index.php:178
+#: ../../index.php:340
+msgid "Permission denied."
+msgstr ""
+
+#: ../../include/photos.php:88
+#, php-format
+msgid "Image exceeds website size limit of %lu bytes"
+msgstr ""
+
+#: ../../include/photos.php:95
+msgid "Image file is empty."
+msgstr ""
+
+#: ../../include/photos.php:124 ../../mod/profile_photo.php:157
+msgid "Unable to process image"
+msgstr ""
+
+#: ../../include/photos.php:186
+msgid "Photo storage failed."
+msgstr ""
+
+#: ../../include/photos.php:288 ../../include/conversation.php:1453
+msgid "Photo Albums"
+msgstr ""
+
+#: ../../include/photos.php:292 ../../mod/photos.php:813
+#: ../../mod/photos.php:1287
+msgid "Upload New Photos"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr ""
+
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr ""
+
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42 ../../include/identity.php:298
+#: ../../mod/network.php:215 ../../mod/connections.php:407
+msgid "Friends"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr ""
+
+#: ../../include/attach.php:184 ../../include/attach.php:232
+msgid "Item was not found."
+msgstr ""
+
+#: ../../include/attach.php:285
+msgid "No source file."
+msgstr ""
+
+#: ../../include/attach.php:302
+msgid "Cannot locate file to replace"
+msgstr ""
+
+#: ../../include/attach.php:320
+msgid "Cannot locate file to revise/update"
+msgstr ""
+
+#: ../../include/attach.php:331
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr ""
+
+#: ../../include/attach.php:342
+#, php-format
+msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
+msgstr ""
+
+#: ../../include/attach.php:424
+msgid "File upload failed. Possible system limit or action terminated."
+msgstr ""
+
+#: ../../include/attach.php:436
+msgid "Stored file could not be verified. Upload failed."
+msgstr ""
+
+#: ../../include/attach.php:480 ../../include/attach.php:497
+msgid "Path not available."
+msgstr ""
+
+#: ../../include/attach.php:544
+msgid "Empty pathname"
+msgstr ""
+
+#: ../../include/attach.php:562
+msgid "duplicate filename or path"
+msgstr ""
+
+#: ../../include/attach.php:584
+msgid "Path not found."
+msgstr ""
+
+#: ../../include/attach.php:628
+msgid "mkdir failed."
+msgstr ""
+
+#: ../../include/attach.php:632
+msgid "database storage failed."
+msgstr ""
+
+#: ../../include/zot.php:545
+msgid "Invalid data packet"
+msgstr ""
+
+#: ../../include/zot.php:555
+msgid "Unable to verify channel signature"
+msgstr ""
+
+#: ../../include/zot.php:732
+#, php-format
+msgid "Unable to verify site signature for %s"
+msgstr ""
+
+#: ../../include/nav.php:72 ../../include/nav.php:87 ../../boot.php:1439
+msgid "Logout"
+msgstr ""
+
+#: ../../include/nav.php:72 ../../include/nav.php:87
+msgid "End this session"
+msgstr ""
+
+#: ../../include/nav.php:75 ../../include/nav.php:121
+msgid "Home"
+msgstr ""
+
+#: ../../include/nav.php:75
+msgid "Your posts and conversations"
+msgstr ""
+
+#: ../../include/nav.php:76 ../../include/conversation.php:925
+#: ../../mod/connections.php:327 ../../mod/connections.php:441
+msgid "View Profile"
+msgstr ""
+
+#: ../../include/nav.php:76
+msgid "Your profile page"
+msgstr ""
+
+#: ../../include/nav.php:78
+msgid "Edit Profiles"
+msgstr ""
+
+#: ../../include/nav.php:78
+msgid "Manage/Edit Profiles"
+msgstr ""
+
+#: ../../include/nav.php:79 ../../include/conversation.php:1450
+#: ../../mod/fbrowser.php:25
+msgid "Photos"
+msgstr ""
+
+#: ../../include/nav.php:79
+msgid "Your photos"
+msgstr ""
+
+#: ../../include/nav.php:85 ../../boot.php:1440
+msgid "Login"
+msgstr ""
+
+#: ../../include/nav.php:85
+msgid "Sign in"
+msgstr ""
+
+#: ../../include/nav.php:102
+#, php-format
+msgid "%s - click to logout"
+msgstr ""
+
+#: ../../include/nav.php:107
+msgid "Click to authenticate to your home hub"
+msgstr ""
+
+#: ../../include/nav.php:121
+msgid "Home Page"
+msgstr ""
+
+#: ../../include/nav.php:125 ../../mod/register.php:195 ../../boot.php:1416
+msgid "Register"
+msgstr ""
+
+#: ../../include/nav.php:125
+msgid "Create an account"
+msgstr ""
+
+#: ../../include/nav.php:130 ../../mod/help.php:45 ../../mod/help.php:49
+msgid "Help"
+msgstr ""
+
+#: ../../include/nav.php:130
+msgid "Help and documentation"
+msgstr ""
+
+#: ../../include/nav.php:133
+msgid "Apps"
+msgstr ""
+
+#: ../../include/nav.php:133
+msgid "Addon applications, utilities, games"
+msgstr ""
+
+#: ../../include/nav.php:135 ../../include/text.php:736
+#: ../../mod/search.php:96
+msgid "Search"
+msgstr ""
+
+#: ../../include/nav.php:135
+msgid "Search site content"
+msgstr ""
+
+#: ../../include/nav.php:138 ../../mod/directory.php:225
+msgid "Directory"
+msgstr ""
+
+#: ../../include/nav.php:138
+msgid "Channel Locator"
+msgstr ""
+
+#: ../../include/nav.php:149
+msgid "Matrix"
+msgstr ""
+
+#: ../../include/nav.php:149
+msgid "Your matrix"
+msgstr ""
+
+#: ../../include/nav.php:150
+msgid "See all matrix notifications"
+msgstr ""
+
+#: ../../include/nav.php:151
+msgid "Mark all matrix notifications seen"
+msgstr ""
+
+#: ../../include/nav.php:153
+msgid "Channel Home"
+msgstr ""
+
+#: ../../include/nav.php:153
+msgid "Channel home"
+msgstr ""
+
+#: ../../include/nav.php:154
+msgid "See all channel notifications"
+msgstr ""
+
+#: ../../include/nav.php:155
+msgid "Mark all channel notifications seen"
+msgstr ""
+
+#: ../../include/nav.php:158
+msgid "Intros"
+msgstr ""
+
+#: ../../include/nav.php:158 ../../mod/connections.php:585
+msgid "New Connections"
+msgstr ""
+
+#: ../../include/nav.php:159
+msgid "See all channel introductions"
+msgstr ""
+
+#: ../../include/nav.php:162
+msgid "Notices"
+msgstr ""
+
+#: ../../include/nav.php:162 ../../mod/notifications.php:218
+msgid "Notifications"
+msgstr ""
+
+#: ../../include/nav.php:163
+msgid "See all notifications"
+msgstr ""
+
+#: ../../include/nav.php:164
+msgid "Mark all system notifications seen"
+msgstr ""
+
+#: ../../include/nav.php:166
+msgid "Mail"
+msgstr ""
+
+#: ../../include/nav.php:166
+msgid "Private mail"
+msgstr ""
+
+#: ../../include/nav.php:167
+msgid "See all private messages"
+msgstr ""
+
+#: ../../include/nav.php:168
+msgid "Mark all private messages seen"
+msgstr ""
+
+#: ../../include/nav.php:169
+msgid "Inbox"
+msgstr ""
+
+#: ../../include/nav.php:170
+msgid "Outbox"
+msgstr ""
+
+#: ../../include/nav.php:171 ../../mod/message.php:24
+msgid "New Message"
+msgstr ""
+
+#: ../../include/nav.php:174 ../../include/conversation.php:1461
+#: ../../mod/events.php:353
+msgid "Events"
+msgstr ""
+
+#: ../../include/nav.php:174
+msgid "Event Calendar"
+msgstr ""
+
+#: ../../include/nav.php:175
+msgid "See all events"
+msgstr ""
+
+#: ../../include/nav.php:176
+msgid "Mark all events seen"
+msgstr ""
+
+#: ../../include/nav.php:178
+msgid "Channel Select"
+msgstr ""
+
+#: ../../include/nav.php:178
+msgid "Manage Your Channels"
+msgstr ""
+
+#: ../../include/nav.php:180 ../../mod/settings.php:131
+#: ../../mod/admin.php:782 ../../mod/admin.php:987
+msgid "Settings"
+msgstr ""
+
+#: ../../include/nav.php:180
+msgid "Account/Channel Settings"
+msgstr ""
+
+#: ../../include/nav.php:182 ../../mod/connections.php:690
+msgid "Connections"
+msgstr ""
+
+#: ../../include/nav.php:182
+msgid "Manage/Edit Friends and Connections"
+msgstr ""
+
+#: ../../include/nav.php:189 ../../mod/admin.php:111
+msgid "Admin"
+msgstr ""
+
+#: ../../include/nav.php:189
+msgid "Site Setup and Configuration"
+msgstr ""
+
+#: ../../include/nav.php:215
+msgid "Nothing new here"
+msgstr ""
+
+#: ../../include/nav.php:220
+msgid "Please wait..."
+msgstr ""
+
+#: ../../include/account.php:23
+msgid "Not a valid email address"
+msgstr ""
+
+#: ../../include/account.php:25
+msgid "Your email domain is not among those allowed on this site"
+msgstr ""
+
+#: ../../include/account.php:31
+msgid "Your email address is already registered at this site."
+msgstr ""
+
+#: ../../include/account.php:64
+msgid "An invitation is required."
+msgstr ""
+
+#: ../../include/account.php:68
+msgid "Invitation could not be verified."
+msgstr ""
+
+#: ../../include/account.php:118
+msgid "Please enter the required information."
+msgstr ""
+
+#: ../../include/account.php:186
+msgid "Failed to store account information."
+msgstr ""
+
+#: ../../include/account.php:272
+#, php-format
+msgid "Registration request at %s"
+msgstr ""
+
+#: ../../include/account.php:274 ../../include/account.php:301
+#: ../../include/account.php:358
+msgid "Administrator"
+msgstr ""
+
+#: ../../include/account.php:296
+msgid "your registration password"
+msgstr ""
+
+#: ../../include/account.php:299 ../../include/account.php:356
+#, php-format
+msgid "Registration details for %s"
+msgstr ""
+
+#: ../../include/account.php:365
+msgid "Account approved."
+msgstr ""
+
+#: ../../include/account.php:399
+#, php-format
+msgid "Registration revoked for %s"
+msgstr ""
+
+#: ../../include/conversation.php:117 ../../include/text.php:1609
+#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
+msgid "photo"
+msgstr ""
+
+#: ../../include/conversation.php:120 ../../include/text.php:1612
+#: ../../mod/tagger.php:49
+msgid "event"
+msgstr ""
+
+#: ../../include/conversation.php:123
+msgid "channel"
+msgstr ""
+
+#: ../../include/conversation.php:145 ../../include/text.php:1615
+#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
+msgid "status"
+msgstr ""
+
+#: ../../include/conversation.php:147 ../../include/text.php:1617
+#: ../../mod/tagger.php:55
+msgid "comment"
+msgstr ""
+
+#: ../../include/conversation.php:161 ../../mod/like.php:134
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr ""
+
+#: ../../include/conversation.php:164 ../../mod/like.php:136
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr ""
+
+#: ../../include/conversation.php:201
+#, php-format
+msgid "%1$s is now connected with %2$s"
+msgstr ""
+
+#: ../../include/conversation.php:232
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr ""
+
+#: ../../include/conversation.php:236 ../../include/text.php:776
+msgid "poked"
+msgstr ""
+
+#: ../../include/conversation.php:254 ../../mod/mood.php:63
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr ""
+
+#: ../../include/conversation.php:658
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr ""
+
+#: ../../include/conversation.php:672
+msgid "Categories:"
+msgstr ""
+
+#: ../../include/conversation.php:673
+msgid "Filed under:"
+msgstr ""
+
+#: ../../include/conversation.php:700
+msgid "View in context"
+msgstr ""
+
+#: ../../include/conversation.php:826
+msgid "remove"
+msgstr ""
+
+#: ../../include/conversation.php:830
+msgid "Loading..."
+msgstr ""
+
+#: ../../include/conversation.php:831
+msgid "Delete Selected Items"
+msgstr ""
+
+#: ../../include/conversation.php:922
+msgid "View Source"
+msgstr ""
+
+#: ../../include/conversation.php:923
+msgid "Follow Thread"
+msgstr ""
+
+#: ../../include/conversation.php:924
+msgid "View Status"
+msgstr ""
+
+#: ../../include/conversation.php:926
+msgid "View Photos"
+msgstr ""
+
+#: ../../include/conversation.php:927
+msgid "Matrix Activity"
+msgstr ""
+
+#: ../../include/conversation.php:928
+msgid "Edit Contact"
+msgstr ""
+
+#: ../../include/conversation.php:929
+msgid "Send PM"
+msgstr ""
+
+#: ../../include/conversation.php:930
+msgid "Poke"
+msgstr ""
+
+#: ../../include/conversation.php:992
+#, php-format
+msgid "%s likes this."
+msgstr ""
+
+#: ../../include/conversation.php:992
+#, php-format
+msgid "%s doesn't like this."
+msgstr ""
+
+#: ../../include/conversation.php:996
+#, php-format
+msgid "<span %1$s>%2$d people</span> like this."
+msgid_plural "<span %1$s>%2$d people</span> like this."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/conversation.php:998
+#, php-format
+msgid "<span %1$s>%2$d people</span> don't like this."
+msgid_plural "<span %1$s>%2$d people</span> don't like this."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/conversation.php:1004
+msgid "and"
+msgstr ""
+
+#: ../../include/conversation.php:1007
+#, php-format
+msgid ", and %d other people"
+msgid_plural ", and %d other people"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/conversation.php:1008
+#, php-format
+msgid "%s like this."
+msgstr ""
+
+#: ../../include/conversation.php:1008
+#, php-format
+msgid "%s don't like this."
+msgstr ""
+
+#: ../../include/conversation.php:1058
+msgid "Visible to <strong>everybody</strong>"
+msgstr ""
+
+#: ../../include/conversation.php:1059 ../../mod/message.php:281
+#: ../../mod/message.php:417
+msgid "Please enter a link URL:"
+msgstr ""
+
+#: ../../include/conversation.php:1060
+msgid "Please enter a video link/URL:"
+msgstr ""
+
+#: ../../include/conversation.php:1061
+msgid "Please enter an audio link/URL:"
+msgstr ""
+
+#: ../../include/conversation.php:1062
+msgid "Tag term:"
+msgstr ""
+
+#: ../../include/conversation.php:1063 ../../mod/filer.php:35
+msgid "Save to Folder:"
+msgstr ""
+
+#: ../../include/conversation.php:1064
+msgid "Where are you right now?"
+msgstr ""
+
+#: ../../include/conversation.php:1065 ../../mod/message.php:282
+#: ../../mod/message.php:418 ../../mod/editpost.php:52
+msgid "Expires YYYY-MM-DD HH:MM"
+msgstr ""
+
+#: ../../include/conversation.php:1089 ../../mod/photos.php:1071
+msgid "Share"
+msgstr ""
+
+#: ../../include/conversation.php:1091
+msgid "Page link title"
+msgstr ""
+
+#: ../../include/conversation.php:1093 ../../mod/message.php:329
+#: ../../mod/message.php:512 ../../mod/editlayout.php:101
+#: ../../mod/editwebpage.php:120 ../../mod/editpost.php:98
+#: ../../mod/editblock.php:115
+msgid "Upload photo"
+msgstr ""
+
+#: ../../include/conversation.php:1094
+msgid "upload photo"
+msgstr ""
+
+#: ../../include/conversation.php:1095 ../../mod/message.php:330
+#: ../../mod/message.php:513 ../../mod/editlayout.php:102
+#: ../../mod/editwebpage.php:121 ../../mod/editpost.php:99
+#: ../../mod/editblock.php:116
+msgid "Attach file"
+msgstr ""
+
+#: ../../include/conversation.php:1096
+msgid "attach file"
+msgstr ""
+
+#: ../../include/conversation.php:1097 ../../mod/message.php:331
+#: ../../mod/message.php:514 ../../mod/editlayout.php:103
+#: ../../mod/editwebpage.php:122 ../../mod/editpost.php:100
+#: ../../mod/editblock.php:117
+msgid "Insert web link"
+msgstr ""
+
+#: ../../include/conversation.php:1098
+msgid "web link"
+msgstr ""
+
+#: ../../include/conversation.php:1099
+msgid "Insert video link"
+msgstr ""
+
+#: ../../include/conversation.php:1100
+msgid "video link"
+msgstr ""
+
+#: ../../include/conversation.php:1101
+msgid "Insert audio link"
+msgstr ""
+
+#: ../../include/conversation.php:1102
+msgid "audio link"
+msgstr ""
+
+#: ../../include/conversation.php:1103 ../../mod/editlayout.php:107
+#: ../../mod/editwebpage.php:126 ../../mod/editpost.php:104
+#: ../../mod/editblock.php:121
+msgid "Set your location"
+msgstr ""
+
+#: ../../include/conversation.php:1104
+msgid "set location"
+msgstr ""
+
+#: ../../include/conversation.php:1105 ../../mod/editlayout.php:108
+#: ../../mod/editwebpage.php:127 ../../mod/editpost.php:105
+#: ../../mod/editblock.php:122
+msgid "Clear browser location"
+msgstr ""
+
+#: ../../include/conversation.php:1106
+msgid "clear location"
+msgstr ""
+
+#: ../../include/conversation.php:1108 ../../mod/editlayout.php:121
+#: ../../mod/editwebpage.php:142 ../../mod/editpost.php:118
+#: ../../mod/editblock.php:136
+msgid "Set title"
+msgstr ""
+
+#: ../../include/conversation.php:1111 ../../mod/editlayout.php:123
+#: ../../mod/editwebpage.php:144 ../../mod/editpost.php:120
+#: ../../mod/editblock.php:138
+msgid "Categories (comma-separated list)"
+msgstr ""
+
+#: ../../include/conversation.php:1113 ../../mod/editlayout.php:110
+#: ../../mod/editwebpage.php:129 ../../mod/editpost.php:107
+#: ../../mod/editblock.php:124
+msgid "Permission settings"
+msgstr ""
+
+#: ../../include/conversation.php:1114
+msgid "permissions"
+msgstr ""
+
+#: ../../include/conversation.php:1122 ../../mod/editlayout.php:118
+#: ../../mod/editwebpage.php:137 ../../mod/editpost.php:115
+#: ../../mod/editblock.php:133
+msgid "Public post"
+msgstr ""
+
+#: ../../include/conversation.php:1124 ../../mod/editlayout.php:124
+#: ../../mod/editwebpage.php:145 ../../mod/editpost.php:121
+#: ../../mod/editblock.php:139
+msgid "Example: bob@example.com, mary@example.com"
+msgstr ""
+
+#: ../../include/conversation.php:1137 ../../mod/message.php:336
+#: ../../mod/message.php:519 ../../mod/editlayout.php:134
+#: ../../mod/editwebpage.php:155 ../../mod/editpost.php:132
+#: ../../mod/editblock.php:149
+msgid "Set expiration date"
+msgstr ""
+
+#: ../../include/conversation.php:1364
+msgid "Commented Order"
+msgstr ""
+
+#: ../../include/conversation.php:1367
+msgid "Sort by Comment Date"
+msgstr ""
+
+#: ../../include/conversation.php:1370
+msgid "Posted Order"
+msgstr ""
+
+#: ../../include/conversation.php:1373
+msgid "Sort by Post Date"
+msgstr ""
+
+#: ../../include/conversation.php:1377 ../../mod/notifications.php:86
+msgid "Personal"
+msgstr ""
+
+#: ../../include/conversation.php:1380
+msgid "Posts that mention or involve you"
+msgstr ""
+
+#: ../../include/conversation.php:1383 ../../mod/menu.php:57
+#: ../../mod/connections.php:552
+msgid "New"
+msgstr ""
+
+#: ../../include/conversation.php:1386
+msgid "Activity Stream - by date"
+msgstr ""
+
+#: ../../include/conversation.php:1393
+msgid "Starred"
+msgstr ""
+
+#: ../../include/conversation.php:1396
+msgid "Favourite Posts"
+msgstr ""
+
+#: ../../include/conversation.php:1403
+msgid "Spam"
+msgstr ""
+
+#: ../../include/conversation.php:1406
+msgid "Posts flagged as SPAM"
+msgstr ""
+
+#: ../../include/conversation.php:1436
+msgid "Channel"
+msgstr ""
+
+#: ../../include/conversation.php:1439
+msgid "Status Messages and Posts"
+msgstr ""
+
+#: ../../include/conversation.php:1443
+msgid "About"
+msgstr ""
+
+#: ../../include/conversation.php:1446
+msgid "Profile Details"
+msgstr ""
+
+#: ../../include/conversation.php:1464
+msgid "Events and Calendar"
+msgstr ""
+
+#: ../../include/conversation.php:1469
+msgid "Webpages"
+msgstr ""
+
+#: ../../include/conversation.php:1472
+msgid "Manage Webpages"
+msgstr ""
+
+#: ../../include/auth.php:69
+msgid "Logged out."
+msgstr ""
+
+#: ../../include/auth.php:181
+msgid "Failed authentication"
+msgstr ""
+
+#: ../../include/auth.php:190
+msgid "Login failed."
+msgstr ""
+
+#: ../../include/contact_widgets.php:14
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr ""
+
+#: ../../include/contact_widgets.php:20
+msgid "Add New Connection"
+msgstr ""
+
+#: ../../include/contact_widgets.php:21
+msgid "Enter the channel address"
+msgstr ""
+
+#: ../../include/contact_widgets.php:22
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr ""
+
+#: ../../include/contact_widgets.php:38
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/contact_widgets.php:44
+msgid "Find Channels"
+msgstr ""
+
+#: ../../include/contact_widgets.php:45
+msgid "Enter name or interest"
+msgstr ""
+
+#: ../../include/contact_widgets.php:46
+msgid "Connect/Follow"
+msgstr ""
+
+#: ../../include/contact_widgets.php:47
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr ""
+
+#: ../../include/contact_widgets.php:48 ../../mod/connections.php:696
+#: ../../mod/directory.php:221 ../../mod/directory.php:226
+msgid "Find"
+msgstr ""
+
+#: ../../include/contact_widgets.php:49 ../../mod/suggest.php:64
+msgid "Channel Suggestions"
+msgstr ""
+
+#: ../../include/contact_widgets.php:51
+msgid "Random Profile"
+msgstr ""
+
+#: ../../include/contact_widgets.php:52
+msgid "Invite Friends"
+msgstr ""
+
+#: ../../include/contact_widgets.php:79 ../../include/contact_widgets.php:113
+msgid "Everything"
+msgstr ""
+
+#: ../../include/contact_widgets.php:110 ../../include/widgets.php:26
+msgid "Categories"
+msgstr ""
+
+#: ../../include/contact_widgets.php:143
+#, php-format
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/page_widgets.php:6
+msgid "New Page"
+msgstr ""
+
+#: ../../include/text.php:315
+msgid "prev"
+msgstr ""
+
+#: ../../include/text.php:317
+msgid "first"
+msgstr ""
+
+#: ../../include/text.php:346
+msgid "last"
+msgstr ""
+
+#: ../../include/text.php:349
+msgid "next"
+msgstr ""
+
+#: ../../include/text.php:361
+msgid "older"
+msgstr ""
+
+#: ../../include/text.php:363
+msgid "newer"
+msgstr ""
+
+#: ../../include/text.php:654
+msgid "No connections"
+msgstr ""
+
+#: ../../include/text.php:665
+#, php-format
+msgid "%d Connection"
+msgid_plural "%d Connections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/text.php:677
+msgid "View Connections"
+msgstr ""
+
+#: ../../include/text.php:738 ../../mod/filer.php:36
+msgid "Save"
+msgstr ""
+
+#: ../../include/text.php:776
+msgid "poke"
+msgstr ""
+
+#: ../../include/text.php:777
+msgid "ping"
+msgstr ""
+
+#: ../../include/text.php:777
+msgid "pinged"
+msgstr ""
+
+#: ../../include/text.php:778
+msgid "prod"
+msgstr ""
+
+#: ../../include/text.php:778
+msgid "prodded"
+msgstr ""
+
+#: ../../include/text.php:779
+msgid "slap"
+msgstr ""
+
+#: ../../include/text.php:779
+msgid "slapped"
+msgstr ""
+
+#: ../../include/text.php:780
+msgid "finger"
+msgstr ""
+
+#: ../../include/text.php:780
+msgid "fingered"
+msgstr ""
+
+#: ../../include/text.php:781
+msgid "rebuff"
+msgstr ""
+
+#: ../../include/text.php:781
+msgid "rebuffed"
+msgstr ""
+
+#: ../../include/text.php:793
+msgid "happy"
+msgstr ""
+
+#: ../../include/text.php:794
+msgid "sad"
+msgstr ""
+
+#: ../../include/text.php:795
+msgid "mellow"
+msgstr ""
+
+#: ../../include/text.php:796
+msgid "tired"
+msgstr ""
+
+#: ../../include/text.php:797
+msgid "perky"
+msgstr ""
+
+#: ../../include/text.php:798
+msgid "angry"
+msgstr ""
+
+#: ../../include/text.php:799
+msgid "stupified"
+msgstr ""
+
+#: ../../include/text.php:800
+msgid "puzzled"
+msgstr ""
+
+#: ../../include/text.php:801
+msgid "interested"
+msgstr ""
+
+#: ../../include/text.php:802
+msgid "bitter"
+msgstr ""
+
+#: ../../include/text.php:803
+msgid "cheerful"
+msgstr ""
+
+#: ../../include/text.php:804
+msgid "alive"
+msgstr ""
+
+#: ../../include/text.php:805
+msgid "annoyed"
+msgstr ""
+
+#: ../../include/text.php:806
+msgid "anxious"
+msgstr ""
+
+#: ../../include/text.php:807
+msgid "cranky"
+msgstr ""
+
+#: ../../include/text.php:808
+msgid "disturbed"
+msgstr ""
+
+#: ../../include/text.php:809
+msgid "frustrated"
+msgstr ""
+
+#: ../../include/text.php:810
+msgid "motivated"
+msgstr ""
+
+#: ../../include/text.php:811
+msgid "relaxed"
+msgstr ""
+
+#: ../../include/text.php:812
+msgid "surprised"
+msgstr ""
+
+#: ../../include/text.php:976
+msgid "Monday"
+msgstr ""
+
+#: ../../include/text.php:976
+msgid "Tuesday"
+msgstr ""
+
+#: ../../include/text.php:976
+msgid "Wednesday"
+msgstr ""
+
+#: ../../include/text.php:976
+msgid "Thursday"
+msgstr ""
+
+#: ../../include/text.php:976
+msgid "Friday"
+msgstr ""
+
+#: ../../include/text.php:976
+msgid "Saturday"
+msgstr ""
+
+#: ../../include/text.php:976
+msgid "Sunday"
+msgstr ""
+
+#: ../../include/text.php:980
+msgid "January"
+msgstr ""
+
+#: ../../include/text.php:980
+msgid "February"
+msgstr ""
+
+#: ../../include/text.php:980
+msgid "March"
+msgstr ""
+
+#: ../../include/text.php:980
+msgid "April"
+msgstr ""
+
+#: ../../include/text.php:980
+msgid "May"
+msgstr ""
+
+#: ../../include/text.php:980
+msgid "June"
+msgstr ""
+
+#: ../../include/text.php:980
+msgid "July"
+msgstr ""
+
+#: ../../include/text.php:980
+msgid "August"
+msgstr ""
+
+#: ../../include/text.php:980
+msgid "September"
+msgstr ""
+
+#: ../../include/text.php:980
+msgid "October"
+msgstr ""
+
+#: ../../include/text.php:980
+msgid "November"
+msgstr ""
+
+#: ../../include/text.php:980
+msgid "December"
+msgstr ""
+
+#: ../../include/text.php:1058 ../../mod/message.php:453
+msgid "unknown.???"
+msgstr ""
+
+#: ../../include/text.php:1059 ../../mod/message.php:454
+msgid "bytes"
+msgstr ""
+
+#: ../../include/text.php:1094
+msgid "remove category"
+msgstr ""
+
+#: ../../include/text.php:1116
+msgid "remove from file"
+msgstr ""
+
+#: ../../include/text.php:1170 ../../include/text.php:1182
+msgid "Click to open/close"
+msgstr ""
+
+#: ../../include/text.php:1358 ../../mod/events.php:331
+msgid "link to source"
+msgstr ""
+
+#: ../../include/text.php:1377
+msgid "Select a page layout: "
+msgstr ""
+
+#: ../../include/text.php:1380 ../../include/text.php:1445
+msgid "default"
+msgstr ""
+
+#: ../../include/text.php:1416
+msgid "Page content type: "
+msgstr ""
+
+#: ../../include/text.php:1457
+msgid "Select an alternate language"
+msgstr ""
+
+#: ../../include/text.php:1622
+msgid "activity"
+msgstr ""
+
+#: ../../include/text.php:1884
+msgid "Design"
+msgstr ""
+
+#: ../../include/text.php:1886
+msgid "Blocks"
+msgstr ""
+
+#: ../../include/text.php:1887
+msgid "Menus"
+msgstr ""
+
+#: ../../include/text.php:1888
+msgid "Layouts"
+msgstr ""
+
+#: ../../include/text.php:1889
+msgid "Pages"
+msgstr ""
+
+#: ../../include/follow.php:21
+msgid "Channel is blocked on this site."
+msgstr ""
+
+#: ../../include/follow.php:26
+msgid "Channel location missing."
+msgstr ""
+
+#: ../../include/follow.php:43
+msgid "Channel discovery failed. Website may be down or misconfigured."
+msgstr ""
+
+#: ../../include/follow.php:51
+msgid "Response from remote channel was not understood."
+msgstr ""
+
+#: ../../include/follow.php:58
+msgid "Response from remote channel was incomplete."
+msgstr ""
+
+#: ../../include/follow.php:129
+msgid "local account not found."
+msgstr ""
+
+#: ../../include/follow.php:138
+msgid "Cannot connect to yourself."
+msgstr ""
+
+#: ../../include/permissions.php:13
+msgid "Can view my \"public\" stream and posts"
+msgstr ""
+
+#: ../../include/permissions.php:14
+msgid "Can view my \"public\" channel profile"
+msgstr ""
+
+#: ../../include/permissions.php:15
+msgid "Can view my \"public\" photo albums"
+msgstr ""
+
+#: ../../include/permissions.php:16
+msgid "Can view my \"public\" address book"
+msgstr ""
+
+#: ../../include/permissions.php:17
+msgid "Can view my \"public\" file storage"
+msgstr ""
+
+#: ../../include/permissions.php:18
+msgid "Can view my \"public\" pages"
+msgstr ""
+
+#: ../../include/permissions.php:21
+msgid "Can send me their channel stream and posts"
+msgstr ""
+
+#: ../../include/permissions.php:22
+msgid "Can post on my channel page (\"wall\")"
+msgstr ""
+
+#: ../../include/permissions.php:23
+msgid "Can comment on my posts"
+msgstr ""
+
+#: ../../include/permissions.php:24
+msgid "Can send me private mail messages"
+msgstr ""
+
+#: ../../include/permissions.php:25
+msgid "Can post photos to my photo albums"
+msgstr ""
+
+#: ../../include/permissions.php:26
+msgid "Can forward to all my channel contacts via post @mentions"
+msgstr ""
+
+#: ../../include/permissions.php:26
+msgid "Advanced - useful for creating group forum channels"
+msgstr ""
+
+#: ../../include/permissions.php:27
+msgid "Can chat with me (when available)"
+msgstr ""
+
+#: ../../include/permissions.php:27
+msgid "Requires compatible chat plugin"
+msgstr ""
+
+#: ../../include/permissions.php:28
+msgid "Can write to my \"public\" file storage"
+msgstr ""
+
+#: ../../include/permissions.php:29
+msgid "Can edit my \"public\" pages"
+msgstr ""
+
+#: ../../include/permissions.php:31
+msgid "Can source my \"public\" posts in derived channels"
+msgstr ""
+
+#: ../../include/permissions.php:31
+msgid "Somewhat advanced - very useful in open communities"
+msgstr ""
+
+#: ../../include/permissions.php:32
+msgid "Can administer my channel resources"
+msgstr ""
+
+#: ../../include/permissions.php:32
+msgid "Extremely advanced. Leave this alone unless you know what you are doing"
+msgstr ""
+
+#: ../../include/taxonomy.php:210
+msgid "Tags"
+msgstr ""
+
+#: ../../include/taxonomy.php:224
+msgid "Keywords"
+msgstr ""
+
+#: ../../include/taxonomy.php:249
+msgid "have"
+msgstr ""
+
+#: ../../include/taxonomy.php:249
+msgid "has"
+msgstr ""
+
+#: ../../include/taxonomy.php:250
+msgid "want"
+msgstr ""
+
+#: ../../include/taxonomy.php:250
+msgid "wants"
+msgstr ""
+
+#: ../../include/taxonomy.php:251
+msgid "likes"
+msgstr ""
+
+#: ../../include/taxonomy.php:252
+msgid "dislikes"
+msgstr ""
+
+#: ../../include/plugin.php:475 ../../include/plugin.php:477
+msgid "Click here to upgrade."
+msgstr ""
+
+#: ../../include/plugin.php:483
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr ""
+
+#: ../../include/plugin.php:488
+msgid "This action is not available under your subscription plan."
+msgstr ""
+
+#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:62
+#: ../../view/theme/apw/php/config.php:176
+msgid "Default"
+msgstr ""
+
+#: ../../include/identity.php:29 ../../mod/item.php:1148
+msgid "Unable to obtain identity information from database"
+msgstr ""
+
+#: ../../include/identity.php:62
+msgid "Empty name"
+msgstr ""
+
+#: ../../include/identity.php:64
+msgid "Name too long"
+msgstr ""
+
+#: ../../include/identity.php:132
+msgid "No account identifier"
+msgstr ""
+
+#: ../../include/identity.php:142
+msgid "Nickname is required."
+msgstr ""
+
+#: ../../include/identity.php:156
+msgid ""
+"Nickname has unsupported characters or is already being used on this site."
+msgstr ""
+
+#: ../../include/identity.php:215
+msgid "Unable to retrieve created identity"
+msgstr ""
+
+#: ../../include/identity.php:273
+msgid "Default Profile"
+msgstr ""
+
+#: ../../include/identity.php:465
+msgid "Requested channel is not available."
+msgstr ""
+
+#: ../../include/identity.php:477
+msgid " Sorry, you don't have the permission to view this profile. "
+msgstr ""
+
+#: ../../include/identity.php:512 ../../mod/webpages.php:8
+#: ../../mod/connect.php:13 ../../mod/layouts.php:8
+#: ../../mod/filestorage.php:8 ../../mod/blocks.php:10
+#: ../../mod/profile.php:16
+msgid "Requested profile is not available."
+msgstr ""
+
+#: ../../include/identity.php:627 ../../mod/profiles.php:624
+msgid "Change profile photo"
+msgstr ""
+
+#: ../../include/identity.php:633
+msgid "Profiles"
+msgstr ""
+
+#: ../../include/identity.php:633
+msgid "Manage/edit profiles"
+msgstr ""
+
+#: ../../include/identity.php:634 ../../mod/profiles.php:625
+msgid "Create New Profile"
+msgstr ""
+
+#: ../../include/identity.php:637
+msgid "Edit Profile"
+msgstr ""
+
+#: ../../include/identity.php:648 ../../mod/profiles.php:636
+msgid "Profile Image"
+msgstr ""
+
+#: ../../include/identity.php:651 ../../mod/profiles.php:639
+msgid "visible to everybody"
+msgstr ""
+
+#: ../../include/identity.php:652 ../../mod/profiles.php:640
+msgid "Edit visibility"
+msgstr ""
+
+#: ../../include/identity.php:665 ../../include/identity.php:883
+#: ../../mod/directory.php:175
+msgid "Gender:"
+msgstr ""
+
+#: ../../include/identity.php:666 ../../include/identity.php:903
+#: ../../mod/directory.php:177
+msgid "Status:"
+msgstr ""
+
+#: ../../include/identity.php:667 ../../include/identity.php:914
+#: ../../mod/directory.php:179
+msgid "Homepage:"
+msgstr ""
+
+#: ../../include/identity.php:730 ../../include/identity.php:810
+#: ../../mod/ping.php:230
+msgid "g A l F d"
+msgstr ""
+
+#: ../../include/identity.php:731 ../../include/identity.php:811
+msgid "F d"
+msgstr ""
+
+#: ../../include/identity.php:776 ../../include/identity.php:851
+#: ../../mod/ping.php:252
+msgid "[today]"
+msgstr ""
+
+#: ../../include/identity.php:788
+msgid "Birthday Reminders"
+msgstr ""
+
+#: ../../include/identity.php:789
+msgid "Birthdays this week:"
+msgstr ""
+
+#: ../../include/identity.php:844
+msgid "[No description]"
+msgstr ""
+
+#: ../../include/identity.php:862
+msgid "Event Reminders"
+msgstr ""
+
+#: ../../include/identity.php:863
+msgid "Events this week:"
+msgstr ""
+
+#: ../../include/identity.php:873 ../../include/identity.php:984
+#: ../../mod/profperm.php:112
+msgid "Profile"
+msgstr ""
+
+#: ../../include/identity.php:881 ../../mod/settings.php:1013
+msgid "Full Name:"
+msgstr ""
+
+#: ../../include/identity.php:888
+msgid "j F, Y"
+msgstr ""
+
+#: ../../include/identity.php:889
+msgid "j F"
+msgstr ""
+
+#: ../../include/identity.php:896
+msgid "Birthday:"
+msgstr ""
+
+#: ../../include/identity.php:900
+msgid "Age:"
+msgstr ""
+
+#: ../../include/identity.php:909
+#, php-format
+msgid "for %1$d %2$s"
+msgstr ""
+
+#: ../../include/identity.php:912 ../../mod/profiles.php:549
+msgid "Sexual Preference:"
+msgstr ""
+
+#: ../../include/identity.php:916 ../../mod/profiles.php:551
+msgid "Hometown:"
+msgstr ""
+
+#: ../../include/identity.php:918
+msgid "Tags:"
+msgstr ""
+
+#: ../../include/identity.php:920 ../../mod/profiles.php:552
+msgid "Political Views:"
+msgstr ""
+
+#: ../../include/identity.php:922
+msgid "Religion:"
+msgstr ""
+
+#: ../../include/identity.php:924 ../../mod/directory.php:181
+msgid "About:"
+msgstr ""
+
+#: ../../include/identity.php:926
+msgid "Hobbies/Interests:"
+msgstr ""
+
+#: ../../include/identity.php:928 ../../mod/profiles.php:555
+msgid "Likes:"
+msgstr ""
+
+#: ../../include/identity.php:930 ../../mod/profiles.php:556
+msgid "Dislikes:"
+msgstr ""
+
+#: ../../include/identity.php:933
+msgid "Contact information and Social Networks:"
+msgstr ""
+
+#: ../../include/identity.php:935
+msgid "Musical interests:"
+msgstr ""
+
+#: ../../include/identity.php:937
+msgid "Books, literature:"
+msgstr ""
+
+#: ../../include/identity.php:939
+msgid "Television:"
+msgstr ""
+
+#: ../../include/identity.php:941
+msgid "Film/dance/culture/entertainment:"
+msgstr ""
+
+#: ../../include/identity.php:943
+msgid "Love/Romance:"
+msgstr ""
+
+#: ../../include/identity.php:945
+msgid "Work/employment:"
+msgstr ""
+
+#: ../../include/identity.php:947
+msgid "School/education:"
+msgstr ""
+
+#: ../../include/security.php:49
+msgid "Welcome "
+msgstr ""
+
+#: ../../include/security.php:50
+msgid "Please upload a profile photo."
+msgstr ""
+
+#: ../../include/security.php:53
+msgid "Welcome back "
+msgstr ""
+
+#: ../../include/security.php:360
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr ""
+
+#: ../../include/items.php:201 ../../mod/like.php:55 ../../mod/group.php:74
+#: ../../mod/profperm.php:28 ../../index.php:339
+msgid "Permission denied"
+msgstr ""
+
+#: ../../include/items.php:3350 ../../mod/admin.php:150
+#: ../../mod/admin.php:727 ../../mod/admin.php:930 ../../mod/viewsrc.php:18
+#: ../../mod/home.php:64 ../../mod/display.php:32
+msgid "Item not found."
+msgstr ""
+
+#: ../../include/items.php:3533
+msgid "Archives"
+msgstr ""
+
+#: ../../include/items.php:3699 ../../mod/group.php:44 ../../mod/group.php:146
+msgid "Collection not found."
+msgstr ""
+
+#: ../../include/items.php:3715 ../../mod/network.php:288
+msgid "Group is empty"
+msgstr ""
+
+#: ../../include/items.php:3731
+msgid "Connection not found."
+msgstr ""
+
+#: ../../include/dir_fns.php:15
+msgid "Sort Options"
+msgstr ""
+
+#: ../../include/dir_fns.php:16
+msgid "Alphabetic"
+msgstr ""
+
+#: ../../include/dir_fns.php:17
+msgid "Reverse Alphabetic"
+msgstr ""
+
+#: ../../include/dir_fns.php:18
+msgid "Newest to Oldest"
+msgstr ""
+
+#: ../../include/dir_fns.php:29
+msgid "Enable Safe Search"
+msgstr ""
+
+#: ../../include/dir_fns.php:31
+msgid "Disable Safe Search"
+msgstr ""
+
+#: ../../include/dir_fns.php:33
+msgid "Safe Mode"
+msgstr ""
+
+#: ../../mod/common.php:10
+msgid "No channel."
+msgstr ""
+
+#: ../../mod/common.php:47
+msgid "Common connections"
+msgstr ""
+
+#: ../../mod/common.php:52
+msgid "No connections in common."
+msgstr ""
+
+#: ../../mod/events.php:71
+msgid "Event title and start time are required."
+msgstr ""
+
+#: ../../mod/events.php:286
+msgid "l, F j"
+msgstr ""
+
+#: ../../mod/events.php:308
+msgid "Edit event"
+msgstr ""
+
+#: ../../mod/events.php:354
+msgid "Create New Event"
+msgstr ""
+
+#: ../../mod/events.php:355
+msgid "Previous"
+msgstr ""
+
+#: ../../mod/events.php:356 ../../mod/setup.php:256
+msgid "Next"
+msgstr ""
+
+#: ../../mod/events.php:428
+msgid "hour:minute"
+msgstr ""
+
+#: ../../mod/events.php:447
+msgid "Event details"
+msgstr ""
+
+#: ../../mod/events.php:448
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr ""
+
+#: ../../mod/events.php:450
+msgid "Event Starts:"
+msgstr ""
+
+#: ../../mod/events.php:450 ../../mod/events.php:464
+msgid "Required"
+msgstr ""
+
+#: ../../mod/events.php:453
+msgid "Finish date/time is not known or not relevant"
+msgstr ""
+
+#: ../../mod/events.php:455
+msgid "Event Finishes:"
+msgstr ""
+
+#: ../../mod/events.php:458
+msgid "Adjust for viewer timezone"
+msgstr ""
+
+#: ../../mod/events.php:460
+msgid "Description:"
+msgstr ""
+
+#: ../../mod/events.php:464
+msgid "Title:"
+msgstr ""
+
+#: ../../mod/events.php:466
+msgid "Share this event"
+msgstr ""
+
+#: ../../mod/thing.php:109
+msgid "Object store: failed"
+msgstr ""
+
+#: ../../mod/thing.php:113
+msgid "thing/stuff added"
+msgstr ""
+
+#: ../../mod/thing.php:129
+#, php-format
+msgid "OBJ: %1$s %2$s %3$s"
+msgstr ""
+
+#: ../../mod/thing.php:175
+msgid "not yet implemented."
+msgstr ""
+
+#: ../../mod/thing.php:181
+msgid "Add Stuff to your Profile"
+msgstr ""
+
+#: ../../mod/thing.php:183
+msgid "Select a profile"
+msgstr ""
+
+#: ../../mod/thing.php:185
+msgid "Select a category of stuff. e.g. I ______ something"
+msgstr ""
+
+#: ../../mod/thing.php:187
+msgid "Name of thing or stuff e.g. something"
+msgstr ""
+
+#: ../../mod/thing.php:188
+msgid "URL of thing or stuff (optional)"
+msgstr ""
+
+#: ../../mod/thing.php:189
+msgid "URL for photo of thing or stuff (optional)"
+msgstr ""
+
+#: ../../mod/invite.php:25
+msgid "Total invitation limit exceeded."
+msgstr ""
+
+#: ../../mod/invite.php:47
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr ""
+
+#: ../../mod/invite.php:74
+msgid "Please join us on Red"
+msgstr ""
+
+#: ../../mod/invite.php:85
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr ""
+
+#: ../../mod/invite.php:90
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr ""
+
+#: ../../mod/invite.php:94
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/invite.php:113
+msgid "You have no more invitations available"
+msgstr ""
+
+#: ../../mod/invite.php:139
+msgid "Send invitations"
+msgstr ""
+
+#: ../../mod/invite.php:140
+msgid "Enter email addresses, one per line:"
+msgstr ""
+
+#: ../../mod/invite.php:141 ../../mod/message.php:326
+#: ../../mod/message.php:508
+msgid "Your message:"
+msgstr ""
+
+#: ../../mod/invite.php:142
+msgid ""
+"You are cordially invited to join me and some other close friends on the Red "
+"Matrix - a revolutionary new decentralised communication and information "
+"tool."
+msgstr ""
+
+#: ../../mod/invite.php:144
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr ""
+
+#: ../../mod/invite.php:145
+msgid "Please visit my channel at"
+msgstr ""
+
+#: ../../mod/invite.php:149
+msgid ""
+"Once you have registered (on ANY Red Matrix site - they are all inter-"
+"connected), please connect with my Red Matrix channel address:"
+msgstr ""
+
+#: ../../mod/invite.php:151
+msgid "Click the [Register] link on the following page to join."
+msgstr ""
+
+#: ../../mod/invite.php:153
+msgid ""
+"For more information about the Red Matrix Project and why it has the "
+"potential to change the internet as we know it, please visit http://getzot."
+"com"
+msgstr ""
+
+#: ../../mod/allfriends.php:35
+#, php-format
+msgid "Friends of %s"
+msgstr ""
+
+#: ../../mod/allfriends.php:41
+msgid "No friends to display."
+msgstr ""
+
+#: ../../mod/webpages.php:104 ../../mod/layouts.php:105
+#: ../../mod/blocks.php:96
+msgid "View"
+msgstr ""
+
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr ""
+
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr ""
+
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr ""
+
+#: ../../mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts, "
+"and/or create new posts for you?"
+msgstr ""
+
+#: ../../mod/api.php:105 ../../mod/settings.php:967 ../../mod/settings.php:972
+#: ../../mod/profiles.php:506
+msgid "Yes"
+msgstr ""
+
+#: ../../mod/api.php:106 ../../mod/settings.php:967 ../../mod/settings.php:972
+#: ../../mod/profiles.php:507
+msgid "No"
+msgstr ""
+
+#: ../../mod/lastpost.php:16 ../../mod/channel.php:25
+msgid "You must be logged in to see this page."
+msgstr ""
+
+#: ../../mod/apps.php:8
+msgid "No installed applications."
+msgstr ""
+
+#: ../../mod/apps.php:13
+msgid "Applications"
+msgstr ""
+
+#: ../../mod/page.php:35
+msgid "Invalid item."
+msgstr ""
+
+#: ../../mod/page.php:47 ../../mod/chanview.php:78 ../../mod/home.php:51
+#: ../../mod/wall_upload.php:35
+msgid "Channel not found."
+msgstr ""
+
+#: ../../mod/page.php:83 ../../mod/help.php:56 ../../mod/display.php:100
+#: ../../index.php:229
+msgid "Page not found."
+msgstr ""
+
+#: ../../mod/attach.php:9
+msgid "Item not available."
+msgstr ""
+
+#: ../../mod/setup.php:161
+msgid "Red Matrix Server - Setup"
+msgstr ""
+
+#: ../../mod/setup.php:167
+msgid "Could not connect to database."
+msgstr ""
+
+#: ../../mod/setup.php:171
+msgid ""
+"Could not connect to specified site URL. Possible SSL certificate or DNS "
+"issue."
+msgstr ""
+
+#: ../../mod/setup.php:176
+msgid "Could not create table."
+msgstr ""
+
+#: ../../mod/setup.php:182
+msgid "Your site database has been installed."
+msgstr ""
+
+#: ../../mod/setup.php:187
+msgid ""
+"You may need to import the file \"install/database.sql\" manually using "
+"phpmyadmin or mysql."
+msgstr ""
+
+#: ../../mod/setup.php:188 ../../mod/setup.php:255 ../../mod/setup.php:584
+msgid "Please see the file \"install/INSTALL.txt\"."
+msgstr ""
+
+#: ../../mod/setup.php:252
+msgid "System check"
+msgstr ""
+
+#: ../../mod/setup.php:257
+msgid "Check again"
+msgstr ""
+
+#: ../../mod/setup.php:279
+msgid "Database connection"
+msgstr ""
+
+#: ../../mod/setup.php:280
+msgid ""
+"In order to install Red Matrix we need to know how to connect to your "
+"database."
+msgstr ""
+
+#: ../../mod/setup.php:281
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr ""
+
+#: ../../mod/setup.php:282
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr ""
+
+#: ../../mod/setup.php:286
+msgid "Database Server Name"
+msgstr ""
+
+#: ../../mod/setup.php:286
+msgid "Default is localhost"
+msgstr ""
+
+#: ../../mod/setup.php:287
+msgid "Database Port"
+msgstr ""
+
+#: ../../mod/setup.php:287
+msgid "Communication port number - use 0 for default"
+msgstr ""
+
+#: ../../mod/setup.php:288
+msgid "Database Login Name"
+msgstr ""
+
+#: ../../mod/setup.php:289
+msgid "Database Login Password"
+msgstr ""
+
+#: ../../mod/setup.php:290
+msgid "Database Name"
+msgstr ""
+
+#: ../../mod/setup.php:292 ../../mod/setup.php:334
+msgid "Site administrator email address"
+msgstr ""
+
+#: ../../mod/setup.php:292 ../../mod/setup.php:334
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr ""
+
+#: ../../mod/setup.php:293 ../../mod/setup.php:336
+msgid "Website URL"
+msgstr ""
+
+#: ../../mod/setup.php:293 ../../mod/setup.php:336
+msgid "Please use SSL (https) URL if available."
+msgstr ""
+
+#: ../../mod/setup.php:296 ../../mod/setup.php:339
+msgid "Please select a default timezone for your website"
+msgstr ""
+
+#: ../../mod/setup.php:323
+msgid "Site settings"
+msgstr ""
+
+#: ../../mod/setup.php:379
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr ""
+
+#: ../../mod/setup.php:380
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron."
+msgstr ""
+
+#: ../../mod/setup.php:384
+msgid "PHP executable path"
+msgstr ""
+
+#: ../../mod/setup.php:384
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr ""
+
+#: ../../mod/setup.php:389
+msgid "Command line PHP"
+msgstr ""
+
+#: ../../mod/setup.php:398
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr ""
+
+#: ../../mod/setup.php:399
+msgid "This is required for message delivery to work."
+msgstr ""
+
+#: ../../mod/setup.php:401
+msgid "PHP register_argc_argv"
+msgstr ""
+
+#: ../../mod/setup.php:422
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr ""
+
+#: ../../mod/setup.php:423
+msgid ""
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
+msgstr ""
+
+#: ../../mod/setup.php:425
+msgid "Generate encryption keys"
+msgstr ""
+
+#: ../../mod/setup.php:432
+msgid "libCurl PHP module"
+msgstr ""
+
+#: ../../mod/setup.php:433
+msgid "GD graphics PHP module"
+msgstr ""
+
+#: ../../mod/setup.php:434
+msgid "OpenSSL PHP module"
+msgstr ""
+
+#: ../../mod/setup.php:435
+msgid "mysqli PHP module"
+msgstr ""
+
+#: ../../mod/setup.php:436
+msgid "mb_string PHP module"
+msgstr ""
+
+#: ../../mod/setup.php:437
+msgid "mcrypt PHP module"
+msgstr ""
+
+#: ../../mod/setup.php:442 ../../mod/setup.php:444
+msgid "Apache mod_rewrite module"
+msgstr ""
+
+#: ../../mod/setup.php:442
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr ""
+
+#: ../../mod/setup.php:448 ../../mod/setup.php:451
+msgid "proc_open"
+msgstr ""
+
+#: ../../mod/setup.php:448
+msgid ""
+"Error: proc_open is required but is either not installed or has been "
+"disabled in php.ini"
+msgstr ""
+
+#: ../../mod/setup.php:456
+msgid "Error: libCURL PHP module required but not installed."
+msgstr ""
+
+#: ../../mod/setup.php:460
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr ""
+
+#: ../../mod/setup.php:464
+msgid "Error: openssl PHP module required but not installed."
+msgstr ""
+
+#: ../../mod/setup.php:468
+msgid "Error: mysqli PHP module required but not installed."
+msgstr ""
+
+#: ../../mod/setup.php:472
+msgid "Error: mb_string PHP module required but not installed."
+msgstr ""
+
+#: ../../mod/setup.php:476
+msgid "Error: mcrypt PHP module required but not installed."
+msgstr ""
+
+#: ../../mod/setup.php:492
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\" "
+"in the top folder of your web server and it is unable to do so."
+msgstr ""
+
+#: ../../mod/setup.php:493
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr ""
+
+#: ../../mod/setup.php:494
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Red top folder."
+msgstr ""
+
+#: ../../mod/setup.php:495
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation. "
+"Please see the file \"install/INSTALL.txt\" for instructions."
+msgstr ""
+
+#: ../../mod/setup.php:498
+msgid ".htconfig.php is writable"
+msgstr ""
+
+#: ../../mod/setup.php:508
+msgid ""
+"Red uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr ""
+
+#: ../../mod/setup.php:509
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/tpl/smarty3/ under the Red top level "
+"folder."
+msgstr ""
+
+#: ../../mod/setup.php:510
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has "
+"write access to this folder."
+msgstr ""
+
+#: ../../mod/setup.php:511
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/tpl/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr ""
+
+#: ../../mod/setup.php:514
+msgid "view/tpl/smarty3 is writable"
+msgstr ""
+
+#: ../../mod/setup.php:528
+msgid "SSL certificate validation"
+msgstr ""
+
+#: ../../mod/setup.php:528
+msgid ""
+"SSL certificate cannot be validated. Fix certificate or disable https access "
+"to this site."
+msgstr ""
+
+#: ../../mod/setup.php:535
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr ""
+
+#: ../../mod/setup.php:537
+msgid "Url rewrite is working"
+msgstr ""
+
+#: ../../mod/setup.php:547
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr ""
+
+#: ../../mod/setup.php:571
+msgid "Errors encountered creating database tables."
+msgstr ""
+
+#: ../../mod/setup.php:582
+msgid "<h1>What next</h1>"
+msgstr ""
+
+#: ../../mod/setup.php:583
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
+msgstr ""
+
+#: ../../mod/rpost.php:84 ../../mod/editpost.php:42
+msgid "Edit post"
+msgstr ""
+
+#: ../../mod/subthread.php:105
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr ""
+
+#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43
+#: ../../mod/update_search.php:46 ../../mod/update_display.php:25
+#: ../../mod/update_community.php:18
+msgid "[Embedded content - reload page to view]"
+msgstr ""
+
+#: ../../mod/chanview.php:98
+msgid "toggle full screen mode"
+msgstr ""
+
+#: ../../mod/tagger.php:98
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr ""
+
+#: ../../mod/settings.php:53
+msgid "Account settings"
+msgstr ""
+
+#: ../../mod/settings.php:59
+msgid "Channel settings"
+msgstr ""
+
+#: ../../mod/settings.php:65
+msgid "Additional features"
+msgstr ""
+
+#: ../../mod/settings.php:71
+msgid "Feature settings"
+msgstr ""
+
+#: ../../mod/settings.php:77
+msgid "Display settings"
+msgstr ""
+
+#: ../../mod/settings.php:83
+msgid "Connected apps"
+msgstr ""
+
+#: ../../mod/settings.php:89
+msgid "Export channel"
+msgstr ""
+
+#: ../../mod/settings.php:101
+msgid "Automatic Permissions (Advanced)"
+msgstr ""
+
+#: ../../mod/settings.php:111
+msgid "Premium Channel Settings"
+msgstr ""
+
+#: ../../mod/settings.php:173
+msgid "Name is required"
+msgstr ""
+
+#: ../../mod/settings.php:177
+msgid "Key and Secret are required"
+msgstr ""
+
+#: ../../mod/settings.php:181 ../../mod/settings.php:635
+msgid "Update"
+msgstr ""
+
+#: ../../mod/settings.php:294
+msgid "Passwords do not match. Password unchanged."
+msgstr ""
+
+#: ../../mod/settings.php:298
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr ""
+
+#: ../../mod/settings.php:311
+msgid "Password changed."
+msgstr ""
+
+#: ../../mod/settings.php:313
+msgid "Password update failed. Please try again."
+msgstr ""
+
+#: ../../mod/settings.php:327
+msgid "Not valid email."
+msgstr ""
+
+#: ../../mod/settings.php:330
+msgid "Protected email address. Cannot change to that email."
+msgstr ""
+
+#: ../../mod/settings.php:339
+msgid "System failure storing new email. Please try again."
+msgstr ""
+
+#: ../../mod/settings.php:537
+msgid "Settings updated."
+msgstr ""
+
+#: ../../mod/settings.php:608 ../../mod/settings.php:634
+#: ../../mod/settings.php:670
+msgid "Add application"
+msgstr ""
+
+#: ../../mod/settings.php:610 ../../mod/settings.php:636
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:82
+#: ../../mod/fbrowser.php:117
+msgid "Cancel"
+msgstr ""
+
+#: ../../mod/settings.php:611 ../../mod/settings.php:637
+#: ../../mod/admin.php:686 ../../mod/crepair.php:148
+msgid "Name"
+msgstr ""
+
+#: ../../mod/settings.php:611
+msgid "Name of application"
+msgstr ""
+
+#: ../../mod/settings.php:612 ../../mod/settings.php:638
+msgid "Consumer Key"
+msgstr ""
+
+#: ../../mod/settings.php:612 ../../mod/settings.php:613
+msgid "Automatically generated - change if desired. Max length 20"
+msgstr ""
+
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
+msgid "Consumer Secret"
+msgstr ""
+
+#: ../../mod/settings.php:614 ../../mod/settings.php:640
+msgid "Redirect"
+msgstr ""
+
+#: ../../mod/settings.php:614
+msgid ""
+"Redirect URI - leave blank unless your application specifically requires this"
+msgstr ""
+
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
+msgid "Icon url"
+msgstr ""
+
+#: ../../mod/settings.php:615
+msgid "Optional"
+msgstr ""
+
+#: ../../mod/settings.php:626
+msgid "You can't edit this application."
+msgstr ""
+
+#: ../../mod/settings.php:669
+msgid "Connected Apps"
+msgstr ""
+
+#: ../../mod/settings.php:673
+msgid "Client key starts with"
+msgstr ""
+
+#: ../../mod/settings.php:674
+msgid "No name"
+msgstr ""
+
+#: ../../mod/settings.php:675
+msgid "Remove authorization"
+msgstr ""
+
+#: ../../mod/settings.php:686
+msgid "No feature settings configured"
+msgstr ""
+
+#: ../../mod/settings.php:694
+msgid "Feature Settings"
+msgstr ""
+
+#: ../../mod/settings.php:717
+msgid "Account Settings"
+msgstr ""
+
+#: ../../mod/settings.php:718
+msgid "Password Settings"
+msgstr ""
+
+#: ../../mod/settings.php:719
+msgid "New Password:"
+msgstr ""
+
+#: ../../mod/settings.php:720
+msgid "Confirm:"
+msgstr ""
+
+#: ../../mod/settings.php:720
+msgid "Leave password fields blank unless changing"
+msgstr ""
+
+#: ../../mod/settings.php:722 ../../mod/settings.php:1014
+msgid "Email Address:"
+msgstr ""
+
+#: ../../mod/settings.php:723
+msgid "Remove Account"
+msgstr ""
+
+#: ../../mod/settings.php:724
+msgid "Warning: This action is permanent and cannot be reversed."
+msgstr ""
+
+#: ../../mod/settings.php:740
+msgid "Off"
+msgstr ""
+
+#: ../../mod/settings.php:740
+msgid "On"
+msgstr ""
+
+#: ../../mod/settings.php:747
+msgid "Additional Features"
+msgstr ""
+
+#: ../../mod/settings.php:772
+msgid "Connector Settings"
+msgstr ""
+
+#: ../../mod/settings.php:802 ../../mod/admin.php:369
+msgid "No special theme for mobile devices"
+msgstr ""
+
+#: ../../mod/settings.php:842
+msgid "Display Settings"
+msgstr ""
+
+#: ../../mod/settings.php:848
+msgid "Display Theme:"
+msgstr ""
+
+#: ../../mod/settings.php:849
+msgid "Mobile Theme:"
+msgstr ""
+
+#: ../../mod/settings.php:850
+msgid "Update browser every xx seconds"
+msgstr ""
+
+#: ../../mod/settings.php:850
+msgid "Minimum of 10 seconds, no maximum"
+msgstr ""
+
+#: ../../mod/settings.php:851
+msgid "Maximum number of conversations to load at any time:"
+msgstr ""
+
+#: ../../mod/settings.php:851
+msgid "Maximum of 100 items"
+msgstr ""
+
+#: ../../mod/settings.php:852
+msgid "Don't show emoticons"
+msgstr ""
+
+#: ../../mod/settings.php:888
+msgid "Nobody except yourself"
+msgstr ""
+
+#: ../../mod/settings.php:889
+msgid "Only those you specifically allow"
+msgstr ""
+
+#: ../../mod/settings.php:890
+msgid "Anybody in your address book"
+msgstr ""
+
+#: ../../mod/settings.php:891
+msgid "Anybody on this website"
+msgstr ""
+
+#: ../../mod/settings.php:892
+msgid "Anybody in this network"
+msgstr ""
+
+#: ../../mod/settings.php:893
+msgid "Anybody on the internet"
+msgstr ""
+
+#: ../../mod/settings.php:967
+msgid "Publish your default profile in the network directory"
+msgstr ""
+
+#: ../../mod/settings.php:972
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr ""
+
+#: ../../mod/settings.php:976 ../../mod/profile_photo.php:298
+msgid "or"
+msgstr ""
+
+#: ../../mod/settings.php:981
+msgid "Your channel address is"
+msgstr ""
+
+#: ../../mod/settings.php:1003
+msgid "Channel Settings"
+msgstr ""
+
+#: ../../mod/settings.php:1012
+msgid "Basic Settings"
+msgstr ""
+
+#: ../../mod/settings.php:1015
+msgid "Your Timezone:"
+msgstr ""
+
+#: ../../mod/settings.php:1016
+msgid "Default Post Location:"
+msgstr ""
+
+#: ../../mod/settings.php:1017
+msgid "Use Browser Location:"
+msgstr ""
+
+#: ../../mod/settings.php:1019
+msgid "Adult Content"
+msgstr ""
+
+#: ../../mod/settings.php:1019
+msgid "This channel publishes adult content."
+msgstr ""
+
+#: ../../mod/settings.php:1021
+msgid "Security and Privacy Settings"
+msgstr ""
+
+#: ../../mod/settings.php:1023
+msgid "Quick Privacy Settings:"
+msgstr ""
+
+#: ../../mod/settings.php:1024
+msgid "Very Public - extremely permissive"
+msgstr ""
+
+#: ../../mod/settings.php:1025
+msgid "Typical - default public, privacy when desired"
+msgstr ""
+
+#: ../../mod/settings.php:1026
+msgid "Private - default private, rarely open or public"
+msgstr ""
+
+#: ../../mod/settings.php:1027
+msgid "Blocked - default blocked to/from everybody"
+msgstr ""
+
+#: ../../mod/settings.php:1030
+msgid "Maximum Friend Requests/Day:"
+msgstr ""
+
+#: ../../mod/settings.php:1030
+msgid "May reduce spam activity"
+msgstr ""
+
+#: ../../mod/settings.php:1031
+msgid "Default Post Permissions"
+msgstr ""
+
+#: ../../mod/settings.php:1032
+msgid "(click to open/close)"
+msgstr ""
+
+#: ../../mod/settings.php:1043
+msgid "Maximum private messages per day from unknown people:"
+msgstr ""
+
+#: ../../mod/settings.php:1043
+msgid "Useful to reduce spamming"
+msgstr ""
+
+#: ../../mod/settings.php:1046
+msgid "Notification Settings"
+msgstr ""
+
+#: ../../mod/settings.php:1047
+msgid "By default post a status message when:"
+msgstr ""
+
+#: ../../mod/settings.php:1048
+msgid "accepting a friend request"
+msgstr ""
+
+#: ../../mod/settings.php:1049
+msgid "joining a forum/community"
+msgstr ""
+
+#: ../../mod/settings.php:1050
+msgid "making an <em>interesting</em> profile change"
+msgstr ""
+
+#: ../../mod/settings.php:1051
+msgid "Send a notification email when:"
+msgstr ""
+
+#: ../../mod/settings.php:1052
+msgid "You receive an introduction"
+msgstr ""
+
+#: ../../mod/settings.php:1053
+msgid "Your introductions are confirmed"
+msgstr ""
+
+#: ../../mod/settings.php:1054
+msgid "Someone writes on your profile wall"
+msgstr ""
+
+#: ../../mod/settings.php:1055
+msgid "Someone writes a followup comment"
+msgstr ""
+
+#: ../../mod/settings.php:1056
+msgid "You receive a private message"
+msgstr ""
+
+#: ../../mod/settings.php:1057
+msgid "You receive a friend suggestion"
+msgstr ""
+
+#: ../../mod/settings.php:1058
+msgid "You are tagged in a post"
+msgstr ""
+
+#: ../../mod/settings.php:1059
+msgid "You are poked/prodded/etc. in a post"
+msgstr ""
+
+#: ../../mod/settings.php:1062
+msgid "Advanced Account/Page Type Settings"
+msgstr ""
+
+#: ../../mod/settings.php:1063
+msgid "Change the behaviour of this account for special situations"
+msgstr ""
+
+#: ../../mod/viewconnections.php:28 ../../mod/search.php:80
+#: ../../mod/photos.php:576 ../../mod/display.php:9 ../../mod/community.php:18
+#: ../../mod/directory.php:32
+msgid "Public access denied."
+msgstr ""
+
+#: ../../mod/viewconnections.php:57
+msgid "No connections."
+msgstr ""
+
+#: ../../mod/viewconnections.php:69
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr ""
+
+#: ../../mod/viewconnections.php:84
+msgid "View Connnections"
+msgstr ""
+
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr ""
+
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr ""
+
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr ""
+
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
+msgid "Remove"
+msgstr ""
+
+#: ../../mod/connect.php:59 ../../mod/connect.php:107
+msgid "Continue"
+msgstr ""
+
+#: ../../mod/connect.php:88
+msgid "Premium Channel Setup"
+msgstr ""
+
+#: ../../mod/connect.php:90
+msgid "Enable premium channel connection restrictions"
+msgstr ""
+
+#: ../../mod/connect.php:91
+msgid ""
+"Please enter your restrictions or conditions, such as paypal receipt, usage "
+"guidelines, etc."
+msgstr ""
+
+#: ../../mod/connect.php:93 ../../mod/connect.php:113
+msgid ""
+"This channel may require additional steps or acknowledgement of the "
+"following conditions prior to connecting:"
+msgstr ""
+
+#: ../../mod/connect.php:94
+msgid ""
+"Potential connections will then see the following text before proceeding:"
+msgstr ""
+
+#: ../../mod/connect.php:95 ../../mod/connect.php:116
+msgid ""
+"By continuing, I certify that I have complied with any instructions provided "
+"on this page."
+msgstr ""
+
+#: ../../mod/connect.php:104
+msgid "(No specific instructions have been provided by the channel owner.)"
+msgstr ""
+
+#: ../../mod/connect.php:112
+msgid "Restricted or Premium Channel"
+msgstr ""
+
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr ""
+
+#: ../../mod/delegate.php:121
+msgid "Delegate Page Management"
+msgstr ""
+
+#: ../../mod/delegate.php:123
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr ""
+
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr ""
+
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr ""
+
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr ""
+
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr ""
+
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr ""
+
+#: ../../mod/sources.php:27
+msgid "Source created."
+msgstr ""
+
+#: ../../mod/sources.php:39
+msgid "Source updated."
+msgstr ""
+
+#: ../../mod/sources.php:68
+msgid "Manage remote sources of content for your channel."
+msgstr ""
+
+#: ../../mod/sources.php:69 ../../mod/sources.php:79
+msgid "New Source"
+msgstr ""
+
+#: ../../mod/sources.php:80 ../../mod/sources.php:106
+msgid ""
+"Import all or selected content from the following channel into this channel "
+"and distribute it according to your channel settings."
+msgstr ""
+
+#: ../../mod/sources.php:81 ../../mod/sources.php:107
+msgid "Only import content with these words (one per line)"
+msgstr ""
+
+#: ../../mod/sources.php:81 ../../mod/sources.php:107
+msgid "Leave blank to import all public content"
+msgstr ""
+
+#: ../../mod/sources.php:82 ../../mod/sources.php:109
+#: ../../mod/new_channel.php:110
+msgid "Channel Name"
+msgstr ""
+
+#: ../../mod/sources.php:96 ../../mod/sources.php:122
+msgid "Source not found."
+msgstr ""
+
+#: ../../mod/sources.php:103
+msgid "Edit Source"
+msgstr ""
+
+#: ../../mod/sources.php:104
+msgid "Delete Source"
+msgstr ""
+
+#: ../../mod/sources.php:130
+msgid "Source removed"
+msgstr ""
+
+#: ../../mod/sources.php:132
+msgid "Unable to remove source."
+msgstr ""
+
+#: ../../mod/admin.php:48
+msgid "Theme settings updated."
+msgstr ""
+
+#: ../../mod/admin.php:87 ../../mod/admin.php:417
+msgid "Site"
+msgstr ""
+
+#: ../../mod/admin.php:88 ../../mod/admin.php:682 ../../mod/admin.php:694
+msgid "Users"
+msgstr ""
+
+#: ../../mod/admin.php:89 ../../mod/admin.php:780 ../../mod/admin.php:822
+msgid "Plugins"
+msgstr ""
+
+#: ../../mod/admin.php:90 ../../mod/admin.php:985 ../../mod/admin.php:1021
+msgid "Themes"
+msgstr ""
+
+#: ../../mod/admin.php:91 ../../mod/admin.php:475
+msgid "Server"
+msgstr ""
+
+#: ../../mod/admin.php:92
+msgid "DB updates"
+msgstr ""
+
+#: ../../mod/admin.php:106 ../../mod/admin.php:113 ../../mod/admin.php:1108
+msgid "Logs"
+msgstr ""
+
+#: ../../mod/admin.php:112
+msgid "Plugin Features"
+msgstr ""
+
+#: ../../mod/admin.php:114
+msgid "User registrations waiting for confirmation"
+msgstr ""
+
+#: ../../mod/admin.php:188
+msgid "Message queues"
+msgstr ""
+
+#: ../../mod/admin.php:193 ../../mod/admin.php:416 ../../mod/admin.php:474
+#: ../../mod/admin.php:681 ../../mod/admin.php:779 ../../mod/admin.php:821
+#: ../../mod/admin.php:984 ../../mod/admin.php:1020 ../../mod/admin.php:1107
+msgid "Administration"
+msgstr ""
+
+#: ../../mod/admin.php:194
+msgid "Summary"
+msgstr ""
+
+#: ../../mod/admin.php:196
+msgid "Registered users"
+msgstr ""
+
+#: ../../mod/admin.php:198 ../../mod/admin.php:478
+msgid "Pending registrations"
+msgstr ""
+
+#: ../../mod/admin.php:199
+msgid "Version"
+msgstr ""
+
+#: ../../mod/admin.php:201 ../../mod/admin.php:479
+msgid "Active plugins"
+msgstr ""
+
+#: ../../mod/admin.php:340
+msgid "Site settings updated."
+msgstr ""
+
+#: ../../mod/admin.php:371
+msgid "No special theme for accessibility"
+msgstr ""
+
+#: ../../mod/admin.php:396
+msgid "Closed"
+msgstr ""
+
+#: ../../mod/admin.php:397
+msgid "Requires approval"
+msgstr ""
+
+#: ../../mod/admin.php:398
+msgid "Open"
+msgstr ""
+
+#: ../../mod/admin.php:403
+msgid "Private"
+msgstr ""
+
+#: ../../mod/admin.php:404
+msgid "Paid Access"
+msgstr ""
+
+#: ../../mod/admin.php:405
+msgid "Free Access"
+msgstr ""
+
+#: ../../mod/admin.php:406
+msgid "Tiered Access"
+msgstr ""
+
+#: ../../mod/admin.php:419 ../../mod/register.php:180
+msgid "Registration"
+msgstr ""
+
+#: ../../mod/admin.php:420
+msgid "File upload"
+msgstr ""
+
+#: ../../mod/admin.php:421
+msgid "Policies"
+msgstr ""
+
+#: ../../mod/admin.php:422
+msgid "Advanced"
+msgstr ""
+
+#: ../../mod/admin.php:426
+msgid "Site name"
+msgstr ""
+
+#: ../../mod/admin.php:427
+msgid "Banner/Logo"
+msgstr ""
+
+#: ../../mod/admin.php:428
+msgid "System language"
+msgstr ""
+
+#: ../../mod/admin.php:429
+msgid "System theme"
+msgstr ""
+
+#: ../../mod/admin.php:429
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr ""
+
+#: ../../mod/admin.php:430
+msgid "Mobile system theme"
+msgstr ""
+
+#: ../../mod/admin.php:430
+msgid "Theme for mobile devices"
+msgstr ""
+
+#: ../../mod/admin.php:431
+msgid "Accessibility system theme"
+msgstr ""
+
+#: ../../mod/admin.php:431
+msgid "Accessibility theme"
+msgstr ""
+
+#: ../../mod/admin.php:432
+msgid "Channel to use for this website's static pages"
+msgstr ""
+
+#: ../../mod/admin.php:432
+msgid "Site Channel"
+msgstr ""
+
+#: ../../mod/admin.php:434
+msgid "Maximum image size"
+msgstr ""
+
+#: ../../mod/admin.php:434
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr ""
+
+#: ../../mod/admin.php:435
+msgid "Register policy"
+msgstr ""
+
+#: ../../mod/admin.php:436
+msgid "Access policy"
+msgstr ""
+
+#: ../../mod/admin.php:437
+msgid "Register text"
+msgstr ""
+
+#: ../../mod/admin.php:437
+msgid "Will be displayed prominently on the registration page."
+msgstr ""
+
+#: ../../mod/admin.php:438
+msgid "Accounts abandoned after x days"
+msgstr ""
+
+#: ../../mod/admin.php:438
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr ""
+
+#: ../../mod/admin.php:439
+msgid "Allowed friend domains"
+msgstr ""
+
+#: ../../mod/admin.php:439
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr ""
+
+#: ../../mod/admin.php:440
+msgid "Allowed email domains"
+msgstr ""
+
+#: ../../mod/admin.php:440
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr ""
+
+#: ../../mod/admin.php:441
+msgid "Block public"
+msgstr ""
+
+#: ../../mod/admin.php:441
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr ""
+
+#: ../../mod/admin.php:442
+msgid "Force publish"
+msgstr ""
+
+#: ../../mod/admin.php:442
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr ""
+
+#: ../../mod/admin.php:444
+msgid "Proxy user"
+msgstr ""
+
+#: ../../mod/admin.php:445
+msgid "Proxy URL"
+msgstr ""
+
+#: ../../mod/admin.php:446
+msgid "Network timeout"
+msgstr ""
+
+#: ../../mod/admin.php:446
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr ""
+
+#: ../../mod/admin.php:447
+msgid "Delivery interval"
+msgstr ""
+
+#: ../../mod/admin.php:447
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr ""
+
+#: ../../mod/admin.php:448
+msgid "Poll interval"
+msgstr ""
+
+#: ../../mod/admin.php:448
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr ""
+
+#: ../../mod/admin.php:449
+msgid "Maximum Load Average"
+msgstr ""
+
+#: ../../mod/admin.php:449
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr ""
+
+#: ../../mod/admin.php:466
+msgid "No server found"
+msgstr ""
+
+#: ../../mod/admin.php:473 ../../mod/admin.php:695
+msgid "ID"
+msgstr ""
+
+#: ../../mod/admin.php:473
+msgid "for channel"
+msgstr ""
+
+#: ../../mod/admin.php:473
+msgid "on server"
+msgstr ""
+
+#: ../../mod/admin.php:473
+msgid "Status"
+msgstr ""
+
+#: ../../mod/admin.php:493
+msgid "Update has been marked successful"
+msgstr ""
+
+#: ../../mod/admin.php:503
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr ""
+
+#: ../../mod/admin.php:506
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr ""
+
+#: ../../mod/admin.php:510
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr ""
+
+#: ../../mod/admin.php:513
+#, php-format
+msgid "Update function %s could not be found."
+msgstr ""
+
+#: ../../mod/admin.php:528
+msgid "No failed updates."
+msgstr ""
+
+#: ../../mod/admin.php:532
+msgid "Failed Updates"
+msgstr ""
+
+#: ../../mod/admin.php:534
+msgid "Mark success (if update was manually applied)"
+msgstr ""
+
+#: ../../mod/admin.php:535
+msgid "Attempt to execute this update step automatically"
+msgstr ""
+
+#: ../../mod/admin.php:561
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/admin.php:568
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/admin.php:599
+msgid "Account not found"
+msgstr ""
+
+#: ../../mod/admin.php:610
+#, php-format
+msgid "User '%s' deleted"
+msgstr ""
+
+#: ../../mod/admin.php:619
+#, php-format
+msgid "User '%s' unblocked"
+msgstr ""
+
+#: ../../mod/admin.php:619
+#, php-format
+msgid "User '%s' blocked"
+msgstr ""
+
+#: ../../mod/admin.php:684
+msgid "select all"
+msgstr ""
+
+#: ../../mod/admin.php:685
+msgid "User registrations waiting for confirm"
+msgstr ""
+
+#: ../../mod/admin.php:686
+msgid "Request date"
+msgstr ""
+
+#: ../../mod/admin.php:687
+msgid "No registrations."
+msgstr ""
+
+#: ../../mod/admin.php:688 ../../mod/intro.php:11 ../../mod/intro.php:98
+#: ../../mod/notifications.php:159 ../../mod/notifications.php:206
+msgid "Approve"
+msgstr ""
+
+#: ../../mod/admin.php:689
+msgid "Deny"
+msgstr ""
+
+#: ../../mod/admin.php:691 ../../mod/intro.php:14 ../../mod/intro.php:99
+#: ../../mod/connections.php:348 ../../mod/connections.php:490
+msgid "Block"
+msgstr ""
+
+#: ../../mod/admin.php:692 ../../mod/connections.php:348
+#: ../../mod/connections.php:490
+msgid "Unblock"
+msgstr ""
+
+#: ../../mod/admin.php:695
+msgid "Register date"
+msgstr ""
+
+#: ../../mod/admin.php:695
+msgid "Last login"
+msgstr ""
+
+#: ../../mod/admin.php:695
+msgid "Expires"
+msgstr ""
+
+#: ../../mod/admin.php:695
+msgid "Service Class"
+msgstr ""
+
+#: ../../mod/admin.php:697
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr ""
+
+#: ../../mod/admin.php:698
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr ""
+
+#: ../../mod/admin.php:739
+#, php-format
+msgid "Plugin %s disabled."
+msgstr ""
+
+#: ../../mod/admin.php:743
+#, php-format
+msgid "Plugin %s enabled."
+msgstr ""
+
+#: ../../mod/admin.php:753 ../../mod/admin.php:955
+msgid "Disable"
+msgstr ""
+
+#: ../../mod/admin.php:755 ../../mod/admin.php:957
+msgid "Enable"
+msgstr ""
+
+#: ../../mod/admin.php:781 ../../mod/admin.php:986
+msgid "Toggle"
+msgstr ""
+
+#: ../../mod/admin.php:789 ../../mod/admin.php:996
+msgid "Author: "
+msgstr ""
+
+#: ../../mod/admin.php:790 ../../mod/admin.php:997
+msgid "Maintainer: "
+msgstr ""
+
+#: ../../mod/admin.php:919
+msgid "No themes found."
+msgstr ""
+
+#: ../../mod/admin.php:978
+msgid "Screenshot"
+msgstr ""
+
+#: ../../mod/admin.php:1026
+msgid "[Experimental]"
+msgstr ""
+
+#: ../../mod/admin.php:1027
+msgid "[Unsupported]"
+msgstr ""
+
+#: ../../mod/admin.php:1054
+msgid "Log settings updated."
+msgstr ""
+
+#: ../../mod/admin.php:1110
+msgid "Clear"
+msgstr ""
+
+#: ../../mod/admin.php:1116
+msgid "Debugging"
+msgstr ""
+
+#: ../../mod/admin.php:1117
+msgid "Log file"
+msgstr ""
+
+#: ../../mod/admin.php:1117
+msgid ""
+"Must be writable by web server. Relative to your Red top-level directory."
+msgstr ""
+
+#: ../../mod/admin.php:1118
+msgid "Log level"
+msgstr ""
+
+#: ../../mod/mitem.php:13 ../../mod/menu.php:87
+msgid "Menu not found."
+msgstr ""
+
+#: ../../mod/mitem.php:66
+msgid "Menu element updated."
+msgstr ""
+
+#: ../../mod/mitem.php:70
+msgid "Unable to update menu element."
+msgstr ""
+
+#: ../../mod/mitem.php:76
+msgid "Menu element added."
+msgstr ""
+
+#: ../../mod/mitem.php:80
+msgid "Unable to add menu element."
+msgstr ""
+
+#: ../../mod/mitem.php:97 ../../mod/xchan.php:25 ../../mod/menu.php:113
+msgid "Not found."
+msgstr ""
+
+#: ../../mod/mitem.php:116
+msgid "Manage Menu Elements"
+msgstr ""
+
+#: ../../mod/mitem.php:119
+msgid "Edit menu"
+msgstr ""
+
+#: ../../mod/mitem.php:122
+msgid "Edit element"
+msgstr ""
+
+#: ../../mod/mitem.php:123
+msgid "Drop element"
+msgstr ""
+
+#: ../../mod/mitem.php:124
+msgid "New element"
+msgstr ""
+
+#: ../../mod/mitem.php:125
+msgid "Edit this menu container"
+msgstr ""
+
+#: ../../mod/mitem.php:126
+msgid "Add menu element"
+msgstr ""
+
+#: ../../mod/mitem.php:127
+msgid "Delete this menu item"
+msgstr ""
+
+#: ../../mod/mitem.php:128
+msgid "Edit this menu item"
+msgstr ""
+
+#: ../../mod/mitem.php:141
+msgid "New Menu Element"
+msgstr ""
+
+#: ../../mod/mitem.php:143 ../../mod/mitem.php:184
+msgid "Link text"
+msgstr ""
+
+#: ../../mod/mitem.php:144 ../../mod/mitem.php:185
+msgid "URL of link"
+msgstr ""
+
+#: ../../mod/mitem.php:145 ../../mod/mitem.php:186
+msgid "Use Red magic-auth if available"
+msgstr ""
+
+#: ../../mod/mitem.php:146 ../../mod/mitem.php:187
+msgid "Open link in new window"
+msgstr ""
+
+#: ../../mod/mitem.php:148 ../../mod/mitem.php:189
+msgid "Order in list"
+msgstr ""
+
+#: ../../mod/mitem.php:148 ../../mod/mitem.php:189
+msgid "Higher numbers will sink to bottom of listing"
+msgstr ""
+
+#: ../../mod/mitem.php:149 ../../mod/menu.php:79 ../../mod/new_channel.php:117
+msgid "Create"
+msgstr ""
+
+#: ../../mod/mitem.php:161
+msgid "Menu item not found."
+msgstr ""
+
+#: ../../mod/mitem.php:170
+msgid "Menu item deleted."
+msgstr ""
+
+#: ../../mod/mitem.php:172
+msgid "Menu item could not be deleted."
+msgstr ""
+
+#: ../../mod/mitem.php:181
+msgid "Edit Menu Element"
+msgstr ""
+
+#: ../../mod/mitem.php:190 ../../mod/menu.php:107
+msgid "Modify"
+msgstr ""
+
+#: ../../mod/group.php:26
+msgid "Collection created."
+msgstr ""
+
+#: ../../mod/group.php:32
+msgid "Could not create collection."
+msgstr ""
+
+#: ../../mod/group.php:60
+msgid "Collection updated."
+msgstr ""
+
+#: ../../mod/group.php:92
+msgid "Create a collection of channels."
+msgstr ""
+
+#: ../../mod/group.php:93 ../../mod/group.php:189
+msgid "Collection Name: "
+msgstr ""
+
+#: ../../mod/group.php:95 ../../mod/group.php:192
+msgid "Members are visible to other channels"
+msgstr ""
+
+#: ../../mod/group.php:113
+msgid "Collection removed."
+msgstr ""
+
+#: ../../mod/group.php:115
+msgid "Unable to remove collection."
+msgstr ""
+
+#: ../../mod/group.php:188
+msgid "Collection Editor"
+msgstr ""
+
+#: ../../mod/group.php:202
+msgid "Members"
+msgstr ""
+
+#: ../../mod/group.php:204
+msgid "All Connected Channels"
+msgstr ""
+
+#: ../../mod/group.php:237
+msgid "Click on a channel to add or remove."
+msgstr ""
+
+#: ../../mod/search.php:20 ../../mod/network.php:113
+msgid "Remove term"
+msgstr ""
+
+#: ../../mod/photos.php:83
+msgid "Page owner information could not be retrieved."
+msgstr ""
+
+#: ../../mod/photos.php:103
+msgid "Album not found."
+msgstr ""
+
+#: ../../mod/photos.php:125 ../../mod/photos.php:791
+msgid "Delete Album"
+msgstr ""
+
+#: ../../mod/photos.php:165 ../../mod/photos.php:1052
+msgid "Delete Photo"
+msgstr ""
+
+#: ../../mod/photos.php:510
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr ""
+
+#: ../../mod/photos.php:510
+msgid "a photo"
+msgstr ""
+
+#: ../../mod/photos.php:586
+msgid "No photos selected"
+msgstr ""
+
+#: ../../mod/photos.php:631
+msgid "Access to this item is restricted."
+msgstr ""
+
+#: ../../mod/photos.php:696
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr ""
+
+#: ../../mod/photos.php:699
+#, php-format
+msgid "You have used %1$.2f Mbytes of photo storage."
+msgstr ""
+
+#: ../../mod/photos.php:718
+msgid "Upload Photos"
+msgstr ""
+
+#: ../../mod/photos.php:722 ../../mod/photos.php:786
+msgid "New album name: "
+msgstr ""
+
+#: ../../mod/photos.php:723
+msgid "or existing album name: "
+msgstr ""
+
+#: ../../mod/photos.php:724
+msgid "Do not show a status post for this upload"
+msgstr ""
+
+#: ../../mod/photos.php:726 ../../mod/photos.php:1047
+msgid "Permissions"
+msgstr ""
+
+#: ../../mod/photos.php:775 ../../mod/photos.php:797 ../../mod/photos.php:1223
+#: ../../mod/photos.php:1238
+msgid "Contact Photos"
+msgstr ""
+
+#: ../../mod/photos.php:801
+msgid "Edit Album"
+msgstr ""
+
+#: ../../mod/photos.php:807
+msgid "Show Newest First"
+msgstr ""
+
+#: ../../mod/photos.php:809
+msgid "Show Oldest First"
+msgstr ""
+
+#: ../../mod/photos.php:853 ../../mod/photos.php:1270
+msgid "View Photo"
+msgstr ""
+
+#: ../../mod/photos.php:897
+msgid "Permission denied. Access to this item may be restricted."
+msgstr ""
+
+#: ../../mod/photos.php:899
+msgid "Photo not available"
+msgstr ""
+
+#: ../../mod/photos.php:957
+msgid "Use as profile photo"
+msgstr ""
+
+#: ../../mod/photos.php:981
+msgid "View Full Size"
+msgstr ""
+
+#: ../../mod/photos.php:1035
+msgid "Edit photo"
+msgstr ""
+
+#: ../../mod/photos.php:1037
+msgid "Rotate CW (right)"
+msgstr ""
+
+#: ../../mod/photos.php:1038
+msgid "Rotate CCW (left)"
+msgstr ""
+
+#: ../../mod/photos.php:1040
+msgid "New album name"
+msgstr ""
+
+#: ../../mod/photos.php:1043
+msgid "Caption"
+msgstr ""
+
+#: ../../mod/photos.php:1045
+msgid "Add a Tag"
+msgstr ""
+
+#: ../../mod/photos.php:1049
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr ""
+
+#: ../../mod/photos.php:1276
+msgid "View Album"
+msgstr ""
+
+#: ../../mod/photos.php:1285
+msgid "Recent Photos"
+msgstr ""
+
+#: ../../mod/ping.php:160
+msgid "sent you a private message"
+msgstr ""
+
+#: ../../mod/ping.php:218
+msgid "added your channel"
+msgstr ""
+
+#: ../../mod/ping.php:262
+msgid "posted an event"
+msgstr ""
+
+#: ../../mod/filer.php:35
+msgid "- select -"
+msgstr ""
+
+#: ../../mod/menu.php:17
+msgid "Menu updated."
+msgstr ""
+
+#: ../../mod/menu.php:21
+msgid "Unable to update menu."
+msgstr ""
+
+#: ../../mod/menu.php:26
+msgid "Menu created."
+msgstr ""
+
+#: ../../mod/menu.php:30
+msgid "Unable to create menu."
+msgstr ""
+
+#: ../../mod/menu.php:53
+msgid "Manage Menus"
+msgstr ""
+
+#: ../../mod/menu.php:56
+msgid "Drop"
+msgstr ""
+
+#: ../../mod/menu.php:58
+msgid "Create a new menu"
+msgstr ""
+
+#: ../../mod/menu.php:59
+msgid "Delete this menu"
+msgstr ""
+
+#: ../../mod/menu.php:60 ../../mod/menu.php:104
+msgid "Edit menu contents"
+msgstr ""
+
+#: ../../mod/menu.php:61
+msgid "Edit this menu"
+msgstr ""
+
+#: ../../mod/menu.php:76
+msgid "New Menu"
+msgstr ""
+
+#: ../../mod/menu.php:77 ../../mod/menu.php:105
+msgid "Menu name"
+msgstr ""
+
+#: ../../mod/menu.php:77 ../../mod/menu.php:105
+msgid "Must be unique, only seen by you"
+msgstr ""
+
+#: ../../mod/menu.php:78 ../../mod/menu.php:106
+msgid "Menu title"
+msgstr ""
+
+#: ../../mod/menu.php:78 ../../mod/menu.php:106
+msgid "Menu title as seen by others"
+msgstr ""
+
+#: ../../mod/menu.php:93
+msgid "Menu deleted."
+msgstr ""
+
+#: ../../mod/menu.php:95
+msgid "Menu could not be deleted."
+msgstr ""
+
+#: ../../mod/menu.php:101
+msgid "Edit Menu"
+msgstr ""
+
+#: ../../mod/menu.php:103
+msgid "Add or remove entries to this menu"
+msgstr ""
+
+#: ../../mod/home.php:76
+#, php-format
+msgid "Welcome to %s"
+msgstr ""
+
+#: ../../mod/message.php:19
+msgid "Check Mail"
+msgstr ""
+
+#: ../../mod/message.php:56
+msgid "Unable to lookup recipient."
+msgstr ""
+
+#: ../../mod/message.php:64
+msgid "Unable to communicate with requested channel."
+msgstr ""
+
+#: ../../mod/message.php:71
+msgid "Cannot verify requested channel."
+msgstr ""
+
+#: ../../mod/message.php:97
+msgid "Selected channel has private message restrictions. Send failed."
+msgstr ""
+
+#: ../../mod/message.php:223 ../../mod/notifications.php:101
+msgid "Messages"
+msgstr ""
+
+#: ../../mod/message.php:234
+msgid "Message deleted."
+msgstr ""
+
+#: ../../mod/message.php:241
+msgid "Conversation removed."
+msgstr ""
+
+#: ../../mod/message.php:258
+msgid "Message recalled."
+msgstr ""
+
+#: ../../mod/message.php:316
+msgid "Send Private Message"
+msgstr ""
+
+#: ../../mod/message.php:317 ../../mod/message.php:503
+msgid "To:"
+msgstr ""
+
+#: ../../mod/message.php:322 ../../mod/message.php:505
+msgid "Subject:"
+msgstr ""
+
+#: ../../mod/message.php:359
+msgid "No messages."
+msgstr ""
+
+#: ../../mod/message.php:375 ../../mod/message.php:472
+msgid "Delete message"
+msgstr ""
+
+#: ../../mod/message.php:377
+msgid "D, d M Y - g:i A"
+msgstr ""
+
+#: ../../mod/message.php:396
+msgid "Message not found."
+msgstr ""
+
+#: ../../mod/message.php:473
+msgid "Recall message"
+msgstr ""
+
+#: ../../mod/message.php:475
+msgid "Message has been recalled."
+msgstr ""
+
+#: ../../mod/message.php:492
+msgid "Private Conversation"
+msgstr ""
+
+#: ../../mod/message.php:496
+msgid "Delete conversation"
+msgstr ""
+
+#: ../../mod/message.php:498
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr ""
+
+#: ../../mod/message.php:502
+msgid "Send Reply"
+msgstr ""
+
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr ""
+
+#: ../../mod/layouts.php:52
+msgid "Layout Help"
+msgstr ""
+
+#: ../../mod/layouts.php:55
+msgid "Help with this feature"
+msgstr ""
+
+#: ../../mod/layouts.php:74
+msgid "Layout Name"
+msgstr ""
+
+#: ../../mod/help.php:41
+msgid "Help:"
+msgstr ""
+
+#: ../../mod/help.php:53 ../../index.php:226
+msgid "Not Found"
+msgstr ""
+
+#: ../../mod/rmagic.php:56
+msgid "Remote Authentication"
+msgstr ""
+
+#: ../../mod/rmagic.php:57
+msgid "Enter your channel address (e.g. channel@example.com)"
+msgstr ""
+
+#: ../../mod/rmagic.php:58
+msgid "Authenticate"
+msgstr ""
+
+#: ../../mod/network.php:172
+msgid "No such group"
+msgstr ""
+
+#: ../../mod/network.php:212
+msgid "Refresh"
+msgstr ""
+
+#: ../../mod/network.php:213 ../../mod/connections.php:404
+msgid "Me"
+msgstr ""
+
+#: ../../mod/network.php:214 ../../mod/connections.php:406
+msgid "Best Friends"
+msgstr ""
+
+#: ../../mod/network.php:216
+msgid "Co-workers"
+msgstr ""
+
+#: ../../mod/network.php:217 ../../mod/connections.php:408
+msgid "Former Friends"
+msgstr ""
+
+#: ../../mod/network.php:218 ../../mod/connections.php:409
+msgid "Acquaintances"
+msgstr ""
+
+#: ../../mod/network.php:219
+msgid "Everybody"
+msgstr ""
+
+#: ../../mod/network.php:234
+msgid "Search Results For:"
+msgstr ""
+
+#: ../../mod/network.php:296
+msgid "Collection: "
+msgstr ""
+
+#: ../../mod/network.php:309
+msgid "Connection: "
+msgstr ""
+
+#: ../../mod/network.php:312
+msgid "Invalid connection."
+msgstr ""
+
+#: ../../mod/intro.php:17 ../../mod/intro.php:100
+#: ../../mod/connections.php:355 ../../mod/connections.php:491
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:162
+#: ../../mod/notifications.php:208
+msgid "Ignore"
+msgstr ""
+
+#: ../../mod/intro.php:29 ../../mod/connections.php:122
+msgid "Connection updated."
+msgstr ""
+
+#: ../../mod/intro.php:31
+msgid "Connection update failed."
+msgstr ""
+
+#: ../../mod/intro.php:56
+msgid "Introductions and Connection Requests"
+msgstr ""
+
+#: ../../mod/intro.php:67
+msgid "No pending introductions."
+msgstr ""
+
+#: ../../mod/intro.php:72
+msgid "System error. Please try again later."
+msgstr ""
+
+#: ../../mod/intro.php:95 ../../mod/connections.php:496
+#: ../../mod/notifications.php:155 ../../mod/notifications.php:202
+msgid "Hide this contact from others"
+msgstr ""
+
+#: ../../mod/intro.php:96 ../../mod/notifications.php:156
+#: ../../mod/notifications.php:203
+msgid "Post a new friend activity"
+msgstr ""
+
+#: ../../mod/intro.php:96 ../../mod/notifications.php:156
+#: ../../mod/notifications.php:203
+msgid "if applicable"
+msgstr ""
+
+#: ../../mod/intro.php:101 ../../mod/notifications.php:35
+#: ../../mod/notifications.php:163 ../../mod/notifications.php:209
+msgid "Discard"
+msgstr ""
+
+#: ../../mod/post.php:222
+msgid ""
+"Remote authentication blocked. You are logged into this site locally. Please "
+"logout and retry."
+msgstr ""
+
+#: ../../mod/post.php:251
+#, php-format
+msgid "Welcome %s. Remote authentication successful."
+msgstr ""
+
+#: ../../mod/dirsearch.php:21
+msgid "This site is not a directory server"
+msgstr ""
+
+#: ../../mod/lockview.php:34
+msgid "Remote privacy information not available."
+msgstr ""
+
+#: ../../mod/lockview.php:43
+msgid "Visible to:"
+msgstr ""
+
+#: ../../mod/magic.php:63
+msgid "Hub not found."
+msgstr ""
+
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:138
+#: ../../mod/profiles.php:179 ../../mod/profiles.php:486
+msgid "Profile not found."
+msgstr ""
+
+#: ../../mod/profiles.php:38
+msgid "Profile deleted."
+msgstr ""
+
+#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
+msgid "Profile-"
+msgstr ""
+
+#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
+msgid "New profile created."
+msgstr ""
+
+#: ../../mod/profiles.php:98
+msgid "Profile unavailable to clone."
+msgstr ""
+
+#: ../../mod/profiles.php:189
+msgid "Profile Name is required."
+msgstr ""
+
+#: ../../mod/profiles.php:317
+msgid "Marital Status"
+msgstr ""
+
+#: ../../mod/profiles.php:321
+msgid "Romantic Partner"
+msgstr ""
+
+#: ../../mod/profiles.php:325
+msgid "Likes"
+msgstr ""
+
+#: ../../mod/profiles.php:329
+msgid "Dislikes"
+msgstr ""
+
+#: ../../mod/profiles.php:333
+msgid "Work/Employment"
+msgstr ""
+
+#: ../../mod/profiles.php:336
+msgid "Religion"
+msgstr ""
+
+#: ../../mod/profiles.php:340
+msgid "Political Views"
+msgstr ""
+
+#: ../../mod/profiles.php:344
+msgid "Gender"
+msgstr ""
+
+#: ../../mod/profiles.php:348
+msgid "Sexual Preference"
+msgstr ""
+
+#: ../../mod/profiles.php:352
+msgid "Homepage"
+msgstr ""
+
+#: ../../mod/profiles.php:356
+msgid "Interests"
+msgstr ""
+
+#: ../../mod/profiles.php:360
+msgid "Address"
+msgstr ""
+
+#: ../../mod/profiles.php:367 ../../mod/pubsites.php:31
+msgid "Location"
+msgstr ""
+
+#: ../../mod/profiles.php:450
+msgid "Profile updated."
+msgstr ""
+
+#: ../../mod/profiles.php:505
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr ""
+
+#: ../../mod/profiles.php:528
+msgid "Edit Profile Details"
+msgstr ""
+
+#: ../../mod/profiles.php:530
+msgid "View this profile"
+msgstr ""
+
+#: ../../mod/profiles.php:531
+msgid "Change Profile Photo"
+msgstr ""
+
+#: ../../mod/profiles.php:532
+msgid "Create a new profile using these settings"
+msgstr ""
+
+#: ../../mod/profiles.php:533
+msgid "Clone this profile"
+msgstr ""
+
+#: ../../mod/profiles.php:534
+msgid "Delete this profile"
+msgstr ""
+
+#: ../../mod/profiles.php:535
+msgid "Profile Name:"
+msgstr ""
+
+#: ../../mod/profiles.php:536
+msgid "Your Full Name:"
+msgstr ""
+
+#: ../../mod/profiles.php:537
+msgid "Title/Description:"
+msgstr ""
+
+#: ../../mod/profiles.php:538
+msgid "Your Gender:"
+msgstr ""
+
+#: ../../mod/profiles.php:539
+#, php-format
+msgid "Birthday (%s):"
+msgstr ""
+
+#: ../../mod/profiles.php:540
+msgid "Street Address:"
+msgstr ""
+
+#: ../../mod/profiles.php:541
+msgid "Locality/City:"
+msgstr ""
+
+#: ../../mod/profiles.php:542
+msgid "Postal/Zip Code:"
+msgstr ""
+
+#: ../../mod/profiles.php:543
+msgid "Country:"
+msgstr ""
+
+#: ../../mod/profiles.php:544
+msgid "Region/State:"
+msgstr ""
+
+#: ../../mod/profiles.php:545
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr ""
+
+#: ../../mod/profiles.php:546
+msgid "Who: (if applicable)"
+msgstr ""
+
+#: ../../mod/profiles.php:547
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr ""
+
+#: ../../mod/profiles.php:548
+msgid "Since [date]:"
+msgstr ""
+
+#: ../../mod/profiles.php:550
+msgid "Homepage URL:"
+msgstr ""
+
+#: ../../mod/profiles.php:553
+msgid "Religious Views:"
+msgstr ""
+
+#: ../../mod/profiles.php:554
+msgid "Keywords:"
+msgstr ""
+
+#: ../../mod/profiles.php:557
+msgid "Example: fishing photography software"
+msgstr ""
+
+#: ../../mod/profiles.php:558
+msgid "Used in directory listings"
+msgstr ""
+
+#: ../../mod/profiles.php:559
+msgid "Tell us about yourself..."
+msgstr ""
+
+#: ../../mod/profiles.php:560
+msgid "Hobbies/Interests"
+msgstr ""
+
+#: ../../mod/profiles.php:561
+msgid "Contact information and Social Networks"
+msgstr ""
+
+#: ../../mod/profiles.php:562
+msgid "My other channels"
+msgstr ""
+
+#: ../../mod/profiles.php:563
+msgid "Musical interests"
+msgstr ""
+
+#: ../../mod/profiles.php:564
+msgid "Books, literature"
+msgstr ""
+
+#: ../../mod/profiles.php:565
+msgid "Television"
+msgstr ""
+
+#: ../../mod/profiles.php:566
+msgid "Film/dance/culture/entertainment"
+msgstr ""
+
+#: ../../mod/profiles.php:567
+msgid "Love/romance"
+msgstr ""
+
+#: ../../mod/profiles.php:568
+msgid "Work/employment"
+msgstr ""
+
+#: ../../mod/profiles.php:569
+msgid "School/education"
+msgstr ""
+
+#: ../../mod/profiles.php:574
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr ""
+
+#: ../../mod/profiles.php:584 ../../mod/directory.php:160
+msgid "Age: "
+msgstr ""
+
+#: ../../mod/profiles.php:623
+msgid "Edit/Manage Profiles"
+msgstr ""
+
+#: ../../mod/new_channel.php:107
+msgid "Add a Channel"
+msgstr ""
+
+#: ../../mod/new_channel.php:108
+msgid ""
+"A channel is your own collection of related web pages. A channel can be used "
+"to hold social network profiles, blogs, conversation groups and forums, "
+"celebrity pages, and much more. You may create as many channels as your "
+"service provider allows."
+msgstr ""
+
+#: ../../mod/new_channel.php:111
+msgid ""
+"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation "
+"Group\" "
+msgstr ""
+
+#: ../../mod/new_channel.php:112
+msgid "Choose a short nickname"
+msgstr ""
+
+#: ../../mod/new_channel.php:113
+msgid ""
+"Your nickname will be used to create an easily remembered channel address "
+"(like an email address) which you can share with others."
+msgstr ""
+
+#: ../../mod/new_channel.php:114
+msgid ""
+"Or <a href=\"import\">import an existing channel</a> from another location"
+msgstr ""
+
+#: ../../mod/connections.php:67
+msgid "Could not access contact record."
+msgstr ""
+
+#: ../../mod/connections.php:81
+msgid "Could not locate selected profile."
+msgstr ""
+
+#: ../../mod/connections.php:124
+msgid "Failed to update connection record."
+msgstr ""
+
+#: ../../mod/connections.php:219
+msgid "Could not access address book record."
+msgstr ""
+
+#: ../../mod/connections.php:233
+msgid "Refresh failed - channel is currently unavailable."
+msgstr ""
+
+#: ../../mod/connections.php:240
+msgid "Channel has been unblocked"
+msgstr ""
+
+#: ../../mod/connections.php:241
+msgid "Channel has been blocked"
+msgstr ""
+
+#: ../../mod/connections.php:245 ../../mod/connections.php:257
+#: ../../mod/connections.php:269 ../../mod/connections.php:281
+#: ../../mod/connections.php:296
+msgid "Unable to set address book parameters."
+msgstr ""
+
+#: ../../mod/connections.php:252
+msgid "Channel has been unignored"
+msgstr ""
+
+#: ../../mod/connections.php:253
+msgid "Channel has been ignored"
+msgstr ""
+
+#: ../../mod/connections.php:264
+msgid "Channel has been unarchived"
+msgstr ""
+
+#: ../../mod/connections.php:265
+msgid "Channel has been archived"
+msgstr ""
+
+#: ../../mod/connections.php:276
+msgid "Channel has been unhidden"
+msgstr ""
+
+#: ../../mod/connections.php:277
+msgid "Channel has been hidden"
+msgstr ""
+
+#: ../../mod/connections.php:291
+msgid "Channel has been approved"
+msgstr ""
+
+#: ../../mod/connections.php:292
+msgid "Channel has been unapproved"
+msgstr ""
+
+#: ../../mod/connections.php:310
+msgid "Contact has been removed."
+msgstr ""
+
+#: ../../mod/connections.php:330
+#, php-format
+msgid "View %s's profile"
+msgstr ""
+
+#: ../../mod/connections.php:334
+msgid "Refresh Permissions"
+msgstr ""
+
+#: ../../mod/connections.php:337
+msgid "Fetch updated permissions"
+msgstr ""
+
+#: ../../mod/connections.php:341
+msgid "Recent Activity"
+msgstr ""
+
+#: ../../mod/connections.php:344
+msgid "View recent posts and comments"
+msgstr ""
+
+#: ../../mod/connections.php:351
+msgid "Block or Unblock this connection"
+msgstr ""
+
+#: ../../mod/connections.php:355 ../../mod/connections.php:491
+msgid "Unignore"
+msgstr ""
+
+#: ../../mod/connections.php:358
+msgid "Ignore or Unignore this connection"
+msgstr ""
+
+#: ../../mod/connections.php:361
+msgid "Unarchive"
+msgstr ""
+
+#: ../../mod/connections.php:361
+msgid "Archive"
+msgstr ""
+
+#: ../../mod/connections.php:364
+msgid "Archive or Unarchive this connection"
+msgstr ""
+
+#: ../../mod/connections.php:367
+msgid "Unhide"
+msgstr ""
+
+#: ../../mod/connections.php:367
+msgid "Hide"
+msgstr ""
+
+#: ../../mod/connections.php:370
+msgid "Hide or Unhide this connection"
+msgstr ""
+
+#: ../../mod/connections.php:377
+msgid "Delete this connection"
+msgstr ""
+
+#: ../../mod/connections.php:410
+msgid "Unknown"
+msgstr ""
+
+#: ../../mod/connections.php:420 ../../mod/connections.php:449
+msgid "Approve this connection"
+msgstr ""
+
+#: ../../mod/connections.php:420
+msgid "Accept connection to allow communication"
+msgstr ""
+
+#: ../../mod/connections.php:436
+msgid "Automatic Permissions Settings"
+msgstr ""
+
+#: ../../mod/connections.php:436
+#, php-format
+msgid "Connections: settings for %s"
+msgstr ""
+
+#: ../../mod/connections.php:440
+msgid ""
+"When receiving a channel introduction, any permissions provided here will be "
+"applied to the new connection automatically and the introduction approved. "
+"Leave this page if you do not wish to use this feature."
+msgstr ""
+
+#: ../../mod/connections.php:442
+msgid "Slide to adjust your degree of friendship"
+msgstr ""
+
+#: ../../mod/connections.php:448
+msgid "inherited"
+msgstr ""
+
+#: ../../mod/connections.php:450
+msgid "Connection has no individual permissions!"
+msgstr ""
+
+#: ../../mod/connections.php:451
+msgid ""
+"This may be appropriate based on your <a href=\"settings\">privacy settings</"
+"a>, though you may wish to review the \"Advanced Permissions\"."
+msgstr ""
+
+#: ../../mod/connections.php:453
+msgid "Profile Visibility"
+msgstr ""
+
+#: ../../mod/connections.php:454
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr ""
+
+#: ../../mod/connections.php:455
+msgid "Contact Information / Notes"
+msgstr ""
+
+#: ../../mod/connections.php:456
+msgid "Edit contact notes"
+msgstr ""
+
+#: ../../mod/connections.php:458
+msgid "Their Settings"
+msgstr ""
+
+#: ../../mod/connections.php:459
+msgid "My Settings"
+msgstr ""
+
+#: ../../mod/connections.php:461
+msgid "Forum Members"
+msgstr ""
+
+#: ../../mod/connections.php:462
+msgid "Soapbox"
+msgstr ""
+
+#: ../../mod/connections.php:463
+msgid "Full Sharing"
+msgstr ""
+
+#: ../../mod/connections.php:464
+msgid "Cautious Sharing"
+msgstr ""
+
+#: ../../mod/connections.php:465
+msgid "Follow Only"
+msgstr ""
+
+#: ../../mod/connections.php:466
+msgid "Individual Permissions"
+msgstr ""
+
+#: ../../mod/connections.php:467
+msgid ""
+"Some permissions may be inherited from your channel <a href=\"settings"
+"\">privacy settings</a>, which have higher priority. Changing those "
+"inherited settings on this page will have no effect."
+msgstr ""
+
+#: ../../mod/connections.php:468
+msgid "Advanced Permissions"
+msgstr ""
+
+#: ../../mod/connections.php:469
+msgid "Quick Links"
+msgstr ""
+
+#: ../../mod/connections.php:473
+#, php-format
+msgid "Visit %s's profile - %s"
+msgstr ""
+
+#: ../../mod/connections.php:474
+msgid "Block/Unblock contact"
+msgstr ""
+
+#: ../../mod/connections.php:475
+msgid "Ignore contact"
+msgstr ""
+
+#: ../../mod/connections.php:476
+msgid "Repair URL settings"
+msgstr ""
+
+#: ../../mod/connections.php:477
+msgid "View conversations"
+msgstr ""
+
+#: ../../mod/connections.php:479
+msgid "Delete contact"
+msgstr ""
+
+#: ../../mod/connections.php:482
+msgid "Last update:"
+msgstr ""
+
+#: ../../mod/connections.php:484
+msgid "Update public posts"
+msgstr ""
+
+#: ../../mod/connections.php:486
+msgid "Update now"
+msgstr ""
+
+#: ../../mod/connections.php:492
+msgid "Currently blocked"
+msgstr ""
+
+#: ../../mod/connections.php:493
+msgid "Currently ignored"
+msgstr ""
+
+#: ../../mod/connections.php:494
+msgid "Currently archived"
+msgstr ""
+
+#: ../../mod/connections.php:495
+msgid "Currently pending"
+msgstr ""
+
+#: ../../mod/connections.php:496
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr ""
+
+#: ../../mod/connections.php:532 ../../mod/connections.php:604
+msgid "Blocked"
+msgstr ""
+
+#: ../../mod/connections.php:537 ../../mod/connections.php:611
+msgid "Ignored"
+msgstr ""
+
+#: ../../mod/connections.php:542 ../../mod/connections.php:625
+msgid "Hidden"
+msgstr ""
+
+#: ../../mod/connections.php:547 ../../mod/connections.php:618
+msgid "Archived"
+msgstr ""
+
+#: ../../mod/connections.php:558
+msgid "All"
+msgstr ""
+
+#: ../../mod/connections.php:579
+msgid "Suggestions"
+msgstr ""
+
+#: ../../mod/connections.php:582
+msgid "Suggest new connections"
+msgstr ""
+
+#: ../../mod/connections.php:588
+msgid "Show pending (new) connections"
+msgstr ""
+
+#: ../../mod/connections.php:591
+msgid "All Connections"
+msgstr ""
+
+#: ../../mod/connections.php:594
+msgid "Show all connections"
+msgstr ""
+
+#: ../../mod/connections.php:597
+msgid "Unblocked"
+msgstr ""
+
+#: ../../mod/connections.php:600
+msgid "Only show unblocked connections"
+msgstr ""
+
+#: ../../mod/connections.php:607
+msgid "Only show blocked connections"
+msgstr ""
+
+#: ../../mod/connections.php:614
+msgid "Only show ignored connections"
+msgstr ""
+
+#: ../../mod/connections.php:621
+msgid "Only show archived connections"
+msgstr ""
+
+#: ../../mod/connections.php:628
+msgid "Only show hidden connections"
+msgstr ""
+
+#: ../../mod/connections.php:670
+#, php-format
+msgid "%1$s [%2$s]"
+msgstr ""
+
+#: ../../mod/connections.php:671
+msgid "Edit contact"
+msgstr ""
+
+#: ../../mod/connections.php:694
+msgid "Search your connections"
+msgstr ""
+
+#: ../../mod/connections.php:695
+msgid "Finding: "
+msgstr ""
+
+#: ../../mod/filestorage.php:35
+msgid "Permission Denied."
+msgstr ""
+
+#: ../../mod/filestorage.php:42
+msgid "Permission denied. VS."
+msgstr ""
+
+#: ../../mod/filestorage.php:79
+msgid "Download"
+msgstr ""
+
+#: ../../mod/filestorage.php:84
+msgid "Used: "
+msgstr ""
+
+#: ../../mod/filestorage.php:86
+msgid "Limit: "
+msgstr ""
+
+#: ../../mod/lostpass.php:15
+msgid "No valid account found."
+msgstr ""
+
+#: ../../mod/lostpass.php:29
+msgid "Password reset request issued. Check your email."
+msgstr ""
+
+#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
+#, php-format
+msgid "Site Member (%s)"
+msgstr ""
+
+#: ../../mod/lostpass.php:40
+#, php-format
+msgid "Password reset requested at %s"
+msgstr ""
+
+#: ../../mod/lostpass.php:63
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr ""
+
+#: ../../mod/lostpass.php:85 ../../boot.php:1450
+msgid "Password Reset"
+msgstr ""
+
+#: ../../mod/lostpass.php:86
+msgid "Your password has been reset as requested."
+msgstr ""
+
+#: ../../mod/lostpass.php:87
+msgid "Your new password is"
+msgstr ""
+
+#: ../../mod/lostpass.php:88
+msgid "Save or copy your new password - and then"
+msgstr ""
+
+#: ../../mod/lostpass.php:89
+msgid "click here to login"
+msgstr ""
+
+#: ../../mod/lostpass.php:90
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr ""
+
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has changed at %s"
+msgstr ""
+
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr ""
+
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr ""
+
+#: ../../mod/lostpass.php:124
+msgid "Email Address"
+msgstr ""
+
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr ""
+
+#: ../../mod/import.php:36
+msgid "Nothing to import."
+msgstr ""
+
+#: ../../mod/import.php:58
+msgid "Unable to download data from old server"
+msgstr ""
+
+#: ../../mod/import.php:64
+msgid "Imported file is empty."
+msgstr ""
+
+#: ../../mod/import.php:88
+msgid ""
+"Cannot create a duplicate channel identifier on this system. Import failed."
+msgstr ""
+
+#: ../../mod/import.php:106
+msgid "Channel clone failed. Import failed."
+msgstr ""
+
+#: ../../mod/import.php:116
+msgid "Cloned channel not found. Import failed."
+msgstr ""
+
+#: ../../mod/import.php:358
+msgid "Import completed."
+msgstr ""
+
+#: ../../mod/import.php:371
+msgid "You must be logged in to use this feature."
+msgstr ""
+
+#: ../../mod/import.php:376
+msgid "Import Channel"
+msgstr ""
+
+#: ../../mod/import.php:377
+msgid ""
+"Use this form to import an existing channel from a different server/hub. You "
+"may retrieve the channel identity from the old server/hub via the network or "
+"provide an export file. Only identity and connections/relationships will be "
+"imported. Importation of content is not yet available."
+msgstr ""
+
+#: ../../mod/import.php:378
+msgid "File to Upload"
+msgstr ""
+
+#: ../../mod/import.php:379
+msgid "Or provide the old server/hub details"
+msgstr ""
+
+#: ../../mod/import.php:380
+msgid "Your old identity address (xyz@example.com)"
+msgstr ""
+
+#: ../../mod/import.php:381
+msgid "Your old login email address"
+msgstr ""
+
+#: ../../mod/import.php:382
+msgid "Your old login password"
+msgstr ""
+
+#: ../../mod/import.php:383
+msgid ""
+"For either option, please choose whether to make this hub your new primary "
+"address, or whether your old location should continue this role. You will be "
+"able to post from either location, but only one can be marked as the primary "
+"location for files, photos, and media."
+msgstr ""
+
+#: ../../mod/import.php:384
+msgid "Make this hub my primary location"
+msgstr ""
+
+#: ../../mod/manage.php:63
+#, php-format
+msgid "You have created %1$.0f of %2$.0f allowed channels."
+msgstr ""
+
+#: ../../mod/manage.php:71
+msgid "Create a new channel"
+msgstr ""
+
+#: ../../mod/manage.php:76
+msgid "Channel Manager"
+msgstr ""
+
+#: ../../mod/manage.php:77
+msgid "Current Channel"
+msgstr ""
+
+#: ../../mod/manage.php:79
+msgid "Attach to one of your channels by selecting it."
+msgstr ""
+
+#: ../../mod/manage.php:80
+msgid "Default Channel"
+msgstr ""
+
+#: ../../mod/manage.php:81
+msgid "Make Default"
+msgstr ""
+
+#: ../../mod/vote.php:97
+msgid "Total votes"
+msgstr ""
+
+#: ../../mod/vote.php:98
+msgid "Average Rating"
+msgstr ""
+
+#: ../../mod/match.php:16
+msgid "Profile Match"
+msgstr ""
+
+#: ../../mod/match.php:24
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr ""
+
+#: ../../mod/match.php:61
+msgid "is interested in:"
+msgstr ""
+
+#: ../../mod/match.php:69
+msgid "No matches"
+msgstr ""
+
+#: ../../mod/crepair.php:102
+msgid "Contact settings applied."
+msgstr ""
+
+#: ../../mod/crepair.php:104
+msgid "Contact update failed."
+msgstr ""
+
+#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20
+#: ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr ""
+
+#: ../../mod/crepair.php:135
+msgid "Repair Contact Settings"
+msgstr ""
+
+#: ../../mod/crepair.php:137
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
+"information your communications with this contact may stop working."
+msgstr ""
+
+#: ../../mod/crepair.php:138
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr ""
+
+#: ../../mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr ""
+
+#: ../../mod/crepair.php:149
+msgid "Account Nickname"
+msgstr ""
+
+#: ../../mod/crepair.php:150
+msgid "@Tagname - overrides Name/Nickname"
+msgstr ""
+
+#: ../../mod/crepair.php:151
+msgid "Account URL"
+msgstr ""
+
+#: ../../mod/crepair.php:152
+msgid "Friend Request URL"
+msgstr ""
+
+#: ../../mod/crepair.php:153
+msgid "Friend Confirm URL"
+msgstr ""
+
+#: ../../mod/crepair.php:154
+msgid "Notification Endpoint URL"
+msgstr ""
+
+#: ../../mod/crepair.php:155
+msgid "Poll/Feed URL"
+msgstr ""
+
+#: ../../mod/crepair.php:156
+msgid "New photo from this URL"
+msgstr ""
+
+#: ../../mod/zfinger.php:23
+msgid "invalid target signature"
+msgstr ""
+
+#: ../../mod/follow.php:25
+msgid "Channel added."
+msgstr ""
+
+#: ../../mod/editlayout.php:36 ../../mod/editwebpage.php:30
+#: ../../mod/editpost.php:20 ../../mod/editblock.php:36
+msgid "Item not found"
+msgstr ""
+
+#: ../../mod/editlayout.php:68
+msgid "Edit Layout"
+msgstr ""
+
+#: ../../mod/editlayout.php:104 ../../mod/editwebpage.php:123
+#: ../../mod/editpost.php:101 ../../mod/editblock.php:118
+msgid "Insert YouTube video"
+msgstr ""
+
+#: ../../mod/editlayout.php:105 ../../mod/editwebpage.php:124
+#: ../../mod/editpost.php:102 ../../mod/editblock.php:119
+msgid "Insert Vorbis [.ogg] video"
+msgstr ""
+
+#: ../../mod/editlayout.php:106 ../../mod/editwebpage.php:125
+#: ../../mod/editpost.php:103 ../../mod/editblock.php:120
+msgid "Insert Vorbis [.ogg] audio"
+msgstr ""
+
+#: ../../mod/editlayout.php:140
+msgid "Delete Layout"
+msgstr ""
+
+#: ../../mod/profile_photo.php:54
+msgid "Image uploaded but image cropping failed."
+msgstr ""
+
+#: ../../mod/profile_photo.php:107
+msgid "Image resize failed."
+msgstr ""
+
+#: ../../mod/profile_photo.php:151
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr ""
+
+#: ../../mod/profile_photo.php:173
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr ""
+
+#: ../../mod/profile_photo.php:182
+msgid "Unable to process image."
+msgstr ""
+
+#: ../../mod/profile_photo.php:224 ../../mod/profile_photo.php:272
+msgid "Photo not available."
+msgstr ""
+
+#: ../../mod/profile_photo.php:291
+msgid "Upload File:"
+msgstr ""
+
+#: ../../mod/profile_photo.php:292
+msgid "Select a profile:"
+msgstr ""
+
+#: ../../mod/profile_photo.php:293
+msgid "Upload Profile Photo"
+msgstr ""
+
+#: ../../mod/profile_photo.php:294
+msgid "Upload"
+msgstr ""
+
+#: ../../mod/profile_photo.php:298
+msgid "skip this step"
+msgstr ""
+
+#: ../../mod/profile_photo.php:298
+msgid "select a photo from your photo albums"
+msgstr ""
+
+#: ../../mod/profile_photo.php:312
+msgid "Crop Image"
+msgstr ""
+
+#: ../../mod/profile_photo.php:313
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr ""
+
+#: ../../mod/profile_photo.php:315
+msgid "Done Editing"
+msgstr ""
+
+#: ../../mod/profile_photo.php:350
+msgid "Image uploaded successfully."
+msgstr ""
+
+#: ../../mod/profile_photo.php:352
+msgid "Image upload failed."
+msgstr ""
+
+#: ../../mod/profile_photo.php:361
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr ""
+
+#: ../../mod/editwebpage.php:87
+msgid "Edit Webpage"
+msgstr ""
+
+#: ../../mod/editwebpage.php:162
+msgid "Delete Webpage"
+msgstr ""
+
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr ""
+
+#: ../../mod/notifications.php:76
+msgid "System"
+msgstr ""
+
+#: ../../mod/notifications.php:96
+msgid "Introductions"
+msgstr ""
+
+#: ../../mod/notifications.php:121
+msgid "Show Ignored Requests"
+msgstr ""
+
+#: ../../mod/notifications.php:121
+msgid "Hide Ignored Requests"
+msgstr ""
+
+#: ../../mod/notifications.php:147 ../../mod/notifications.php:193
+msgid "Notification type: "
+msgstr ""
+
+#: ../../mod/notifications.php:148
+msgid "Friend Suggestion"
+msgstr ""
+
+#: ../../mod/notifications.php:150
+#, php-format
+msgid "suggested by %s"
+msgstr ""
+
+#: ../../mod/notifications.php:179
+msgid "Claims to be known to you: "
+msgstr ""
+
+#: ../../mod/notifications.php:179
+msgid "yes"
+msgstr ""
+
+#: ../../mod/notifications.php:179
+msgid "no"
+msgstr ""
+
+#: ../../mod/notifications.php:186
+msgid "Approve as: "
+msgstr ""
+
+#: ../../mod/notifications.php:187
+msgid "Friend"
+msgstr ""
+
+#: ../../mod/notifications.php:188
+msgid "Sharer"
+msgstr ""
+
+#: ../../mod/notifications.php:188
+msgid "Fan/Admirer"
+msgstr ""
+
+#: ../../mod/notifications.php:194
+msgid "Friend/Connect Request"
+msgstr ""
+
+#: ../../mod/notifications.php:194
+msgid "New Follower"
+msgstr ""
+
+#: ../../mod/notifications.php:215
+msgid "No introductions."
+msgstr ""
+
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:465
+#, php-format
+msgid "%s liked %s's post"
+msgstr ""
+
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:474
+#, php-format
+msgid "%s disliked %s's post"
+msgstr ""
+
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:488
+#, php-format
+msgid "%s is now friends with %s"
+msgstr ""
+
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#, php-format
+msgid "%s created a new post"
+msgstr ""
+
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:497
+#, php-format
+msgid "%s commented on %s's post"
+msgstr ""
+
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr ""
+
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr ""
+
+#: ../../mod/notifications.php:332 ../../mod/notify.php:54
+msgid "No more system notifications."
+msgstr ""
+
+#: ../../mod/notifications.php:336 ../../mod/notify.php:58
+msgid "System Notifications"
+msgstr ""
+
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr ""
+
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr ""
+
+#: ../../mod/notifications.php:504
+msgid "No more home notifications."
+msgstr ""
+
+#: ../../mod/notifications.php:508
+msgid "Home Notifications"
+msgstr ""
+
+#: ../../mod/blocks.php:65
+msgid "Block Name"
+msgstr ""
+
+#: ../../mod/oexchange.php:23
+msgid "Unable to find your hub."
+msgstr ""
+
+#: ../../mod/oexchange.php:37
+msgid "Post successful."
+msgstr ""
+
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
+msgstr ""
+
+#: ../../mod/profile.php:112
+msgid "Access to this profile has been restricted."
+msgstr ""
+
+#: ../../mod/poke.php:159
+msgid "Poke/Prod"
+msgstr ""
+
+#: ../../mod/poke.php:160
+msgid "poke, prod or do other things to somebody"
+msgstr ""
+
+#: ../../mod/poke.php:161
+msgid "Recipient"
+msgstr ""
+
+#: ../../mod/poke.php:162
+msgid "Choose what you wish to do to recipient"
+msgstr ""
+
+#: ../../mod/poke.php:165
+msgid "Make this post private"
+msgstr ""
+
+#: ../../mod/wall_upload.php:41 ../../mod/item.php:1074
+msgid "Wall Photos"
+msgstr ""
+
+#: ../../mod/channel.php:107
+msgid "Insufficient permissions. Request redirected to profile page."
+msgstr ""
+
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr ""
+
+#: ../../mod/community.php:32
+msgid "Community"
+msgstr ""
+
+#: ../../mod/community.php:63 ../../mod/community.php:88
+msgid "No results."
+msgstr ""
+
+#: ../../mod/fbrowser.php:114
+msgid "Files"
+msgstr ""
+
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr ""
+
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr ""
+
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr ""
+
+#: ../../mod/editblock.php:82
+msgid "Edit Block"
+msgstr ""
+
+#: ../../mod/editblock.php:156
+msgid "Delete Block"
+msgstr ""
+
+#: ../../mod/profperm.php:34 ../../mod/profperm.php:64
+msgid "Invalid profile identifier."
+msgstr ""
+
+#: ../../mod/profperm.php:110
+msgid "Profile Visibility Editor"
+msgstr ""
+
+#: ../../mod/profperm.php:114
+msgid "Click on a contact to add or remove."
+msgstr ""
+
+#: ../../mod/profperm.php:123
+msgid "Visible To"
+msgstr ""
+
+#: ../../mod/profperm.php:139
+msgid "All Contacts (with secure profile access)"
+msgstr ""
+
+#: ../../mod/item.php:144
+msgid "Unable to locate original post."
+msgstr ""
+
+#: ../../mod/item.php:341
+msgid "Empty post discarded."
+msgstr ""
+
+#: ../../mod/item.php:383
+msgid "Executable content type not permitted to this channel."
+msgstr ""
+
+#: ../../mod/item.php:793
+msgid "System error. Post not saved."
+msgstr ""
+
+#: ../../mod/item.php:1153
+#, php-format
+msgid "You have reached your limit of %1$.0f top level posts."
+msgstr ""
+
+#: ../../mod/item.php:1159
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
+msgstr ""
+
+#: ../../mod/siteinfo.php:51
+#, php-format
+msgid "Version %s"
+msgstr ""
+
+#: ../../mod/siteinfo.php:65
+msgid "Installed plugins/addons/apps:"
+msgstr ""
+
+#: ../../mod/siteinfo.php:78
+msgid "No installed plugins/addons/apps"
+msgstr ""
+
+#: ../../mod/siteinfo.php:81
+msgid "Red"
+msgstr ""
+
+#: ../../mod/siteinfo.php:82
+msgid ""
+"This is a hub of the Red Matrix - a global cooperative network of "
+"decentralised privacy enhanced websites."
+msgstr ""
+
+#: ../../mod/siteinfo.php:84
+msgid "Running at web location"
+msgstr ""
+
+#: ../../mod/siteinfo.php:85
+msgid ""
+"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
+"about the Red Matrix."
+msgstr ""
+
+#: ../../mod/siteinfo.php:86
+msgid "Bug reports and issues: please visit"
+msgstr ""
+
+#: ../../mod/siteinfo.php:89
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"redmatrix\" at "
+"librelist - dot com"
+msgstr ""
+
+#: ../../mod/suggest.php:41
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr ""
+
+#: ../../mod/suggest.php:58
+msgid "Ignore/Hide"
+msgstr ""
+
+#: ../../mod/pubsites.php:22
+msgid "Public Sites"
+msgstr ""
+
+#: ../../mod/pubsites.php:25
+msgid ""
+"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."
+msgstr ""
+
+#: ../../mod/pubsites.php:31
+msgid "Site URL"
+msgstr ""
+
+#: ../../mod/pubsites.php:31
+msgid "Access Type"
+msgstr ""
+
+#: ../../mod/pubsites.php:31
+msgid "Registration Policy"
+msgstr ""
+
+#: ../../mod/register.php:43
+msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
+msgstr ""
+
+#: ../../mod/register.php:49
+msgid ""
+"Please indicate acceptance of the Terms of Service. Registration failed."
+msgstr ""
+
+#: ../../mod/register.php:77
+msgid "Passwords do not match."
+msgstr ""
+
+#: ../../mod/register.php:105
+msgid ""
+"Registration successful. Please check your email for validation instructions."
+msgstr ""
+
+#: ../../mod/register.php:111
+msgid "Your registration is pending approval by the site owner."
+msgstr ""
+
+#: ../../mod/register.php:114
+msgid "Your registration can not be processed."
+msgstr ""
+
+#: ../../mod/register.php:149
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr ""
+
+#: ../../mod/register.php:160
+msgid "Terms of Service"
+msgstr ""
+
+#: ../../mod/register.php:166
+#, php-format
+msgid "I accept the %s for this website"
+msgstr ""
+
+#: ../../mod/register.php:168
+#, php-format
+msgid "I am over 13 years of age and accept the %s for this website"
+msgstr ""
+
+#: ../../mod/register.php:183
+msgid "Membership on this site is by invitation only."
+msgstr ""
+
+#: ../../mod/register.php:184
+msgid "Please enter your invitation code"
+msgstr ""
+
+#: ../../mod/register.php:187
+msgid "Your email address"
+msgstr ""
+
+#: ../../mod/register.php:188
+msgid "Choose a password"
+msgstr ""
+
+#: ../../mod/register.php:189
+msgid "Please re-enter your password"
+msgstr ""
+
+#: ../../mod/regmod.php:12
+msgid "Please login."
+msgstr ""
+
+#: ../../mod/removeme.php:49
+msgid "Remove This Channel"
+msgstr ""
+
+#: ../../mod/removeme.php:50
+msgid ""
+"This will completely remove this channel from the network. Once this has "
+"been done it is not recoverable."
+msgstr ""
+
+#: ../../mod/removeme.php:51
+msgid "Please enter your password for verification:"
+msgstr ""
+
+#: ../../mod/removeme.php:52
+msgid "Remove this channel and all its clones from the network"
+msgstr ""
+
+#: ../../mod/removeme.php:52
+msgid ""
+"By default only the instance of the channel located on this hub will be "
+"removed from the network"
+msgstr ""
+
+#: ../../mod/removeme.php:53
+msgid "Remove My Account"
+msgstr ""
+
+#: ../../mod/directory.php:163
+msgid "Gender: "
+msgstr ""
+
+#: ../../mod/directory.php:222
+msgid "Finding:"
+msgstr ""
+
+#: ../../mod/directory.php:230
+msgid "next page"
+msgstr ""
+
+#: ../../mod/directory.php:230
+msgid "previous page"
+msgstr ""
+
+#: ../../mod/directory.php:237
+msgid "No entries (some entries may be hidden)."
+msgstr ""
+
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr ""
+
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:74
+msgid "Scheme Default"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:75
+msgid "red"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:76
+msgid "black"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:77
+msgid "silver"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:88
+#: ../../view/theme/apw/php/config.php:234
+#: ../../view/theme/blogga/view/theme/blog/config.php:69
+#: ../../view/theme/blogga/php/config.php:69
+msgid "Theme settings"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:89
+#: ../../view/theme/apw/php/config.php:235
+msgid "Set scheme"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:90
+msgid "Navigation bar colour"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:91
+msgid "Set font-colour for banner"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:92
+msgid "Set the background colour"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:93
+msgid "Set the background image"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:94
+msgid "Set the background colour of items"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:95
+msgid "Set the opacity of items"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:96
+msgid "Set the basic colour for item icons"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:97
+msgid "Set the hover colour for item icons"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:98
+msgid "Set font-size for the entire application"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:99
+#: ../../view/theme/apw/php/config.php:236
+msgid "Set font-size for posts and comments"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:100
+msgid "Set font-colour for posts and comments"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:101
+msgid "Set radius of corners"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:102
+msgid "Set shadow depth of photos"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:103
+msgid "Set maximum width of conversation regions"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:104
+msgid "Set minimum opacity of nav bar - to hide it"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:105
+msgid "Set size of conversation author photo"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:106
+msgid "Set size of followup author photos"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:107
+msgid "Sloppy photo albums"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:107
+msgid "Are you a clean desk or a messy desk person?"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:193
+#: ../../view/theme/apw/php/config.php:211
+msgid "Schema Default"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:194
+msgid "Sans-Serif"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:195
+msgid "Monospace"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:237
+msgid "Set font face"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:238
+msgid "Set iconset"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:239
+msgid "Set big shadow size, default 15px 15px 15px"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:240
+msgid "Set small shadow size, default 5px 5px 5px"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:241
+msgid "Set shadow colour, default #000"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:242
+msgid "Set radius size, default 5px"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:243
+msgid "Set line-height for posts and comments"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:244
+msgid "Set background image"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:245
+msgid "Set background colour"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:246
+msgid "Set section background image"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:247
+msgid "Set section background colour"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:248
+msgid "Set colour of items - use hex"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:249
+msgid "Set colour of links - use hex"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:250
+msgid "Set max-width for items. Default 400px"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:251
+msgid "Set min-width for items. Default 240px"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:252
+msgid "Set the generic content wrapper width. Default 48%"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:253
+msgid "Set colour of fonts - use hex"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:254
+msgid "Set background-size element"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:255
+msgid "Item opacity"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:256
+msgid "Display post previews only"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:257
+msgid "Display side bar on channel page"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:258
+msgid "Colour of the navigation bar"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:259
+msgid "Item float"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:260
+msgid "Left offset of the section element"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:261
+msgid "Right offset of the section element"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:262
+msgid "Section width"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:263
+msgid "Left offset of the aside"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:264
+msgid "Right offset of the aside element"
+msgstr ""
+
+#: ../../view/theme/blogga/view/theme/blog/config.php:47
+#: ../../view/theme/blogga/php/config.php:47
+msgid "None"
+msgstr ""
+
+#: ../../view/theme/blogga/view/theme/blog/config.php:70
+#: ../../view/theme/blogga/php/config.php:70
+msgid "Header image"
+msgstr ""
+
+#: ../../view/theme/blogga/view/theme/blog/config.php:71
+#: ../../view/theme/blogga/php/config.php:71
+msgid "Header image only on profile pages"
+msgstr ""
+
+#: ../../boot.php:1255
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr ""
+
+#: ../../boot.php:1258
+#, php-format
+msgid "Update Error at %s"
+msgstr ""
+
+#: ../../boot.php:1415
+msgid ""
+"Create an account to access services and applications within the Red Matrix"
+msgstr ""
+
+#: ../../boot.php:1443
+msgid "Password"
+msgstr ""
+
+#: ../../boot.php:1444
+msgid "Remember me"
+msgstr ""
+
+#: ../../boot.php:1449
+msgid "Forgot your password?"
+msgstr ""
+
+#: ../../boot.php:1514
+msgid "permission denied"
+msgstr ""
+
+#: ../../boot.php:1515
+msgid "Got Zot?"
+msgstr ""
+
+#: ../../boot.php:1902
+msgid "toggle mobile"
+msgstr ""