aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/README2
-rwxr-xr-xutil/add_addon_repo14
-rwxr-xr-xutil/add_theme_repo14
-rwxr-xr-xutil/add_widget_repo13
-rwxr-xr-xutil/addons132
-rwxr-xr-xutil/config21
-rw-r--r--util/extract.php6
-rwxr-xr-xutil/fresh14
-rw-r--r--util/hmessages.po9807
-rw-r--r--util/hstrings.php4108
-rwxr-xr-xutil/hz38
-rwxr-xr-xutil/pconfig2
-rw-r--r--util/php2po.php6
-rw-r--r--util/po2php.php10
-rwxr-xr-xutil/service_class4
-rwxr-xr-xutil/shredder/JSON.sh1
-rw-r--r--util/strings.php4108
-rw-r--r--util/typo.php10
-rw-r--r--util/typohelper.php3
-rwxr-xr-xutil/udall17
20 files changed, 9404 insertions, 8926 deletions
diff --git a/util/README b/util/README
index 991a3fe51..d67c54e45 100644
--- a/util/README
+++ b/util/README
@@ -64,7 +64,7 @@ Plural
The tt() function supports plural form. Script extract.php write this in
strings.php as an array, one string for every plural form language supports:
-$a->string["%d message sent"] = Array(
+App::$string["%d message sent"] = Array(
0 => "%d message sent",
1 => "%d messages sent",
);
diff --git a/util/add_addon_repo b/util/add_addon_repo
index decd9e091..a8dd9f49a 100755
--- a/util/add_addon_repo
+++ b/util/add_addon_repo
@@ -1,10 +1,21 @@
#!/bin/bash -f
-if [ $# -ne 2 ]; then
+if [ $# -lt 2 ]; then
echo usage: $0 repo_url nickname
exit 1
fi
+if [[ $1 != *"//github.com/redmatrix"* && $3 != 'insecure' ]]; then
+ echo "";
+ echo "This is NOT an official project repository.";
+ echo "In order to protect you from unverified and";
+ echo "possibly malicious content, this repository";
+ echo "will not be linked to your site unless you";
+ echo "append the word 'insecure' to the command.";
+ echo "";
+ exit 1
+fi
+
mkdir -p extend/addon/$2
mkdir addon > /dev/null 2>&1
git clone $1 extend/addon/$2
@@ -14,7 +25,6 @@ fi
filelist=(`ls extend/addon/$2`)
-
cd addon
for a in "${filelist[@]}" ; do
base=`basename $a`
diff --git a/util/add_theme_repo b/util/add_theme_repo
index d41eba6d9..8280c447b 100755
--- a/util/add_theme_repo
+++ b/util/add_theme_repo
@@ -1,11 +1,21 @@
#!/bin/bash -f
-
-if [ $# -ne 2 ]; then
+if [ $# -lt 2 ]; then
echo usage: $0 repo_url nickname
exit 1
fi
+if [[ $1 != *"//github.com/redmatrix"* && $3 != 'insecure' ]]; then
+ echo "";
+ echo "This is NOT an official project repository.";
+ echo "In order to protect you from unverified and";
+ echo "possibly malicious content, this repository";
+ echo "will not be linked to your site unless you";
+ echo "append the word 'insecure' to the command.";
+ echo "";
+ exit 1
+fi
+
mkdir -p extend/theme/$2
git clone $1 extend/theme/$2
if [ $? -ne 0 ]; then
diff --git a/util/add_widget_repo b/util/add_widget_repo
index 347e8e4e1..e7e316ba4 100755
--- a/util/add_widget_repo
+++ b/util/add_widget_repo
@@ -1,10 +1,21 @@
#!/bin/bash -f
-if [ $# -ne 2 ]; then
+if [ $# -lt 2 ]; then
echo usage: $0 repo_url nickname
exit 1
fi
+if [[ $1 != *"//github.com/redmatrix"* && $3 != 'insecure' ]]; then
+ echo "";
+ echo "This is NOT an official project repository.";
+ echo "In order to protect you from unverified and";
+ echo "possibly malicious content, this repository";
+ echo "will not be linked to your site unless you";
+ echo "append the word 'insecure' to the command.";
+ echo "";
+ exit 1
+fi
+
mkdir -p extend/widget/$2
mkdir widget > /dev/null 2>&1
git clone $1 extend/widget/$2
diff --git a/util/addons b/util/addons
new file mode 100755
index 000000000..8fcd40cbc
--- /dev/null
+++ b/util/addons
@@ -0,0 +1,132 @@
+#!/usr/bin/env php
+<?php
+
+// Hubzilla plugin management utility
+
+function usage() {
+echo <<< EOT
+ Usage:
+ util/addons list # list installed addons
+ util/addons list all # list all addons (*)= installed, (!)= disabled due to version compatibility
+ util/addons install foo # install addon named 'foo'
+ util/addons uninstall foo # uninstall addon named 'foo'
+
+EOT;
+}
+
+require_once('include/cli_startup.php');
+
+cli_startup();
+$a = get_app();
+
+ $plugs = get_config('system', 'addon');
+ $plugins_arr = array();
+
+ if($plugs)
+ $plugins_arr = explode(',', str_replace(' ', '', $plugs));
+
+ App::$plugins = $plugins_arr;
+
+ $plugins = array();
+ $files = glob('addon/*/');
+ if($files) {
+ foreach($files as $file) {
+ if(is_dir($file)){
+ list($tmp, $id) = array_map('trim', explode('/', $file));
+ $info = get_plugin_info($id);
+ $enabled = in_array($id,App::$plugins);
+ $x = check_plugin_versions($info);
+ if($enabled && ! $x) {
+ $enabled = false;
+ $idz = array_search($id, App::$plugins);
+ if ($idz !== false) {
+ unset(App::$plugins[$idz]);
+ uninstall_plugin($id);
+ set_config("system","addon", implode(", ",App::$plugins));
+ }
+ }
+ $info['disabled'] = 1-intval($x);
+
+ $plugins[] = array( $id, (($enabled)? '*' : '') , $info);
+ }
+ }
+ }
+
+if($argc == 1) {
+ usage();
+ killme();
+}
+
+
+if($argc == 2 && $argv[1] === 'list') {
+ if($plugins) {
+ foreach($plugins as $p) {
+ if($p[1]) {
+ echo $p[0] . "\n";
+ }
+ }
+ }
+ killme();
+}
+
+if($argc == 3 && $argv[1] === 'list' && $argv[2] === 'all') {
+
+ if($plugins) {
+ foreach($plugins as $p) {
+ echo $p[0] . (($p[1]) ? $p[1] : (($p[2]['disabled']) ? '!' : '')) . "\n";
+ }
+ }
+
+ killme();
+}
+
+
+if($argc == 3 && $argv[1] === 'install') {
+
+ if($plugins) {
+ foreach($plugins as $p) {
+ if($p[0] === $argv[2]) {
+ if($p[1])
+ echo $p[0] . ' already installed.' . "\n";
+ elseif($p[2]['disabled'])
+ echo $p[0] . ' disabled (version compatibility).' . "\n";
+ else {
+ App::$plugins[] = $p[0];
+ install_plugin($p[0]);
+ set_config("system","addon", implode(", ",App::$plugins));
+ echo $p[0] . ' installed.' . "\n";
+ }
+ }
+ }
+ }
+
+ killme();
+}
+
+
+
+if($argc == 3 && $argv[1] === 'uninstall') {
+
+ if($plugins) {
+ foreach($plugins as $p) {
+ if($p[0] === $argv[2]) {
+ if(! $p[1])
+ echo $p[0] . ' not installed.' . "\n";
+ elseif($p[2]['disabled'])
+ echo $p[0] . ' disabled (version compatibility).' . "\n";
+ else {
+ $idx = array_search($p[0], App::$plugins);
+ if ($idx !== false)
+ unset(App::$plugins[$idx]);
+ uninstall_plugin($p[0]);
+ set_config("system","addon", implode(", ",App::$plugins));
+ echo $p[0] . ' uninstalled.' . "\n";
+ }
+ }
+ }
+ }
+
+ killme();
+}
+
+
diff --git a/util/config b/util/config
index 67fe14f93..9e90eca56 100755
--- a/util/config
+++ b/util/config
@@ -8,17 +8,19 @@ require_once('include/cli_startup.php');
cli_startup();
if($argc > 3) {
+
+
set_config($argv[1],$argv[2],$argv[3]);
- echo "config[{$argv[1]}][{$argv[2]}] = " . get_config($argv[1],$argv[2]) . "\n";
+ echo "config[{$argv[1]}][{$argv[2]}] = " . printable_config(get_config($argv[1],$argv[2])) . "\n";
}
if($argc == 3) {
- echo "config[{$argv[1]}][{$argv[2]}] = " . get_config($argv[1],$argv[2]) . "\n";
+ echo "config[{$argv[1]}][{$argv[2]}] = " . printable_config(get_config($argv[1],$argv[2])) . "\n";
}
if($argc == 2) {
load_config($argv[1]);
- foreach($a->config[$argv[1]] as $k => $x) {
+ foreach(App::$config[$argv[1]] as $k => $x) {
echo "config[{$argv[1]}][{$k}] = " . $x . "\n";
}
}
@@ -27,8 +29,19 @@ if($argc == 1) {
$r = q("select * from config where 1");
if($r) {
foreach($r as $rr) {
- echo "config[{$rr['cat']}][{$rr['k']}] = " . $rr['v'] . "\n";
+ echo "config[{$rr['cat']}][{$rr['k']}] = " . printable_config($rr['v']) . "\n";
}
}
}
+function printable_config($x) {
+ $s = '';
+ if(is_array($x)) {
+ foreach($x as $v) {
+ $s .= $v . "\n";
+ }
+ return $s;
+ }
+ else
+ return $x;
+} \ No newline at end of file
diff --git a/util/extract.php b/util/extract.php
index 90127f3c1..bc838c712 100644
--- a/util/extract.php
+++ b/util/extract.php
@@ -45,19 +45,19 @@ function string_plural_select($n){
if (is_array($a)){
if(substr($a[1],0,1) == '$')
continue;
- $s .= '$a->strings[' . $a[0] . "] = array(\n";
+ $s .= 'App::$strings[' . $a[0] . "] = array(\n";
$s .= "\t0 => ". $a[0]. ",\n";
$s .= "\t1 => ". $a[1]. ",\n";
$s .= ");\n";
} else {
if(substr($a,0,1) == '$')
continue;
- $s .= '$a->strings[' . $a . '] = '. $a . ';' . "\n";
+ $s .= 'App::$strings[' . $a . '] = '. $a . ';' . "\n";
}
}
$zones = timezone_identifiers_list();
foreach($zones as $zone)
- $s .= '$a->strings[\'' . $zone . '\'] = \'' . $zone . '\';' . "\n";
+ $s .= 'App::$strings[\'' . $zone . '\'] = \'' . $zone . '\';' . "\n";
echo $s; \ No newline at end of file
diff --git a/util/fresh b/util/fresh
index 8bee5dff7..c70f1cac9 100755
--- a/util/fresh
+++ b/util/fresh
@@ -48,9 +48,9 @@ function process_command($line) {
// split args
- $a->cmd = $line;
- $a->argv = explode(' ',$line);
- $a->argc = count($a->argv);
+ App::$cmd = $line;
+ App::$argv = explode(' ',$line);
+ App::$argc = count(App::$argv);
$authenticated = false;
$channel = null;
@@ -82,14 +82,14 @@ function process_command($line) {
exec('/bin/stty echo');
echo "\n";
require_once('include/auth.php');
- $record = get_app()->account = account_verify_password(argv(1),trim($x,"\n"));
+ $record = App::$account = account_verify_password(argv(1),trim($x,"\n"));
if($record) {
- $_SESSION['account_id'] = get_app()->account['account_id'];
+ $_SESSION['account_id'] = App::$account['account_id'];
$_SESSION['last_login_date'] = datetime_convert();
authenticate_success($record, true, true);
echo 'logged in';
- $channel = $a->get_channel();
+ $channel = App::get_channel();
if($channel)
echo ' as ' . $channel['channel_name'];
}
@@ -108,7 +108,7 @@ function process_command($line) {
);
if($r) {
change_channel($r[0]['channel_id']);
- $channel = $a->get_channel();
+ $channel = App::get_channel();
echo 'Logged in as ' . $channel['channel_name'];
}
else
diff --git a/util/hmessages.po b/util/hmessages.po
index 9025a5b69..295322265 100644
--- a/util/hmessages.po
+++ b/util/hmessages.po
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: 2015-12-18.1250\n"
+"Project-Id-Version: 2016-04-08.1360H\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-12-18 00:03-0800\n"
+"POT-Creation-Date: 2016-04-08 00:03-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,3722 +17,3741 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../include/Contact.php:101 ../../include/identity.php:947
-#: ../../include/widgets.php:137 ../../include/widgets.php:175
-#: ../../include/conversation.php:953 ../../mod/match.php:64
-#: ../../mod/directory.php:318 ../../mod/suggest.php:52
-msgid "Connect"
+#: ../../Zotlabs/Zot/Auth.php:140
+msgid ""
+"Remote authentication blocked. You are logged into this site locally. Please "
+"logout and retry."
msgstr ""
-#: ../../include/Contact.php:118
-msgid "New window"
+#: ../../Zotlabs/Zot/Auth.php:248 ../../mod/openid.php:72
+#: ../../mod/openid.php:179
+#, php-format
+msgid "Welcome %s. Remote authentication successful."
msgstr ""
-#: ../../include/Contact.php:119
-msgid "Open the selected location in a different window or browser tab"
+#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239
+msgid "parent"
msgstr ""
-#: ../../include/Contact.php:237
-#, php-format
-msgid "User '%s' deleted"
+#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2633
+msgid "Collection"
msgstr ""
-#: ../../include/chat.php:23
-msgid "Missing room name"
+#: ../../Zotlabs/Storage/Browser.php:134
+msgid "Principal"
msgstr ""
-#: ../../include/chat.php:32
-msgid "Duplicate room name"
+#: ../../Zotlabs/Storage/Browser.php:137
+msgid "Addressbook"
msgstr ""
-#: ../../include/chat.php:82 ../../include/chat.php:90
-msgid "Invalid room specifier."
+#: ../../Zotlabs/Storage/Browser.php:140
+msgid "Calendar"
msgstr ""
-#: ../../include/chat.php:122
-msgid "Room not found."
+#: ../../Zotlabs/Storage/Browser.php:143
+msgid "Schedule Inbox"
msgstr ""
-#: ../../include/chat.php:133 ../../include/items.php:4405
-#: ../../include/photos.php:29 ../../include/attach.php:140
-#: ../../include/attach.php:188 ../../include/attach.php:251
-#: ../../include/attach.php:265 ../../include/attach.php:272
-#: ../../include/attach.php:337 ../../include/attach.php:351
-#: ../../include/attach.php:358 ../../include/attach.php:436
-#: ../../include/attach.php:888 ../../include/attach.php:959
-#: ../../include/attach.php:1111 ../../mod/filestorage.php:18
-#: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88
-#: ../../mod/filestorage.php:115 ../../mod/group.php:9 ../../mod/item.php:206
-#: ../../mod/item.php:214 ../../mod/item.php:1050 ../../mod/common.php:35
-#: ../../mod/achievements.php:30 ../../mod/rate.php:111
-#: ../../mod/blocks.php:69 ../../mod/blocks.php:76 ../../mod/id.php:71
-#: ../../mod/like.php:177 ../../mod/page.php:31 ../../mod/page.php:86
-#: ../../mod/mood.php:112 ../../mod/new_channel.php:68
-#: ../../mod/new_channel.php:99 ../../mod/setup.php:227
-#: ../../mod/bookmarks.php:48 ../../mod/poke.php:133
-#: ../../mod/profiles.php:198 ../../mod/profiles.php:584
-#: ../../mod/connedit.php:352 ../../mod/editwebpage.php:64
-#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:101
-#: ../../mod/editwebpage.php:125 ../../mod/profile.php:64
-#: ../../mod/profile.php:72 ../../mod/api.php:26 ../../mod/api.php:31
-#: ../../mod/fsuggest.php:78 ../../mod/sources.php:66
-#: ../../mod/notifications.php:66 ../../mod/invite.php:13
-#: ../../mod/invite.php:87 ../../mod/profile_photo.php:341
-#: ../../mod/profile_photo.php:354 ../../mod/thing.php:271
-#: ../../mod/thing.php:291 ../../mod/thing.php:328 ../../mod/editblock.php:65
-#: ../../mod/network.php:12 ../../mod/pdledit.php:21 ../../mod/register.php:72
-#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87
-#: ../../mod/settings.php:568 ../../mod/webpages.php:69
-#: ../../mod/appman.php:66 ../../mod/layouts.php:69 ../../mod/layouts.php:76
-#: ../../mod/layouts.php:87 ../../mod/locs.php:83 ../../mod/regmod.php:17
-#: ../../mod/channel.php:100 ../../mod/channel.php:214
-#: ../../mod/channel.php:254 ../../mod/photos.php:70 ../../mod/editpost.php:13
-#: ../../mod/chat.php:94 ../../mod/chat.php:99 ../../mod/viewsrc.php:14
-#: ../../mod/authtest.php:13 ../../mod/connections.php:29
-#: ../../mod/manage.php:6 ../../mod/menu.php:74 ../../mod/mail.php:126
-#: ../../mod/service_limits.php:7 ../../mod/suggest.php:26
-#: ../../mod/events.php:260 ../../mod/message.php:16 ../../mod/block.php:22
-#: ../../mod/block.php:72 ../../mod/mitem.php:111 ../../mod/sharedwithme.php:7
-#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
-#: ../../index.php:182 ../../index.php:365
-msgid "Permission denied."
+#: ../../Zotlabs/Storage/Browser.php:146
+msgid "Schedule Outbox"
msgstr ""
-#: ../../include/chat.php:143
-msgid "Room is full"
+#: ../../Zotlabs/Storage/Browser.php:164 ../../include/widgets.php:1457
+#: ../../include/apps.php:360 ../../include/apps.php:415
+#: ../../include/conversation.php:1037 ../../mod/photos.php:793
+#: ../../mod/photos.php:1237
+msgid "Unknown"
msgstr ""
-#: ../../include/import.php:23
-msgid ""
-"Cannot create a duplicate channel identifier on this system. Import failed."
+#: ../../Zotlabs/Storage/Browser.php:226 ../../include/apps.php:135
+#: ../../include/conversation.php:1654 ../../include/nav.php:93
+#: ../../mod/fbrowser.php:109
+msgid "Files"
msgstr ""
-#: ../../include/import.php:44 ../../include/Import/import_diaspora.php:42
-msgid "Unable to create a unique channel address. Import failed."
+#: ../../Zotlabs/Storage/Browser.php:227
+msgid "Total"
msgstr ""
-#: ../../include/import.php:70
-msgid "Channel clone failed. Import failed."
+#: ../../Zotlabs/Storage/Browser.php:229
+msgid "Shared"
msgstr ""
-#: ../../include/import.php:80 ../../mod/import.php:139
-msgid "Cloned channel not found. Import failed."
+#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:303
+#: ../../mod/blocks.php:152 ../../mod/layouts.php:175 ../../mod/menu.php:114
+#: ../../mod/new_channel.php:138 ../../mod/webpages.php:182
+msgid "Create"
msgstr ""
-#: ../../include/text.php:394
-msgid "prev"
+#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:305
+#: ../../include/widgets.php:1470 ../../mod/photos.php:820
+#: ../../mod/photos.php:1361 ../../mod/profile_photo.php:401
+#: ../../mod/cover_photo.php:353
+msgid "Upload"
msgstr ""
-#: ../../include/text.php:396
-msgid "first"
+#: ../../Zotlabs/Storage/Browser.php:235 ../../mod/chat.php:241
+#: ../../mod/admin.php:1158 ../../mod/settings.php:599
+#: ../../mod/settings.php:625 ../../mod/sharedwithme.php:95
+msgid "Name"
msgstr ""
-#: ../../include/text.php:425
-msgid "last"
+#: ../../Zotlabs/Storage/Browser.php:236
+msgid "Type"
msgstr ""
-#: ../../include/text.php:428
-msgid "next"
+#: ../../Zotlabs/Storage/Browser.php:237 ../../include/text.php:1293
+#: ../../mod/sharedwithme.php:97
+msgid "Size"
msgstr ""
-#: ../../include/text.php:438
-msgid "older"
+#: ../../Zotlabs/Storage/Browser.php:238 ../../mod/sharedwithme.php:98
+msgid "Last Modified"
msgstr ""
-#: ../../include/text.php:440
-msgid "newer"
+#: ../../Zotlabs/Storage/Browser.php:240 ../../include/ItemObject.php:100
+#: ../../include/apps.php:259 ../../include/page_widgets.php:8
+#: ../../include/page_widgets.php:36 ../../include/identity.php:931
+#: ../../include/identity.php:935 ../../include/menu.php:108
+#: ../../mod/blocks.php:153 ../../mod/connections.php:286
+#: ../../mod/connections.php:306 ../../mod/editblock.php:135
+#: ../../mod/editlayout.php:134 ../../mod/editpost.php:112
+#: ../../mod/editwebpage.php:176 ../../mod/layouts.php:183
+#: ../../mod/menu.php:108 ../../mod/admin.php:1767 ../../mod/settings.php:659
+#: ../../mod/thing.php:256 ../../mod/webpages.php:183
+msgid "Edit"
msgstr ""
-#: ../../include/text.php:785
-msgid "No connections"
+#: ../../Zotlabs/Storage/Browser.php:241 ../../include/ItemObject.php:120
+#: ../../include/apps.php:260 ../../include/conversation.php:657
+#: ../../mod/blocks.php:155 ../../mod/connections.php:259
+#: ../../mod/connedit.php:569 ../../mod/editblock.php:181
+#: ../../mod/editlayout.php:179 ../../mod/editwebpage.php:223
+#: ../../mod/group.php:173 ../../mod/photos.php:1168 ../../mod/admin.php:993
+#: ../../mod/admin.php:1152 ../../mod/admin.php:1768
+#: ../../mod/settings.php:660 ../../mod/thing.php:257
+#: ../../mod/webpages.php:185
+msgid "Delete"
msgstr ""
-#: ../../include/text.php:797
+#: ../../Zotlabs/Storage/Browser.php:282
#, php-format
-msgid "%d Connection"
-msgid_plural "%d Connections"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../include/text.php:810 ../../mod/viewconnections.php:101
-msgid "View Connections"
+msgid "You are using %1$s of your available file storage."
msgstr ""
-#: ../../include/text.php:867 ../../include/text.php:879
-#: ../../include/nav.php:159 ../../include/apps.php:147
-#: ../../mod/search.php:40
-msgid "Search"
+#: ../../Zotlabs/Storage/Browser.php:287
+#, php-format
+msgid "You are using %1$s of %2$s available file storage. (%3$s&#37;)"
msgstr ""
-#: ../../include/text.php:868 ../../include/text.php:880
-#: ../../include/widgets.php:192 ../../mod/rbmark.php:28
-#: ../../mod/rbmark.php:100 ../../mod/admin.php:1454 ../../mod/admin.php:1474
-#: ../../mod/filer.php:49
-msgid "Save"
+#: ../../Zotlabs/Storage/Browser.php:299
+msgid "WARNING:"
msgstr ""
-#: ../../include/text.php:954
-msgid "poke"
+#: ../../Zotlabs/Storage/Browser.php:302
+msgid "Create new folder"
msgstr ""
-#: ../../include/text.php:954 ../../include/conversation.php:243
-msgid "poked"
+#: ../../Zotlabs/Storage/Browser.php:304
+msgid "Upload file"
msgstr ""
-#: ../../include/text.php:955
-msgid "ping"
+#: ../../Zotlabs/Web/Router.php:47 ../../include/attach.php:141
+#: ../../include/attach.php:189 ../../include/attach.php:252
+#: ../../include/attach.php:266 ../../include/attach.php:273
+#: ../../include/attach.php:338 ../../include/attach.php:352
+#: ../../include/attach.php:359 ../../include/attach.php:437
+#: ../../include/attach.php:895 ../../include/attach.php:966
+#: ../../include/attach.php:1118 ../../include/items.php:4671
+#: ../../include/photos.php:29 ../../include/chat.php:133
+#: ../../mod/achievements.php:30 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/appman.php:66 ../../mod/authtest.php:13 ../../mod/block.php:22
+#: ../../mod/block.php:72 ../../mod/blocks.php:69 ../../mod/blocks.php:76
+#: ../../mod/bookmarks.php:48 ../../mod/channel.php:100
+#: ../../mod/channel.php:217 ../../mod/channel.php:257 ../../mod/chat.php:94
+#: ../../mod/chat.php:99 ../../mod/common.php:35 ../../mod/connections.php:29
+#: ../../mod/connedit.php:362 ../../mod/editblock.php:65
+#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87
+#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:64
+#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:101
+#: ../../mod/editwebpage.php:125 ../../mod/events.php:260
+#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73
+#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115
+#: ../../mod/fsuggest.php:78 ../../mod/group.php:9 ../../mod/id.php:71
+#: ../../mod/invite.php:13 ../../mod/invite.php:87 ../../mod/item.php:206
+#: ../../mod/item.php:214 ../../mod/item.php:1069 ../../mod/layouts.php:69
+#: ../../mod/layouts.php:76 ../../mod/layouts.php:87 ../../mod/like.php:177
+#: ../../mod/locs.php:83 ../../mod/mail.php:126 ../../mod/manage.php:6
+#: ../../mod/menu.php:74 ../../mod/message.php:16 ../../mod/mitem.php:111
+#: ../../mod/mood.php:112 ../../mod/network.php:12
+#: ../../mod/new_channel.php:73 ../../mod/new_channel.php:100
+#: ../../mod/notifications.php:66 ../../mod/page.php:31 ../../mod/page.php:86
+#: ../../mod/pdledit.php:22 ../../mod/photos.php:70 ../../mod/poke.php:133
+#: ../../mod/profile.php:64 ../../mod/profile.php:72
+#: ../../mod/profile_photo.php:289 ../../mod/profile_photo.php:302
+#: ../../mod/profiles.php:198 ../../mod/profiles.php:596
+#: ../../mod/rate.php:111 ../../mod/register.php:73 ../../mod/regmod.php:17
+#: ../../mod/service_limits.php:7 ../../mod/settings.php:579
+#: ../../mod/setup.php:233 ../../mod/sharedwithme.php:7
+#: ../../mod/sources.php:66 ../../mod/suggest.php:26 ../../mod/thing.php:270
+#: ../../mod/thing.php:290 ../../mod/thing.php:327
+#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
+#: ../../mod/viewsrc.php:14 ../../mod/webpages.php:69
+#: ../../mod/cover_photo.php:273 ../../mod/cover_photo.php:286
+#: ../../index.php:185
+msgid "Permission denied."
msgstr ""
-#: ../../include/text.php:955
-msgid "pinged"
+#: ../../Zotlabs/Web/Router.php:105 ../../mod/help.php:231
+msgid "Not Found"
msgstr ""
-#: ../../include/text.php:956
-msgid "prod"
+#: ../../Zotlabs/Web/Router.php:108 ../../mod/block.php:75
+#: ../../mod/display.php:110 ../../mod/help.php:234 ../../mod/page.php:89
+msgid "Page not found."
msgstr ""
-#: ../../include/text.php:956
-msgid "prodded"
+#: ../../include/ItemObject.php:89 ../../include/conversation.php:664
+msgid "Private Message"
msgstr ""
-#: ../../include/text.php:957
-msgid "slap"
+#: ../../include/ItemObject.php:126 ../../include/conversation.php:656
+msgid "Select"
msgstr ""
-#: ../../include/text.php:957
-msgid "slapped"
+#: ../../include/ItemObject.php:130
+msgid "Save to Folder"
msgstr ""
-#: ../../include/text.php:958
-msgid "finger"
+#: ../../include/ItemObject.php:151
+msgid "I will attend"
msgstr ""
-#: ../../include/text.php:958
-msgid "fingered"
+#: ../../include/ItemObject.php:151
+msgid "I will not attend"
msgstr ""
-#: ../../include/text.php:959
-msgid "rebuff"
+#: ../../include/ItemObject.php:151
+msgid "I might attend"
msgstr ""
-#: ../../include/text.php:959
-msgid "rebuffed"
+#: ../../include/ItemObject.php:161
+msgid "I agree"
msgstr ""
-#: ../../include/text.php:969
-msgid "happy"
+#: ../../include/ItemObject.php:161
+msgid "I disagree"
msgstr ""
-#: ../../include/text.php:970
-msgid "sad"
+#: ../../include/ItemObject.php:161
+msgid "I abstain"
msgstr ""
-#: ../../include/text.php:971
-msgid "mellow"
+#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187
+#: ../../include/conversation.php:1733 ../../mod/photos.php:1121
+#: ../../mod/photos.php:1133
+msgid "View all"
msgstr ""
-#: ../../include/text.php:972
-msgid "tired"
-msgstr ""
+#: ../../include/ItemObject.php:179 ../../include/conversation.php:1757
+#: ../../include/taxonomy.php:415 ../../include/identity.php:1298
+#: ../../mod/photos.php:1125
+msgctxt "noun"
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/text.php:973
-msgid "perky"
-msgstr ""
+#: ../../include/ItemObject.php:184 ../../include/conversation.php:1760
+#: ../../mod/photos.php:1130
+msgctxt "noun"
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/text.php:974
-msgid "angry"
+#: ../../include/ItemObject.php:212
+msgid "Add Star"
msgstr ""
-#: ../../include/text.php:975
-msgid "stupified"
+#: ../../include/ItemObject.php:213
+msgid "Remove Star"
msgstr ""
-#: ../../include/text.php:976
-msgid "puzzled"
+#: ../../include/ItemObject.php:214
+msgid "Toggle Star Status"
msgstr ""
-#: ../../include/text.php:977
-msgid "interested"
+#: ../../include/ItemObject.php:218
+msgid "starred"
msgstr ""
-#: ../../include/text.php:978
-msgid "bitter"
+#: ../../include/ItemObject.php:227 ../../include/conversation.php:671
+msgid "Message signature validated"
msgstr ""
-#: ../../include/text.php:979
-msgid "cheerful"
+#: ../../include/ItemObject.php:228 ../../include/conversation.php:672
+msgid "Message signature incorrect"
msgstr ""
-#: ../../include/text.php:980
-msgid "alive"
+#: ../../include/ItemObject.php:236
+msgid "Add Tag"
msgstr ""
-#: ../../include/text.php:981
-msgid "annoyed"
+#: ../../include/ItemObject.php:254 ../../mod/photos.php:1065
+msgid "I like this (toggle)"
msgstr ""
-#: ../../include/text.php:982
-msgid "anxious"
+#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:328
+msgid "like"
msgstr ""
-#: ../../include/text.php:983
-msgid "cranky"
+#: ../../include/ItemObject.php:255 ../../mod/photos.php:1066
+msgid "I don't like this (toggle)"
msgstr ""
-#: ../../include/text.php:984
-msgid "disturbed"
+#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:329
+msgid "dislike"
msgstr ""
-#: ../../include/text.php:985
-msgid "frustrated"
+#: ../../include/ItemObject.php:259
+msgid "Share This"
msgstr ""
-#: ../../include/text.php:986
-msgid "depressed"
+#: ../../include/ItemObject.php:259
+msgid "share"
msgstr ""
-#: ../../include/text.php:987
-msgid "motivated"
+#: ../../include/ItemObject.php:268
+msgid "Delivery Report"
msgstr ""
-#: ../../include/text.php:988
-msgid "relaxed"
-msgstr ""
+#: ../../include/ItemObject.php:286
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/text.php:989
-msgid "surprised"
+#: ../../include/ItemObject.php:315 ../../include/ItemObject.php:316
+#, php-format
+msgid "View %s's profile - %s"
msgstr ""
-#: ../../include/text.php:1161 ../../include/js_strings.php:70
-msgid "Monday"
+#: ../../include/ItemObject.php:319
+msgid "to"
msgstr ""
-#: ../../include/text.php:1161 ../../include/js_strings.php:71
-msgid "Tuesday"
+#: ../../include/ItemObject.php:320
+msgid "via"
msgstr ""
-#: ../../include/text.php:1161 ../../include/js_strings.php:72
-msgid "Wednesday"
+#: ../../include/ItemObject.php:321
+msgid "Wall-to-Wall"
msgstr ""
-#: ../../include/text.php:1161 ../../include/js_strings.php:73
-msgid "Thursday"
+#: ../../include/ItemObject.php:322
+msgid "via Wall-To-Wall:"
msgstr ""
-#: ../../include/text.php:1161 ../../include/js_strings.php:74
-msgid "Friday"
+#: ../../include/ItemObject.php:334 ../../include/conversation.php:719
+#, php-format
+msgid "from %s"
msgstr ""
-#: ../../include/text.php:1161 ../../include/js_strings.php:75
-msgid "Saturday"
+#: ../../include/ItemObject.php:337 ../../include/conversation.php:722
+#, php-format
+msgid "last edited: %s"
msgstr ""
-#: ../../include/text.php:1161 ../../include/js_strings.php:69
-msgid "Sunday"
+#: ../../include/ItemObject.php:338 ../../include/conversation.php:723
+#, php-format
+msgid "Expires: %s"
msgstr ""
-#: ../../include/text.php:1165 ../../include/js_strings.php:45
-msgid "January"
+#: ../../include/ItemObject.php:362
+msgid "Save Bookmarks"
msgstr ""
-#: ../../include/text.php:1165 ../../include/js_strings.php:46
-msgid "February"
+#: ../../include/ItemObject.php:363
+msgid "Add to Calendar"
msgstr ""
-#: ../../include/text.php:1165 ../../include/js_strings.php:47
-msgid "March"
+#: ../../include/ItemObject.php:372
+msgid "Mark all seen"
msgstr ""
-#: ../../include/text.php:1165 ../../include/js_strings.php:48
-msgid "April"
+#: ../../include/ItemObject.php:378 ../../mod/photos.php:1251
+msgctxt "noun"
+msgid "Likes"
msgstr ""
-#: ../../include/text.php:1165
-msgid "May"
+#: ../../include/ItemObject.php:379 ../../mod/photos.php:1252
+msgctxt "noun"
+msgid "Dislikes"
msgstr ""
-#: ../../include/text.php:1165 ../../include/js_strings.php:50
-msgid "June"
+#: ../../include/ItemObject.php:384 ../../include/acl_selectors.php:252
+#: ../../mod/photos.php:1257
+msgid "Close"
msgstr ""
-#: ../../include/text.php:1165 ../../include/js_strings.php:51
-msgid "July"
+#: ../../include/ItemObject.php:389 ../../include/conversation.php:740
+#: ../../include/conversation.php:1242 ../../mod/editblock.php:150
+#: ../../mod/editlayout.php:148 ../../mod/editpost.php:129
+#: ../../mod/editwebpage.php:190 ../../mod/photos.php:1068
+msgid "Please wait"
msgstr ""
-#: ../../include/text.php:1165 ../../include/js_strings.php:52
-msgid "August"
+#: ../../include/ItemObject.php:413 ../../include/js_strings.php:7
+msgid "[+] show all"
msgstr ""
-#: ../../include/text.php:1165 ../../include/js_strings.php:53
-msgid "September"
+#: ../../include/ItemObject.php:700 ../../mod/photos.php:1084
+#: ../../mod/photos.php:1202
+msgid "This is you"
msgstr ""
-#: ../../include/text.php:1165 ../../include/js_strings.php:54
-msgid "October"
+#: ../../include/ItemObject.php:702 ../../include/js_strings.php:6
+#: ../../mod/photos.php:1086 ../../mod/photos.php:1204
+msgid "Comment"
msgstr ""
-#: ../../include/text.php:1165 ../../include/js_strings.php:55
-msgid "November"
+#: ../../include/ItemObject.php:703 ../../include/widgets.php:708
+#: ../../include/widgets.php:720 ../../include/js_strings.php:22
+#: ../../mod/appman.php:99 ../../mod/chat.php:190 ../../mod/chat.php:232
+#: ../../mod/connect.php:93 ../../mod/connedit.php:729
+#: ../../mod/events.php:468 ../../mod/events.php:665
+#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108
+#: ../../mod/group.php:81 ../../mod/import.php:549
+#: ../../mod/import_items.php:116 ../../mod/invite.php:142
+#: ../../mod/locs.php:117 ../../mod/mail.php:380 ../../mod/mitem.php:231
+#: ../../mod/mood.php:135 ../../mod/pconfig.php:108 ../../mod/pdledit.php:62
+#: ../../mod/photos.php:672 ../../mod/photos.php:1047
+#: ../../mod/photos.php:1087 ../../mod/photos.php:1205 ../../mod/admin.php:457
+#: ../../mod/admin.php:646 ../../mod/admin.php:721 ../../mod/admin.php:986
+#: ../../mod/admin.php:1150 ../../mod/admin.php:1326 ../../mod/admin.php:1521
+#: ../../mod/admin.php:1606 ../../mod/admin.php:1770 ../../mod/poke.php:182
+#: ../../mod/profiles.php:687 ../../mod/rate.php:168
+#: ../../mod/settings.php:597 ../../mod/settings.php:710
+#: ../../mod/settings.php:738 ../../mod/settings.php:761
+#: ../../mod/settings.php:849 ../../mod/settings.php:1041
+#: ../../mod/setup.php:336 ../../mod/setup.php:377 ../../mod/sources.php:104
+#: ../../mod/sources.php:138 ../../mod/thing.php:312 ../../mod/thing.php:358
+#: ../../mod/xchan.php:11 ../../mod/cal.php:332
+#: ../../view/theme/redbasic/php/config.php:99
+msgid "Submit"
msgstr ""
-#: ../../include/text.php:1165 ../../include/js_strings.php:56
-msgid "December"
+#: ../../include/ItemObject.php:704 ../../include/conversation.php:1214
+#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135
+#: ../../mod/editpost.php:113 ../../mod/editwebpage.php:177
+msgid "Bold"
msgstr ""
-#: ../../include/text.php:1242 ../../include/text.php:1246
-msgid "Unknown Attachment"
+#: ../../include/ItemObject.php:705 ../../include/conversation.php:1215
+#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136
+#: ../../mod/editpost.php:114 ../../mod/editwebpage.php:178
+msgid "Italic"
msgstr ""
-#: ../../include/text.php:1248 ../../include/RedDAV/RedBrowser.php:237
-#: ../../mod/sharedwithme.php:97
-msgid "Size"
+#: ../../include/ItemObject.php:706 ../../include/conversation.php:1216
+#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137
+#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:179
+msgid "Underline"
msgstr ""
-#: ../../include/text.php:1248
-msgid "unknown"
+#: ../../include/ItemObject.php:707 ../../include/conversation.php:1217
+#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138
+#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:180
+msgid "Quote"
msgstr ""
-#: ../../include/text.php:1284
-msgid "remove category"
+#: ../../include/ItemObject.php:708 ../../include/conversation.php:1218
+#: ../../mod/editblock.php:140 ../../mod/editlayout.php:139
+#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:181
+msgid "Code"
msgstr ""
-#: ../../include/text.php:1361
-msgid "remove from file"
+#: ../../include/ItemObject.php:709
+msgid "Image"
msgstr ""
-#: ../../include/text.php:1392 ../../include/event.php:22
-#: ../../include/bb2diaspora.php:465
-msgid "l F d, Y \\@ g:i A"
+#: ../../include/ItemObject.php:710
+msgid "Insert Link"
msgstr ""
-#: ../../include/text.php:1396 ../../include/event.php:30
-#: ../../include/bb2diaspora.php:471
-msgid "Starts:"
+#: ../../include/ItemObject.php:711
+msgid "Video"
msgstr ""
-#: ../../include/text.php:1400 ../../include/event.php:40
-#: ../../include/bb2diaspora.php:479
-msgid "Finishes:"
+#: ../../include/ItemObject.php:712 ../../include/conversation.php:1184
+#: ../../include/page_widgets.php:40 ../../mod/editblock.php:171
+#: ../../mod/editpost.php:149 ../../mod/editwebpage.php:212
+#: ../../mod/events.php:465 ../../mod/photos.php:1088
+#: ../../mod/webpages.php:190
+msgid "Preview"
msgstr ""
-#: ../../include/text.php:1407 ../../include/event.php:52
-#: ../../include/identity.php:998 ../../include/bb2diaspora.php:487
-#: ../../mod/directory.php:304
-msgid "Location:"
+#: ../../include/ItemObject.php:715 ../../include/conversation.php:1272
+#: ../../mod/chat.php:200 ../../mod/editpost.php:157 ../../mod/mail.php:255
+#: ../../mod/mail.php:385
+msgid "Encrypt text"
msgstr ""
-#: ../../include/text.php:1503 ../../include/text.php:1514
-msgid "Click to open/close"
+#: ../../include/Import/import_diaspora.php:17
+msgid "No username found in import file."
msgstr ""
-#: ../../include/text.php:1698 ../../mod/events.php:623
-msgid "Link to Source"
+#: ../../include/Import/import_diaspora.php:42 ../../include/import.php:44
+msgid "Unable to create a unique channel address. Import failed."
msgstr ""
-#: ../../include/text.php:1719 ../../include/text.php:1791
-msgid "default"
+#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:509
+msgid "Import completed."
msgstr ""
-#: ../../include/text.php:1727
-msgid "Page layout"
+#: ../../include/widgets.php:46 ../../include/contact_widgets.php:95
+#: ../../include/taxonomy.php:282
+msgid "Categories"
msgstr ""
-#: ../../include/text.php:1727
-msgid "You can create your own with the layouts tool"
+#: ../../include/widgets.php:102 ../../include/nav.php:159
+#: ../../mod/apps.php:36
+msgid "Apps"
msgstr ""
-#: ../../include/text.php:1769
-msgid "Page content type"
+#: ../../include/widgets.php:103
+msgid "System"
msgstr ""
-#: ../../include/text.php:1803
-msgid "Select an alternate language"
+#: ../../include/widgets.php:105 ../../include/conversation.php:1541
+#: ../../mod/profiles.php:696
+msgid "Personal"
msgstr ""
-#: ../../include/text.php:1922 ../../include/conversation.php:120
-#: ../../mod/tagger.php:43 ../../mod/like.php:361 ../../mod/subthread.php:83
-msgid "photo"
+#: ../../include/widgets.php:106
+msgid "Create Personal App"
msgstr ""
-#: ../../include/text.php:1925 ../../include/event.php:904
-#: ../../include/conversation.php:123 ../../mod/tagger.php:47
-#: ../../mod/like.php:363 ../../mod/events.php:249
-msgid "event"
+#: ../../include/widgets.php:107
+msgid "Edit Personal App"
msgstr ""
-#: ../../include/text.php:1928 ../../include/conversation.php:148
-#: ../../mod/like.php:361 ../../mod/subthread.php:83
-msgid "status"
+#: ../../include/widgets.php:147 ../../include/widgets.php:184
+#: ../../include/conversation.php:961 ../../include/identity.php:1008
+#: ../../include/Contact.php:101 ../../mod/directory.php:321
+#: ../../mod/match.php:64 ../../mod/suggest.php:52
+msgid "Connect"
msgstr ""
-#: ../../include/text.php:1930 ../../include/conversation.php:150
-#: ../../mod/tagger.php:53
-msgid "comment"
+#: ../../include/widgets.php:149 ../../mod/suggest.php:54
+msgid "Ignore/Hide"
msgstr ""
-#: ../../include/text.php:1935
-msgid "activity"
+#: ../../include/widgets.php:154
+msgid "Suggestions"
msgstr ""
-#: ../../include/text.php:2230
-msgid "Design Tools"
+#: ../../include/widgets.php:155
+msgid "See more..."
msgstr ""
-#: ../../include/text.php:2233 ../../mod/blocks.php:147
-msgid "Blocks"
+#: ../../include/widgets.php:175
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
msgstr ""
-#: ../../include/text.php:2234 ../../mod/menu.php:103
-msgid "Menus"
+#: ../../include/widgets.php:181
+msgid "Add New Connection"
msgstr ""
-#: ../../include/text.php:2235 ../../mod/layouts.php:174
-msgid "Layouts"
+#: ../../include/widgets.php:182
+msgid "Enter channel address"
msgstr ""
-#: ../../include/text.php:2236
-msgid "Pages"
+#: ../../include/widgets.php:183
+msgid "Examples: bob@example.com, https://example.com/barbara"
msgstr ""
-#: ../../include/text.php:2588 ../../include/RedDAV/RedBrowser.php:131
-msgid "Collection"
+#: ../../include/widgets.php:199
+msgid "Notes"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:107
-#: ../../include/RedDAV/RedBrowser.php:239
-msgid "parent"
+#: ../../include/widgets.php:201 ../../include/text.php:905
+#: ../../include/text.php:917 ../../mod/filer.php:49 ../../mod/admin.php:1687
+#: ../../mod/admin.php:1707 ../../mod/rbmark.php:28 ../../mod/rbmark.php:100
+msgid "Save"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:134
-msgid "Principal"
+#: ../../include/widgets.php:273
+msgid "Remove term"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:137
-msgid "Addressbook"
+#: ../../include/widgets.php:281 ../../include/features.php:84
+msgid "Saved Searches"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:140
-msgid "Calendar"
+#: ../../include/widgets.php:282 ../../include/group.php:316
+msgid "add"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:143
-msgid "Schedule Inbox"
+#: ../../include/widgets.php:310 ../../include/contact_widgets.php:57
+#: ../../include/features.php:97
+msgid "Saved Folders"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:146
-msgid "Schedule Outbox"
+#: ../../include/widgets.php:313 ../../include/contact_widgets.php:60
+#: ../../include/contact_widgets.php:98
+msgid "Everything"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:164 ../../include/widgets.php:1330
-#: ../../include/conversation.php:1027 ../../include/apps.php:360
-#: ../../include/apps.php:415 ../../mod/photos.php:754
-#: ../../mod/photos.php:1195
-msgid "Unknown"
+#: ../../include/widgets.php:354
+msgid "Archives"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:226 ../../include/conversation.php:1629
-#: ../../include/nav.php:93 ../../include/apps.php:135
-#: ../../mod/fbrowser.php:109
-msgid "Files"
+#: ../../include/widgets.php:444 ../../mod/connedit.php:589
+msgid "Me"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:227
-msgid "Total"
+#: ../../include/widgets.php:445 ../../mod/connedit.php:590
+msgid "Family"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:229
-msgid "Shared"
+#: ../../include/widgets.php:446 ../../include/profile_selectors.php:80
+#: ../../include/identity.php:389 ../../include/identity.php:390
+#: ../../include/identity.php:397 ../../mod/connedit.php:591
+#: ../../mod/settings.php:349 ../../mod/settings.php:353
+#: ../../mod/settings.php:354 ../../mod/settings.php:357
+#: ../../mod/settings.php:368
+msgid "Friends"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:230
-#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/blocks.php:152
-#: ../../mod/new_channel.php:121 ../../mod/webpages.php:180
-#: ../../mod/layouts.php:175 ../../mod/menu.php:114
-msgid "Create"
+#: ../../include/widgets.php:447 ../../mod/connedit.php:592
+msgid "Acquaintances"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:231
-#: ../../include/RedDAV/RedBrowser.php:305 ../../include/widgets.php:1343
-#: ../../mod/profile_photo.php:453 ../../mod/photos.php:781
-#: ../../mod/photos.php:1316
-msgid "Upload"
+#: ../../include/widgets.php:448 ../../mod/connections.php:88
+#: ../../mod/connections.php:103 ../../mod/connedit.php:593
+msgid "All"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:235 ../../mod/admin.php:986
-#: ../../mod/settings.php:588 ../../mod/settings.php:614
-#: ../../mod/sharedwithme.php:95
-msgid "Name"
+#: ../../include/widgets.php:467
+msgid "Refresh"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:236
-msgid "Type"
+#: ../../include/widgets.php:507
+msgid "Account settings"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:238 ../../mod/sharedwithme.php:98
-msgid "Last Modified"
+#: ../../include/widgets.php:513
+msgid "Channel settings"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:240 ../../include/menu.php:108
-#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36
-#: ../../include/ItemObject.php:100 ../../include/apps.php:259
-#: ../../mod/blocks.php:153 ../../mod/editwebpage.php:176
-#: ../../mod/thing.php:257 ../../mod/editblock.php:135
-#: ../../mod/editlayout.php:134 ../../mod/settings.php:648
-#: ../../mod/webpages.php:181 ../../mod/layouts.php:183
-#: ../../mod/editpost.php:112 ../../mod/connections.php:235
-#: ../../mod/connections.php:248 ../../mod/connections.php:267
-#: ../../mod/menu.php:108
-msgid "Edit"
+#: ../../include/widgets.php:522
+msgid "Additional features"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:241 ../../include/conversation.php:657
-#: ../../include/ItemObject.php:120 ../../include/apps.php:260
-#: ../../mod/group.php:173 ../../mod/blocks.php:155 ../../mod/connedit.php:551
-#: ../../mod/editwebpage.php:223 ../../mod/thing.php:258
-#: ../../mod/editblock.php:181 ../../mod/admin.php:821 ../../mod/admin.php:980
-#: ../../mod/editlayout.php:179 ../../mod/settings.php:649
-#: ../../mod/webpages.php:183 ../../mod/photos.php:1126
-msgid "Delete"
+#: ../../include/widgets.php:529
+msgid "Feature/Addon settings"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:282
-#, php-format
-msgid "You are using %1$s of your available file storage."
+#: ../../include/widgets.php:535
+msgid "Display settings"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:287
-#, php-format
-msgid "You are using %1$s of %2$s available file storage. (%3$s&#37;)"
+#: ../../include/widgets.php:542
+msgid "Manage locations"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:299
-msgid "WARNING:"
+#: ../../include/widgets.php:551
+msgid "Export channel"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:302
-msgid "Create new folder"
+#: ../../include/widgets.php:558
+msgid "Connected apps"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:304
-msgid "Upload file"
+#: ../../include/widgets.php:565 ../../mod/connedit.php:701
+msgid "Connection Default Permissions"
msgstr ""
-#: ../../include/js_strings.php:5
-msgid "Delete this item?"
+#: ../../include/widgets.php:573
+msgid "Premium Channel Settings"
msgstr ""
-#: ../../include/js_strings.php:6 ../../include/ItemObject.php:696
-#: ../../mod/photos.php:1044 ../../mod/photos.php:1162
-msgid "Comment"
+#: ../../include/widgets.php:581 ../../include/features.php:71
+#: ../../mod/sources.php:88
+msgid "Channel Sources"
msgstr ""
-#: ../../include/js_strings.php:7 ../../include/ItemObject.php:413
-msgid "[+] show all"
+#: ../../include/widgets.php:589 ../../include/apps.php:134
+#: ../../include/nav.php:205 ../../mod/admin.php:1266 ../../mod/admin.php:1488
+msgid "Settings"
msgstr ""
-#: ../../include/js_strings.php:8
-msgid "[-] show less"
+#: ../../include/widgets.php:602
+msgid "Private Mail Menu"
msgstr ""
-#: ../../include/js_strings.php:9
-msgid "[+] expand"
+#: ../../include/widgets.php:604
+msgid "Combined View"
msgstr ""
-#: ../../include/js_strings.php:10
-msgid "[-] collapse"
+#: ../../include/widgets.php:609 ../../include/nav.php:193
+msgid "Inbox"
msgstr ""
-#: ../../include/js_strings.php:11
-msgid "Password too short"
+#: ../../include/widgets.php:614 ../../include/nav.php:194
+msgid "Outbox"
msgstr ""
-#: ../../include/js_strings.php:12
-msgid "Passwords do not match"
+#: ../../include/widgets.php:619 ../../include/nav.php:195
+msgid "New Message"
msgstr ""
-#: ../../include/js_strings.php:13 ../../mod/photos.php:41
-msgid "everybody"
+#: ../../include/widgets.php:636 ../../include/widgets.php:648
+msgid "Conversations"
msgstr ""
-#: ../../include/js_strings.php:14
-msgid "Secret Passphrase"
+#: ../../include/widgets.php:640
+msgid "Received Messages"
msgstr ""
-#: ../../include/js_strings.php:15
-msgid "Passphrase hint"
+#: ../../include/widgets.php:644
+msgid "Sent Messages"
msgstr ""
-#: ../../include/js_strings.php:16
-msgid "Notice: Permissions have changed but have not yet been submitted."
+#: ../../include/widgets.php:658
+msgid "No messages."
msgstr ""
-#: ../../include/js_strings.php:17
-msgid "close all"
+#: ../../include/widgets.php:676
+msgid "Delete conversation"
msgstr ""
-#: ../../include/js_strings.php:18
-msgid "Nothing new here"
+#: ../../include/widgets.php:702
+msgid "Events Menu"
msgstr ""
-#: ../../include/js_strings.php:19
-msgid "Rate This Channel (this is public)"
+#: ../../include/widgets.php:703
+msgid "Day View"
msgstr ""
-#: ../../include/js_strings.php:20 ../../mod/rate.php:157
-#: ../../mod/connedit.php:694
-msgid "Rating"
+#: ../../include/widgets.php:704
+msgid "Week View"
msgstr ""
-#: ../../include/js_strings.php:21
-msgid "Describe (optional)"
+#: ../../include/widgets.php:705
+msgid "Month View"
msgstr ""
-#: ../../include/js_strings.php:22 ../../include/widgets.php:676
-#: ../../include/widgets.php:688 ../../include/ItemObject.php:697
-#: ../../mod/filestorage.php:156 ../../mod/group.php:81
-#: ../../mod/connect.php:93 ../../mod/rate.php:168 ../../mod/mood.php:135
-#: ../../mod/setup.php:331 ../../mod/setup.php:371 ../../mod/pconfig.php:108
-#: ../../mod/poke.php:171 ../../mod/profiles.php:675
-#: ../../mod/connedit.php:715 ../../mod/fsuggest.php:108
-#: ../../mod/sources.php:104 ../../mod/sources.php:138
-#: ../../mod/import.php:527 ../../mod/invite.php:142 ../../mod/thing.php:313
-#: ../../mod/thing.php:359 ../../mod/import_items.php:122
-#: ../../mod/pdledit.php:58 ../../mod/admin.php:447 ../../mod/admin.php:814
-#: ../../mod/admin.php:978 ../../mod/admin.php:1115 ../../mod/admin.php:1309
-#: ../../mod/admin.php:1394 ../../mod/settings.php:586
-#: ../../mod/settings.php:698 ../../mod/settings.php:726
-#: ../../mod/settings.php:749 ../../mod/settings.php:834
-#: ../../mod/settings.php:1023 ../../mod/appman.php:99 ../../mod/locs.php:116
-#: ../../mod/xchan.php:11 ../../mod/photos.php:637 ../../mod/photos.php:1005
-#: ../../mod/photos.php:1045 ../../mod/photos.php:1163 ../../mod/chat.php:184
-#: ../../mod/chat.php:213 ../../mod/mail.php:380 ../../mod/events.php:461
-#: ../../mod/events.php:658 ../../mod/mitem.php:231
-#: ../../view/theme/redbasic/php/config.php:99
-msgid "Submit"
+#: ../../include/widgets.php:706 ../../mod/events.php:661
+#: ../../mod/cal.php:328
+msgid "Export"
msgstr ""
-#: ../../include/js_strings.php:23
-msgid "Please enter a link URL"
+#: ../../include/widgets.php:707 ../../mod/events.php:664
+#: ../../mod/cal.php:331
+msgid "Import"
msgstr ""
-#: ../../include/js_strings.php:24
-msgid "Unsaved changes. Are you sure you wish to leave this page?"
+#: ../../include/widgets.php:717
+msgid "Events Tools"
msgstr ""
-#: ../../include/js_strings.php:25 ../../mod/pubsites.php:28
-#: ../../mod/profiles.php:464 ../../mod/events.php:452
-msgid "Location"
+#: ../../include/widgets.php:718
+msgid "Export Calendar"
msgstr ""
-#: ../../include/js_strings.php:27
-msgid "timeago.prefixAgo"
+#: ../../include/widgets.php:719
+msgid "Import Calendar"
msgstr ""
-#: ../../include/js_strings.php:28
-msgid "timeago.prefixFromNow"
+#: ../../include/widgets.php:794 ../../include/conversation.php:1678
+#: ../../include/conversation.php:1681
+msgid "Chatrooms"
msgstr ""
-#: ../../include/js_strings.php:29
-msgid "ago"
+#: ../../include/widgets.php:798
+msgid "Overview"
msgstr ""
-#: ../../include/js_strings.php:30
-msgid "from now"
+#: ../../include/widgets.php:805
+msgid "Chat Members"
msgstr ""
-#: ../../include/js_strings.php:31
-msgid "less than a minute"
+#: ../../include/widgets.php:828
+msgid "Bookmarked Chatrooms"
msgstr ""
-#: ../../include/js_strings.php:32
-msgid "about a minute"
+#: ../../include/widgets.php:851
+msgid "Suggested Chatrooms"
msgstr ""
-#: ../../include/js_strings.php:33
-#, php-format
-msgid "%d minutes"
+#: ../../include/widgets.php:996 ../../include/widgets.php:1108
+msgid "photo/image"
msgstr ""
-#: ../../include/js_strings.php:34
-msgid "about an hour"
+#: ../../include/widgets.php:1051
+msgid "Click to show more"
msgstr ""
-#: ../../include/js_strings.php:35
-#, php-format
-msgid "about %d hours"
+#: ../../include/widgets.php:1202
+msgid "Rating Tools"
msgstr ""
-#: ../../include/js_strings.php:36
-msgid "a day"
+#: ../../include/widgets.php:1206 ../../include/widgets.php:1208
+msgid "Rate Me"
msgstr ""
-#: ../../include/js_strings.php:37
-#, php-format
-msgid "%d days"
+#: ../../include/widgets.php:1211
+msgid "View Ratings"
msgstr ""
-#: ../../include/js_strings.php:38
-msgid "about a month"
+#: ../../include/widgets.php:1222 ../../mod/pubsites.php:18
+msgid "Public Hubs"
msgstr ""
-#: ../../include/js_strings.php:39
-#, php-format
-msgid "%d months"
+#: ../../include/widgets.php:1268
+msgid "Forums"
msgstr ""
-#: ../../include/js_strings.php:40
-msgid "about a year"
+#: ../../include/widgets.php:1297
+msgid "Tasks"
msgstr ""
-#: ../../include/js_strings.php:41
-#, php-format
-msgid "%d years"
+#: ../../include/widgets.php:1306
+msgid "Documentation"
msgstr ""
-#: ../../include/js_strings.php:42
-msgid " "
+#: ../../include/widgets.php:1308
+msgid "Project/Site Information"
msgstr ""
-#: ../../include/js_strings.php:43
-msgid "timeago.numbers"
+#: ../../include/widgets.php:1309
+msgid "For Members"
msgstr ""
-#: ../../include/js_strings.php:49
-msgctxt "long"
-msgid "May"
+#: ../../include/widgets.php:1310
+msgid "For Administrators"
msgstr ""
-#: ../../include/js_strings.php:57
-msgid "Jan"
+#: ../../include/widgets.php:1311
+msgid "For Developers"
msgstr ""
-#: ../../include/js_strings.php:58
-msgid "Feb"
+#: ../../include/widgets.php:1334 ../../mod/admin.php:456
+msgid "Site"
msgstr ""
-#: ../../include/js_strings.php:59
-msgid "Mar"
+#: ../../include/widgets.php:1335
+msgid "Accounts"
msgstr ""
-#: ../../include/js_strings.php:60
-msgid "Apr"
+#: ../../include/widgets.php:1335 ../../include/widgets.php:1373
+msgid "Member registrations waiting for confirmation"
msgstr ""
-#: ../../include/js_strings.php:61
-msgctxt "short"
-msgid "May"
+#: ../../include/widgets.php:1336 ../../mod/admin.php:1149
+msgid "Channels"
msgstr ""
-#: ../../include/js_strings.php:62
-msgid "Jun"
+#: ../../include/widgets.php:1337 ../../mod/admin.php:710
+msgid "Security"
msgstr ""
-#: ../../include/js_strings.php:63
-msgid "Jul"
+#: ../../include/widgets.php:1338 ../../include/apps.php:152
+msgid "Features"
msgstr ""
-#: ../../include/js_strings.php:64
-msgid "Aug"
+#: ../../include/widgets.php:1339 ../../mod/admin.php:1264
+#: ../../mod/admin.php:1325
+msgid "Plugins"
msgstr ""
-#: ../../include/js_strings.php:65
-msgid "Sep"
+#: ../../include/widgets.php:1340 ../../mod/admin.php:1486
+#: ../../mod/admin.php:1520
+msgid "Themes"
msgstr ""
-#: ../../include/js_strings.php:66
-msgid "Oct"
+#: ../../include/widgets.php:1341
+msgid "Inspect queue"
msgstr ""
-#: ../../include/js_strings.php:67
-msgid "Nov"
+#: ../../include/widgets.php:1342 ../../mod/admin.php:1760
+msgid "Profile Fields"
msgstr ""
-#: ../../include/js_strings.php:68
-msgid "Dec"
+#: ../../include/widgets.php:1343
+msgid "DB updates"
msgstr ""
-#: ../../include/js_strings.php:76
-msgid "Sun"
+#: ../../include/widgets.php:1361 ../../include/widgets.php:1371
+#: ../../mod/admin.php:1605
+msgid "Logs"
msgstr ""
-#: ../../include/js_strings.php:77
-msgid "Mon"
+#: ../../include/widgets.php:1368 ../../include/nav.php:213
+msgid "Admin"
msgstr ""
-#: ../../include/js_strings.php:78
-msgid "Tue"
+#: ../../include/widgets.php:1369
+msgid "Plugin Features"
msgstr ""
-#: ../../include/js_strings.php:79
-msgid "Wed"
+#: ../../include/widgets.php:1451 ../../mod/photos.php:787
+#: ../../mod/photos.php:1328
+msgid "View Photo"
msgstr ""
-#: ../../include/js_strings.php:80
-msgid "Thu"
+#: ../../include/widgets.php:1468 ../../mod/photos.php:818
+msgid "Edit Album"
msgstr ""
-#: ../../include/js_strings.php:81
-msgid "Fri"
+#: ../../include/activities.php:42
+msgid " and "
msgstr ""
-#: ../../include/js_strings.php:82
-msgid "Sat"
+#: ../../include/activities.php:50
+msgid "public profile"
msgstr ""
-#: ../../include/js_strings.php:83
-msgctxt "calendar"
-msgid "today"
+#: ../../include/activities.php:59
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr ""
-#: ../../include/js_strings.php:84
-msgctxt "calendar"
-msgid "month"
+#: ../../include/activities.php:60
+#, php-format
+msgid "Visit %1$s's %2$s"
msgstr ""
-#: ../../include/js_strings.php:85
-msgctxt "calendar"
-msgid "week"
+#: ../../include/activities.php:63
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
-#: ../../include/js_strings.php:86
-msgctxt "calendar"
-msgid "day"
+#: ../../include/api.php:1336
+msgid "Public Timeline"
msgstr ""
-#: ../../include/js_strings.php:87
-msgctxt "calendar"
-msgid "All day"
+#: ../../include/apps.php:128
+msgid "Site Admin"
msgstr ""
-#: ../../include/Import/import_diaspora.php:17
-msgid "No username found in import file."
+#: ../../include/apps.php:129 ../../include/conversation.php:1691
+#: ../../include/nav.php:102
+msgid "Bookmarks"
msgstr ""
-#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:487
-msgid "Import completed."
+#: ../../include/apps.php:130
+msgid "Address Book"
msgstr ""
-#: ../../include/comanche.php:34 ../../mod/admin.php:356
-msgid "Default"
+#: ../../include/apps.php:131 ../../include/nav.php:110 ../../boot.php:1580
+msgid "Login"
msgstr ""
-#: ../../include/items.php:423 ../../mod/group.php:68 ../../mod/like.php:280
-#: ../../mod/dreport.php:6 ../../mod/dreport.php:45 ../../mod/subthread.php:58
-#: ../../mod/import_items.php:114 ../../mod/profperm.php:23
-#: ../../index.php:364
-msgid "Permission denied"
+#: ../../include/apps.php:132 ../../include/nav.php:203
+#: ../../mod/manage.php:158
+msgid "Channel Manager"
msgstr ""
-#: ../../include/items.php:1130 ../../include/items.php:1176
-msgid "(Unknown)"
+#: ../../include/apps.php:133 ../../include/nav.php:176
+msgid "Grid"
msgstr ""
-#: ../../include/items.php:1373
-msgid "Visible to anybody on the internet."
+#: ../../include/apps.php:136 ../../include/conversation.php:1701
+#: ../../include/nav.php:106 ../../mod/webpages.php:180
+msgid "Webpages"
msgstr ""
-#: ../../include/items.php:1375
-msgid "Visible to you only."
+#: ../../include/apps.php:137 ../../include/nav.php:179
+msgid "Channel Home"
msgstr ""
-#: ../../include/items.php:1377
-msgid "Visible to anybody in this network."
+#: ../../include/apps.php:138 ../../include/identity.php:1389
+#: ../../mod/profperm.php:112
+msgid "Profile"
msgstr ""
-#: ../../include/items.php:1379
-msgid "Visible to anybody authenticated."
+#: ../../include/apps.php:139 ../../include/conversation.php:1647
+#: ../../include/nav.php:92 ../../mod/fbrowser.php:25
+msgid "Photos"
msgstr ""
-#: ../../include/items.php:1381
-#, php-format
-msgid "Visible to anybody on %s."
+#: ../../include/apps.php:140 ../../include/conversation.php:1664
+#: ../../include/conversation.php:1667 ../../include/nav.php:198
+msgid "Events"
msgstr ""
-#: ../../include/items.php:1383
-msgid "Visible to all connections."
+#: ../../include/apps.php:141 ../../include/nav.php:164
+msgid "Directory"
msgstr ""
-#: ../../include/items.php:1385
-msgid "Visible to approved connections."
+#: ../../include/apps.php:142 ../../include/nav.php:155 ../../mod/help.php:222
+#: ../../mod/help.php:227 ../../mod/layouts.php:176
+msgid "Help"
msgstr ""
-#: ../../include/items.php:1387
-msgid "Visible to specific connections."
+#: ../../include/apps.php:143 ../../include/nav.php:190
+msgid "Mail"
msgstr ""
-#: ../../include/items.php:4326 ../../mod/filestorage.php:27
-#: ../../mod/display.php:36 ../../mod/thing.php:86 ../../mod/admin.php:129
-#: ../../mod/admin.php:1017 ../../mod/admin.php:1222 ../../mod/viewsrc.php:20
-msgid "Item not found."
+#: ../../include/apps.php:144 ../../mod/mood.php:131
+msgid "Mood"
msgstr ""
-#: ../../include/items.php:4838 ../../mod/group.php:38 ../../mod/group.php:137
-msgid "Collection not found."
+#: ../../include/apps.php:145 ../../include/conversation.php:965
+#: ../../mod/poke.php:164
+msgid "Poke"
msgstr ""
-#: ../../include/items.php:4854
-msgid "Collection is empty."
+#: ../../include/apps.php:146 ../../include/nav.php:96
+msgid "Chat"
msgstr ""
-#: ../../include/items.php:4861
-#, php-format
-msgid "Collection: %s"
+#: ../../include/apps.php:147 ../../include/nav.php:161
+#: ../../include/text.php:904 ../../include/text.php:916
+#: ../../mod/connections.php:302 ../../mod/search.php:40
+msgid "Search"
msgstr ""
-#: ../../include/items.php:4871 ../../mod/connedit.php:683
-#, php-format
-msgid "Connection: %s"
+#: ../../include/apps.php:148
+msgid "Probe"
msgstr ""
-#: ../../include/items.php:4873
-msgid "Connection not found."
+#: ../../include/apps.php:149
+msgid "Suggest"
msgstr ""
-#: ../../include/event.php:768
-msgid "This event has been added to your calendar."
+#: ../../include/apps.php:150
+msgid "Random Channel"
msgstr ""
-#: ../../include/event.php:967
-msgid "Not specified"
+#: ../../include/apps.php:151
+msgid "Invite"
msgstr ""
-#: ../../include/event.php:968
-msgid "Needs Action"
+#: ../../include/apps.php:153 ../../mod/id.php:28
+msgid "Language"
msgstr ""
-#: ../../include/event.php:969
-msgid "Completed"
+#: ../../include/apps.php:154
+msgid "Post"
msgstr ""
-#: ../../include/event.php:970
-msgid "In Process"
+#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18
+#: ../../mod/id.php:19
+msgid "Profile Photo"
msgstr ""
-#: ../../include/event.php:971
-msgid "Cancelled"
+#: ../../include/apps.php:252 ../../mod/settings.php:84
+#: ../../mod/settings.php:623
+msgid "Update"
msgstr ""
-#: ../../include/identity.php:32
-msgid "Unable to obtain identity information from database"
+#: ../../include/apps.php:252
+msgid "Install"
msgstr ""
-#: ../../include/identity.php:66
-msgid "Empty name"
+#: ../../include/apps.php:257
+msgid "Purchase"
msgstr ""
-#: ../../include/identity.php:69
-msgid "Name too long"
+#: ../../include/auth.php:105
+msgid "Logged out."
msgstr ""
-#: ../../include/identity.php:181
-msgid "No account identifier"
+#: ../../include/auth.php:246
+msgid "Failed authentication"
msgstr ""
-#: ../../include/identity.php:193
-msgid "Nickname is required."
+#: ../../include/auth.php:260 ../../mod/openid.php:189
+msgid "Login failed."
msgstr ""
-#: ../../include/identity.php:207
-msgid "Reserved nickname. Please choose another."
+#: ../../include/bbcode.php:123 ../../include/bbcode.php:803
+#: ../../include/bbcode.php:806 ../../include/bbcode.php:811
+#: ../../include/bbcode.php:814 ../../include/bbcode.php:817
+#: ../../include/bbcode.php:820 ../../include/bbcode.php:825
+#: ../../include/bbcode.php:828 ../../include/bbcode.php:833
+#: ../../include/bbcode.php:836 ../../include/bbcode.php:839
+#: ../../include/bbcode.php:842
+msgid "Image/photo"
msgstr ""
-#: ../../include/identity.php:212
-msgid ""
-"Nickname has unsupported characters or is already being used on this site."
+#: ../../include/bbcode.php:162 ../../include/bbcode.php:853
+msgid "Encrypted content"
msgstr ""
-#: ../../include/identity.php:288
-msgid "Unable to retrieve created identity"
+#: ../../include/bbcode.php:179
+#, php-format
+msgid "Install %s element: "
msgstr ""
-#: ../../include/identity.php:346
-msgid "Default Profile"
+#: ../../include/bbcode.php:183
+#, php-format
+msgid ""
+"This post contains an installable %s element, however you lack permissions "
+"to install it on this site."
msgstr ""
-#: ../../include/identity.php:390 ../../include/identity.php:391
-#: ../../include/identity.php:398 ../../include/widgets.php:430
-#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:573
-#: ../../mod/settings.php:338 ../../mod/settings.php:342
-#: ../../mod/settings.php:343 ../../mod/settings.php:346
-#: ../../mod/settings.php:357
-msgid "Friends"
+#: ../../include/bbcode.php:193 ../../mod/impel.php:37
+msgid "webpage"
msgstr ""
-#: ../../include/identity.php:770
-msgid "Requested channel is not available."
+#: ../../include/bbcode.php:196 ../../mod/impel.php:47
+msgid "layout"
msgstr ""
-#: ../../include/identity.php:816 ../../mod/filestorage.php:54
-#: ../../mod/connect.php:13 ../../mod/achievements.php:11
-#: ../../mod/blocks.php:29 ../../mod/hcard.php:8 ../../mod/editwebpage.php:28
-#: ../../mod/profile.php:16 ../../mod/editblock.php:29
-#: ../../mod/editlayout.php:27 ../../mod/webpages.php:29
-#: ../../mod/layouts.php:29
-msgid "Requested profile is not available."
+#: ../../include/bbcode.php:199 ../../mod/impel.php:42
+msgid "block"
msgstr ""
-#: ../../include/identity.php:960 ../../mod/profiles.php:782
-msgid "Change profile photo"
+#: ../../include/bbcode.php:202 ../../mod/impel.php:54
+msgid "menu"
msgstr ""
-#: ../../include/identity.php:966
-msgid "Profiles"
+#: ../../include/bbcode.php:257
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
msgstr ""
-#: ../../include/identity.php:966
-msgid "Manage/edit profiles"
+#: ../../include/bbcode.php:259 ../../mod/tagger.php:51
+msgid "post"
msgstr ""
-#: ../../include/identity.php:967 ../../mod/profiles.php:783
-msgid "Create New Profile"
+#: ../../include/bbcode.php:547
+msgid "Different viewers will see this text differently"
msgstr ""
-#: ../../include/identity.php:970 ../../include/nav.php:90
-msgid "Edit Profile"
+#: ../../include/bbcode.php:764
+msgid "$1 spoiler"
msgstr ""
-#: ../../include/identity.php:982 ../../mod/profiles.php:794
-msgid "Profile Image"
+#: ../../include/bbcode.php:791
+msgid "$1 wrote:"
msgstr ""
-#: ../../include/identity.php:985
-msgid "visible to everybody"
+#: ../../include/bb2diaspora.php:376
+msgid "Attachments:"
msgstr ""
-#: ../../include/identity.php:986 ../../mod/profiles.php:677
-#: ../../mod/profiles.php:798
-msgid "Edit visibility"
+#: ../../include/bb2diaspora.php:465 ../../include/event.php:22
+#: ../../include/text.php:1437
+msgid "l F d, Y \\@ g:i A"
msgstr ""
-#: ../../include/identity.php:1002 ../../include/identity.php:1242
-msgid "Gender:"
+#: ../../include/bb2diaspora.php:467
+msgid "$Projectname event notification:"
msgstr ""
-#: ../../include/identity.php:1003 ../../include/identity.php:1286
-msgid "Status:"
+#: ../../include/bb2diaspora.php:471 ../../include/event.php:30
+#: ../../include/text.php:1441
+msgid "Starts:"
msgstr ""
-#: ../../include/identity.php:1004 ../../include/identity.php:1297
-msgid "Homepage:"
+#: ../../include/bb2diaspora.php:479 ../../include/event.php:40
+#: ../../include/text.php:1445
+msgid "Finishes:"
msgstr ""
-#: ../../include/identity.php:1005
-msgid "Online Now"
+#: ../../include/bb2diaspora.php:487 ../../include/event.php:52
+#: ../../include/identity.php:1023 ../../include/text.php:1452
+#: ../../mod/directory.php:307
+msgid "Location:"
msgstr ""
-#: ../../include/identity.php:1089 ../../include/identity.php:1167
-#: ../../mod/ping.php:318
-msgid "g A l F d"
+#: ../../include/bookmarks.php:35
+#, php-format
+msgid "%1$s's bookmarks"
msgstr ""
-#: ../../include/identity.php:1090 ../../include/identity.php:1168
-msgid "F d"
+#: ../../include/zot.php:680
+msgid "Invalid data packet"
msgstr ""
-#: ../../include/identity.php:1135 ../../include/identity.php:1207
-#: ../../mod/ping.php:341
-msgid "[today]"
+#: ../../include/zot.php:696
+msgid "Unable to verify channel signature"
msgstr ""
-#: ../../include/identity.php:1146
-msgid "Birthday Reminders"
+#: ../../include/zot.php:2332
+#, php-format
+msgid "Unable to verify site signature for %s"
msgstr ""
-#: ../../include/identity.php:1147
-msgid "Birthdays this week:"
+#: ../../include/zot.php:3670
+msgid "invalid target signature"
msgstr ""
-#: ../../include/identity.php:1200
-msgid "[No description]"
-msgstr ""
+#: ../../include/contact_widgets.php:14
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/identity.php:1218
-msgid "Event Reminders"
+#: ../../include/contact_widgets.php:19 ../../mod/admin.php:461
+msgid "Advanced"
msgstr ""
-#: ../../include/identity.php:1219
-msgid "Events this week:"
+#: ../../include/contact_widgets.php:22
+msgid "Find Channels"
msgstr ""
-#: ../../include/identity.php:1232 ../../include/identity.php:1349
-#: ../../include/apps.php:138 ../../mod/profperm.php:112
-msgid "Profile"
+#: ../../include/contact_widgets.php:23
+msgid "Enter name or interest"
msgstr ""
-#: ../../include/identity.php:1240 ../../mod/settings.php:1029
-msgid "Full Name:"
+#: ../../include/contact_widgets.php:24
+msgid "Connect/Follow"
msgstr ""
-#: ../../include/identity.php:1247
-msgid "Like this channel"
+#: ../../include/contact_widgets.php:25
+msgid "Examples: Robert Morgenstein, Fishing"
msgstr ""
-#: ../../include/identity.php:1258 ../../include/taxonomy.php:414
-#: ../../include/conversation.php:1721 ../../include/ItemObject.php:179
-#: ../../mod/photos.php:1083
-msgctxt "noun"
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/contact_widgets.php:26 ../../mod/connections.php:305
+#: ../../mod/directory.php:384 ../../mod/directory.php:389
+msgid "Find"
+msgstr ""
-#: ../../include/identity.php:1271
-msgid "j F, Y"
+#: ../../include/contact_widgets.php:27 ../../mod/directory.php:388
+#: ../../mod/suggest.php:60
+msgid "Channel Suggestions"
msgstr ""
-#: ../../include/identity.php:1272
-msgid "j F"
+#: ../../include/contact_widgets.php:29
+msgid "Random Profile"
msgstr ""
-#: ../../include/identity.php:1279
-msgid "Birthday:"
+#: ../../include/contact_widgets.php:30
+msgid "Invite Friends"
msgstr ""
-#: ../../include/identity.php:1283 ../../mod/directory.php:299
-msgid "Age:"
+#: ../../include/contact_widgets.php:32
+msgid "Advanced example: name=fred and country=iceland"
msgstr ""
-#: ../../include/identity.php:1292
+#: ../../include/contact_widgets.php:128
#, php-format
-msgid "for %1$d %2$s"
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/contact_widgets.php:133
+msgid "show more"
msgstr ""
-#: ../../include/identity.php:1295 ../../mod/profiles.php:699
-msgid "Sexual Preference:"
+#: ../../include/dir_fns.php:139
+msgid "Directory Options"
msgstr ""
-#: ../../include/identity.php:1299 ../../mod/profiles.php:701
-#: ../../mod/directory.php:315
-msgid "Hometown:"
+#: ../../include/dir_fns.php:141
+msgid "Safe Mode"
msgstr ""
-#: ../../include/identity.php:1301
-msgid "Tags:"
+#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
+#: ../../include/dir_fns.php:143 ../../mod/api.php:102
+#: ../../mod/connedit.php:375 ../../mod/connedit.php:653
+#: ../../mod/events.php:454 ../../mod/events.php:455 ../../mod/events.php:464
+#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
+#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
+#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229
+#: ../../mod/photos.php:661 ../../mod/admin.php:425 ../../mod/profiles.php:647
+#: ../../mod/removeme.php:60 ../../mod/settings.php:588
+#: ../../view/theme/redbasic/php/config.php:105
+#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1584
+msgid "No"
msgstr ""
-#: ../../include/identity.php:1303 ../../mod/profiles.php:702
-msgid "Political Views:"
+#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
+#: ../../include/dir_fns.php:143 ../../mod/api.php:101
+#: ../../mod/connedit.php:375 ../../mod/events.php:454
+#: ../../mod/events.php:455 ../../mod/events.php:464
+#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
+#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/mitem.php:154
+#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229
+#: ../../mod/photos.php:661 ../../mod/admin.php:427 ../../mod/profiles.php:647
+#: ../../mod/removeme.php:60 ../../mod/settings.php:588
+#: ../../view/theme/redbasic/php/config.php:105
+#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1584
+msgid "Yes"
msgstr ""
-#: ../../include/identity.php:1305
-msgid "Religion:"
+#: ../../include/dir_fns.php:142
+msgid "Public Forums Only"
msgstr ""
-#: ../../include/identity.php:1307 ../../mod/directory.php:317
-msgid "About:"
+#: ../../include/dir_fns.php:143
+msgid "This Website Only"
msgstr ""
-#: ../../include/identity.php:1309
-msgid "Hobbies/Interests:"
+#: ../../include/enotify.php:57 ../../include/network.php:1827
+msgid "$Projectname Notification"
msgstr ""
-#: ../../include/identity.php:1311 ../../mod/profiles.php:705
-msgid "Likes:"
+#: ../../include/enotify.php:58 ../../include/network.php:1828
+msgid "$projectname"
msgstr ""
-#: ../../include/identity.php:1313 ../../mod/profiles.php:706
-msgid "Dislikes:"
+#: ../../include/enotify.php:60 ../../include/network.php:1830
+msgid "Thank You,"
msgstr ""
-#: ../../include/identity.php:1315
-msgid "Contact information and Social Networks:"
+#: ../../include/enotify.php:62 ../../include/network.php:1832
+#, php-format
+msgid "%s Administrator"
msgstr ""
-#: ../../include/identity.php:1317
-msgid "My other channels:"
+#: ../../include/enotify.php:96
+#, php-format
+msgid "%s <!item_type!>"
msgstr ""
-#: ../../include/identity.php:1319
-msgid "Musical interests:"
+#: ../../include/enotify.php:100
+#, php-format
+msgid "[Hubzilla:Notify] New mail received at %s"
msgstr ""
-#: ../../include/identity.php:1321
-msgid "Books, literature:"
+#: ../../include/enotify.php:102
+#, php-format
+msgid "%1$s, %2$s sent you a new private message at %3$s."
msgstr ""
-#: ../../include/identity.php:1323
-msgid "Television:"
+#: ../../include/enotify.php:103
+#, php-format
+msgid "%1$s sent you %2$s."
msgstr ""
-#: ../../include/identity.php:1325
-msgid "Film/dance/culture/entertainment:"
+#: ../../include/enotify.php:103
+msgid "a private message"
msgstr ""
-#: ../../include/identity.php:1327
-msgid "Love/Romance:"
+#: ../../include/enotify.php:104
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
msgstr ""
-#: ../../include/identity.php:1329
-msgid "Work/employment:"
+#: ../../include/enotify.php:160
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
msgstr ""
-#: ../../include/identity.php:1331
-msgid "School/education:"
+#: ../../include/enotify.php:168
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
msgstr ""
-#: ../../include/identity.php:1351
-msgid "Like this thing"
+#: ../../include/enotify.php:177
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
msgstr ""
-#: ../../include/taxonomy.php:240 ../../include/taxonomy.php:261
-msgid "Tags"
+#: ../../include/enotify.php:188
+#, php-format
+msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s"
msgstr ""
-#: ../../include/taxonomy.php:282 ../../include/widgets.php:36
-#: ../../include/contact_widgets.php:95
-msgid "Categories"
+#: ../../include/enotify.php:189
+#, php-format
+msgid "%1$s, %2$s commented on an item/conversation you have been following."
msgstr ""
-#: ../../include/taxonomy.php:305
-msgid "Keywords"
+#: ../../include/enotify.php:192 ../../include/enotify.php:207
+#: ../../include/enotify.php:233 ../../include/enotify.php:251
+#: ../../include/enotify.php:265
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
msgstr ""
-#: ../../include/taxonomy.php:326
-msgid "have"
+#: ../../include/enotify.php:198
+#, php-format
+msgid "[Hubzilla:Notify] %s posted to your profile wall"
msgstr ""
-#: ../../include/taxonomy.php:326
-msgid "has"
+#: ../../include/enotify.php:200
+#, php-format
+msgid "%1$s, %2$s posted to your profile wall at %3$s"
msgstr ""
-#: ../../include/taxonomy.php:327
-msgid "want"
+#: ../../include/enotify.php:202
+#, php-format
+msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
msgstr ""
-#: ../../include/taxonomy.php:327
-msgid "wants"
+#: ../../include/enotify.php:226
+#, php-format
+msgid "[Hubzilla:Notify] %s tagged you"
msgstr ""
-#: ../../include/taxonomy.php:328 ../../include/ItemObject.php:254
-msgid "like"
+#: ../../include/enotify.php:227
+#, php-format
+msgid "%1$s, %2$s tagged you at %3$s"
msgstr ""
-#: ../../include/taxonomy.php:328
-msgid "likes"
+#: ../../include/enotify.php:228
+#, php-format
+msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
msgstr ""
-#: ../../include/taxonomy.php:329 ../../include/ItemObject.php:255
-msgid "dislike"
+#: ../../include/enotify.php:240
+#, php-format
+msgid "[Hubzilla:Notify] %1$s poked you"
msgstr ""
-#: ../../include/taxonomy.php:329
-msgid "dislikes"
+#: ../../include/enotify.php:241
+#, php-format
+msgid "%1$s, %2$s poked you at %3$s"
msgstr ""
-#: ../../include/photos.php:112
+#: ../../include/enotify.php:242
#, php-format
-msgid "Image exceeds website size limit of %lu bytes"
+msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
msgstr ""
-#: ../../include/photos.php:119
-msgid "Image file is empty."
+#: ../../include/enotify.php:258
+#, php-format
+msgid "[Hubzilla:Notify] %s tagged your post"
msgstr ""
-#: ../../include/photos.php:146 ../../mod/profile_photo.php:225
-msgid "Unable to process image"
+#: ../../include/enotify.php:259
+#, php-format
+msgid "%1$s, %2$s tagged your post at %3$s"
msgstr ""
-#: ../../include/photos.php:257
-msgid "Photo storage failed."
+#: ../../include/enotify.php:260
+#, php-format
+msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]"
msgstr ""
-#: ../../include/photos.php:297
-msgid "a new photo"
+#: ../../include/enotify.php:272
+msgid "[Hubzilla:Notify] Introduction received"
msgstr ""
-#: ../../include/photos.php:301
+#: ../../include/enotify.php:273
#, php-format
-msgctxt "photo_upload"
-msgid "%1$s posted %2$s to %3$s"
+msgid "%1$s, you've received an new connection request from '%2$s' at %3$s"
msgstr ""
-#: ../../include/photos.php:506 ../../include/conversation.php:1625
-msgid "Photo Albums"
+#: ../../include/enotify.php:274
+#, php-format
+msgid ""
+"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s."
msgstr ""
-#: ../../include/photos.php:510
-msgid "Upload New Photos"
+#: ../../include/enotify.php:278 ../../include/enotify.php:297
+#, php-format
+msgid "You may visit their profile at %s"
msgstr ""
-#: ../../include/acl_selectors.php:240
-msgid "Visible to your default audience"
+#: ../../include/enotify.php:280
+#, php-format
+msgid "Please visit %s to approve or reject the connection request."
msgstr ""
-#: ../../include/acl_selectors.php:241
-msgid "Show"
+#: ../../include/enotify.php:287
+msgid "[Hubzilla:Notify] Friend suggestion received"
msgstr ""
-#: ../../include/acl_selectors.php:242
-msgid "Don't show"
+#: ../../include/enotify.php:288
+#, php-format
+msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
msgstr ""
-#: ../../include/acl_selectors.php:247
-msgid "Other networks and post services"
+#: ../../include/enotify.php:289
+#, php-format
+msgid ""
+"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s."
msgstr ""
-#: ../../include/acl_selectors.php:249 ../../mod/filestorage.php:147
-#: ../../mod/thing.php:310 ../../mod/thing.php:356 ../../mod/photos.php:631
-#: ../../mod/photos.php:998 ../../mod/chat.php:211
-msgid "Permissions"
+#: ../../include/enotify.php:295
+msgid "Name:"
msgstr ""
-#: ../../include/acl_selectors.php:250 ../../include/ItemObject.php:384
-#: ../../mod/photos.php:1215
-msgid "Close"
+#: ../../include/enotify.php:296
+msgid "Photo:"
msgstr ""
-#: ../../include/activities.php:42
-msgid " and "
+#: ../../include/enotify.php:299
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
msgstr ""
-#: ../../include/activities.php:50
-msgid "public profile"
+#: ../../include/enotify.php:514
+msgid "[Hubzilla:Notify]"
msgstr ""
-#: ../../include/activities.php:59
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+#: ../../include/conversation.php:120 ../../include/text.php:1967
+#: ../../mod/like.php:367 ../../mod/subthread.php:83 ../../mod/tagger.php:43
+msgid "photo"
msgstr ""
-#: ../../include/activities.php:60
-#, php-format
-msgid "Visit %1$s's %2$s"
+#: ../../include/conversation.php:123 ../../include/event.php:915
+#: ../../include/text.php:1970 ../../mod/events.php:249 ../../mod/like.php:369
+#: ../../mod/tagger.php:47
+msgid "event"
msgstr ""
-#: ../../include/activities.php:63
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
+#: ../../include/conversation.php:126 ../../mod/like.php:113
+msgid "channel"
msgstr ""
-#: ../../include/attach.php:246 ../../include/attach.php:332
-msgid "Item was not found."
+#: ../../include/conversation.php:148 ../../include/text.php:1973
+#: ../../mod/like.php:367 ../../mod/subthread.php:83
+msgid "status"
msgstr ""
-#: ../../include/attach.php:496
-msgid "No source file."
+#: ../../include/conversation.php:150 ../../include/text.php:1975
+#: ../../mod/tagger.php:53
+msgid "comment"
msgstr ""
-#: ../../include/attach.php:518
-msgid "Cannot locate file to replace"
+#: ../../include/conversation.php:164 ../../mod/like.php:416
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
msgstr ""
-#: ../../include/attach.php:536
-msgid "Cannot locate file to revise/update"
+#: ../../include/conversation.php:167 ../../mod/like.php:418
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
msgstr ""
-#: ../../include/attach.php:671
+#: ../../include/conversation.php:204
#, php-format
-msgid "File exceeds size limit of %d"
+msgid "%1$s is now connected with %2$s"
msgstr ""
-#: ../../include/attach.php:685
+#: ../../include/conversation.php:239
#, php-format
-msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
+msgid "%1$s poked %2$s"
msgstr ""
-#: ../../include/attach.php:841
-msgid "File upload failed. Possible system limit or action terminated."
+#: ../../include/conversation.php:243 ../../include/text.php:992
+#: ../../include/text.php:997
+msgid "poked"
msgstr ""
-#: ../../include/attach.php:854
-msgid "Stored file could not be verified. Upload failed."
+#: ../../include/conversation.php:260 ../../mod/mood.php:63
+#, php-format
+msgctxt "mood"
+msgid "%1$s is %2$s"
msgstr ""
-#: ../../include/attach.php:902 ../../include/attach.php:918
-msgid "Path not available."
+#: ../../include/conversation.php:574 ../../mod/photos.php:1102
+msgctxt "title"
+msgid "Likes"
msgstr ""
-#: ../../include/attach.php:964 ../../include/attach.php:1116
-msgid "Empty pathname"
+#: ../../include/conversation.php:574 ../../mod/photos.php:1102
+msgctxt "title"
+msgid "Dislikes"
msgstr ""
-#: ../../include/attach.php:990
-msgid "duplicate filename or path"
+#: ../../include/conversation.php:575 ../../mod/photos.php:1103
+msgctxt "title"
+msgid "Agree"
msgstr ""
-#: ../../include/attach.php:1012
-msgid "Path not found."
+#: ../../include/conversation.php:575 ../../mod/photos.php:1103
+msgctxt "title"
+msgid "Disagree"
msgstr ""
-#: ../../include/attach.php:1070
-msgid "mkdir failed."
+#: ../../include/conversation.php:575 ../../mod/photos.php:1103
+msgctxt "title"
+msgid "Abstain"
msgstr ""
-#: ../../include/attach.php:1074
-msgid "database storage failed."
+#: ../../include/conversation.php:576 ../../mod/photos.php:1104
+msgctxt "title"
+msgid "Attending"
msgstr ""
-#: ../../include/attach.php:1122
-msgid "Empty path"
+#: ../../include/conversation.php:576 ../../mod/photos.php:1104
+msgctxt "title"
+msgid "Not attending"
msgstr ""
-#: ../../include/notify.php:20
-msgid "created a new post"
+#: ../../include/conversation.php:576 ../../mod/photos.php:1104
+msgctxt "title"
+msgid "Might attend"
msgstr ""
-#: ../../include/notify.php:21
+#: ../../include/conversation.php:691
#, php-format
-msgid "commented on %s's post"
+msgid "View %s's profile @ %s"
msgstr ""
-#: ../../include/widgets.php:92 ../../include/nav.php:157
-#: ../../mod/apps.php:36
-msgid "Apps"
+#: ../../include/conversation.php:710
+msgid "Categories:"
msgstr ""
-#: ../../include/widgets.php:93
-msgid "System"
+#: ../../include/conversation.php:711
+msgid "Filed under:"
msgstr ""
-#: ../../include/widgets.php:95 ../../include/conversation.php:1526
-msgid "Personal"
+#: ../../include/conversation.php:738
+msgid "View in context"
msgstr ""
-#: ../../include/widgets.php:96
-msgid "Create Personal App"
+#: ../../include/conversation.php:850
+msgid "remove"
msgstr ""
-#: ../../include/widgets.php:97
-msgid "Edit Personal App"
+#: ../../include/conversation.php:854 ../../include/nav.php:244
+msgid "Loading..."
msgstr ""
-#: ../../include/widgets.php:139 ../../mod/suggest.php:54
-msgid "Ignore/Hide"
+#: ../../include/conversation.php:855
+msgid "Delete Selected Items"
msgstr ""
-#: ../../include/widgets.php:144 ../../mod/connections.php:125
-msgid "Suggestions"
+#: ../../include/conversation.php:953
+msgid "View Source"
msgstr ""
-#: ../../include/widgets.php:145
-msgid "See more..."
+#: ../../include/conversation.php:954
+msgid "Follow Thread"
msgstr ""
-#: ../../include/widgets.php:166
-#, php-format
-msgid "You have %1$.0f of %2$.0f allowed connections."
+#: ../../include/conversation.php:955
+msgid "Unfollow Thread"
msgstr ""
-#: ../../include/widgets.php:172
-msgid "Add New Connection"
+#: ../../include/conversation.php:959 ../../include/nav.php:86
+#: ../../mod/connedit.php:516
+msgid "View Profile"
msgstr ""
-#: ../../include/widgets.php:173
-msgid "Enter the channel address"
+#: ../../include/conversation.php:960
+msgid "Activity/Posts"
msgstr ""
-#: ../../include/widgets.php:174
-msgid "Example: bob@example.com, http://example.com/barbara"
+#: ../../include/conversation.php:962
+msgid "Edit Connection"
msgstr ""
-#: ../../include/widgets.php:190
-msgid "Notes"
+#: ../../include/conversation.php:963
+msgid "Message"
msgstr ""
-#: ../../include/widgets.php:266
-msgid "Remove term"
+#: ../../include/conversation.php:964 ../../mod/pubsites.php:27
+#: ../../mod/ratings.php:99
+msgid "Ratings"
msgstr ""
-#: ../../include/widgets.php:274 ../../include/features.php:72
-msgid "Saved Searches"
+#: ../../include/conversation.php:1080
+#, php-format
+msgid "%s likes this."
msgstr ""
-#: ../../include/widgets.php:275 ../../include/group.php:300
-msgid "add"
+#: ../../include/conversation.php:1080
+#, php-format
+msgid "%s doesn't like this."
msgstr ""
-#: ../../include/widgets.php:304 ../../include/features.php:85
-#: ../../include/contact_widgets.php:57
-msgid "Saved Folders"
-msgstr ""
+#: ../../include/conversation.php:1084
+#, 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/widgets.php:307 ../../include/contact_widgets.php:60
-#: ../../include/contact_widgets.php:98
-msgid "Everything"
-msgstr ""
+#: ../../include/conversation.php:1086
+#, 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/widgets.php:349
-msgid "Archives"
+#: ../../include/conversation.php:1092
+msgid "and"
msgstr ""
-#: ../../include/widgets.php:428 ../../mod/connedit.php:571
-msgid "Me"
-msgstr ""
+#: ../../include/conversation.php:1095
+#, php-format
+msgid ", and %d other people"
+msgid_plural ", and %d other people"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/widgets.php:429 ../../mod/connedit.php:572
-msgid "Family"
+#: ../../include/conversation.php:1096
+#, php-format
+msgid "%s like this."
msgstr ""
-#: ../../include/widgets.php:431 ../../mod/connedit.php:574
-msgid "Acquaintances"
+#: ../../include/conversation.php:1096
+#, php-format
+msgid "%s don't like this."
msgstr ""
-#: ../../include/widgets.php:432 ../../mod/connedit.php:575
-#: ../../mod/connections.php:88 ../../mod/connections.php:103
-msgid "All"
+#: ../../include/conversation.php:1169
+msgid "Visible to <strong>everybody</strong>"
msgstr ""
-#: ../../include/widgets.php:451
-msgid "Refresh"
+#: ../../include/conversation.php:1170 ../../mod/chat.php:199
+#: ../../mod/mail.php:202 ../../mod/mail.php:316
+msgid "Please enter a link URL:"
msgstr ""
-#: ../../include/widgets.php:485
-msgid "Account settings"
+#: ../../include/conversation.php:1171
+msgid "Please enter a video link/URL:"
msgstr ""
-#: ../../include/widgets.php:491
-msgid "Channel settings"
+#: ../../include/conversation.php:1172
+msgid "Please enter an audio link/URL:"
msgstr ""
-#: ../../include/widgets.php:497
-msgid "Additional features"
+#: ../../include/conversation.php:1173
+msgid "Tag term:"
msgstr ""
-#: ../../include/widgets.php:503
-msgid "Feature/Addon settings"
+#: ../../include/conversation.php:1174 ../../mod/filer.php:48
+msgid "Save to Folder:"
msgstr ""
-#: ../../include/widgets.php:509
-msgid "Display settings"
+#: ../../include/conversation.php:1175
+msgid "Where are you right now?"
msgstr ""
-#: ../../include/widgets.php:515
-msgid "Connected apps"
+#: ../../include/conversation.php:1176 ../../mod/editpost.php:56
+#: ../../mod/mail.php:203 ../../mod/mail.php:317
+msgid "Expires YYYY-MM-DD HH:MM"
msgstr ""
-#: ../../include/widgets.php:521
-msgid "Export channel"
+#: ../../include/conversation.php:1207 ../../mod/blocks.php:154
+#: ../../mod/layouts.php:184 ../../mod/photos.php:1067
+#: ../../mod/webpages.php:184
+msgid "Share"
msgstr ""
-#: ../../include/widgets.php:530 ../../mod/connedit.php:683
-msgid "Connection Default Permissions"
+#: ../../include/conversation.php:1209
+msgid "Page link name"
msgstr ""
-#: ../../include/widgets.php:538
-msgid "Premium Channel Settings"
+#: ../../include/conversation.php:1212
+msgid "Post as"
msgstr ""
-#: ../../include/widgets.php:546 ../../include/features.php:59
-#: ../../mod/sources.php:88
-msgid "Channel Sources"
+#: ../../include/conversation.php:1219 ../../mod/editblock.php:142
+#: ../../mod/editlayout.php:140 ../../mod/editpost.php:118
+#: ../../mod/editwebpage.php:182
+msgid "Upload photo"
msgstr ""
-#: ../../include/widgets.php:554 ../../include/nav.php:202
-#: ../../include/apps.php:134 ../../mod/admin.php:1076
-#: ../../mod/admin.php:1276
-msgid "Settings"
+#: ../../include/conversation.php:1220
+msgid "upload photo"
msgstr ""
-#: ../../include/widgets.php:568
-msgid "Private Mail Menu"
+#: ../../include/conversation.php:1221 ../../mod/editblock.php:143
+#: ../../mod/editlayout.php:141 ../../mod/editpost.php:119
+#: ../../mod/editwebpage.php:183 ../../mod/mail.php:248 ../../mod/mail.php:378
+msgid "Attach file"
msgstr ""
-#: ../../include/widgets.php:570
-msgid "Combined View"
+#: ../../include/conversation.php:1222
+msgid "attach file"
msgstr ""
-#: ../../include/widgets.php:575 ../../include/nav.php:191
-msgid "Inbox"
+#: ../../include/conversation.php:1223 ../../mod/chat.php:201
+#: ../../mod/editblock.php:144 ../../mod/editlayout.php:142
+#: ../../mod/editpost.php:120 ../../mod/editwebpage.php:184
+#: ../../mod/mail.php:249 ../../mod/mail.php:379
+msgid "Insert web link"
msgstr ""
-#: ../../include/widgets.php:580 ../../include/nav.php:192
-msgid "Outbox"
+#: ../../include/conversation.php:1224
+msgid "web link"
msgstr ""
-#: ../../include/widgets.php:585 ../../include/nav.php:193
-msgid "New Message"
+#: ../../include/conversation.php:1225
+msgid "Insert video link"
msgstr ""
-#: ../../include/widgets.php:604 ../../include/widgets.php:616
-msgid "Conversations"
+#: ../../include/conversation.php:1226
+msgid "video link"
msgstr ""
-#: ../../include/widgets.php:608
-msgid "Received Messages"
+#: ../../include/conversation.php:1227
+msgid "Insert audio link"
msgstr ""
-#: ../../include/widgets.php:612
-msgid "Sent Messages"
+#: ../../include/conversation.php:1228
+msgid "audio link"
msgstr ""
-#: ../../include/widgets.php:626
-msgid "No messages."
+#: ../../include/conversation.php:1229 ../../mod/editblock.php:148
+#: ../../mod/editlayout.php:146 ../../mod/editpost.php:124
+#: ../../mod/editwebpage.php:188
+msgid "Set your location"
msgstr ""
-#: ../../include/widgets.php:644
-msgid "Delete conversation"
+#: ../../include/conversation.php:1230
+msgid "set location"
msgstr ""
-#: ../../include/widgets.php:670
-msgid "Events Menu"
+#: ../../include/conversation.php:1231 ../../mod/editpost.php:126
+msgid "Toggle voting"
msgstr ""
-#: ../../include/widgets.php:671
-msgid "Day View"
+#: ../../include/conversation.php:1234 ../../mod/editblock.php:149
+#: ../../mod/editlayout.php:147 ../../mod/editpost.php:125
+#: ../../mod/editwebpage.php:189
+msgid "Clear browser location"
msgstr ""
-#: ../../include/widgets.php:672
-msgid "Week View"
+#: ../../include/conversation.php:1235
+msgid "clear location"
msgstr ""
-#: ../../include/widgets.php:673
-msgid "Month View"
+#: ../../include/conversation.php:1237 ../../mod/editblock.php:162
+#: ../../mod/editpost.php:141 ../../mod/editwebpage.php:205
+msgid "Title (optional)"
msgstr ""
-#: ../../include/widgets.php:674 ../../mod/events.php:654
-msgid "Export"
+#: ../../include/conversation.php:1241 ../../mod/editblock.php:165
+#: ../../mod/editlayout.php:163 ../../mod/editpost.php:143
+#: ../../mod/editwebpage.php:207
+msgid "Categories (optional, comma-separated list)"
msgstr ""
-#: ../../include/widgets.php:675 ../../mod/events.php:657
-msgid "Import"
+#: ../../include/conversation.php:1243 ../../mod/editblock.php:151
+#: ../../mod/editlayout.php:149 ../../mod/editpost.php:130
+#: ../../mod/editwebpage.php:191 ../../mod/events.php:466
+msgid "Permission settings"
msgstr ""
-#: ../../include/widgets.php:685
-msgid "Events Tools"
+#: ../../include/conversation.php:1244
+msgid "permissions"
msgstr ""
-#: ../../include/widgets.php:686
-msgid "Export Calendar"
+#: ../../include/conversation.php:1252 ../../mod/editblock.php:159
+#: ../../mod/editlayout.php:156 ../../mod/editpost.php:138
+#: ../../mod/editwebpage.php:200
+msgid "Public post"
msgstr ""
-#: ../../include/widgets.php:687
-msgid "Import Calendar"
+#: ../../include/conversation.php:1254 ../../mod/editblock.php:166
+#: ../../mod/editlayout.php:164 ../../mod/editpost.php:144
+#: ../../mod/editwebpage.php:208
+msgid "Example: bob@example.com, mary@example.com"
msgstr ""
-#: ../../include/widgets.php:761
-msgid "Chat Rooms"
+#: ../../include/conversation.php:1267 ../../mod/editblock.php:176
+#: ../../mod/editlayout.php:173 ../../mod/editpost.php:155
+#: ../../mod/editwebpage.php:217 ../../mod/mail.php:253 ../../mod/mail.php:383
+msgid "Set expiration date"
msgstr ""
-#: ../../include/widgets.php:781
-msgid "Bookmarked Chatrooms"
+#: ../../include/conversation.php:1270
+msgid "Set publish date"
msgstr ""
-#: ../../include/widgets.php:801
-msgid "Suggested Chatrooms"
+#: ../../include/conversation.php:1274 ../../mod/editpost.php:159
+msgid "OK"
msgstr ""
-#: ../../include/widgets.php:928 ../../include/widgets.php:986
-msgid "photo/image"
+#: ../../include/conversation.php:1275 ../../mod/editpost.php:160
+#: ../../mod/fbrowser.php:77 ../../mod/fbrowser.php:112
+#: ../../mod/settings.php:598 ../../mod/settings.php:624
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:134
+msgid "Cancel"
msgstr ""
-#: ../../include/widgets.php:1081 ../../include/widgets.php:1083
-msgid "Rate Me"
+#: ../../include/conversation.php:1518
+msgid "Discover"
msgstr ""
-#: ../../include/widgets.php:1087
-msgid "View Ratings"
+#: ../../include/conversation.php:1521
+msgid "Imported public streams"
msgstr ""
-#: ../../include/widgets.php:1098
-msgid "Public Hubs"
+#: ../../include/conversation.php:1526
+msgid "Commented Order"
msgstr ""
-#: ../../include/widgets.php:1146
-msgid "Forums"
+#: ../../include/conversation.php:1529
+msgid "Sort by Comment Date"
msgstr ""
-#: ../../include/widgets.php:1175
-msgid "Tasks"
+#: ../../include/conversation.php:1533
+msgid "Posted Order"
msgstr ""
-#: ../../include/widgets.php:1184
-msgid "Documentation"
+#: ../../include/conversation.php:1536
+msgid "Sort by Post Date"
msgstr ""
-#: ../../include/widgets.php:1186
-msgid "Project/Site Information"
+#: ../../include/conversation.php:1544
+msgid "Posts that mention or involve you"
msgstr ""
-#: ../../include/widgets.php:1187
-msgid "For Members"
+#: ../../include/conversation.php:1550 ../../mod/connections.php:72
+#: ../../mod/connections.php:82 ../../mod/menu.php:112
+msgid "New"
msgstr ""
-#: ../../include/widgets.php:1188
-msgid "For Administrators"
+#: ../../include/conversation.php:1553
+msgid "Activity Stream - by date"
msgstr ""
-#: ../../include/widgets.php:1189
-msgid "For Developers"
+#: ../../include/conversation.php:1559
+msgid "Starred"
msgstr ""
-#: ../../include/widgets.php:1214 ../../mod/admin.php:446
-msgid "Site"
+#: ../../include/conversation.php:1562
+msgid "Favourite Posts"
msgstr ""
-#: ../../include/widgets.php:1215
-msgid "Accounts"
+#: ../../include/conversation.php:1569
+msgid "Spam"
msgstr ""
-#: ../../include/widgets.php:1216 ../../mod/admin.php:977
-msgid "Channels"
+#: ../../include/conversation.php:1572
+msgid "Posts flagged as SPAM"
msgstr ""
-#: ../../include/widgets.php:1217 ../../mod/admin.php:1074
-#: ../../mod/admin.php:1114
-msgid "Plugins"
+#: ../../include/conversation.php:1626 ../../mod/admin.php:1157
+msgid "Channel"
msgstr ""
-#: ../../include/widgets.php:1218 ../../mod/admin.php:1274
-#: ../../mod/admin.php:1308
-msgid "Themes"
+#: ../../include/conversation.php:1629
+msgid "Status Messages and Posts"
msgstr ""
-#: ../../include/widgets.php:1219
-msgid "Inspect queue"
+#: ../../include/conversation.php:1638
+msgid "About"
msgstr ""
-#: ../../include/widgets.php:1220
-msgid "Profile Config"
+#: ../../include/conversation.php:1641
+msgid "Profile Details"
msgstr ""
-#: ../../include/widgets.php:1221
-msgid "DB updates"
+#: ../../include/conversation.php:1650 ../../include/photos.php:506
+msgid "Photo Albums"
msgstr ""
-#: ../../include/widgets.php:1239 ../../include/widgets.php:1245
-#: ../../mod/admin.php:1393
-msgid "Logs"
+#: ../../include/conversation.php:1657
+msgid "Files and Storage"
msgstr ""
-#: ../../include/widgets.php:1243 ../../include/nav.php:210
-msgid "Admin"
+#: ../../include/conversation.php:1694
+msgid "Saved Bookmarks"
msgstr ""
-#: ../../include/widgets.php:1244
-msgid "Plugin Features"
+#: ../../include/conversation.php:1704
+msgid "Manage Webpages"
msgstr ""
-#: ../../include/widgets.php:1246
-msgid "User registrations waiting for confirmation"
-msgstr ""
+#: ../../include/conversation.php:1763
+msgctxt "noun"
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/widgets.php:1324 ../../mod/photos.php:748
-#: ../../mod/photos.php:1283
-msgid "View Photo"
-msgstr ""
+#: ../../include/conversation.php:1766
+msgctxt "noun"
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/widgets.php:1341 ../../mod/photos.php:779
-msgid "Edit Album"
-msgstr ""
+#: ../../include/conversation.php:1769
+msgctxt "noun"
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/bb2diaspora.php:376
-msgid "Attachments:"
-msgstr ""
+#: ../../include/conversation.php:1772
+msgctxt "noun"
+msgid "Agree"
+msgid_plural "Agrees"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/bb2diaspora.php:467
-msgid "$Projectname event notification:"
-msgstr ""
+#: ../../include/conversation.php:1775
+msgctxt "noun"
+msgid "Disagree"
+msgid_plural "Disagrees"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/bookmarks.php:35
-#, php-format
-msgid "%1$s's bookmarks"
-msgstr ""
+#: ../../include/conversation.php:1778
+msgctxt "noun"
+msgid "Abstain"
+msgid_plural "Abstains"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/features.php:38
-msgid "General Features"
+#: ../../include/dba/dba_driver.php:141
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
msgstr ""
-#: ../../include/features.php:40
-msgid "Content Expiration"
+#: ../../include/follow.php:28
+msgid "Channel is blocked on this site."
msgstr ""
-#: ../../include/features.php:40
-msgid "Remove posts/comments and/or private messages at a future time"
+#: ../../include/follow.php:33
+msgid "Channel location missing."
msgstr ""
-#: ../../include/features.php:41
-msgid "Multiple Profiles"
+#: ../../include/follow.php:82
+msgid "Response from remote channel was incomplete."
msgstr ""
-#: ../../include/features.php:41
-msgid "Ability to create multiple profiles"
+#: ../../include/follow.php:99
+msgid "Channel was deleted and no longer exists."
msgstr ""
-#: ../../include/features.php:42
-msgid "Advanced Profiles"
+#: ../../include/follow.php:155 ../../include/follow.php:191
+msgid "Protocol disabled."
msgstr ""
-#: ../../include/features.php:42
-msgid "Additional profile sections and selections"
+#: ../../include/follow.php:179
+msgid "Channel discovery failed."
msgstr ""
-#: ../../include/features.php:43
-msgid "Profile Import/Export"
+#: ../../include/follow.php:217
+msgid "Cannot connect to yourself."
msgstr ""
-#: ../../include/features.php:43
-msgid "Save and load profile details across sites/channels"
+#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1579
+msgid "Logout"
msgstr ""
-#: ../../include/features.php:44
-msgid "Web Pages"
+#: ../../include/nav.php:82 ../../include/nav.php:113
+msgid "End this session"
msgstr ""
-#: ../../include/features.php:44
-msgid "Provide managed web pages on your channel"
+#: ../../include/nav.php:85 ../../include/nav.php:144
+msgid "Home"
msgstr ""
-#: ../../include/features.php:45
-msgid "Private Notes"
+#: ../../include/nav.php:85
+msgid "Your posts and conversations"
msgstr ""
-#: ../../include/features.php:45
-msgid "Enables a tool to store notes and reminders"
+#: ../../include/nav.php:86
+msgid "Your profile page"
msgstr ""
-#: ../../include/features.php:46
-msgid "Navigation Channel Select"
+#: ../../include/nav.php:88 ../../include/identity.php:931
+#: ../../mod/profiles.php:776
+msgid "Edit Profiles"
msgstr ""
-#: ../../include/features.php:46
-msgid "Change channels directly from within the navigation dropdown menu"
+#: ../../include/nav.php:88
+msgid "Manage/Edit profiles"
msgstr ""
-#: ../../include/features.php:47
-msgid "Photo Location"
+#: ../../include/nav.php:90 ../../include/identity.php:935
+msgid "Edit Profile"
msgstr ""
-#: ../../include/features.php:47
-msgid "If location data is available on uploaded photos, link this to a map."
+#: ../../include/nav.php:90
+msgid "Edit your profile"
msgstr ""
-#: ../../include/features.php:49
-msgid "Expert Mode"
+#: ../../include/nav.php:92
+msgid "Your photos"
msgstr ""
-#: ../../include/features.php:49
-msgid "Enable Expert Mode to provide advanced configuration options"
+#: ../../include/nav.php:93
+msgid "Your files"
msgstr ""
-#: ../../include/features.php:50
-msgid "Premium Channel"
+#: ../../include/nav.php:96
+msgid "Your chatrooms"
msgstr ""
-#: ../../include/features.php:50
-msgid ""
-"Allows you to set restrictions and terms on those that connect with your "
-"channel"
+#: ../../include/nav.php:102
+msgid "Your bookmarks"
msgstr ""
-#: ../../include/features.php:55
-msgid "Post Composition Features"
+#: ../../include/nav.php:106
+msgid "Your webpages"
msgstr ""
-#: ../../include/features.php:57
-msgid "Use Markdown"
+#: ../../include/nav.php:110
+msgid "Sign in"
msgstr ""
-#: ../../include/features.php:57
-msgid "Allow use of \"Markdown\" to format posts"
+#: ../../include/nav.php:127
+#, php-format
+msgid "%s - click to logout"
msgstr ""
-#: ../../include/features.php:58
-msgid "Large Photos"
+#: ../../include/nav.php:130
+msgid "Remote authentication"
msgstr ""
-#: ../../include/features.php:58
-msgid ""
-"Include large (1024px) photo thumbnails in posts. If not enabled, use small "
-"(640px) photo thumbnails"
+#: ../../include/nav.php:130
+msgid "Click to authenticate to your home hub"
msgstr ""
-#: ../../include/features.php:59
-msgid "Automatically import channel content from other channels or feeds"
+#: ../../include/nav.php:144
+msgid "Home Page"
msgstr ""
-#: ../../include/features.php:60
-msgid "Even More Encryption"
+#: ../../include/nav.php:148 ../../mod/register.php:258 ../../boot.php:1562
+msgid "Register"
msgstr ""
-#: ../../include/features.php:60
-msgid ""
-"Allow optional encryption of content end-to-end with a shared secret key"
+#: ../../include/nav.php:148
+msgid "Create an account"
msgstr ""
-#: ../../include/features.php:61
-msgid "Enable Voting Tools"
+#: ../../include/nav.php:155
+msgid "Help and documentation"
msgstr ""
-#: ../../include/features.php:61
-msgid "Provide a class of post which others can vote on"
+#: ../../include/nav.php:159
+msgid "Applications, utilities, links, games"
msgstr ""
-#: ../../include/features.php:62
-msgid "Delayed Posting"
+#: ../../include/nav.php:161
+msgid "Search site @name, #tag, ?docs, content"
msgstr ""
-#: ../../include/features.php:62
-msgid "Allow posts to be published at a later date"
+#: ../../include/nav.php:164
+msgid "Channel Directory"
msgstr ""
-#: ../../include/features.php:63
-msgid "Suppress Duplicate Posts/Comments"
+#: ../../include/nav.php:176
+msgid "Your grid"
msgstr ""
-#: ../../include/features.php:63
-msgid ""
-"Prevent posts with identical content to be published with less than two "
-"minutes in between submissions."
+#: ../../include/nav.php:177
+msgid "Mark all grid notifications seen"
msgstr ""
-#: ../../include/features.php:69
-msgid "Network and Stream Filtering"
+#: ../../include/nav.php:179
+msgid "Channel home"
msgstr ""
-#: ../../include/features.php:70
-msgid "Search by Date"
+#: ../../include/nav.php:180
+msgid "Mark all channel notifications seen"
msgstr ""
-#: ../../include/features.php:70
-msgid "Ability to select posts by date ranges"
+#: ../../include/nav.php:183 ../../include/text.php:834
+#: ../../mod/connections.php:298
+msgid "Connections"
msgstr ""
-#: ../../include/features.php:71
-msgid "Collections Filter"
+#: ../../include/nav.php:186
+msgid "Notices"
msgstr ""
-#: ../../include/features.php:71
-msgid "Enable widget to display Network posts only from selected collections"
+#: ../../include/nav.php:186
+msgid "Notifications"
msgstr ""
-#: ../../include/features.php:72
-msgid "Save search terms for re-use"
+#: ../../include/nav.php:187
+msgid "See all notifications"
msgstr ""
-#: ../../include/features.php:73
-msgid "Network Personal Tab"
+#: ../../include/nav.php:188 ../../mod/notifications.php:99
+msgid "Mark all system notifications seen"
msgstr ""
-#: ../../include/features.php:73
-msgid "Enable tab to display only Network posts that you've interacted on"
+#: ../../include/nav.php:190
+msgid "Private mail"
msgstr ""
-#: ../../include/features.php:74
-msgid "Network New Tab"
+#: ../../include/nav.php:191
+msgid "See all private messages"
msgstr ""
-#: ../../include/features.php:74
-msgid "Enable tab to display all new Network activity"
+#: ../../include/nav.php:192
+msgid "Mark all private messages seen"
msgstr ""
-#: ../../include/features.php:75
-msgid "Affinity Tool"
+#: ../../include/nav.php:198
+msgid "Event Calendar"
msgstr ""
-#: ../../include/features.php:75
-msgid "Filter stream activity by depth of relationships"
+#: ../../include/nav.php:199
+msgid "See all events"
msgstr ""
-#: ../../include/features.php:76
-msgid "Connection Filtering"
+#: ../../include/nav.php:200
+msgid "Mark all events seen"
msgstr ""
-#: ../../include/features.php:76
-msgid "Filter incoming posts from connections based on keywords/content"
+#: ../../include/nav.php:203
+msgid "Manage Your Channels"
msgstr ""
-#: ../../include/features.php:77
-msgid "Suggest Channels"
+#: ../../include/nav.php:205
+msgid "Account/Channel Settings"
msgstr ""
-#: ../../include/features.php:77
-msgid "Show channel suggestions"
+#: ../../include/nav.php:213
+msgid "Site Setup and Configuration"
msgstr ""
-#: ../../include/features.php:82
-msgid "Post/Comment Tools"
+#: ../../include/nav.php:249
+msgid "@name, #tag, ?doc, content"
msgstr ""
-#: ../../include/features.php:83
-msgid "Tagging"
+#: ../../include/nav.php:250
+msgid "Please wait..."
msgstr ""
-#: ../../include/features.php:83
-msgid "Ability to tag existing posts"
+#: ../../include/js_strings.php:5
+msgid "Delete this item?"
msgstr ""
-#: ../../include/features.php:84
-msgid "Post Categories"
+#: ../../include/js_strings.php:8
+msgid "[-] show less"
msgstr ""
-#: ../../include/features.php:84
-msgid "Add categories to your posts"
+#: ../../include/js_strings.php:9
+msgid "[+] expand"
msgstr ""
-#: ../../include/features.php:85
-msgid "Ability to file posts under folders"
+#: ../../include/js_strings.php:10
+msgid "[-] collapse"
msgstr ""
-#: ../../include/features.php:86
-msgid "Dislike Posts"
+#: ../../include/js_strings.php:11
+msgid "Password too short"
msgstr ""
-#: ../../include/features.php:86
-msgid "Ability to dislike posts/comments"
+#: ../../include/js_strings.php:12
+msgid "Passwords do not match"
msgstr ""
-#: ../../include/features.php:87
-msgid "Star Posts"
+#: ../../include/js_strings.php:13 ../../mod/photos.php:41
+#: ../../mod/cal.php:37
+msgid "everybody"
msgstr ""
-#: ../../include/features.php:87
-msgid "Ability to mark special posts with a star indicator"
+#: ../../include/js_strings.php:14
+msgid "Secret Passphrase"
msgstr ""
-#: ../../include/features.php:88
-msgid "Tag Cloud"
+#: ../../include/js_strings.php:15
+msgid "Passphrase hint"
msgstr ""
-#: ../../include/features.php:88
-msgid "Provide a personal tag cloud on your channel page"
+#: ../../include/js_strings.php:16
+msgid "Notice: Permissions have changed but have not yet been submitted."
msgstr ""
-#: ../../include/profile_selectors.php:6
-#: ../../include/profile_selectors.php:23 ../../mod/id.php:103
-msgid "Male"
+#: ../../include/js_strings.php:17
+msgid "close all"
msgstr ""
-#: ../../include/profile_selectors.php:6
-#: ../../include/profile_selectors.php:23 ../../mod/id.php:105
-msgid "Female"
+#: ../../include/js_strings.php:18
+msgid "Nothing new here"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
+#: ../../include/js_strings.php:19
+msgid "Rate This Channel (this is public)"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
+#: ../../include/js_strings.php:20 ../../mod/connedit.php:712
+#: ../../mod/rate.php:157
+msgid "Rating"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
+#: ../../include/js_strings.php:21
+msgid "Describe (optional)"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
+#: ../../include/js_strings.php:23
+msgid "Please enter a link URL"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
+#: ../../include/js_strings.php:24
+msgid "Unsaved changes. Are you sure you wish to leave this page?"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
+#: ../../include/js_strings.php:25 ../../mod/events.php:459
+#: ../../mod/locs.php:113 ../../mod/profiles.php:472
+#: ../../mod/profiles.php:697 ../../mod/pubsites.php:36
+msgid "Location"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
+#: ../../include/js_strings.php:27
+msgid "timeago.prefixAgo"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
+#: ../../include/js_strings.php:28
+msgid "timeago.prefixFromNow"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
+#: ../../include/js_strings.php:29
+msgid "ago"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
+#: ../../include/js_strings.php:30
+msgid "from now"
msgstr ""
-#: ../../include/profile_selectors.php:6
-#: ../../include/profile_selectors.php:23
-#: ../../include/profile_selectors.php:61
-#: ../../include/profile_selectors.php:97 ../../include/permissions.php:871
-msgid "Other"
+#: ../../include/js_strings.php:31
+msgid "less than a minute"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
+#: ../../include/js_strings.php:32
+msgid "about a minute"
msgstr ""
-#: ../../include/profile_selectors.php:42
-#: ../../include/profile_selectors.php:61
-msgid "Males"
+#: ../../include/js_strings.php:33
+#, php-format
+msgid "%d minutes"
msgstr ""
-#: ../../include/profile_selectors.php:42
-#: ../../include/profile_selectors.php:61
-msgid "Females"
+#: ../../include/js_strings.php:34
+msgid "about an hour"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Gay"
+#: ../../include/js_strings.php:35
+#, php-format
+msgid "about %d hours"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Lesbian"
+#: ../../include/js_strings.php:36
+msgid "a day"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "No Preference"
+#: ../../include/js_strings.php:37
+#, php-format
+msgid "%d days"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Bisexual"
+#: ../../include/js_strings.php:38
+msgid "about a month"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Autosexual"
+#: ../../include/js_strings.php:39
+#, php-format
+msgid "%d months"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Abstinent"
+#: ../../include/js_strings.php:40
+msgid "about a year"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Virgin"
+#: ../../include/js_strings.php:41
+#, php-format
+msgid "%d years"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Deviant"
+#: ../../include/js_strings.php:42
+msgid " "
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Fetish"
+#: ../../include/js_strings.php:43
+msgid "timeago.numbers"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Oodles"
+#: ../../include/js_strings.php:45 ../../include/text.php:1210
+msgid "January"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Nonsexual"
+#: ../../include/js_strings.php:46 ../../include/text.php:1210
+msgid "February"
msgstr ""
-#: ../../include/profile_selectors.php:80
-#: ../../include/profile_selectors.php:97
-msgid "Single"
+#: ../../include/js_strings.php:47 ../../include/text.php:1210
+msgid "March"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Lonely"
+#: ../../include/js_strings.php:48 ../../include/text.php:1210
+msgid "April"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Available"
+#: ../../include/js_strings.php:49
+msgctxt "long"
+msgid "May"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Unavailable"
+#: ../../include/js_strings.php:50 ../../include/text.php:1210
+msgid "June"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Has crush"
+#: ../../include/js_strings.php:51 ../../include/text.php:1210
+msgid "July"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Infatuated"
+#: ../../include/js_strings.php:52 ../../include/text.php:1210
+msgid "August"
msgstr ""
-#: ../../include/profile_selectors.php:80
-#: ../../include/profile_selectors.php:97
-msgid "Dating"
+#: ../../include/js_strings.php:53 ../../include/text.php:1210
+msgid "September"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Unfaithful"
+#: ../../include/js_strings.php:54 ../../include/text.php:1210
+msgid "October"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Sex Addict"
+#: ../../include/js_strings.php:55 ../../include/text.php:1210
+msgid "November"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Friends/Benefits"
+#: ../../include/js_strings.php:56 ../../include/text.php:1210
+msgid "December"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Casual"
+#: ../../include/js_strings.php:57
+msgid "Jan"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Engaged"
+#: ../../include/js_strings.php:58
+msgid "Feb"
msgstr ""
-#: ../../include/profile_selectors.php:80
-#: ../../include/profile_selectors.php:97
-msgid "Married"
+#: ../../include/js_strings.php:59
+msgid "Mar"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Imaginarily married"
+#: ../../include/js_strings.php:60
+msgid "Apr"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Partners"
+#: ../../include/js_strings.php:61
+msgctxt "short"
+msgid "May"
msgstr ""
-#: ../../include/profile_selectors.php:80
-#: ../../include/profile_selectors.php:97
-msgid "Cohabiting"
+#: ../../include/js_strings.php:62
+msgid "Jun"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Common law"
+#: ../../include/js_strings.php:63
+msgid "Jul"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Happy"
+#: ../../include/js_strings.php:64
+msgid "Aug"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Not looking"
+#: ../../include/js_strings.php:65
+msgid "Sep"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Swinger"
+#: ../../include/js_strings.php:66
+msgid "Oct"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Betrayed"
+#: ../../include/js_strings.php:67
+msgid "Nov"
msgstr ""
-#: ../../include/profile_selectors.php:80
-#: ../../include/profile_selectors.php:97
-msgid "Separated"
+#: ../../include/js_strings.php:68
+msgid "Dec"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Unstable"
+#: ../../include/js_strings.php:69 ../../include/text.php:1206
+msgid "Sunday"
msgstr ""
-#: ../../include/profile_selectors.php:80
-#: ../../include/profile_selectors.php:97
-msgid "Divorced"
+#: ../../include/js_strings.php:70 ../../include/text.php:1206
+msgid "Monday"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Imaginarily divorced"
+#: ../../include/js_strings.php:71 ../../include/text.php:1206
+msgid "Tuesday"
msgstr ""
-#: ../../include/profile_selectors.php:80
-#: ../../include/profile_selectors.php:97
-msgid "Widowed"
+#: ../../include/js_strings.php:72 ../../include/text.php:1206
+msgid "Wednesday"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Uncertain"
+#: ../../include/js_strings.php:73 ../../include/text.php:1206
+msgid "Thursday"
msgstr ""
-#: ../../include/profile_selectors.php:80
-#: ../../include/profile_selectors.php:97
-msgid "It's complicated"
+#: ../../include/js_strings.php:74 ../../include/text.php:1206
+msgid "Friday"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Don't care"
+#: ../../include/js_strings.php:75 ../../include/text.php:1206
+msgid "Saturday"
msgstr ""
-#: ../../include/profile_selectors.php:80
-msgid "Ask me"
+#: ../../include/js_strings.php:76
+msgid "Sun"
msgstr ""
-#: ../../include/datetime.php:48
-msgid "Miscellaneous"
+#: ../../include/js_strings.php:77
+msgid "Mon"
msgstr ""
-#: ../../include/datetime.php:132
-msgid "YYYY-MM-DD or MM-DD"
+#: ../../include/js_strings.php:78
+msgid "Tue"
msgstr ""
-#: ../../include/datetime.php:236 ../../mod/appman.php:91
-#: ../../mod/appman.php:92 ../../mod/events.php:437 ../../mod/events.php:442
-msgid "Required"
+#: ../../include/js_strings.php:79
+msgid "Wed"
msgstr ""
-#: ../../include/datetime.php:263 ../../boot.php:2291
-msgid "never"
+#: ../../include/js_strings.php:80
+msgid "Thu"
msgstr ""
-#: ../../include/datetime.php:269
-msgid "less than a second ago"
+#: ../../include/js_strings.php:81
+msgid "Fri"
msgstr ""
-#: ../../include/datetime.php:272
-msgid "year"
+#: ../../include/js_strings.php:82
+msgid "Sat"
msgstr ""
-#: ../../include/datetime.php:272
-msgid "years"
+#: ../../include/js_strings.php:83
+msgctxt "calendar"
+msgid "today"
msgstr ""
-#: ../../include/datetime.php:273
+#: ../../include/js_strings.php:84
+msgctxt "calendar"
msgid "month"
msgstr ""
-#: ../../include/datetime.php:273
-msgid "months"
-msgstr ""
-
-#: ../../include/datetime.php:274
+#: ../../include/js_strings.php:85
+msgctxt "calendar"
msgid "week"
msgstr ""
-#: ../../include/datetime.php:274
-msgid "weeks"
-msgstr ""
-
-#: ../../include/datetime.php:275
+#: ../../include/js_strings.php:86
+msgctxt "calendar"
msgid "day"
msgstr ""
-#: ../../include/datetime.php:275
-msgid "days"
-msgstr ""
-
-#: ../../include/datetime.php:276
-msgid "hour"
+#: ../../include/js_strings.php:87
+msgctxt "calendar"
+msgid "All day"
msgstr ""
-#: ../../include/datetime.php:276
-msgid "hours"
+#: ../../include/network.php:659
+msgid "view full size"
msgstr ""
-#: ../../include/datetime.php:277
-msgid "minute"
+#: ../../include/network.php:1875 ../../include/account.php:317
+#: ../../include/account.php:344 ../../include/account.php:404
+msgid "Administrator"
msgstr ""
-#: ../../include/datetime.php:277
-msgid "minutes"
+#: ../../include/network.php:1889
+msgid "No Subject"
msgstr ""
-#: ../../include/datetime.php:278
-msgid "second"
+#: ../../include/oembed.php:267
+msgid "Embedded content"
msgstr ""
-#: ../../include/datetime.php:278
-msgid "seconds"
+#: ../../include/oembed.php:276
+msgid "Embedding disabled"
msgstr ""
-#: ../../include/datetime.php:286
-#, php-format
-msgctxt "e.g. 22 hours ago, 1 minute ago"
-msgid "%1$d %2$s ago"
+#: ../../include/notify.php:20
+msgid "created a new post"
msgstr ""
-#: ../../include/datetime.php:520
+#: ../../include/notify.php:21
#, php-format
-msgid "%1$s's birthday"
+msgid "commented on %s's post"
msgstr ""
-#: ../../include/datetime.php:521
-#, php-format
-msgid "Happy Birthday %1$s"
+#: ../../include/page_widgets.php:6
+msgid "New Page"
msgstr ""
-#: ../../include/api.php:1336
-msgid "Public Timeline"
+#: ../../include/page_widgets.php:39 ../../mod/blocks.php:159
+#: ../../mod/layouts.php:188 ../../mod/pubsites.php:42
+#: ../../mod/webpages.php:189
+msgid "View"
msgstr ""
-#: ../../include/conversation.php:126 ../../mod/like.php:113
-msgid "channel"
+#: ../../include/page_widgets.php:41 ../../mod/webpages.php:191
+msgid "Actions"
msgstr ""
-#: ../../include/conversation.php:164 ../../mod/like.php:410
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
+#: ../../include/page_widgets.php:42 ../../mod/webpages.php:192
+msgid "Page Link"
msgstr ""
-#: ../../include/conversation.php:167 ../../mod/like.php:412
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
+#: ../../include/page_widgets.php:43
+msgid "Title"
msgstr ""
-#: ../../include/conversation.php:204
-#, php-format
-msgid "%1$s is now connected with %2$s"
+#: ../../include/page_widgets.php:44 ../../mod/blocks.php:150
+#: ../../mod/layouts.php:181 ../../mod/menu.php:110 ../../mod/webpages.php:194
+msgid "Created"
msgstr ""
-#: ../../include/conversation.php:239
-#, php-format
-msgid "%1$s poked %2$s"
+#: ../../include/page_widgets.php:45 ../../mod/blocks.php:151
+#: ../../mod/layouts.php:182 ../../mod/menu.php:111 ../../mod/webpages.php:195
+msgid "Edited"
msgstr ""
-#: ../../include/conversation.php:260 ../../mod/mood.php:63
-#, php-format
-msgctxt "mood"
-msgid "%1$s is %2$s"
+#: ../../include/photo/photo_driver.php:722 ../../mod/photos.php:94
+#: ../../mod/photos.php:738 ../../mod/profile_photo.php:147
+#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:327
+msgid "Profile Photos"
msgstr ""
-#: ../../include/conversation.php:574 ../../mod/photos.php:1060
-msgctxt "title"
-msgid "Likes"
+#: ../../include/datetime.php:48 ../../mod/profiles.php:699
+msgid "Miscellaneous"
msgstr ""
-#: ../../include/conversation.php:574 ../../mod/photos.php:1060
-msgctxt "title"
-msgid "Dislikes"
+#: ../../include/datetime.php:136
+msgid "Birthday"
msgstr ""
-#: ../../include/conversation.php:575 ../../mod/photos.php:1061
-msgctxt "title"
-msgid "Agree"
+#: ../../include/datetime.php:138
+msgid "Age: "
msgstr ""
-#: ../../include/conversation.php:575 ../../mod/photos.php:1061
-msgctxt "title"
-msgid "Disagree"
+#: ../../include/datetime.php:140
+msgid "YYYY-MM-DD or MM-DD"
msgstr ""
-#: ../../include/conversation.php:575 ../../mod/photos.php:1061
-msgctxt "title"
-msgid "Abstain"
+#: ../../include/datetime.php:246 ../../mod/appman.php:91
+#: ../../mod/appman.php:92 ../../mod/events.php:444 ../../mod/events.php:449
+#: ../../mod/profiles.php:708 ../../mod/profiles.php:712
+msgid "Required"
msgstr ""
-#: ../../include/conversation.php:576 ../../mod/photos.php:1062
-msgctxt "title"
-msgid "Attending"
+#: ../../include/datetime.php:273 ../../boot.php:2411
+msgid "never"
msgstr ""
-#: ../../include/conversation.php:576 ../../mod/photos.php:1062
-msgctxt "title"
-msgid "Not attending"
+#: ../../include/datetime.php:279
+msgid "less than a second ago"
msgstr ""
-#: ../../include/conversation.php:576 ../../mod/photos.php:1062
-msgctxt "title"
-msgid "Might attend"
+#: ../../include/datetime.php:297
+#, php-format
+msgctxt "e.g. 22 hours ago, 1 minute ago"
+msgid "%1$d %2$s ago"
msgstr ""
-#: ../../include/conversation.php:656 ../../include/ItemObject.php:126
-msgid "Select"
-msgstr ""
+#: ../../include/datetime.php:308
+msgctxt "relative_date"
+msgid "year"
+msgid_plural "years"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/conversation.php:664 ../../include/ItemObject.php:89
-msgid "Private Message"
-msgstr ""
+#: ../../include/datetime.php:311
+msgctxt "relative_date"
+msgid "month"
+msgid_plural "months"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/conversation.php:671 ../../include/ItemObject.php:227
-msgid "Message signature validated"
-msgstr ""
+#: ../../include/datetime.php:314
+msgctxt "relative_date"
+msgid "week"
+msgid_plural "weeks"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/conversation.php:672 ../../include/ItemObject.php:228
-msgid "Message signature incorrect"
-msgstr ""
+#: ../../include/datetime.php:317
+msgctxt "relative_date"
+msgid "day"
+msgid_plural "days"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/conversation.php:691
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr ""
+#: ../../include/datetime.php:320
+msgctxt "relative_date"
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/conversation.php:710
-msgid "Categories:"
-msgstr ""
+#: ../../include/datetime.php:323
+msgctxt "relative_date"
+msgid "minute"
+msgid_plural "minutes"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/conversation.php:711
-msgid "Filed under:"
-msgstr ""
+#: ../../include/datetime.php:326
+msgctxt "relative_date"
+msgid "second"
+msgid_plural "seconds"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/conversation.php:719 ../../include/ItemObject.php:334
+#: ../../include/datetime.php:563
#, php-format
-msgid "from %s"
+msgid "%1$s's birthday"
msgstr ""
-#: ../../include/conversation.php:722 ../../include/ItemObject.php:337
+#: ../../include/datetime.php:564
#, php-format
-msgid "last edited: %s"
+msgid "Happy Birthday %1$s"
msgstr ""
-#: ../../include/conversation.php:723 ../../include/ItemObject.php:338
-#, php-format
-msgid "Expires: %s"
+#: ../../include/profile_selectors.php:6
+#: ../../include/profile_selectors.php:23 ../../mod/id.php:103
+msgid "Male"
msgstr ""
-#: ../../include/conversation.php:738
-msgid "View in context"
+#: ../../include/profile_selectors.php:6
+#: ../../include/profile_selectors.php:23 ../../mod/id.php:105
+msgid "Female"
msgstr ""
-#: ../../include/conversation.php:740 ../../include/conversation.php:1227
-#: ../../include/ItemObject.php:389 ../../mod/editwebpage.php:190
-#: ../../mod/editblock.php:150 ../../mod/editlayout.php:148
-#: ../../mod/photos.php:1026 ../../mod/editpost.php:129
-msgid "Please wait"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
msgstr ""
-#: ../../include/conversation.php:850
-msgid "remove"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
msgstr ""
-#: ../../include/conversation.php:854 ../../include/nav.php:241
-msgid "Loading..."
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
msgstr ""
-#: ../../include/conversation.php:855
-msgid "Delete Selected Items"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
msgstr ""
-#: ../../include/conversation.php:946
-msgid "View Source"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
msgstr ""
-#: ../../include/conversation.php:947
-msgid "Follow Thread"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
msgstr ""
-#: ../../include/conversation.php:948
-msgid "Unfollow Thread"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
msgstr ""
-#: ../../include/conversation.php:949
-msgid "View Status"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
msgstr ""
-#: ../../include/conversation.php:950 ../../include/nav.php:86
-#: ../../mod/connedit.php:498
-msgid "View Profile"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
msgstr ""
-#: ../../include/conversation.php:951
-msgid "View Photos"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
msgstr ""
-#: ../../include/conversation.php:952
-msgid "Activity/Posts"
+#: ../../include/profile_selectors.php:6
+#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:61
+#: ../../include/profile_selectors.php:97 ../../include/permissions.php:881
+msgid "Other"
msgstr ""
-#: ../../include/conversation.php:954
-msgid "Edit Connection"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
msgstr ""
-#: ../../include/conversation.php:955
-msgid "Send PM"
+#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:61
+msgid "Males"
msgstr ""
-#: ../../include/conversation.php:956 ../../include/apps.php:145
-msgid "Poke"
+#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:61
+msgid "Females"
msgstr ""
-#: ../../include/conversation.php:1070
-#, php-format
-msgid "%s likes this."
+#: ../../include/profile_selectors.php:42
+msgid "Gay"
msgstr ""
-#: ../../include/conversation.php:1070
-#, php-format
-msgid "%s doesn't like this."
+#: ../../include/profile_selectors.php:42
+msgid "Lesbian"
msgstr ""
-#: ../../include/conversation.php:1074
-#, 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:1076
-#, 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:1082
-msgid "and"
+#: ../../include/profile_selectors.php:42
+msgid "No Preference"
msgstr ""
-#: ../../include/conversation.php:1085
-#, php-format
-msgid ", and %d other people"
-msgid_plural ", and %d other people"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../include/conversation.php:1086
-#, php-format
-msgid "%s like this."
+#: ../../include/profile_selectors.php:42
+msgid "Bisexual"
msgstr ""
-#: ../../include/conversation.php:1086
-#, php-format
-msgid "%s don't like this."
+#: ../../include/profile_selectors.php:42
+msgid "Autosexual"
msgstr ""
-#: ../../include/conversation.php:1154
-msgid "Visible to <strong>everybody</strong>"
+#: ../../include/profile_selectors.php:42
+msgid "Abstinent"
msgstr ""
-#: ../../include/conversation.php:1155 ../../mod/mail.php:202
-#: ../../mod/mail.php:316
-msgid "Please enter a link URL:"
+#: ../../include/profile_selectors.php:42
+msgid "Virgin"
msgstr ""
-#: ../../include/conversation.php:1156
-msgid "Please enter a video link/URL:"
+#: ../../include/profile_selectors.php:42
+msgid "Deviant"
msgstr ""
-#: ../../include/conversation.php:1157
-msgid "Please enter an audio link/URL:"
+#: ../../include/profile_selectors.php:42
+msgid "Fetish"
msgstr ""
-#: ../../include/conversation.php:1158
-msgid "Tag term:"
+#: ../../include/profile_selectors.php:42
+msgid "Oodles"
msgstr ""
-#: ../../include/conversation.php:1159 ../../mod/filer.php:48
-msgid "Save to Folder:"
+#: ../../include/profile_selectors.php:42
+msgid "Nonsexual"
msgstr ""
-#: ../../include/conversation.php:1160
-msgid "Where are you right now?"
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
+msgid "Single"
msgstr ""
-#: ../../include/conversation.php:1161 ../../mod/editpost.php:56
-#: ../../mod/mail.php:203 ../../mod/mail.php:317
-msgid "Expires YYYY-MM-DD HH:MM"
+#: ../../include/profile_selectors.php:80
+msgid "Lonely"
msgstr ""
-#: ../../include/conversation.php:1169 ../../include/page_widgets.php:40
-#: ../../include/ItemObject.php:706 ../../mod/editwebpage.php:212
-#: ../../mod/editblock.php:171 ../../mod/webpages.php:188
-#: ../../mod/photos.php:1046 ../../mod/editpost.php:149
-#: ../../mod/events.php:458
-msgid "Preview"
+#: ../../include/profile_selectors.php:80
+msgid "Available"
msgstr ""
-#: ../../include/conversation.php:1192 ../../mod/blocks.php:154
-#: ../../mod/webpages.php:182 ../../mod/layouts.php:184
-#: ../../mod/photos.php:1025
-msgid "Share"
+#: ../../include/profile_selectors.php:80
+msgid "Unavailable"
msgstr ""
-#: ../../include/conversation.php:1194
-msgid "Page link name"
+#: ../../include/profile_selectors.php:80
+msgid "Has crush"
msgstr ""
-#: ../../include/conversation.php:1197
-msgid "Post as"
+#: ../../include/profile_selectors.php:80
+msgid "Infatuated"
msgstr ""
-#: ../../include/conversation.php:1199 ../../include/ItemObject.php:698
-#: ../../mod/editwebpage.php:177 ../../mod/editblock.php:136
-#: ../../mod/editlayout.php:135 ../../mod/editpost.php:113
-msgid "Bold"
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
+msgid "Dating"
msgstr ""
-#: ../../include/conversation.php:1200 ../../include/ItemObject.php:699
-#: ../../mod/editwebpage.php:178 ../../mod/editblock.php:137
-#: ../../mod/editlayout.php:136 ../../mod/editpost.php:114
-msgid "Italic"
+#: ../../include/profile_selectors.php:80
+msgid "Unfaithful"
msgstr ""
-#: ../../include/conversation.php:1201 ../../include/ItemObject.php:700
-#: ../../mod/editwebpage.php:179 ../../mod/editblock.php:138
-#: ../../mod/editlayout.php:137 ../../mod/editpost.php:115
-msgid "Underline"
+#: ../../include/profile_selectors.php:80
+msgid "Sex Addict"
msgstr ""
-#: ../../include/conversation.php:1202 ../../include/ItemObject.php:701
-#: ../../mod/editwebpage.php:180 ../../mod/editblock.php:139
-#: ../../mod/editlayout.php:138 ../../mod/editpost.php:116
-msgid "Quote"
+#: ../../include/profile_selectors.php:80
+msgid "Friends/Benefits"
msgstr ""
-#: ../../include/conversation.php:1203 ../../include/ItemObject.php:702
-#: ../../mod/editwebpage.php:181 ../../mod/editblock.php:140
-#: ../../mod/editlayout.php:139 ../../mod/editpost.php:117
-msgid "Code"
+#: ../../include/profile_selectors.php:80
+msgid "Casual"
msgstr ""
-#: ../../include/conversation.php:1204 ../../mod/editwebpage.php:182
-#: ../../mod/editblock.php:142 ../../mod/editlayout.php:140
-#: ../../mod/editpost.php:118
-msgid "Upload photo"
+#: ../../include/profile_selectors.php:80
+msgid "Engaged"
msgstr ""
-#: ../../include/conversation.php:1205
-msgid "upload photo"
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
+msgid "Married"
msgstr ""
-#: ../../include/conversation.php:1206 ../../mod/editwebpage.php:183
-#: ../../mod/editblock.php:143 ../../mod/editlayout.php:141
-#: ../../mod/editpost.php:119 ../../mod/mail.php:248 ../../mod/mail.php:378
-msgid "Attach file"
+#: ../../include/profile_selectors.php:80
+msgid "Imaginarily married"
msgstr ""
-#: ../../include/conversation.php:1207
-msgid "attach file"
+#: ../../include/profile_selectors.php:80
+msgid "Partners"
msgstr ""
-#: ../../include/conversation.php:1208 ../../mod/editwebpage.php:184
-#: ../../mod/editblock.php:144 ../../mod/editlayout.php:142
-#: ../../mod/editpost.php:120 ../../mod/mail.php:249 ../../mod/mail.php:379
-msgid "Insert web link"
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
+msgid "Cohabiting"
msgstr ""
-#: ../../include/conversation.php:1209
-msgid "web link"
+#: ../../include/profile_selectors.php:80
+msgid "Common law"
msgstr ""
-#: ../../include/conversation.php:1210
-msgid "Insert video link"
+#: ../../include/profile_selectors.php:80
+msgid "Happy"
msgstr ""
-#: ../../include/conversation.php:1211
-msgid "video link"
+#: ../../include/profile_selectors.php:80
+msgid "Not looking"
msgstr ""
-#: ../../include/conversation.php:1212
-msgid "Insert audio link"
+#: ../../include/profile_selectors.php:80
+msgid "Swinger"
msgstr ""
-#: ../../include/conversation.php:1213
-msgid "audio link"
+#: ../../include/profile_selectors.php:80
+msgid "Betrayed"
msgstr ""
-#: ../../include/conversation.php:1214 ../../mod/editwebpage.php:188
-#: ../../mod/editblock.php:148 ../../mod/editlayout.php:146
-#: ../../mod/editpost.php:124
-msgid "Set your location"
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
+msgid "Separated"
msgstr ""
-#: ../../include/conversation.php:1215
-msgid "set location"
+#: ../../include/profile_selectors.php:80
+msgid "Unstable"
msgstr ""
-#: ../../include/conversation.php:1216 ../../mod/editpost.php:126
-msgid "Toggle voting"
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
+msgid "Divorced"
msgstr ""
-#: ../../include/conversation.php:1219 ../../mod/editwebpage.php:189
-#: ../../mod/editblock.php:149 ../../mod/editlayout.php:147
-#: ../../mod/editpost.php:125
-msgid "Clear browser location"
+#: ../../include/profile_selectors.php:80
+msgid "Imaginarily divorced"
msgstr ""
-#: ../../include/conversation.php:1220
-msgid "clear location"
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
+msgid "Widowed"
msgstr ""
-#: ../../include/conversation.php:1222 ../../mod/editwebpage.php:205
-#: ../../mod/editblock.php:162 ../../mod/editpost.php:141
-msgid "Title (optional)"
+#: ../../include/profile_selectors.php:80
+msgid "Uncertain"
msgstr ""
-#: ../../include/conversation.php:1226 ../../mod/editwebpage.php:207
-#: ../../mod/editblock.php:165 ../../mod/editlayout.php:163
-#: ../../mod/editpost.php:143
-msgid "Categories (optional, comma-separated list)"
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
+msgid "It's complicated"
msgstr ""
-#: ../../include/conversation.php:1228 ../../mod/editwebpage.php:191
-#: ../../mod/editblock.php:151 ../../mod/editlayout.php:149
-#: ../../mod/editpost.php:130 ../../mod/events.php:459
-msgid "Permission settings"
+#: ../../include/profile_selectors.php:80
+msgid "Don't care"
msgstr ""
-#: ../../include/conversation.php:1229
-msgid "permissions"
+#: ../../include/profile_selectors.php:80
+msgid "Ask me"
msgstr ""
-#: ../../include/conversation.php:1237 ../../mod/editwebpage.php:200
-#: ../../mod/editblock.php:159 ../../mod/editlayout.php:156
-#: ../../mod/editpost.php:138
-msgid "Public post"
+#: ../../include/comanche.php:34 ../../mod/admin.php:366
+msgid "Default"
msgstr ""
-#: ../../include/conversation.php:1239 ../../mod/editwebpage.php:208
-#: ../../mod/editblock.php:166 ../../mod/editlayout.php:164
-#: ../../mod/editpost.php:144
-msgid "Example: bob@example.com, mary@example.com"
+#: ../../include/event.php:779
+msgid "This event has been added to your calendar."
msgstr ""
-#: ../../include/conversation.php:1252 ../../mod/editwebpage.php:217
-#: ../../mod/editblock.php:176 ../../mod/editlayout.php:173
-#: ../../mod/editpost.php:155 ../../mod/mail.php:253 ../../mod/mail.php:383
-msgid "Set expiration date"
+#: ../../include/event.php:978
+msgid "Not specified"
msgstr ""
-#: ../../include/conversation.php:1255
-msgid "Set publish date"
+#: ../../include/event.php:979
+msgid "Needs Action"
msgstr ""
-#: ../../include/conversation.php:1257 ../../include/ItemObject.php:709
-#: ../../mod/editpost.php:157 ../../mod/mail.php:255 ../../mod/mail.php:385
-msgid "Encrypt text"
+#: ../../include/event.php:980
+msgid "Completed"
msgstr ""
-#: ../../include/conversation.php:1259 ../../mod/editpost.php:159
-msgid "OK"
+#: ../../include/event.php:981
+msgid "In Process"
msgstr ""
-#: ../../include/conversation.php:1260 ../../mod/fbrowser.php:77
-#: ../../mod/fbrowser.php:112 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134
-#: ../../mod/settings.php:587 ../../mod/settings.php:613
-#: ../../mod/editpost.php:160
-msgid "Cancel"
+#: ../../include/event.php:982
+msgid "Cancelled"
msgstr ""
-#: ../../include/conversation.php:1503
-msgid "Discover"
+#: ../../include/contact_selectors.php:56
+msgid "Frequently"
msgstr ""
-#: ../../include/conversation.php:1506
-msgid "Imported public streams"
+#: ../../include/contact_selectors.php:57
+msgid "Hourly"
msgstr ""
-#: ../../include/conversation.php:1511
-msgid "Commented Order"
+#: ../../include/contact_selectors.php:58
+msgid "Twice daily"
msgstr ""
-#: ../../include/conversation.php:1514
-msgid "Sort by Comment Date"
+#: ../../include/contact_selectors.php:59
+msgid "Daily"
msgstr ""
-#: ../../include/conversation.php:1518
-msgid "Posted Order"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
msgstr ""
-#: ../../include/conversation.php:1521
-msgid "Sort by Post Date"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
msgstr ""
-#: ../../include/conversation.php:1529
-msgid "Posts that mention or involve you"
+#: ../../include/contact_selectors.php:76
+#: ../../include/contact_selectors.php:77
+msgid "Friendica"
msgstr ""
-#: ../../include/conversation.php:1535 ../../mod/connections.php:72
-#: ../../mod/connections.php:82 ../../mod/menu.php:112
-msgid "New"
+#: ../../include/contact_selectors.php:78
+msgid "OStatus"
msgstr ""
-#: ../../include/conversation.php:1538
-msgid "Activity Stream - by date"
+#: ../../include/contact_selectors.php:79
+msgid "GNU-Social"
msgstr ""
-#: ../../include/conversation.php:1544
-msgid "Starred"
+#: ../../include/contact_selectors.php:80
+msgid "RSS/Atom"
msgstr ""
-#: ../../include/conversation.php:1547
-msgid "Favourite Posts"
+#: ../../include/contact_selectors.php:81 ../../mod/id.php:15
+#: ../../mod/id.php:16 ../../mod/admin.php:989 ../../mod/admin.php:998
+#: ../../boot.php:1582
+msgid "Email"
msgstr ""
-#: ../../include/conversation.php:1554
-msgid "Spam"
+#: ../../include/contact_selectors.php:82
+msgid "Diaspora"
msgstr ""
-#: ../../include/conversation.php:1557
-msgid "Posts flagged as SPAM"
+#: ../../include/contact_selectors.php:83
+msgid "Facebook"
msgstr ""
-#: ../../include/conversation.php:1601 ../../mod/admin.php:985
-msgid "Channel"
+#: ../../include/contact_selectors.php:84
+msgid "Zot"
msgstr ""
-#: ../../include/conversation.php:1604
-msgid "Status Messages and Posts"
+#: ../../include/contact_selectors.php:85
+msgid "LinkedIn"
msgstr ""
-#: ../../include/conversation.php:1613
-msgid "About"
+#: ../../include/contact_selectors.php:86
+msgid "XMPP/IM"
msgstr ""
-#: ../../include/conversation.php:1616
-msgid "Profile Details"
+#: ../../include/contact_selectors.php:87
+msgid "MySpace"
msgstr ""
-#: ../../include/conversation.php:1622 ../../include/nav.php:92
-#: ../../include/apps.php:139 ../../mod/fbrowser.php:25
-msgid "Photos"
+#: ../../include/taxonomy.php:240 ../../include/taxonomy.php:261
+msgid "Tags"
msgstr ""
-#: ../../include/conversation.php:1632
-msgid "Files and Storage"
+#: ../../include/taxonomy.php:305
+msgid "Keywords"
msgstr ""
-#: ../../include/conversation.php:1642 ../../include/conversation.php:1645
-msgid "Chatrooms"
+#: ../../include/taxonomy.php:326
+msgid "have"
msgstr ""
-#: ../../include/conversation.php:1655 ../../include/nav.php:103
-#: ../../include/apps.php:129
-msgid "Bookmarks"
+#: ../../include/taxonomy.php:326
+msgid "has"
msgstr ""
-#: ../../include/conversation.php:1658
-msgid "Saved Bookmarks"
+#: ../../include/taxonomy.php:327
+msgid "want"
msgstr ""
-#: ../../include/conversation.php:1665 ../../include/nav.php:107
-#: ../../include/apps.php:136 ../../mod/webpages.php:178
-msgid "Webpages"
+#: ../../include/taxonomy.php:327
+msgid "wants"
msgstr ""
-#: ../../include/conversation.php:1668
-msgid "Manage Webpages"
+#: ../../include/taxonomy.php:328
+msgid "likes"
msgstr ""
-#: ../../include/conversation.php:1697 ../../include/ItemObject.php:175
-#: ../../include/ItemObject.php:187 ../../mod/photos.php:1079
-#: ../../mod/photos.php:1091
-msgid "View all"
+#: ../../include/taxonomy.php:329
+msgid "dislikes"
msgstr ""
-#: ../../include/conversation.php:1724 ../../include/ItemObject.php:184
-#: ../../mod/photos.php:1088
-msgctxt "noun"
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../include/conversation.php:1727
-msgctxt "noun"
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../include/conversation.php:1730
-msgctxt "noun"
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/attach.php:247 ../../include/attach.php:333
+msgid "Item was not found."
+msgstr ""
-#: ../../include/conversation.php:1733
-msgctxt "noun"
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/attach.php:497
+msgid "No source file."
+msgstr ""
-#: ../../include/conversation.php:1736
-msgctxt "noun"
-msgid "Agree"
-msgid_plural "Agrees"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/attach.php:519
+msgid "Cannot locate file to replace"
+msgstr ""
-#: ../../include/conversation.php:1739
-msgctxt "noun"
-msgid "Disagree"
-msgid_plural "Disagrees"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/attach.php:537
+msgid "Cannot locate file to revise/update"
+msgstr ""
-#: ../../include/conversation.php:1742
-msgctxt "noun"
-msgid "Abstain"
-msgid_plural "Abstains"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/attach.php:672
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr ""
-#: ../../include/auth.php:132
-msgid "Logged out."
+#: ../../include/attach.php:686
+#, php-format
+msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
msgstr ""
-#: ../../include/auth.php:273
-msgid "Failed authentication"
+#: ../../include/attach.php:842
+msgid "File upload failed. Possible system limit or action terminated."
msgstr ""
-#: ../../include/auth.php:287 ../../mod/openid.php:189
-msgid "Login failed."
+#: ../../include/attach.php:855
+msgid "Stored file could not be verified. Upload failed."
msgstr ""
-#: ../../include/contact_selectors.php:56
-msgid "Frequently"
+#: ../../include/attach.php:909 ../../include/attach.php:925
+msgid "Path not available."
msgstr ""
-#: ../../include/contact_selectors.php:57
-msgid "Hourly"
+#: ../../include/attach.php:971 ../../include/attach.php:1123
+msgid "Empty pathname"
msgstr ""
-#: ../../include/contact_selectors.php:58
-msgid "Twice daily"
+#: ../../include/attach.php:997
+msgid "duplicate filename or path"
msgstr ""
-#: ../../include/contact_selectors.php:59
-msgid "Daily"
+#: ../../include/attach.php:1019
+msgid "Path not found."
msgstr ""
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
+#: ../../include/attach.php:1077
+msgid "mkdir failed."
msgstr ""
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
+#: ../../include/attach.php:1081
+msgid "database storage failed."
msgstr ""
-#: ../../include/contact_selectors.php:76
-msgid "Friendica"
+#: ../../include/attach.php:1129
+msgid "Empty path"
msgstr ""
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
+#: ../../include/features.php:48
+msgid "General Features"
msgstr ""
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
+#: ../../include/features.php:50
+msgid "Content Expiration"
msgstr ""
-#: ../../include/contact_selectors.php:79 ../../mod/id.php:15
-#: ../../mod/id.php:16 ../../mod/admin.php:817 ../../mod/admin.php:826
-#: ../../boot.php:1490
-msgid "Email"
+#: ../../include/features.php:50
+msgid "Remove posts/comments and/or private messages at a future time"
msgstr ""
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
+#: ../../include/features.php:51
+msgid "Multiple Profiles"
msgstr ""
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
+#: ../../include/features.php:51
+msgid "Ability to create multiple profiles"
msgstr ""
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
+#: ../../include/features.php:52
+msgid "Advanced Profiles"
msgstr ""
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
+#: ../../include/features.php:52
+msgid "Additional profile sections and selections"
msgstr ""
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
+#: ../../include/features.php:53
+msgid "Profile Import/Export"
msgstr ""
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
+#: ../../include/features.php:53
+msgid "Save and load profile details across sites/channels"
msgstr ""
-#: ../../include/bbcode.php:123 ../../include/bbcode.php:794
-#: ../../include/bbcode.php:797 ../../include/bbcode.php:802
-#: ../../include/bbcode.php:805 ../../include/bbcode.php:808
-#: ../../include/bbcode.php:811 ../../include/bbcode.php:816
-#: ../../include/bbcode.php:819 ../../include/bbcode.php:824
-#: ../../include/bbcode.php:827 ../../include/bbcode.php:830
-#: ../../include/bbcode.php:833
-msgid "Image/photo"
+#: ../../include/features.php:54
+msgid "Web Pages"
msgstr ""
-#: ../../include/bbcode.php:162 ../../include/bbcode.php:844
-msgid "Encrypted content"
+#: ../../include/features.php:54
+msgid "Provide managed web pages on your channel"
msgstr ""
-#: ../../include/bbcode.php:179
-#, php-format
-msgid "Install %s element: "
+#: ../../include/features.php:55
+msgid "Hide Rating"
msgstr ""
-#: ../../include/bbcode.php:183
-#, php-format
+#: ../../include/features.php:55
msgid ""
-"This post contains an installable %s element, however you lack permissions "
-"to install it on this site."
+"Hide the rating buttons on your channel and profile pages. Note: People can "
+"still rate you somewhere else."
msgstr ""
-#: ../../include/bbcode.php:193 ../../mod/impel.php:37
-msgid "webpage"
+#: ../../include/features.php:56
+msgid "Private Notes"
msgstr ""
-#: ../../include/bbcode.php:196 ../../mod/impel.php:47
-msgid "layout"
+#: ../../include/features.php:56
+msgid "Enables a tool to store notes and reminders (note: not encrypted)"
msgstr ""
-#: ../../include/bbcode.php:199 ../../mod/impel.php:42
-msgid "block"
+#: ../../include/features.php:57
+msgid "Navigation Channel Select"
msgstr ""
-#: ../../include/bbcode.php:202 ../../mod/impel.php:54
-msgid "menu"
+#: ../../include/features.php:57
+msgid "Change channels directly from within the navigation dropdown menu"
msgstr ""
-#: ../../include/bbcode.php:257
-#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
+#: ../../include/features.php:58
+msgid "Photo Location"
msgstr ""
-#: ../../include/bbcode.php:259 ../../mod/tagger.php:51
-msgid "post"
+#: ../../include/features.php:58
+msgid "If location data is available on uploaded photos, link this to a map."
msgstr ""
-#: ../../include/bbcode.php:547
-msgid "Different viewers will see this text differently"
+#: ../../include/features.php:59
+msgid "Access Controlled Chatrooms"
msgstr ""
-#: ../../include/bbcode.php:755
-msgid "$1 spoiler"
+#: ../../include/features.php:59
+msgid "Provide chatrooms and chat services with access control."
msgstr ""
-#: ../../include/bbcode.php:782
-msgid "$1 wrote:"
+#: ../../include/features.php:60
+msgid "Smart Birthdays"
msgstr ""
-#: ../../include/contact_widgets.php:14
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../include/contact_widgets.php:19 ../../mod/admin.php:451
-msgid "Advanced"
+#: ../../include/features.php:60
+msgid ""
+"Make birthday events timezone aware in case your friends are scattered "
+"across the planet."
msgstr ""
-#: ../../include/contact_widgets.php:22
-msgid "Find Channels"
+#: ../../include/features.php:61
+msgid "Expert Mode"
msgstr ""
-#: ../../include/contact_widgets.php:23
-msgid "Enter name or interest"
+#: ../../include/features.php:61
+msgid "Enable Expert Mode to provide advanced configuration options"
msgstr ""
-#: ../../include/contact_widgets.php:24
-msgid "Connect/Follow"
+#: ../../include/features.php:62
+msgid "Premium Channel"
msgstr ""
-#: ../../include/contact_widgets.php:25
-msgid "Examples: Robert Morgenstein, Fishing"
+#: ../../include/features.php:62
+msgid ""
+"Allows you to set restrictions and terms on those that connect with your "
+"channel"
msgstr ""
-#: ../../include/contact_widgets.php:26 ../../mod/directory.php:381
-#: ../../mod/directory.php:386 ../../mod/connections.php:266
-msgid "Find"
+#: ../../include/features.php:67
+msgid "Post Composition Features"
msgstr ""
-#: ../../include/contact_widgets.php:27 ../../mod/directory.php:385
-#: ../../mod/suggest.php:60
-msgid "Channel Suggestions"
+#: ../../include/features.php:70
+msgid "Large Photos"
msgstr ""
-#: ../../include/contact_widgets.php:29
-msgid "Random Profile"
+#: ../../include/features.php:70
+msgid ""
+"Include large (1024px) photo thumbnails in posts. If not enabled, use small "
+"(640px) photo thumbnails"
msgstr ""
-#: ../../include/contact_widgets.php:30
-msgid "Invite Friends"
+#: ../../include/features.php:71
+msgid "Automatically import channel content from other channels or feeds"
msgstr ""
-#: ../../include/contact_widgets.php:32
-msgid "Advanced example: name=fred and country=iceland"
+#: ../../include/features.php:72
+msgid "Even More Encryption"
msgstr ""
-#: ../../include/contact_widgets.php:128
-#, php-format
-msgid "%d connection in common"
-msgid_plural "%d connections in common"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../include/contact_widgets.php:133
-msgid "show more"
+#: ../../include/features.php:72
+msgid ""
+"Allow optional encryption of content end-to-end with a shared secret key"
msgstr ""
-#: ../../include/enotify.php:57 ../../include/network.php:1608
-msgid "$Projectname Notification"
+#: ../../include/features.php:73
+msgid "Enable Voting Tools"
msgstr ""
-#: ../../include/enotify.php:58 ../../include/network.php:1609
-msgid "$projectname"
+#: ../../include/features.php:73
+msgid "Provide a class of post which others can vote on"
msgstr ""
-#: ../../include/enotify.php:60 ../../include/network.php:1611
-msgid "Thank You,"
+#: ../../include/features.php:74
+msgid "Delayed Posting"
msgstr ""
-#: ../../include/enotify.php:62 ../../include/network.php:1613
-#, php-format
-msgid "%s Administrator"
+#: ../../include/features.php:74
+msgid "Allow posts to be published at a later date"
msgstr ""
-#: ../../include/enotify.php:96
-#, php-format
-msgid "%s <!item_type!>"
+#: ../../include/features.php:75
+msgid "Suppress Duplicate Posts/Comments"
msgstr ""
-#: ../../include/enotify.php:100
-#, php-format
-msgid "[Hubzilla:Notify] New mail received at %s"
+#: ../../include/features.php:75
+msgid ""
+"Prevent posts with identical content to be published with less than two "
+"minutes in between submissions."
msgstr ""
-#: ../../include/enotify.php:102
-#, php-format
-msgid "%1$s, %2$s sent you a new private message at %3$s."
+#: ../../include/features.php:81
+msgid "Network and Stream Filtering"
msgstr ""
-#: ../../include/enotify.php:103
-#, php-format
-msgid "%1$s sent you %2$s."
+#: ../../include/features.php:82
+msgid "Search by Date"
msgstr ""
-#: ../../include/enotify.php:103
-msgid "a private message"
+#: ../../include/features.php:82
+msgid "Ability to select posts by date ranges"
msgstr ""
-#: ../../include/enotify.php:104
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
+#: ../../include/features.php:83 ../../include/group.php:311
+msgid "Privacy Groups"
msgstr ""
-#: ../../include/enotify.php:160
-#, php-format
-msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
+#: ../../include/features.php:83
+msgid "Enable management and selection of privacy groups"
msgstr ""
-#: ../../include/enotify.php:168
-#, php-format
-msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
+#: ../../include/features.php:84
+msgid "Save search terms for re-use"
msgstr ""
-#: ../../include/enotify.php:177
-#, php-format
-msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
+#: ../../include/features.php:85
+msgid "Network Personal Tab"
msgstr ""
-#: ../../include/enotify.php:188
-#, php-format
-msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s"
+#: ../../include/features.php:85
+msgid "Enable tab to display only Network posts that you've interacted on"
msgstr ""
-#: ../../include/enotify.php:189
-#, php-format
-msgid "%1$s, %2$s commented on an item/conversation you have been following."
+#: ../../include/features.php:86
+msgid "Network New Tab"
msgstr ""
-#: ../../include/enotify.php:192 ../../include/enotify.php:207
-#: ../../include/enotify.php:233 ../../include/enotify.php:251
-#: ../../include/enotify.php:265
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
+#: ../../include/features.php:86
+msgid "Enable tab to display all new Network activity"
msgstr ""
-#: ../../include/enotify.php:198
-#, php-format
-msgid "[Hubzilla:Notify] %s posted to your profile wall"
+#: ../../include/features.php:87
+msgid "Affinity Tool"
msgstr ""
-#: ../../include/enotify.php:200
-#, php-format
-msgid "%1$s, %2$s posted to your profile wall at %3$s"
+#: ../../include/features.php:87
+msgid "Filter stream activity by depth of relationships"
msgstr ""
-#: ../../include/enotify.php:202
-#, php-format
-msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
+#: ../../include/features.php:88
+msgid "Connection Filtering"
msgstr ""
-#: ../../include/enotify.php:226
-#, php-format
-msgid "[Hubzilla:Notify] %s tagged you"
+#: ../../include/features.php:88
+msgid "Filter incoming posts from connections based on keywords/content"
msgstr ""
-#: ../../include/enotify.php:227
-#, php-format
-msgid "%1$s, %2$s tagged you at %3$s"
+#: ../../include/features.php:89
+msgid "Suggest Channels"
msgstr ""
-#: ../../include/enotify.php:228
-#, php-format
-msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
+#: ../../include/features.php:89
+msgid "Show channel suggestions"
msgstr ""
-#: ../../include/enotify.php:240
-#, php-format
-msgid "[Hubzilla:Notify] %1$s poked you"
+#: ../../include/features.php:94
+msgid "Post/Comment Tools"
msgstr ""
-#: ../../include/enotify.php:241
-#, php-format
-msgid "%1$s, %2$s poked you at %3$s"
+#: ../../include/features.php:95
+msgid "Community Tagging"
msgstr ""
-#: ../../include/enotify.php:242
-#, php-format
-msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
+#: ../../include/features.php:95
+msgid "Ability to tag existing posts"
msgstr ""
-#: ../../include/enotify.php:258
-#, php-format
-msgid "[Hubzilla:Notify] %s tagged your post"
+#: ../../include/features.php:96
+msgid "Post Categories"
msgstr ""
-#: ../../include/enotify.php:259
-#, php-format
-msgid "%1$s, %2$s tagged your post at %3$s"
+#: ../../include/features.php:96
+msgid "Add categories to your posts"
msgstr ""
-#: ../../include/enotify.php:260
-#, php-format
-msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]"
+#: ../../include/features.php:97
+msgid "Ability to file posts under folders"
msgstr ""
-#: ../../include/enotify.php:272
-msgid "[Hubzilla:Notify] Introduction received"
+#: ../../include/features.php:98
+msgid "Dislike Posts"
msgstr ""
-#: ../../include/enotify.php:273
-#, php-format
-msgid "%1$s, you've received an new connection request from '%2$s' at %3$s"
+#: ../../include/features.php:98
+msgid "Ability to dislike posts/comments"
msgstr ""
-#: ../../include/enotify.php:274
-#, php-format
-msgid ""
-"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s."
+#: ../../include/features.php:99
+msgid "Star Posts"
msgstr ""
-#: ../../include/enotify.php:278 ../../include/enotify.php:297
-#, php-format
-msgid "You may visit their profile at %s"
+#: ../../include/features.php:99
+msgid "Ability to mark special posts with a star indicator"
msgstr ""
-#: ../../include/enotify.php:280
-#, php-format
-msgid "Please visit %s to approve or reject the connection request."
+#: ../../include/features.php:100
+msgid "Tag Cloud"
msgstr ""
-#: ../../include/enotify.php:287
-msgid "[Hubzilla:Notify] Friend suggestion received"
+#: ../../include/features.php:100
+msgid "Provide a personal tag cloud on your channel page"
msgstr ""
-#: ../../include/enotify.php:288
-#, php-format
-msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
+#: ../../include/identity.php:32
+msgid "Unable to obtain identity information from database"
msgstr ""
-#: ../../include/enotify.php:289
-#, php-format
-msgid ""
-"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s."
+#: ../../include/identity.php:66
+msgid "Empty name"
msgstr ""
-#: ../../include/enotify.php:295
-msgid "Name:"
+#: ../../include/identity.php:69
+msgid "Name too long"
msgstr ""
-#: ../../include/enotify.php:296
-msgid "Photo:"
+#: ../../include/identity.php:180
+msgid "No account identifier"
msgstr ""
-#: ../../include/enotify.php:299
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
+#: ../../include/identity.php:192
+msgid "Nickname is required."
msgstr ""
-#: ../../include/enotify.php:514
-msgid "[Hubzilla:Notify]"
+#: ../../include/identity.php:206
+msgid "Reserved nickname. Please choose another."
msgstr ""
-#: ../../include/follow.php:28
-msgid "Channel is blocked on this site."
+#: ../../include/identity.php:211
+msgid ""
+"Nickname has unsupported characters or is already being used on this site."
msgstr ""
-#: ../../include/follow.php:33
-msgid "Channel location missing."
+#: ../../include/identity.php:287
+msgid "Unable to retrieve created identity"
msgstr ""
-#: ../../include/follow.php:82
-msgid "Response from remote channel was incomplete."
+#: ../../include/identity.php:345
+msgid "Default Profile"
msgstr ""
-#: ../../include/follow.php:99
-msgid "Channel was deleted and no longer exists."
+#: ../../include/identity.php:784
+msgid "Requested channel is not available."
msgstr ""
-#: ../../include/follow.php:152 ../../include/follow.php:181
-msgid "Protocol disabled."
+#: ../../include/identity.php:830 ../../mod/achievements.php:11
+#: ../../mod/blocks.php:29 ../../mod/connect.php:13 ../../mod/editblock.php:29
+#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28
+#: ../../mod/filestorage.php:54 ../../mod/hcard.php:8 ../../mod/layouts.php:29
+#: ../../mod/profile.php:16 ../../mod/webpages.php:29
+msgid "Requested profile is not available."
msgstr ""
-#: ../../include/follow.php:171
-msgid "Channel discovery failed."
+#: ../../include/identity.php:924 ../../mod/profiles.php:691
+msgid "Change profile photo"
msgstr ""
-#: ../../include/follow.php:197
-msgid "local account not found."
+#: ../../include/identity.php:932
+msgid "Create New Profile"
msgstr ""
-#: ../../include/follow.php:221
-msgid "Cannot connect to yourself."
+#: ../../include/identity.php:949 ../../mod/profiles.php:766
+msgid "Profile Image"
msgstr ""
-#: ../../include/oembed.php:213
-msgid "Embedded content"
+#: ../../include/identity.php:952
+msgid "Visible to everybody"
msgstr ""
-#: ../../include/oembed.php:222
-msgid "Embedding disabled"
+#: ../../include/identity.php:953 ../../mod/profiles.php:689
+#: ../../mod/profiles.php:770
+msgid "Edit visibility"
msgstr ""
-#: ../../include/message.php:19
-msgid "No recipient provided."
+#: ../../include/identity.php:1027 ../../include/identity.php:1282
+msgid "Gender:"
msgstr ""
-#: ../../include/message.php:24
-msgid "[no subject]"
+#: ../../include/identity.php:1028 ../../include/identity.php:1326
+msgid "Status:"
msgstr ""
-#: ../../include/message.php:44
-msgid "Unable to determine sender."
+#: ../../include/identity.php:1029 ../../include/identity.php:1337
+msgid "Homepage:"
msgstr ""
-#: ../../include/message.php:219
-msgid "Stored post could not be verified."
+#: ../../include/identity.php:1030
+msgid "Online Now"
msgstr ""
-#: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1487
-msgid "Logout"
+#: ../../include/identity.php:1117 ../../include/identity.php:1193
+#: ../../mod/ping.php:318
+msgid "g A l F d"
msgstr ""
-#: ../../include/nav.php:82 ../../include/nav.php:114
-msgid "End this session"
+#: ../../include/identity.php:1118 ../../include/identity.php:1194
+msgid "F d"
msgstr ""
-#: ../../include/nav.php:85 ../../include/nav.php:145
-msgid "Home"
+#: ../../include/identity.php:1163 ../../include/identity.php:1233
+#: ../../mod/ping.php:341
+msgid "[today]"
msgstr ""
-#: ../../include/nav.php:85
-msgid "Your posts and conversations"
+#: ../../include/identity.php:1174
+msgid "Birthday Reminders"
msgstr ""
-#: ../../include/nav.php:86
-msgid "Your profile page"
+#: ../../include/identity.php:1175
+msgid "Birthdays this week:"
msgstr ""
-#: ../../include/nav.php:88
-msgid "Edit Profiles"
+#: ../../include/identity.php:1226
+msgid "[No description]"
msgstr ""
-#: ../../include/nav.php:88
-msgid "Manage/Edit profiles"
+#: ../../include/identity.php:1244
+msgid "Event Reminders"
msgstr ""
-#: ../../include/nav.php:90
-msgid "Edit your profile"
+#: ../../include/identity.php:1245
+msgid "Events this week:"
msgstr ""
-#: ../../include/nav.php:92
-msgid "Your photos"
+#: ../../include/identity.php:1280 ../../mod/settings.php:1047
+msgid "Full Name:"
msgstr ""
-#: ../../include/nav.php:93
-msgid "Your files"
+#: ../../include/identity.php:1287
+msgid "Like this channel"
msgstr ""
-#: ../../include/nav.php:97 ../../include/apps.php:146
-msgid "Chat"
+#: ../../include/identity.php:1311
+msgid "j F, Y"
msgstr ""
-#: ../../include/nav.php:97
-msgid "Your chatrooms"
+#: ../../include/identity.php:1312
+msgid "j F"
msgstr ""
-#: ../../include/nav.php:103
-msgid "Your bookmarks"
+#: ../../include/identity.php:1319
+msgid "Birthday:"
msgstr ""
-#: ../../include/nav.php:107
-msgid "Your webpages"
+#: ../../include/identity.php:1323 ../../mod/directory.php:302
+msgid "Age:"
msgstr ""
-#: ../../include/nav.php:111 ../../include/apps.php:131 ../../boot.php:1488
-msgid "Login"
+#: ../../include/identity.php:1332
+#, php-format
+msgid "for %1$d %2$s"
msgstr ""
-#: ../../include/nav.php:111
-msgid "Sign in"
+#: ../../include/identity.php:1335
+msgid "Sexual Preference:"
msgstr ""
-#: ../../include/nav.php:128
-#, php-format
-msgid "%s - click to logout"
+#: ../../include/identity.php:1339 ../../mod/directory.php:318
+msgid "Hometown:"
msgstr ""
-#: ../../include/nav.php:131
-msgid "Remote authentication"
+#: ../../include/identity.php:1341
+msgid "Tags:"
msgstr ""
-#: ../../include/nav.php:131
-msgid "Click to authenticate to your home hub"
+#: ../../include/identity.php:1343
+msgid "Political Views:"
msgstr ""
-#: ../../include/nav.php:145
-msgid "Home Page"
+#: ../../include/identity.php:1345
+msgid "Religion:"
msgstr ""
-#: ../../include/nav.php:149 ../../mod/register.php:226 ../../boot.php:1470
-msgid "Register"
+#: ../../include/identity.php:1347 ../../mod/directory.php:320
+msgid "About:"
msgstr ""
-#: ../../include/nav.php:149
-msgid "Create an account"
+#: ../../include/identity.php:1349
+msgid "Hobbies/Interests:"
msgstr ""
-#: ../../include/nav.php:154 ../../include/apps.php:142
-#: ../../mod/layouts.php:176 ../../mod/help.php:204 ../../mod/help.php:209
-msgid "Help"
+#: ../../include/identity.php:1351
+msgid "Likes:"
msgstr ""
-#: ../../include/nav.php:154
-msgid "Help and documentation"
+#: ../../include/identity.php:1353
+msgid "Dislikes:"
msgstr ""
-#: ../../include/nav.php:157
-msgid "Applications, utilities, links, games"
+#: ../../include/identity.php:1355
+msgid "Contact information and Social Networks:"
msgstr ""
-#: ../../include/nav.php:159
-msgid "Search site @name, #tag, ?docs, content"
+#: ../../include/identity.php:1357
+msgid "My other channels:"
msgstr ""
-#: ../../include/nav.php:162 ../../include/apps.php:141
-msgid "Directory"
+#: ../../include/identity.php:1359
+msgid "Musical interests:"
msgstr ""
-#: ../../include/nav.php:162
-msgid "Channel Directory"
+#: ../../include/identity.php:1361
+msgid "Books, literature:"
msgstr ""
-#: ../../include/nav.php:174 ../../include/apps.php:133
-msgid "Grid"
+#: ../../include/identity.php:1363
+msgid "Television:"
msgstr ""
-#: ../../include/nav.php:174
-msgid "Your grid"
+#: ../../include/identity.php:1365
+msgid "Film/dance/culture/entertainment:"
msgstr ""
-#: ../../include/nav.php:175
-msgid "Mark all grid notifications seen"
+#: ../../include/identity.php:1367
+msgid "Love/Romance:"
msgstr ""
-#: ../../include/nav.php:177 ../../include/apps.php:137
-msgid "Channel Home"
+#: ../../include/identity.php:1369
+msgid "Work/employment:"
msgstr ""
-#: ../../include/nav.php:177
-msgid "Channel home"
+#: ../../include/identity.php:1371
+msgid "School/education:"
msgstr ""
-#: ../../include/nav.php:178
-msgid "Mark all channel notifications seen"
+#: ../../include/identity.php:1391
+msgid "Like this thing"
msgstr ""
-#: ../../include/nav.php:181 ../../mod/connections.php:260
-msgid "Connections"
+#: ../../include/identity.php:1801 ../../mod/cover_photo.php:236
+msgid "cover photo"
msgstr ""
-#: ../../include/nav.php:184
-msgid "Notices"
+#: ../../include/import.php:23
+msgid ""
+"Cannot create a duplicate channel identifier on this system. Import failed."
msgstr ""
-#: ../../include/nav.php:184
-msgid "Notifications"
+#: ../../include/import.php:70
+msgid "Channel clone failed. Import failed."
msgstr ""
-#: ../../include/nav.php:185
-msgid "See all notifications"
+#: ../../include/import.php:80 ../../mod/import.php:146
+msgid "Cloned channel not found. Import failed."
msgstr ""
-#: ../../include/nav.php:186 ../../mod/notifications.php:99
-msgid "Mark all system notifications seen"
+#: ../../include/items.php:423 ../../mod/dreport.php:6
+#: ../../mod/dreport.php:45 ../../mod/group.php:68
+#: ../../mod/import_items.php:108 ../../mod/like.php:280
+#: ../../mod/profperm.php:23 ../../mod/subthread.php:58 ../../index.php:184
+msgid "Permission denied"
msgstr ""
-#: ../../include/nav.php:188 ../../include/apps.php:143
-msgid "Mail"
+#: ../../include/items.php:1138 ../../include/items.php:1183
+msgid "(Unknown)"
msgstr ""
-#: ../../include/nav.php:188
-msgid "Private mail"
+#: ../../include/items.php:1382
+msgid "Visible to anybody on the internet."
msgstr ""
-#: ../../include/nav.php:189
-msgid "See all private messages"
+#: ../../include/items.php:1384
+msgid "Visible to you only."
msgstr ""
-#: ../../include/nav.php:190
-msgid "Mark all private messages seen"
+#: ../../include/items.php:1386
+msgid "Visible to anybody in this network."
msgstr ""
-#: ../../include/nav.php:196 ../../include/apps.php:140
-msgid "Events"
+#: ../../include/items.php:1388
+msgid "Visible to anybody authenticated."
msgstr ""
-#: ../../include/nav.php:196
-msgid "Event Calendar"
+#: ../../include/items.php:1390
+#, php-format
+msgid "Visible to anybody on %s."
msgstr ""
-#: ../../include/nav.php:197
-msgid "See all events"
+#: ../../include/items.php:1392
+msgid "Visible to all connections."
msgstr ""
-#: ../../include/nav.php:198
-msgid "Mark all events seen"
+#: ../../include/items.php:1394
+msgid "Visible to approved connections."
msgstr ""
-#: ../../include/nav.php:200 ../../include/apps.php:132
-#: ../../mod/manage.php:160
-msgid "Channel Manager"
+#: ../../include/items.php:1396
+msgid "Visible to specific connections."
msgstr ""
-#: ../../include/nav.php:200
-msgid "Manage Your Channels"
+#: ../../include/items.php:4592 ../../mod/display.php:36
+#: ../../mod/filestorage.php:27 ../../mod/admin.php:141
+#: ../../mod/admin.php:1189 ../../mod/admin.php:1434 ../../mod/thing.php:85
+#: ../../mod/viewsrc.php:20
+msgid "Item not found."
msgstr ""
-#: ../../include/nav.php:202
-msgid "Account/Channel Settings"
+#: ../../include/items.php:5126 ../../mod/group.php:38 ../../mod/group.php:137
+msgid "Privacy group not found."
msgstr ""
-#: ../../include/nav.php:210
-msgid "Site Setup and Configuration"
+#: ../../include/items.php:5142
+msgid "Privacy group is empty."
msgstr ""
-#: ../../include/nav.php:246
-msgid "@name, #tag, ?doc, content"
+#: ../../include/items.php:5149
+#, php-format
+msgid "Privacy group: %s"
msgstr ""
-#: ../../include/nav.php:247
-msgid "Please wait..."
+#: ../../include/items.php:5159 ../../mod/connedit.php:701
+#, php-format
+msgid "Connection: %s"
msgstr ""
-#: ../../include/security.php:381
-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."
+#: ../../include/items.php:5161
+msgid "Connection not found."
msgstr ""
-#: ../../include/dir_fns.php:139
-msgid "Directory Options"
+#: ../../include/items.php:5587 ../../mod/cover_photo.php:229
+msgid "female"
msgstr ""
-#: ../../include/dir_fns.php:141
-msgid "Safe Mode"
+#: ../../include/items.php:5588 ../../mod/cover_photo.php:230
+#, php-format
+msgid "%1$s updated her %2$s"
msgstr ""
-#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
-#: ../../include/dir_fns.php:143 ../../mod/filestorage.php:151
-#: ../../mod/filestorage.php:159 ../../mod/removeme.php:60
-#: ../../mod/connedit.php:635 ../../mod/connedit.php:684 ../../mod/api.php:102
-#: ../../mod/admin.php:415 ../../mod/settings.php:577 ../../mod/photos.php:626
-#: ../../mod/menu.php:96 ../../mod/menu.php:153 ../../mod/events.php:447
-#: ../../mod/events.php:448 ../../mod/events.php:457 ../../mod/mitem.php:154
-#: ../../mod/mitem.php:155 ../../mod/mitem.php:228 ../../mod/mitem.php:229
-#: ../../view/theme/redbasic/php/config.php:104
-#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1492
-msgid "No"
+#: ../../include/items.php:5589 ../../mod/cover_photo.php:231
+msgid "male"
msgstr ""
-#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142
-#: ../../include/dir_fns.php:143 ../../mod/filestorage.php:151
-#: ../../mod/filestorage.php:159 ../../mod/removeme.php:60
-#: ../../mod/api.php:101 ../../mod/admin.php:417 ../../mod/settings.php:577
-#: ../../mod/photos.php:626 ../../mod/menu.php:96 ../../mod/menu.php:153
-#: ../../mod/events.php:447 ../../mod/events.php:448 ../../mod/events.php:457
-#: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228
-#: ../../mod/mitem.php:229 ../../view/theme/redbasic/php/config.php:104
-#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1492
-msgid "Yes"
+#: ../../include/items.php:5590 ../../mod/cover_photo.php:232
+#, php-format
+msgid "%1$s updated his %2$s"
msgstr ""
-#: ../../include/dir_fns.php:142
-msgid "Public Forums Only"
+#: ../../include/items.php:5592 ../../mod/cover_photo.php:234
+#, php-format
+msgid "%1$s updated their %2$s"
msgstr ""
-#: ../../include/dir_fns.php:143
-msgid "This Website Only"
+#: ../../include/items.php:5594
+msgid "profile photo"
msgstr ""
#: ../../include/group.php:26
@@ -3742,291 +3761,309 @@ msgid ""
"not what you intended, please create another group with a different name."
msgstr ""
-#: ../../include/group.php:232
-msgid "Add new connections to this collection (privacy group)"
+#: ../../include/group.php:248
+msgid "Add new connections to this privacy group"
msgstr ""
-#: ../../include/group.php:251 ../../mod/admin.php:826
+#: ../../include/group.php:267 ../../mod/admin.php:998
msgid "All Channels"
msgstr ""
-#: ../../include/group.php:273
+#: ../../include/group.php:289
msgid "edit"
msgstr ""
-#: ../../include/group.php:295
-msgid "Collections"
+#: ../../include/group.php:312
+msgid "Edit group"
msgstr ""
-#: ../../include/group.php:296
-msgid "Edit collection"
+#: ../../include/group.php:313
+msgid "Add privacy group"
msgstr ""
-#: ../../include/group.php:297
-msgid "Add new collection"
+#: ../../include/group.php:314
+msgid "Channels not in any privacy group"
msgstr ""
-#: ../../include/group.php:298
-msgid "Channels not in any collection"
+#: ../../include/photos.php:112
+#, php-format
+msgid "Image exceeds website size limit of %lu bytes"
msgstr ""
-#: ../../include/zot.php:676
-msgid "Invalid data packet"
+#: ../../include/photos.php:119
+msgid "Image file is empty."
msgstr ""
-#: ../../include/zot.php:692
-msgid "Unable to verify channel signature"
+#: ../../include/photos.php:146 ../../mod/profile_photo.php:225
+#: ../../mod/cover_photo.php:164
+msgid "Unable to process image"
msgstr ""
-#: ../../include/zot.php:2268
+#: ../../include/photos.php:257
+msgid "Photo storage failed."
+msgstr ""
+
+#: ../../include/photos.php:297
+msgid "a new photo"
+msgstr ""
+
+#: ../../include/photos.php:301
#, php-format
-msgid "Unable to verify site signature for %s"
+msgctxt "photo_upload"
+msgid "%1$s posted %2$s to %3$s"
msgstr ""
-#: ../../include/zot.php:3584
-msgid "invalid target signature"
+#: ../../include/photos.php:510
+msgid "Upload New Photos"
msgstr ""
-#: ../../include/page_widgets.php:6
-msgid "New Page"
+#: ../../include/text.php:394
+msgid "prev"
msgstr ""
-#: ../../include/page_widgets.php:39 ../../mod/blocks.php:159
-#: ../../mod/webpages.php:187 ../../mod/layouts.php:188
-msgid "View"
+#: ../../include/text.php:396
+msgid "first"
msgstr ""
-#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189
-msgid "Actions"
+#: ../../include/text.php:425
+msgid "last"
msgstr ""
-#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190
-msgid "Page Link"
+#: ../../include/text.php:428
+msgid "next"
msgstr ""
-#: ../../include/page_widgets.php:43
-msgid "Title"
+#: ../../include/text.php:438
+msgid "older"
msgstr ""
-#: ../../include/page_widgets.php:44 ../../mod/blocks.php:150
-#: ../../mod/webpages.php:192 ../../mod/layouts.php:181 ../../mod/menu.php:110
-msgid "Created"
+#: ../../include/text.php:440
+msgid "newer"
msgstr ""
-#: ../../include/page_widgets.php:45 ../../mod/blocks.php:151
-#: ../../mod/webpages.php:193 ../../mod/layouts.php:182 ../../mod/menu.php:111
-msgid "Edited"
+#: ../../include/text.php:822
+msgid "No connections"
msgstr ""
-#: ../../include/network.php:630
-msgid "view full size"
+#: ../../include/text.php:847
+#, php-format
+msgid "View all %s connections"
msgstr ""
-#: ../../include/network.php:1655 ../../include/account.php:316
-#: ../../include/account.php:343 ../../include/account.php:403
-msgid "Administrator"
+#: ../../include/text.php:992 ../../include/text.php:997
+msgid "poke"
msgstr ""
-#: ../../include/network.php:1669
-msgid "No Subject"
+#: ../../include/text.php:998
+msgid "ping"
msgstr ""
-#: ../../include/dba/dba_driver.php:141
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
+#: ../../include/text.php:998
+msgid "pinged"
msgstr ""
-#: ../../include/ItemObject.php:130
-msgid "Save to Folder"
+#: ../../include/text.php:999
+msgid "prod"
msgstr ""
-#: ../../include/ItemObject.php:151
-msgid "I will attend"
+#: ../../include/text.php:999
+msgid "prodded"
msgstr ""
-#: ../../include/ItemObject.php:151
-msgid "I will not attend"
+#: ../../include/text.php:1000
+msgid "slap"
msgstr ""
-#: ../../include/ItemObject.php:151
-msgid "I might attend"
+#: ../../include/text.php:1000
+msgid "slapped"
msgstr ""
-#: ../../include/ItemObject.php:161
-msgid "I agree"
+#: ../../include/text.php:1001
+msgid "finger"
msgstr ""
-#: ../../include/ItemObject.php:161
-msgid "I disagree"
+#: ../../include/text.php:1001
+msgid "fingered"
msgstr ""
-#: ../../include/ItemObject.php:161
-msgid "I abstain"
+#: ../../include/text.php:1002
+msgid "rebuff"
msgstr ""
-#: ../../include/ItemObject.php:212
-msgid "Add Star"
+#: ../../include/text.php:1002
+msgid "rebuffed"
msgstr ""
-#: ../../include/ItemObject.php:213
-msgid "Remove Star"
+#: ../../include/text.php:1014
+msgid "happy"
msgstr ""
-#: ../../include/ItemObject.php:214
-msgid "Toggle Star Status"
+#: ../../include/text.php:1015
+msgid "sad"
msgstr ""
-#: ../../include/ItemObject.php:218
-msgid "starred"
+#: ../../include/text.php:1016
+msgid "mellow"
msgstr ""
-#: ../../include/ItemObject.php:236
-msgid "Add Tag"
+#: ../../include/text.php:1017
+msgid "tired"
msgstr ""
-#: ../../include/ItemObject.php:254 ../../mod/photos.php:1023
-msgid "I like this (toggle)"
+#: ../../include/text.php:1018
+msgid "perky"
msgstr ""
-#: ../../include/ItemObject.php:255 ../../mod/photos.php:1024
-msgid "I don't like this (toggle)"
+#: ../../include/text.php:1019
+msgid "angry"
msgstr ""
-#: ../../include/ItemObject.php:259
-msgid "Share This"
+#: ../../include/text.php:1020
+msgid "stupefied"
msgstr ""
-#: ../../include/ItemObject.php:259
-msgid "share"
+#: ../../include/text.php:1021
+msgid "puzzled"
msgstr ""
-#: ../../include/ItemObject.php:268
-msgid "Delivery Report"
+#: ../../include/text.php:1022
+msgid "interested"
msgstr ""
-#: ../../include/ItemObject.php:286
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/text.php:1023
+msgid "bitter"
+msgstr ""
-#: ../../include/ItemObject.php:315 ../../include/ItemObject.php:316
-#, php-format
-msgid "View %s's profile - %s"
+#: ../../include/text.php:1024
+msgid "cheerful"
msgstr ""
-#: ../../include/ItemObject.php:319
-msgid "to"
+#: ../../include/text.php:1025
+msgid "alive"
msgstr ""
-#: ../../include/ItemObject.php:320
-msgid "via"
+#: ../../include/text.php:1026
+msgid "annoyed"
msgstr ""
-#: ../../include/ItemObject.php:321
-msgid "Wall-to-Wall"
+#: ../../include/text.php:1027
+msgid "anxious"
msgstr ""
-#: ../../include/ItemObject.php:322
-msgid "via Wall-To-Wall:"
+#: ../../include/text.php:1028
+msgid "cranky"
msgstr ""
-#: ../../include/ItemObject.php:362
-msgid "Save Bookmarks"
+#: ../../include/text.php:1029
+msgid "disturbed"
msgstr ""
-#: ../../include/ItemObject.php:363
-msgid "Add to Calendar"
+#: ../../include/text.php:1030
+msgid "frustrated"
msgstr ""
-#: ../../include/ItemObject.php:372
-msgid "Mark all seen"
+#: ../../include/text.php:1031
+msgid "depressed"
msgstr ""
-#: ../../include/ItemObject.php:378 ../../mod/photos.php:1209
-msgctxt "noun"
-msgid "Likes"
+#: ../../include/text.php:1032
+msgid "motivated"
msgstr ""
-#: ../../include/ItemObject.php:379 ../../mod/photos.php:1210
-msgctxt "noun"
-msgid "Dislikes"
+#: ../../include/text.php:1033
+msgid "relaxed"
msgstr ""
-#: ../../include/ItemObject.php:694 ../../mod/photos.php:1042
-#: ../../mod/photos.php:1160
-msgid "This is you"
+#: ../../include/text.php:1034
+msgid "surprised"
msgstr ""
-#: ../../include/ItemObject.php:703
-msgid "Image"
+#: ../../include/text.php:1210
+msgid "May"
msgstr ""
-#: ../../include/ItemObject.php:704
-msgid "Insert Link"
+#: ../../include/text.php:1287 ../../include/text.php:1291
+msgid "Unknown Attachment"
msgstr ""
-#: ../../include/ItemObject.php:705
-msgid "Video"
+#: ../../include/text.php:1293
+msgid "unknown"
msgstr ""
-#: ../../include/apps.php:128
-msgid "Site Admin"
+#: ../../include/text.php:1329
+msgid "remove category"
msgstr ""
-#: ../../include/apps.php:130
-msgid "Address Book"
+#: ../../include/text.php:1406
+msgid "remove from file"
msgstr ""
-#: ../../include/apps.php:144 ../../mod/mood.php:131
-msgid "Mood"
+#: ../../include/text.php:1548 ../../include/text.php:1559
+msgid "Click to open/close"
msgstr ""
-#: ../../include/apps.php:148
-msgid "Probe"
+#: ../../include/text.php:1743 ../../mod/events.php:630 ../../mod/cal.php:302
+msgid "Link to Source"
msgstr ""
-#: ../../include/apps.php:149
-msgid "Suggest"
+#: ../../include/text.php:1764 ../../include/text.php:1836
+msgid "default"
msgstr ""
-#: ../../include/apps.php:150
-msgid "Random Channel"
+#: ../../include/text.php:1772
+msgid "Page layout"
msgstr ""
-#: ../../include/apps.php:151
-msgid "Invite"
+#: ../../include/text.php:1772
+msgid "You can create your own with the layouts tool"
msgstr ""
-#: ../../include/apps.php:152
-msgid "Features"
+#: ../../include/text.php:1814
+msgid "Page content type"
msgstr ""
-#: ../../include/apps.php:153 ../../mod/id.php:28
-msgid "Language"
+#: ../../include/text.php:1848
+msgid "Select an alternate language"
msgstr ""
-#: ../../include/apps.php:154
-msgid "Post"
+#: ../../include/text.php:1980
+msgid "activity"
msgstr ""
-#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18
-#: ../../mod/id.php:19
-msgid "Profile Photo"
+#: ../../include/text.php:2275
+msgid "Design Tools"
msgstr ""
-#: ../../include/apps.php:252 ../../mod/settings.php:84
-#: ../../mod/settings.php:612
-msgid "Update"
+#: ../../include/text.php:2278 ../../mod/blocks.php:147
+msgid "Blocks"
msgstr ""
-#: ../../include/apps.php:252
-msgid "Install"
+#: ../../include/text.php:2279 ../../mod/menu.php:103
+msgid "Menus"
msgstr ""
-#: ../../include/apps.php:257
-msgid "Purchase"
+#: ../../include/text.php:2280 ../../mod/layouts.php:174
+msgid "Layouts"
+msgstr ""
+
+#: ../../include/text.php:2281
+msgid "Pages"
+msgstr ""
+
+#: ../../include/message.php:20
+msgid "No recipient provided."
+msgstr ""
+
+#: ../../include/message.php:25
+msgid "[no subject]"
+msgstr ""
+
+#: ../../include/message.php:45
+msgid "Unable to determine sender."
+msgstr ""
+
+#: ../../include/message.php:222
+msgid "Stored post could not be verified."
msgstr ""
#: ../../include/permissions.php:26
@@ -4109,5087 +4146,5265 @@ msgstr ""
msgid "Extremely advanced. Leave this alone unless you know what you are doing"
msgstr ""
-#: ../../include/permissions.php:867
+#: ../../include/permissions.php:877
msgid "Social Networking"
msgstr ""
-#: ../../include/permissions.php:867 ../../include/permissions.php:868
-#: ../../include/permissions.php:869
-msgid "Mostly Public"
+#: ../../include/permissions.php:877
+msgid "Social - Mostly Public"
msgstr ""
-#: ../../include/permissions.php:867 ../../include/permissions.php:868
-#: ../../include/permissions.php:869
-msgid "Restricted"
+#: ../../include/permissions.php:877
+msgid "Social - Restricted"
msgstr ""
-#: ../../include/permissions.php:867 ../../include/permissions.php:868
-msgid "Private"
+#: ../../include/permissions.php:877
+msgid "Social - Private"
msgstr ""
-#: ../../include/permissions.php:868
+#: ../../include/permissions.php:878
msgid "Community Forum"
msgstr ""
-#: ../../include/permissions.php:869
+#: ../../include/permissions.php:878
+msgid "Forum - Mostly Public"
+msgstr ""
+
+#: ../../include/permissions.php:878
+msgid "Forum - Restricted"
+msgstr ""
+
+#: ../../include/permissions.php:878
+msgid "Forum - Private"
+msgstr ""
+
+#: ../../include/permissions.php:879
msgid "Feed Republish"
msgstr ""
-#: ../../include/permissions.php:870
+#: ../../include/permissions.php:879
+msgid "Feed - Mostly Public"
+msgstr ""
+
+#: ../../include/permissions.php:879
+msgid "Feed - Restricted"
+msgstr ""
+
+#: ../../include/permissions.php:880
msgid "Special Purpose"
msgstr ""
-#: ../../include/permissions.php:870
-msgid "Celebrity/Soapbox"
+#: ../../include/permissions.php:880
+msgid "Special - Celebrity/Soapbox"
msgstr ""
-#: ../../include/permissions.php:870
-msgid "Group Repository"
+#: ../../include/permissions.php:880
+msgid "Special - Group Repository"
msgstr ""
-#: ../../include/permissions.php:871
+#: ../../include/permissions.php:881
msgid "Custom/Expert Mode"
msgstr ""
-#: ../../include/photo/photo_driver.php:719 ../../mod/profile_photo.php:147
-#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:379
-#: ../../mod/photos.php:94 ../../mod/photos.php:699
-msgid "Profile Photos"
+#: ../../include/security.php:383
+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/account.php:27
+#: ../../include/account.php:28
msgid "Not a valid email address"
msgstr ""
-#: ../../include/account.php:29
+#: ../../include/account.php:30
msgid "Your email domain is not among those allowed on this site"
msgstr ""
-#: ../../include/account.php:35
+#: ../../include/account.php:36
msgid "Your email address is already registered at this site."
msgstr ""
-#: ../../include/account.php:67
+#: ../../include/account.php:68
msgid "An invitation is required."
msgstr ""
-#: ../../include/account.php:71
+#: ../../include/account.php:72
msgid "Invitation could not be verified."
msgstr ""
-#: ../../include/account.php:121
+#: ../../include/account.php:122
msgid "Please enter the required information."
msgstr ""
-#: ../../include/account.php:188
+#: ../../include/account.php:189
msgid "Failed to store account information."
msgstr ""
-#: ../../include/account.php:248
+#: ../../include/account.php:249
#, php-format
msgid "Registration confirmation for %s"
msgstr ""
-#: ../../include/account.php:314
+#: ../../include/account.php:315
#, php-format
msgid "Registration request at %s"
msgstr ""
-#: ../../include/account.php:338
+#: ../../include/account.php:339
msgid "your registration password"
msgstr ""
-#: ../../include/account.php:341 ../../include/account.php:401
+#: ../../include/account.php:342 ../../include/account.php:402
#, php-format
msgid "Registration details for %s"
msgstr ""
-#: ../../include/account.php:410
+#: ../../include/account.php:414
msgid "Account approved."
msgstr ""
-#: ../../include/account.php:449
+#: ../../include/account.php:454
#, php-format
msgid "Registration revoked for %s"
msgstr ""
-#: ../../include/account.php:494
+#: ../../include/account.php:506
msgid "Account verified. Please login."
msgstr ""
-#: ../../include/account.php:707 ../../include/account.php:709
+#: ../../include/account.php:719 ../../include/account.php:721
msgid "Click here to upgrade."
msgstr ""
-#: ../../include/account.php:715
+#: ../../include/account.php:727
msgid "This action exceeds the limits set by your subscription plan."
msgstr ""
-#: ../../include/account.php:720
+#: ../../include/account.php:732
msgid "This action is not available under your subscription plan."
msgstr ""
-#: ../../mod/filestorage.php:82
-msgid "Permission Denied."
-msgstr ""
-
-#: ../../mod/filestorage.php:98
-msgid "File not found."
-msgstr ""
-
-#: ../../mod/filestorage.php:141
-msgid "Edit file permissions"
-msgstr ""
-
-#: ../../mod/filestorage.php:150
-msgid "Set/edit permissions"
-msgstr ""
-
-#: ../../mod/filestorage.php:151
-msgid "Include all files and sub folders"
-msgstr ""
-
-#: ../../mod/filestorage.php:152
-msgid "Return to file list"
-msgstr ""
-
-#: ../../mod/filestorage.php:154
-msgid "Copy/paste this code to attach file to a post"
-msgstr ""
-
-#: ../../mod/filestorage.php:155
-msgid "Copy/paste this URL to link file from a web page"
-msgstr ""
-
-#: ../../mod/filestorage.php:157
-msgid "Share this file"
+#: ../../include/acl_selectors.php:218
+msgid "Visible to your default audience"
msgstr ""
-#: ../../mod/filestorage.php:158
-msgid "Show URL to this file"
+#: ../../include/acl_selectors.php:243
+msgid "Show"
msgstr ""
-#: ../../mod/filestorage.php:159
-msgid "Notify your contacts about this file"
+#: ../../include/acl_selectors.php:244
+msgid "Don't show"
msgstr ""
-#: ../../mod/group.php:20
-msgid "Collection created."
+#: ../../include/acl_selectors.php:249
+msgid "Other networks and post services"
msgstr ""
-#: ../../mod/group.php:26
-msgid "Could not create collection."
+#: ../../include/acl_selectors.php:251 ../../mod/chat.php:229
+#: ../../mod/filestorage.php:147 ../../mod/photos.php:666
+#: ../../mod/photos.php:1040 ../../mod/thing.php:309 ../../mod/thing.php:355
+msgid "Permissions"
msgstr ""
-#: ../../mod/group.php:54
-msgid "Collection updated."
+#: ../../include/chat.php:23
+msgid "Missing room name"
msgstr ""
-#: ../../mod/group.php:86
-msgid "Create a collection of channels."
+#: ../../include/chat.php:32
+msgid "Duplicate room name"
msgstr ""
-#: ../../mod/group.php:87 ../../mod/group.php:180
-msgid "Collection Name: "
+#: ../../include/chat.php:82 ../../include/chat.php:90
+msgid "Invalid room specifier."
msgstr ""
-#: ../../mod/group.php:89 ../../mod/group.php:183
-msgid "Members are visible to other channels"
+#: ../../include/chat.php:122
+msgid "Room not found."
msgstr ""
-#: ../../mod/group.php:107
-msgid "Collection removed."
+#: ../../include/chat.php:143
+msgid "Room is full"
msgstr ""
-#: ../../mod/group.php:109
-msgid "Unable to remove collection."
+#: ../../include/Contact.php:118
+msgid "New window"
msgstr ""
-#: ../../mod/group.php:179
-msgid "Collection Editor"
+#: ../../include/Contact.php:119
+msgid "Open the selected location in a different window or browser tab"
msgstr ""
-#: ../../mod/group.php:193
-msgid "Members"
+#: ../../include/Contact.php:237
+#, php-format
+msgid "User '%s' deleted"
msgstr ""
-#: ../../mod/group.php:195
-msgid "All Connected Channels"
+#: ../../mod/achievements.php:34
+msgid "Some blurb about what to do when you're new here"
msgstr ""
-#: ../../mod/group.php:227
-msgid "Click on a channel to add or remove."
+#: ../../mod/acl.php:221
+msgid "network"
msgstr ""
-#: ../../mod/item.php:174
-msgid "Unable to locate original post."
+#: ../../mod/acl.php:231
+msgid "RSS"
msgstr ""
-#: ../../mod/item.php:418
-msgid "Empty post discarded."
+#: ../../mod/api.php:74 ../../mod/api.php:98
+msgid "Authorize application connection"
msgstr ""
-#: ../../mod/item.php:458
-msgid "Executable content type not permitted to this channel."
+#: ../../mod/api.php:75
+msgid "Return to your app and insert this Securty Code:"
msgstr ""
-#: ../../mod/item.php:823
-msgid "Duplicate post suppressed."
+#: ../../mod/api.php:85
+msgid "Please login to continue."
msgstr ""
-#: ../../mod/item.php:954
-msgid "System error. Post not saved."
+#: ../../mod/api.php:100
+msgid ""
+"Do you want to authorize this application to access your posts and contacts, "
+"and/or create new posts for you?"
msgstr ""
-#: ../../mod/item.php:1221
-msgid "Unable to obtain post information from database."
+#: ../../mod/appman.php:28 ../../mod/appman.php:44
+msgid "App installed."
msgstr ""
-#: ../../mod/item.php:1228
-#, php-format
-msgid "You have reached your limit of %1$.0f top level posts."
+#: ../../mod/appman.php:37
+msgid "Malformed app."
msgstr ""
-#: ../../mod/item.php:1235
-#, php-format
-msgid "You have reached your limit of %1$.0f webpages."
+#: ../../mod/appman.php:80
+msgid "Embed code"
msgstr ""
-#: ../../mod/common.php:10
-msgid "No channel."
+#: ../../mod/appman.php:86
+msgid "Edit App"
msgstr ""
-#: ../../mod/common.php:39
-msgid "Common connections"
+#: ../../mod/appman.php:86
+msgid "Create App"
msgstr ""
-#: ../../mod/common.php:44
-msgid "No connections in common."
+#: ../../mod/appman.php:91
+msgid "Name of app"
msgstr ""
-#: ../../mod/connect.php:56 ../../mod/connect.php:104
-msgid "Continue"
+#: ../../mod/appman.php:92
+msgid "Location (URL) of app"
msgstr ""
-#: ../../mod/connect.php:85
-msgid "Premium Channel Setup"
+#: ../../mod/appman.php:93 ../../mod/events.php:457 ../../mod/rbmark.php:97
+msgid "Description"
msgstr ""
-#: ../../mod/connect.php:87
-msgid "Enable premium channel connection restrictions"
+#: ../../mod/appman.php:94
+msgid "Photo icon URL"
msgstr ""
-#: ../../mod/connect.php:88
-msgid ""
-"Please enter your restrictions or conditions, such as paypal receipt, usage "
-"guidelines, etc."
+#: ../../mod/appman.php:94
+msgid "80 x 80 pixels - optional"
msgstr ""
-#: ../../mod/connect.php:90 ../../mod/connect.php:110
-msgid ""
-"This channel may require additional steps or acknowledgement of the "
-"following conditions prior to connecting:"
+#: ../../mod/appman.php:95
+msgid "Version ID"
msgstr ""
-#: ../../mod/connect.php:91
-msgid ""
-"Potential connections will then see the following text before proceeding:"
+#: ../../mod/appman.php:96
+msgid "Price of app"
msgstr ""
-#: ../../mod/connect.php:92 ../../mod/connect.php:113
-msgid ""
-"By continuing, I certify that I have complied with any instructions provided "
-"on this page."
+#: ../../mod/appman.php:97
+msgid "Location (URL) to purchase app"
msgstr ""
-#: ../../mod/connect.php:101
-msgid "(No specific instructions have been provided by the channel owner.)"
+#: ../../mod/attach.php:9
+msgid "Item not available."
msgstr ""
-#: ../../mod/connect.php:109
-msgid "Restricted or Premium Channel"
+#: ../../mod/block.php:27 ../../mod/page.php:36
+msgid "Invalid item."
msgstr ""
-#: ../../mod/match.php:22
-msgid "Profile Match"
+#: ../../mod/block.php:39 ../../mod/page.php:52 ../../mod/wall_upload.php:29
+#: ../../mod/cal.php:56
+msgid "Channel not found."
msgstr ""
-#: ../../mod/match.php:31
-msgid "No keywords to match. Please add keywords to your default profile."
+#: ../../mod/blocks.php:95 ../../mod/blocks.php:148
+msgid "Block Name"
msgstr ""
-#: ../../mod/match.php:63
-msgid "is interested in:"
+#: ../../mod/blocks.php:149
+msgid "Block Title"
msgstr ""
-#: ../../mod/match.php:70
-msgid "No matches"
+#: ../../mod/bookmarks.php:40
+msgid "Bookmark added"
msgstr ""
-#: ../../mod/openid.php:26
-msgid "OpenID protocol error. No ID returned."
+#: ../../mod/bookmarks.php:62
+msgid "My Bookmarks"
msgstr ""
-#: ../../mod/openid.php:72 ../../mod/openid.php:179
-#: ../../Zotlabs/Zot/Auth.php:248
-#, php-format
-msgid "Welcome %s. Remote authentication successful."
+#: ../../mod/bookmarks.php:73
+msgid "My Connections Bookmarks"
msgstr ""
-#: ../../mod/achievements.php:34
-msgid "Some blurb about what to do when you're new here"
+#: ../../mod/channel.php:25 ../../mod/chat.php:19
+msgid "You must be logged in to see this page."
msgstr ""
-#: ../../mod/chatsvc.php:111
-msgid "Away"
+#: ../../mod/channel.php:37
+msgid "Posts and comments"
msgstr ""
-#: ../../mod/chatsvc.php:115
-msgid "Online"
+#: ../../mod/channel.php:38
+msgid "Only posts"
msgstr ""
-#: ../../mod/pubsites.php:18
-msgid "Public Sites"
+#: ../../mod/channel.php:97
+msgid "Insufficient permissions. Request redirected to profile page."
msgstr ""
-#: ../../mod/pubsites.php:21
-msgid ""
-"The listed sites allow public registration for the $Projectname network. All "
-"sites in the network are interlinked so membership on any of them conveys "
-"membership in the network as a whole. Some sites may require subscription or "
-"provide tiered service plans. The provider links <strong>may</strong> "
-"provide additional details."
+#: ../../mod/channel.php:131 ../../mod/network.php:169 ../../mod/rpost.php:114
+msgid "Public"
msgstr ""
-#: ../../mod/pubsites.php:27
-msgid "Rate this hub"
+#: ../../mod/chat.php:175
+msgid "Room not found"
msgstr ""
-#: ../../mod/pubsites.php:28
-msgid "Site URL"
+#: ../../mod/chat.php:191
+msgid "Leave Room"
msgstr ""
-#: ../../mod/pubsites.php:28
-msgid "Access Type"
+#: ../../mod/chat.php:192
+msgid "Delete Room"
msgstr ""
-#: ../../mod/pubsites.php:28
-msgid "Registration Policy"
+#: ../../mod/chat.php:193
+msgid "I am away right now"
msgstr ""
-#: ../../mod/pubsites.php:28
-msgid "Project"
+#: ../../mod/chat.php:194
+msgid "I am online"
msgstr ""
-#: ../../mod/pubsites.php:28
-msgid "View hub ratings"
+#: ../../mod/chat.php:196
+msgid "Bookmark this room"
msgstr ""
-#: ../../mod/pubsites.php:32
-msgid "Rate"
+#: ../../mod/chat.php:212
+msgid "Feature disabled."
msgstr ""
-#: ../../mod/pubsites.php:33
-msgid "View ratings"
+#: ../../mod/chat.php:226
+msgid "New Chatroom"
msgstr ""
-#: ../../mod/tagger.php:96
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
+#: ../../mod/chat.php:227
+msgid "Chatroom name"
msgstr ""
-#: ../../mod/rate.php:158
-msgid "Website:"
+#: ../../mod/chat.php:228
+msgid "Expiration of chats (minutes)"
msgstr ""
-#: ../../mod/rate.php:161
+#: ../../mod/chat.php:240
#, php-format
-msgid "Remote Channel [%s] (not yet known on this site)"
-msgstr ""
-
-#: ../../mod/rate.php:162
-msgid "Rating (this information is public)"
-msgstr ""
-
-#: ../../mod/rate.php:163
-msgid "Optionally explain your rating (this information is public)"
+msgid "%1$s's Chatrooms"
msgstr ""
-#: ../../mod/blocks.php:95 ../../mod/blocks.php:148
-msgid "Block Name"
+#: ../../mod/chat.php:245
+msgid "No chatrooms available"
msgstr ""
-#: ../../mod/blocks.php:149
-msgid "Block Title"
+#: ../../mod/chat.php:246 ../../mod/manage.php:137 ../../mod/profiles.php:777
+msgid "Create New"
msgstr ""
-#: ../../mod/id.php:11
-msgid "First Name"
+#: ../../mod/chat.php:249
+msgid "Expiration"
msgstr ""
-#: ../../mod/id.php:12
-msgid "Last Name"
+#: ../../mod/chat.php:250
+msgid "min"
msgstr ""
-#: ../../mod/id.php:13
-msgid "Nickname"
+#: ../../mod/chatsvc.php:111
+msgid "Away"
msgstr ""
-#: ../../mod/id.php:14
-msgid "Full Name"
+#: ../../mod/chatsvc.php:116
+msgid "Online"
msgstr ""
-#: ../../mod/id.php:20
-msgid "Profile Photo 16px"
+#: ../../mod/common.php:10
+msgid "No channel."
msgstr ""
-#: ../../mod/id.php:21
-msgid "Profile Photo 32px"
+#: ../../mod/common.php:39
+msgid "Common connections"
msgstr ""
-#: ../../mod/id.php:22
-msgid "Profile Photo 48px"
+#: ../../mod/common.php:44
+msgid "No connections in common."
msgstr ""
-#: ../../mod/id.php:23
-msgid "Profile Photo 64px"
+#: ../../mod/connect.php:56 ../../mod/connect.php:104
+msgid "Continue"
msgstr ""
-#: ../../mod/id.php:24
-msgid "Profile Photo 80px"
+#: ../../mod/connect.php:85
+msgid "Premium Channel Setup"
msgstr ""
-#: ../../mod/id.php:25
-msgid "Profile Photo 128px"
+#: ../../mod/connect.php:87
+msgid "Enable premium channel connection restrictions"
msgstr ""
-#: ../../mod/id.php:26
-msgid "Timezone"
+#: ../../mod/connect.php:88
+msgid ""
+"Please enter your restrictions or conditions, such as paypal receipt, usage "
+"guidelines, etc."
msgstr ""
-#: ../../mod/id.php:27
-msgid "Homepage URL"
+#: ../../mod/connect.php:90 ../../mod/connect.php:110
+msgid ""
+"This channel may require additional steps or acknowledgement of the "
+"following conditions prior to connecting:"
msgstr ""
-#: ../../mod/id.php:29
-msgid "Birth Year"
+#: ../../mod/connect.php:91
+msgid ""
+"Potential connections will then see the following text before proceeding:"
msgstr ""
-#: ../../mod/id.php:30
-msgid "Birth Month"
+#: ../../mod/connect.php:92 ../../mod/connect.php:113
+msgid ""
+"By continuing, I certify that I have complied with any instructions provided "
+"on this page."
msgstr ""
-#: ../../mod/id.php:31
-msgid "Birth Day"
+#: ../../mod/connect.php:101
+msgid "(No specific instructions have been provided by the channel owner.)"
msgstr ""
-#: ../../mod/id.php:32
-msgid "Birthdate"
+#: ../../mod/connect.php:109
+msgid "Restricted or Premium Channel"
msgstr ""
-#: ../../mod/id.php:33 ../../mod/profiles.php:441
-msgid "Gender"
+#: ../../mod/connections.php:52 ../../mod/connections.php:157
+#: ../../mod/connections.php:238
+msgid "Blocked"
msgstr ""
-#: ../../mod/like.php:15
-msgid "Like/Dislike"
+#: ../../mod/connections.php:57 ../../mod/connections.php:164
+#: ../../mod/connections.php:237
+msgid "Ignored"
msgstr ""
-#: ../../mod/like.php:20
-msgid "This action is restricted to members."
+#: ../../mod/connections.php:62 ../../mod/connections.php:178
+#: ../../mod/connections.php:236
+msgid "Hidden"
msgstr ""
-#: ../../mod/like.php:21
-msgid ""
-"Please <a href=\"rmagic\">login with your $Projectname ID</a> or <a href="
-"\"register\">register as a new $Projectname member</a> to continue."
+#: ../../mod/connections.php:67 ../../mod/connections.php:171
+#: ../../mod/connections.php:235
+msgid "Archived"
msgstr ""
-#: ../../mod/like.php:101 ../../mod/like.php:127 ../../mod/like.php:165
-msgid "Invalid request."
+#: ../../mod/connections.php:134
+msgid "New Connections"
msgstr ""
-#: ../../mod/like.php:142
-msgid "thing"
+#: ../../mod/connections.php:137
+msgid "Show pending (new) connections"
msgstr ""
-#: ../../mod/like.php:188
-msgid "Channel unavailable."
+#: ../../mod/connections.php:141 ../../mod/profperm.php:139
+msgid "All Connections"
msgstr ""
-#: ../../mod/like.php:236
-msgid "Previous action reversed."
+#: ../../mod/connections.php:144
+msgid "Show all connections"
msgstr ""
-#: ../../mod/like.php:414
-#, php-format
-msgid "%1$s agrees with %2$s's %3$s"
+#: ../../mod/connections.php:160
+msgid "Only show blocked connections"
msgstr ""
-#: ../../mod/like.php:416
-#, php-format
-msgid "%1$s doesn't agree with %2$s's %3$s"
+#: ../../mod/connections.php:167
+msgid "Only show ignored connections"
msgstr ""
-#: ../../mod/like.php:418
-#, php-format
-msgid "%1$s abstains from a decision on %2$s's %3$s"
+#: ../../mod/connections.php:174
+msgid "Only show archived connections"
msgstr ""
-#: ../../mod/like.php:420
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
+#: ../../mod/connections.php:181
+msgid "Only show hidden connections"
msgstr ""
-#: ../../mod/like.php:422
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
+#: ../../mod/connections.php:234
+msgid "Pending approval"
msgstr ""
-#: ../../mod/like.php:424
+#: ../../mod/connections.php:250
#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr ""
-
-#: ../../mod/like.php:520
-msgid "Action completed."
+msgid "%1$s [%2$s]"
msgstr ""
-#: ../../mod/like.php:521
-msgid "Thank you."
+#: ../../mod/connections.php:251
+msgid "Edit connection"
msgstr ""
-#: ../../mod/page.php:36 ../../mod/block.php:27
-msgid "Invalid item."
+#: ../../mod/connections.php:252
+msgid "Delete connection"
msgstr ""
-#: ../../mod/page.php:52 ../../mod/wall_upload.php:29 ../../mod/block.php:39
-msgid "Channel not found."
+#: ../../mod/connections.php:261
+msgid "Channel address"
msgstr ""
-#: ../../mod/page.php:89 ../../mod/display.php:110 ../../mod/help.php:216
-#: ../../mod/block.php:75 ../../index.php:241
-msgid "Page not found."
+#: ../../mod/connections.php:263
+msgid "Network"
msgstr ""
-#: ../../mod/page.php:126
-msgid ""
-"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
-"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, "
-"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
-"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse "
-"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat "
-"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
+#: ../../mod/connections.php:266 ../../mod/admin.php:668
+msgid "Status"
msgstr ""
-#: ../../mod/removeme.php:29
-msgid ""
-"Channel removals are not allowed within 48 hours of changing the account "
-"password."
+#: ../../mod/connections.php:268
+msgid "Connected"
msgstr ""
-#: ../../mod/removeme.php:57
-msgid "Remove This Channel"
+#: ../../mod/connections.php:270
+msgid "Approve connection"
msgstr ""
-#: ../../mod/removeme.php:58 ../../mod/removeaccount.php:58
-msgid "WARNING: "
+#: ../../mod/connections.php:271 ../../mod/admin.php:991
+msgid "Approve"
msgstr ""
-#: ../../mod/removeme.php:58
-msgid "This channel will be completely removed from the network. "
+#: ../../mod/connections.php:272
+msgid "Ignore connection"
msgstr ""
-#: ../../mod/removeme.php:58 ../../mod/removeaccount.php:58
-msgid "This action is permanent and can not be undone!"
+#: ../../mod/connections.php:273 ../../mod/connedit.php:545
+#: ../../mod/notifications.php:51
+msgid "Ignore"
msgstr ""
-#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59
-msgid "Please enter your password for verification:"
+#: ../../mod/connections.php:274
+msgid "Recent activity"
msgstr ""
-#: ../../mod/removeme.php:60
-msgid "Remove this channel and all its clones from the network"
+#: ../../mod/connections.php:303
+msgid "Search your connections"
msgstr ""
-#: ../../mod/removeme.php:60
-msgid ""
-"By default only the instance of the channel located on this hub will be "
-"removed from the network"
+#: ../../mod/connections.php:304
+msgid "Connections search"
msgstr ""
-#: ../../mod/removeme.php:61 ../../mod/settings.php:1112
-msgid "Remove Channel"
+#: ../../mod/connedit.php:75
+msgid "Could not access contact record."
msgstr ""
-#: ../../mod/mood.php:132
-msgid "Set your current mood and tell your friends"
+#: ../../mod/connedit.php:99
+msgid "Could not locate selected profile."
msgstr ""
-#: ../../mod/new_channel.php:109
-msgid "Add a Channel"
+#: ../../mod/connedit.php:223
+msgid "Connection updated."
msgstr ""
-#: ../../mod/new_channel.php:110
-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."
+#: ../../mod/connedit.php:225
+msgid "Failed to update connection record."
msgstr ""
-#: ../../mod/new_channel.php:112 ../../mod/sources.php:103
-#: ../../mod/sources.php:137
-msgid "Channel Name"
+#: ../../mod/connedit.php:272
+msgid "is now connected to"
msgstr ""
-#: ../../mod/new_channel.php:113
-msgid ""
-"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation "
-"Group\" "
+#: ../../mod/connedit.php:407
+msgid "Could not access address book record."
msgstr ""
-#: ../../mod/new_channel.php:114
-msgid "Choose a short nickname"
+#: ../../mod/connedit.php:421
+msgid "Refresh failed - channel is currently unavailable."
msgstr ""
-#: ../../mod/new_channel.php:115
-msgid ""
-"Your nickname will be used to create an easily remembered channel address "
-"(like an email address) which you can share with others."
+#: ../../mod/connedit.php:436 ../../mod/connedit.php:445
+#: ../../mod/connedit.php:454 ../../mod/connedit.php:463
+#: ../../mod/connedit.php:476
+msgid "Unable to set address book parameters."
msgstr ""
-#: ../../mod/new_channel.php:116
-msgid ""
-"Or <a href=\"import\">import an existing channel</a> from another location"
+#: ../../mod/connedit.php:500
+msgid "Connection has been removed."
msgstr ""
-#: ../../mod/new_channel.php:118
-msgid ""
-"Please choose a channel type (such as social networking or community forum) "
-"and privacy requirements so we can select the best permissions for you"
+#: ../../mod/connedit.php:519
+#, php-format
+msgid "View %s's profile"
msgstr ""
-#: ../../mod/new_channel.php:119
-msgid "Channel Type"
+#: ../../mod/connedit.php:523
+msgid "Refresh Permissions"
msgstr ""
-#: ../../mod/new_channel.php:119
-msgid "Read more about roles"
+#: ../../mod/connedit.php:526
+msgid "Fetch updated permissions"
msgstr ""
-#: ../../mod/ratings.php:69
-msgid "No ratings"
+#: ../../mod/connedit.php:530
+msgid "Recent Activity"
msgstr ""
-#: ../../mod/ratings.php:82 ../../mod/display.php:13
-#: ../../mod/directory.php:59 ../../mod/photos.php:490 ../../mod/search.php:13
-#: ../../mod/viewconnections.php:17
-msgid "Public access denied."
+#: ../../mod/connedit.php:533
+msgid "View recent posts and comments"
msgstr ""
-#: ../../mod/ratings.php:99
-msgid "Ratings"
+#: ../../mod/connedit.php:537 ../../mod/admin.php:995
+msgid "Unblock"
msgstr ""
-#: ../../mod/ratings.php:100
-msgid "Rating: "
+#: ../../mod/connedit.php:537 ../../mod/admin.php:994
+msgid "Block"
msgstr ""
-#: ../../mod/ratings.php:101
-msgid "Website: "
+#: ../../mod/connedit.php:540
+msgid "Block (or Unblock) all communications with this connection"
msgstr ""
-#: ../../mod/ratings.php:103
-msgid "Description: "
+#: ../../mod/connedit.php:541
+msgid "This connection is blocked!"
msgstr ""
-#: ../../mod/setup.php:191
-msgid "$Projectname Server - Setup"
+#: ../../mod/connedit.php:545
+msgid "Unignore"
msgstr ""
-#: ../../mod/setup.php:195
-msgid "Could not connect to database."
+#: ../../mod/connedit.php:548
+msgid "Ignore (or Unignore) all inbound communications from this connection"
msgstr ""
-#: ../../mod/setup.php:199
-msgid ""
-"Could not connect to specified site URL. Possible SSL certificate or DNS "
-"issue."
+#: ../../mod/connedit.php:549
+msgid "This connection is ignored!"
msgstr ""
-#: ../../mod/setup.php:206
-msgid "Could not create table."
+#: ../../mod/connedit.php:553
+msgid "Unarchive"
msgstr ""
-#: ../../mod/setup.php:211
-msgid "Your site database has been installed."
+#: ../../mod/connedit.php:553
+msgid "Archive"
msgstr ""
-#: ../../mod/setup.php:215
+#: ../../mod/connedit.php:556
msgid ""
-"You may need to import the file \"install/schema_xxx.sql\" manually using a "
-"database client."
-msgstr ""
-
-#: ../../mod/setup.php:216 ../../mod/setup.php:284 ../../mod/setup.php:734
-msgid "Please see the file \"install/INSTALL.txt\"."
+"Archive (or Unarchive) this connection - mark channel dead but keep content"
msgstr ""
-#: ../../mod/setup.php:281
-msgid "System check"
+#: ../../mod/connedit.php:557
+msgid "This connection is archived!"
msgstr ""
-#: ../../mod/setup.php:285 ../../mod/photos.php:911 ../../mod/events.php:653
-#: ../../mod/events.php:660
-msgid "Next"
+#: ../../mod/connedit.php:561
+msgid "Unhide"
msgstr ""
-#: ../../mod/setup.php:286
-msgid "Check again"
+#: ../../mod/connedit.php:561
+msgid "Hide"
msgstr ""
-#: ../../mod/setup.php:308
-msgid "Database connection"
+#: ../../mod/connedit.php:564
+msgid "Hide or Unhide this connection from your other connections"
msgstr ""
-#: ../../mod/setup.php:309
-msgid ""
-"In order to install $Projectname we need to know how to connect to your "
-"database."
+#: ../../mod/connedit.php:565
+msgid "This connection is hidden!"
msgstr ""
-#: ../../mod/setup.php:310
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+#: ../../mod/connedit.php:572
+msgid "Delete this connection"
msgstr ""
-#: ../../mod/setup.php:311
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+#: ../../mod/connedit.php:653
+msgid "Approve this connection"
msgstr ""
-#: ../../mod/setup.php:315
-msgid "Database Server Name"
+#: ../../mod/connedit.php:653
+msgid "Accept connection to allow communication"
msgstr ""
-#: ../../mod/setup.php:315
-msgid "Default is 127.0.0.1"
+#: ../../mod/connedit.php:658
+msgid "Set Affinity"
msgstr ""
-#: ../../mod/setup.php:316
-msgid "Database Port"
+#: ../../mod/connedit.php:661
+msgid "Set Profile"
msgstr ""
-#: ../../mod/setup.php:316
-msgid "Communication port number - use 0 for default"
+#: ../../mod/connedit.php:664
+msgid "Set Affinity & Profile"
msgstr ""
-#: ../../mod/setup.php:317
-msgid "Database Login Name"
+#: ../../mod/connedit.php:697
+msgid "none"
msgstr ""
-#: ../../mod/setup.php:318
-msgid "Database Login Password"
+#: ../../mod/connedit.php:702
+msgid "Apply these permissions automatically"
msgstr ""
-#: ../../mod/setup.php:319
-msgid "Database Name"
+#: ../../mod/connedit.php:702
+msgid "Connection requests will be approved without your interaction"
msgstr ""
-#: ../../mod/setup.php:320
-msgid "Database Type"
+#: ../../mod/connedit.php:704
+msgid "This connection's primary address is"
msgstr ""
-#: ../../mod/setup.php:322 ../../mod/setup.php:363
-msgid "Site administrator email address"
+#: ../../mod/connedit.php:705
+msgid "Available locations:"
msgstr ""
-#: ../../mod/setup.php:322 ../../mod/setup.php:363
+#: ../../mod/connedit.php:709
msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr ""
-
-#: ../../mod/setup.php:323 ../../mod/setup.php:365
-msgid "Website URL"
-msgstr ""
-
-#: ../../mod/setup.php:323 ../../mod/setup.php:365
-msgid "Please use SSL (https) URL if available."
+"The permissions indicated on this page will be applied to all new "
+"connections."
msgstr ""
-#: ../../mod/setup.php:325 ../../mod/setup.php:367
-msgid "Please select a default timezone for your website"
+#: ../../mod/connedit.php:711
+msgid "Slide to adjust your degree of friendship"
msgstr ""
-#: ../../mod/setup.php:352
-msgid "Site settings"
+#: ../../mod/connedit.php:713
+msgid "Slide to adjust your rating"
msgstr ""
-#: ../../mod/setup.php:417
-msgid "Could not find a command line version of PHP in the web server PATH."
+#: ../../mod/connedit.php:714 ../../mod/connedit.php:719
+msgid "Optionally explain your rating"
msgstr ""
-#: ../../mod/setup.php:418
-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."
+#: ../../mod/connedit.php:716
+msgid "Custom Filter"
msgstr ""
-#: ../../mod/setup.php:422
-msgid "PHP executable path"
+#: ../../mod/connedit.php:717
+msgid "Only import posts with this text"
msgstr ""
-#: ../../mod/setup.php:422
+#: ../../mod/connedit.php:717 ../../mod/connedit.php:718
msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
+"words one per line or #tags or /patterns/ or lang=xx, leave blank to import "
+"all posts"
msgstr ""
-#: ../../mod/setup.php:427
-msgid "Command line PHP"
+#: ../../mod/connedit.php:718
+msgid "Do not import posts with this text"
msgstr ""
-#: ../../mod/setup.php:436
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
+#: ../../mod/connedit.php:720
+msgid "This information is public!"
msgstr ""
-#: ../../mod/setup.php:437
-msgid "This is required for message delivery to work."
+#: ../../mod/connedit.php:725
+msgid "Connection Pending Approval"
msgstr ""
-#: ../../mod/setup.php:440
-msgid "PHP register_argc_argv"
+#: ../../mod/connedit.php:728
+msgid "inherited"
msgstr ""
-#: ../../mod/setup.php:458
+#: ../../mod/connedit.php:730
#, php-format
msgid ""
-"Your max allowed total upload size is set to %s. Maximum size of one file to "
-"upload is set to %s. You are allowed to upload up to %d files at once."
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
msgstr ""
-#: ../../mod/setup.php:463
-msgid "You can adjust these settings in the servers php.ini."
+#: ../../mod/connedit.php:732
+msgid "Their Settings"
msgstr ""
-#: ../../mod/setup.php:465
-msgid "PHP upload limits"
+#: ../../mod/connedit.php:733
+msgid "My Settings"
msgstr ""
-#: ../../mod/setup.php:488
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: ../../mod/connedit.php:735
+msgid "Individual Permissions"
msgstr ""
-#: ../../mod/setup.php:489
+#: ../../mod/connedit.php:736
msgid ""
-"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
-"installation.php\"."
+"Some permissions may be inherited from your channel's <a href=\"settings"
+"\"><strong>privacy settings</strong></a>, which have higher priority than "
+"individual settings. You can <strong>not</strong> change those settings here."
msgstr ""
-#: ../../mod/setup.php:492
-msgid "Generate encryption keys"
+#: ../../mod/connedit.php:737
+msgid ""
+"Some permissions may be inherited from your channel's <a href=\"settings"
+"\"><strong>privacy settings</strong></a>, which have higher priority than "
+"individual settings. You can change those settings here but they wont have "
+"any impact unless the inherited setting changes."
msgstr ""
-#: ../../mod/setup.php:504
-msgid "libCurl PHP module"
+#: ../../mod/connedit.php:738
+msgid "Last update:"
msgstr ""
-#: ../../mod/setup.php:505
-msgid "GD graphics PHP module"
+#: ../../mod/dav.php:121
+msgid "$Projectname channel"
msgstr ""
-#: ../../mod/setup.php:506
-msgid "OpenSSL PHP module"
+#: ../../mod/directory.php:59 ../../mod/display.php:13
+#: ../../mod/photos.php:517 ../../mod/ratings.php:82 ../../mod/search.php:13
+#: ../../mod/viewconnections.php:17
+msgid "Public access denied."
msgstr ""
-#: ../../mod/setup.php:507
-msgid "mysqli or postgres PHP module"
-msgstr ""
+#: ../../mod/directory.php:239
+#, php-format
+msgid "%d rating"
+msgid_plural "%d ratings"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../mod/setup.php:508
-msgid "mb_string PHP module"
+#: ../../mod/directory.php:250
+msgid "Gender: "
msgstr ""
-#: ../../mod/setup.php:509
-msgid "mcrypt PHP module"
+#: ../../mod/directory.php:252
+msgid "Status: "
msgstr ""
-#: ../../mod/setup.php:510
-msgid "xml PHP module"
+#: ../../mod/directory.php:254
+msgid "Homepage: "
msgstr ""
-#: ../../mod/setup.php:514 ../../mod/setup.php:516
-msgid "Apache mod_rewrite module"
+#: ../../mod/directory.php:313
+msgid "Description:"
msgstr ""
-#: ../../mod/setup.php:514
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
+#: ../../mod/directory.php:322
+msgid "Public Forum:"
msgstr ""
-#: ../../mod/setup.php:520 ../../mod/setup.php:523
-msgid "proc_open"
+#: ../../mod/directory.php:325
+msgid "Keywords: "
msgstr ""
-#: ../../mod/setup.php:520
-msgid ""
-"Error: proc_open is required but is either not installed or has been "
-"disabled in php.ini"
+#: ../../mod/directory.php:328
+msgid "Don't suggest"
msgstr ""
-#: ../../mod/setup.php:528
-msgid "Error: libCURL PHP module required but not installed."
+#: ../../mod/directory.php:330
+msgid "Common connections:"
msgstr ""
-#: ../../mod/setup.php:532
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
+#: ../../mod/directory.php:379
+msgid "Global Directory"
msgstr ""
-#: ../../mod/setup.php:536
-msgid "Error: openssl PHP module required but not installed."
+#: ../../mod/directory.php:379
+msgid "Local Directory"
msgstr ""
-#: ../../mod/setup.php:540
-msgid ""
-"Error: mysqli or postgres PHP module required but neither are installed."
+#: ../../mod/directory.php:385
+msgid "Finding:"
msgstr ""
-#: ../../mod/setup.php:544
-msgid "Error: mb_string PHP module required but not installed."
+#: ../../mod/directory.php:390
+msgid "next page"
msgstr ""
-#: ../../mod/setup.php:548
-msgid "Error: mcrypt PHP module required but not installed."
+#: ../../mod/directory.php:390
+msgid "previous page"
msgstr ""
-#: ../../mod/setup.php:552
-msgid "Error: xml PHP module required for DAV but not installed."
+#: ../../mod/directory.php:391
+msgid "Sort options"
msgstr ""
-#: ../../mod/setup.php:570
-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."
+#: ../../mod/directory.php:392
+msgid "Alphabetic"
msgstr ""
-#: ../../mod/setup.php:571
-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."
+#: ../../mod/directory.php:393
+msgid "Reverse Alphabetic"
msgstr ""
-#: ../../mod/setup.php:572
-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."
+#: ../../mod/directory.php:394
+msgid "Newest to Oldest"
msgstr ""
-#: ../../mod/setup.php:573
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation. "
-"Please see the file \"install/INSTALL.txt\" for instructions."
+#: ../../mod/directory.php:395
+msgid "Oldest to Newest"
msgstr ""
-#: ../../mod/setup.php:576
-msgid ".htconfig.php is writable"
+#: ../../mod/directory.php:412
+msgid "No entries (some entries may be hidden)."
msgstr ""
-#: ../../mod/setup.php:590
-msgid ""
-"Red uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
+#: ../../mod/dirsearch.php:21 ../../mod/regdir.php:45
+msgid "This site is not a directory server"
msgstr ""
-#: ../../mod/setup.php:591
-#, php-format
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory %s under the Red top level folder."
+#: ../../mod/dirsearch.php:29
+msgid "This directory server requires an access token"
msgstr ""
-#: ../../mod/setup.php:592 ../../mod/setup.php:613
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has "
-"write access to this folder."
+#: ../../mod/dreport.php:23
+msgid "Invalid message"
msgstr ""
-#: ../../mod/setup.php:593
-#, php-format
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"%s only--not the template files (.tpl) that it contains."
+#: ../../mod/dreport.php:55
+msgid "no results"
msgstr ""
-#: ../../mod/setup.php:596
+#: ../../mod/dreport.php:60
#, php-format
-msgid "%s is writable"
-msgstr ""
-
-#: ../../mod/setup.php:612
-msgid ""
-"Red uses the store directory to save uploaded files. The web server needs to "
-"have write access to the store directory under the Red top level folder"
-msgstr ""
-
-#: ../../mod/setup.php:616
-msgid "store is writable"
-msgstr ""
-
-#: ../../mod/setup.php:649
-msgid ""
-"SSL certificate cannot be validated. Fix certificate or disable https access "
-"to this site."
+msgid "Delivery report for %1$s"
msgstr ""
-#: ../../mod/setup.php:650
-msgid ""
-"If you have https access to your website or allow connections to TCP port "
-"443 (the https: port), you MUST use a browser-valid certificate. You MUST "
-"NOT use self-signed certificates!"
+#: ../../mod/dreport.php:74
+msgid "channel sync processed"
msgstr ""
-#: ../../mod/setup.php:651
-msgid ""
-"This restriction is incorporated because public posts from you may for "
-"example contain references to images on your own hub."
+#: ../../mod/dreport.php:78
+msgid "queued"
msgstr ""
-#: ../../mod/setup.php:652
-msgid ""
-"If your certificate is not recognized, members of other sites (who may "
-"themselves have valid certificates) will get a warning message on their own "
-"site complaining about security issues."
+#: ../../mod/dreport.php:82
+msgid "posted"
msgstr ""
-#: ../../mod/setup.php:653
-msgid ""
-"This can cause usability issues elsewhere (not just on your own site) so we "
-"must insist on this requirement."
+#: ../../mod/dreport.php:86
+msgid "accepted for delivery"
msgstr ""
-#: ../../mod/setup.php:654
-msgid ""
-"Providers are available that issue free certificates which are browser-valid."
+#: ../../mod/dreport.php:90
+msgid "updated"
msgstr ""
-#: ../../mod/setup.php:656
-msgid "SSL certificate validation"
+#: ../../mod/dreport.php:93
+msgid "update ignored"
msgstr ""
-#: ../../mod/setup.php:662
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-"Test: "
+#: ../../mod/dreport.php:96
+msgid "permission denied"
msgstr ""
-#: ../../mod/setup.php:665
-msgid "Url rewrite is working"
+#: ../../mod/dreport.php:100
+msgid "recipient not found"
msgstr ""
-#: ../../mod/setup.php:674
-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."
+#: ../../mod/dreport.php:103
+msgid "mail recalled"
msgstr ""
-#: ../../mod/setup.php:698
-msgid "Errors encountered creating database tables."
+#: ../../mod/dreport.php:106
+msgid "duplicate mail received"
msgstr ""
-#: ../../mod/setup.php:732
-msgid "<h1>What next</h1>"
+#: ../../mod/dreport.php:109
+msgid "mail delivered"
msgstr ""
-#: ../../mod/setup.php:733
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
+#: ../../mod/editblock.php:78 ../../mod/editblock.php:94
+#: ../../mod/editlayout.php:76 ../../mod/editpost.php:20
+#: ../../mod/editwebpage.php:77
+msgid "Item not found"
msgstr ""
-#: ../../mod/bookmarks.php:40
-msgid "Bookmark added"
+#: ../../mod/editblock.php:118
+msgid "Delete block?"
msgstr ""
-#: ../../mod/bookmarks.php:62
-msgid "My Bookmarks"
+#: ../../mod/editblock.php:145 ../../mod/editlayout.php:143
+#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:185
+msgid "Insert YouTube video"
msgstr ""
-#: ../../mod/bookmarks.php:73
-msgid "My Connections Bookmarks"
+#: ../../mod/editblock.php:146 ../../mod/editlayout.php:144
+#: ../../mod/editpost.php:122 ../../mod/editwebpage.php:186
+msgid "Insert Vorbis [.ogg] video"
msgstr ""
-#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60
-msgid "This setting requires special processing and editing has been blocked."
+#: ../../mod/editblock.php:147 ../../mod/editlayout.php:145
+#: ../../mod/editpost.php:123 ../../mod/editwebpage.php:187
+msgid "Insert Vorbis [.ogg] audio"
msgstr ""
-#: ../../mod/pconfig.php:49
-msgid "Configuration Editor"
+#: ../../mod/editblock.php:180
+msgid "Edit Block"
msgstr ""
-#: ../../mod/pconfig.php:50
-msgid ""
-"Warning: Changing some settings could render your channel inoperable. Please "
-"leave this page unless you are comfortable with and knowledgeable about how "
-"to correctly use this feature."
+#: ../../mod/editlayout.php:112
+msgid "Delete layout?"
msgstr ""
-#: ../../mod/poke.php:164
-msgid "Poke/Prod"
+#: ../../mod/editlayout.php:159 ../../mod/layouts.php:124
+msgid "Layout Description (Optional)"
msgstr ""
-#: ../../mod/poke.php:165
-msgid "poke, prod or do other things to somebody"
+#: ../../mod/editlayout.php:161 ../../mod/layouts.php:121
+#: ../../mod/layouts.php:179
+msgid "Layout Name"
msgstr ""
-#: ../../mod/poke.php:166
-msgid "Recipient"
+#: ../../mod/editlayout.php:178
+msgid "Edit Layout"
msgstr ""
-#: ../../mod/poke.php:167
-msgid "Choose what you wish to do to recipient"
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
msgstr ""
-#: ../../mod/poke.php:170
-msgid "Make this post private"
+#: ../../mod/editpost.php:57
+msgid "Delete item?"
msgstr ""
-#: ../../mod/profiles.php:19 ../../mod/profiles.php:184
-#: ../../mod/profiles.php:241 ../../mod/profiles.php:608
-msgid "Profile not found."
+#: ../../mod/editpost.php:164 ../../mod/rpost.php:128
+msgid "Edit post"
msgstr ""
-#: ../../mod/profiles.php:39
-msgid "Profile deleted."
+#: ../../mod/editwebpage.php:153
+msgid "Delete webpage?"
msgstr ""
-#: ../../mod/profiles.php:63 ../../mod/profiles.php:99
-msgid "Profile-"
+#: ../../mod/editwebpage.php:172
+msgid "Page link title"
msgstr ""
-#: ../../mod/profiles.php:84 ../../mod/profiles.php:127
-msgid "New profile created."
+#: ../../mod/editwebpage.php:222
+msgid "Edit Webpage"
msgstr ""
-#: ../../mod/profiles.php:105
-msgid "Profile unavailable to clone."
+#: ../../mod/events.php:21
+msgid "Calendar entries imported."
msgstr ""
-#: ../../mod/profiles.php:146
-msgid "Profile unavailable to export."
+#: ../../mod/events.php:23
+msgid "No calendar entries found."
msgstr ""
-#: ../../mod/profiles.php:251
-msgid "Profile Name is required."
+#: ../../mod/events.php:100
+msgid "Event can not end before it has started."
msgstr ""
-#: ../../mod/profiles.php:414
-msgid "Marital Status"
+#: ../../mod/events.php:102 ../../mod/events.php:111 ../../mod/events.php:131
+msgid "Unable to generate preview."
msgstr ""
-#: ../../mod/profiles.php:418
-msgid "Romantic Partner"
+#: ../../mod/events.php:109
+msgid "Event title and start time are required."
msgstr ""
-#: ../../mod/profiles.php:422
-msgid "Likes"
+#: ../../mod/events.php:129 ../../mod/events.php:254
+msgid "Event not found."
msgstr ""
-#: ../../mod/profiles.php:426
-msgid "Dislikes"
+#: ../../mod/events.php:444
+msgid "Edit event title"
msgstr ""
-#: ../../mod/profiles.php:430
-msgid "Work/Employment"
+#: ../../mod/events.php:444
+msgid "Event title"
msgstr ""
-#: ../../mod/profiles.php:433
-msgid "Religion"
+#: ../../mod/events.php:446
+msgid "Categories (comma-separated list)"
msgstr ""
-#: ../../mod/profiles.php:437
-msgid "Political Views"
+#: ../../mod/events.php:447
+msgid "Edit Category"
msgstr ""
-#: ../../mod/profiles.php:445
-msgid "Sexual Preference"
+#: ../../mod/events.php:447
+msgid "Category"
msgstr ""
-#: ../../mod/profiles.php:449
-msgid "Homepage"
+#: ../../mod/events.php:450
+msgid "Edit start date and time"
msgstr ""
-#: ../../mod/profiles.php:453
-msgid "Interests"
+#: ../../mod/events.php:450
+msgid "Start date and time"
msgstr ""
-#: ../../mod/profiles.php:457 ../../mod/admin.php:986
-msgid "Address"
+#: ../../mod/events.php:451 ../../mod/events.php:454
+msgid "Finish date and time are not known or not relevant"
msgstr ""
-#: ../../mod/profiles.php:547
-msgid "Profile updated."
+#: ../../mod/events.php:453
+msgid "Edit finish date and time"
msgstr ""
-#: ../../mod/profiles.php:634
-msgid "Hide your contact/friend list from viewers of this profile?"
+#: ../../mod/events.php:453
+msgid "Finish date and time"
msgstr ""
-#: ../../mod/profiles.php:674
-msgid "Edit Profile Details"
+#: ../../mod/events.php:455 ../../mod/events.php:456
+msgid "Adjust for viewer timezone"
msgstr ""
-#: ../../mod/profiles.php:676
-msgid "View this profile"
+#: ../../mod/events.php:455
+msgid ""
+"Important for events that happen in a particular place. Not practical for "
+"global holidays."
msgstr ""
-#: ../../mod/profiles.php:678
-msgid "Change Profile Photo"
+#: ../../mod/events.php:457
+msgid "Edit Description"
msgstr ""
-#: ../../mod/profiles.php:679
-msgid "Create a new profile using these settings"
+#: ../../mod/events.php:459
+msgid "Edit Location"
msgstr ""
-#: ../../mod/profiles.php:680
-msgid "Clone this profile"
+#: ../../mod/events.php:462 ../../mod/events.php:464
+msgid "Share this event"
msgstr ""
-#: ../../mod/profiles.php:681
-msgid "Delete this profile"
+#: ../../mod/events.php:469
+msgid "Advanced Options"
msgstr ""
-#: ../../mod/profiles.php:683
-msgid "Import profile from file"
+#: ../../mod/events.php:581 ../../mod/cal.php:253
+msgid "l, F j"
msgstr ""
-#: ../../mod/profiles.php:684
-msgid "Export profile to file"
+#: ../../mod/events.php:603
+msgid "Edit event"
msgstr ""
-#: ../../mod/profiles.php:685
-msgid "Profile Name:"
+#: ../../mod/events.php:605
+msgid "Delete event"
msgstr ""
-#: ../../mod/profiles.php:686
-msgid "Your Full Name:"
+#: ../../mod/events.php:639
+msgid "calendar"
msgstr ""
-#: ../../mod/profiles.php:687
-msgid "Title/Description:"
+#: ../../mod/events.php:658 ../../mod/cal.php:325
+msgid "Edit Event"
msgstr ""
-#: ../../mod/profiles.php:688
-msgid "Your Gender:"
+#: ../../mod/events.php:658 ../../mod/cal.php:325
+msgid "Create Event"
msgstr ""
-#: ../../mod/profiles.php:689
-msgid "Birthday :"
+#: ../../mod/events.php:659 ../../mod/events.php:666 ../../mod/photos.php:944
+#: ../../mod/cal.php:326 ../../mod/cal.php:333
+msgid "Previous"
msgstr ""
-#: ../../mod/profiles.php:690
-msgid "Street Address:"
+#: ../../mod/events.php:660 ../../mod/events.php:667 ../../mod/photos.php:953
+#: ../../mod/setup.php:291 ../../mod/cal.php:327 ../../mod/cal.php:334
+msgid "Next"
msgstr ""
-#: ../../mod/profiles.php:691
-msgid "Locality/City:"
+#: ../../mod/events.php:668 ../../mod/cal.php:335
+msgid "Today"
msgstr ""
-#: ../../mod/profiles.php:692
-msgid "Postal/Zip Code:"
+#: ../../mod/events.php:699
+msgid "Event removed"
msgstr ""
-#: ../../mod/profiles.php:693
-msgid "Country:"
+#: ../../mod/events.php:702
+msgid "Failed to remove event"
msgstr ""
-#: ../../mod/profiles.php:694
-msgid "Region/State:"
+#: ../../mod/ffsapi.php:8
+msgid "Share content from Firefox to $Projectname"
msgstr ""
-#: ../../mod/profiles.php:695
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+#: ../../mod/ffsapi.php:11
+msgid "Activate the Firefox $Projectname provider"
msgstr ""
-#: ../../mod/profiles.php:696
-msgid "Who: (if applicable)"
+#: ../../mod/filer.php:48
+msgid "- select -"
msgstr ""
-#: ../../mod/profiles.php:697
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/filestorage.php:82
+msgid "Permission Denied."
msgstr ""
-#: ../../mod/profiles.php:698
-msgid "Since [date]:"
+#: ../../mod/filestorage.php:98
+msgid "File not found."
msgstr ""
-#: ../../mod/profiles.php:700
-msgid "Homepage URL:"
+#: ../../mod/filestorage.php:141
+msgid "Edit file permissions"
msgstr ""
-#: ../../mod/profiles.php:703
-msgid "Religious Views:"
+#: ../../mod/filestorage.php:150
+msgid "Set/edit permissions"
msgstr ""
-#: ../../mod/profiles.php:704
-msgid "Keywords:"
+#: ../../mod/filestorage.php:151
+msgid "Include all files and sub folders"
msgstr ""
-#: ../../mod/profiles.php:707
-msgid "Example: fishing photography software"
+#: ../../mod/filestorage.php:152
+msgid "Return to file list"
msgstr ""
-#: ../../mod/profiles.php:708
-msgid "Used in directory listings"
+#: ../../mod/filestorage.php:154
+msgid "Copy/paste this code to attach file to a post"
msgstr ""
-#: ../../mod/profiles.php:709
-msgid "Tell us about yourself..."
+#: ../../mod/filestorage.php:155
+msgid "Copy/paste this URL to link file from a web page"
msgstr ""
-#: ../../mod/profiles.php:710
-msgid "Hobbies/Interests"
+#: ../../mod/filestorage.php:157
+msgid "Share this file"
msgstr ""
-#: ../../mod/profiles.php:711
-msgid "Contact information and Social Networks"
+#: ../../mod/filestorage.php:158
+msgid "Show URL to this file"
msgstr ""
-#: ../../mod/profiles.php:712
-msgid "My other channels"
+#: ../../mod/filestorage.php:159
+msgid "Notify your contacts about this file"
msgstr ""
-#: ../../mod/profiles.php:713
-msgid "Musical interests"
+#: ../../mod/follow.php:27
+msgid "Channel added."
msgstr ""
-#: ../../mod/profiles.php:714
-msgid "Books, literature"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
msgstr ""
-#: ../../mod/profiles.php:715
-msgid "Television"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
msgstr ""
-#: ../../mod/profiles.php:716
-msgid "Film/dance/culture/entertainment"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
msgstr ""
-#: ../../mod/profiles.php:717
-msgid "Love/romance"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
msgstr ""
-#: ../../mod/profiles.php:718
-msgid "Work/employment"
+#: ../../mod/group.php:20
+msgid "Privacy group created."
msgstr ""
-#: ../../mod/profiles.php:719
-msgid "School/education"
+#: ../../mod/group.php:26
+msgid "Could not create privacy group."
msgstr ""
-#: ../../mod/profiles.php:725
-msgid "This is your default profile."
+#: ../../mod/group.php:54
+msgid "Privacy group updated."
msgstr ""
-#: ../../mod/profiles.php:736
-msgid "Age: "
+#: ../../mod/group.php:86
+msgid "Create a group of channels."
msgstr ""
-#: ../../mod/profiles.php:779
-msgid "Edit/Manage Profiles"
+#: ../../mod/group.php:87 ../../mod/group.php:180
+msgid "Privacy group name: "
msgstr ""
-#: ../../mod/profiles.php:780
-msgid "Add profile things"
+#: ../../mod/group.php:89 ../../mod/group.php:183
+msgid "Members are visible to other channels"
msgstr ""
-#: ../../mod/profiles.php:781
-msgid "Include desirable objects in your profile"
+#: ../../mod/group.php:107
+msgid "Privacy group removed."
msgstr ""
-#: ../../mod/connedit.php:75
-msgid "Could not access contact record."
+#: ../../mod/group.php:109
+msgid "Unable to remove privacy group."
msgstr ""
-#: ../../mod/connedit.php:99
-msgid "Could not locate selected profile."
+#: ../../mod/group.php:179
+msgid "Privacy group editor"
msgstr ""
-#: ../../mod/connedit.php:223
-msgid "Connection updated."
+#: ../../mod/group.php:193
+msgid "Members"
msgstr ""
-#: ../../mod/connedit.php:225
-msgid "Failed to update connection record."
+#: ../../mod/group.php:195
+msgid "All Connected Channels"
msgstr ""
-#: ../../mod/connedit.php:272
-msgid "is now connected to"
+#: ../../mod/group.php:227
+msgid "Click on a channel to add or remove."
msgstr ""
-#: ../../mod/connedit.php:395
-msgid "Could not access address book record."
+#: ../../mod/help.php:163
+msgid "Documentation Search"
msgstr ""
-#: ../../mod/connedit.php:409
-msgid "Refresh failed - channel is currently unavailable."
+#: ../../mod/help.php:204 ../../mod/help.php:210 ../../mod/help.php:216
+msgid "Help:"
msgstr ""
-#: ../../mod/connedit.php:418 ../../mod/connedit.php:427
-#: ../../mod/connedit.php:436 ../../mod/connedit.php:445
-#: ../../mod/connedit.php:458
-msgid "Unable to set address book parameters."
+#: ../../mod/help.php:257
+msgid "$Projectname Documentation"
msgstr ""
-#: ../../mod/connedit.php:482
-msgid "Connection has been removed."
+#: ../../mod/home.php:57 ../../mod/home.php:65 ../../mod/siteinfo.php:61
+msgid "$Projectname"
msgstr ""
-#: ../../mod/connedit.php:501
+#: ../../mod/home.php:75
#, php-format
-msgid "View %s's profile"
-msgstr ""
-
-#: ../../mod/connedit.php:505
-msgid "Refresh Permissions"
-msgstr ""
-
-#: ../../mod/connedit.php:508
-msgid "Fetch updated permissions"
-msgstr ""
-
-#: ../../mod/connedit.php:512
-msgid "Recent Activity"
+msgid "Welcome to %s"
msgstr ""
-#: ../../mod/connedit.php:515
-msgid "View recent posts and comments"
+#: ../../mod/id.php:11
+msgid "First Name"
msgstr ""
-#: ../../mod/connedit.php:519 ../../mod/admin.php:823
-msgid "Unblock"
+#: ../../mod/id.php:12
+msgid "Last Name"
msgstr ""
-#: ../../mod/connedit.php:519 ../../mod/admin.php:822
-msgid "Block"
+#: ../../mod/id.php:13
+msgid "Nickname"
msgstr ""
-#: ../../mod/connedit.php:522
-msgid "Block (or Unblock) all communications with this connection"
+#: ../../mod/id.php:14
+msgid "Full Name"
msgstr ""
-#: ../../mod/connedit.php:523
-msgid "This connection is blocked!"
+#: ../../mod/id.php:20
+msgid "Profile Photo 16px"
msgstr ""
-#: ../../mod/connedit.php:527
-msgid "Unignore"
+#: ../../mod/id.php:21
+msgid "Profile Photo 32px"
msgstr ""
-#: ../../mod/connedit.php:527 ../../mod/notifications.php:51
-msgid "Ignore"
+#: ../../mod/id.php:22
+msgid "Profile Photo 48px"
msgstr ""
-#: ../../mod/connedit.php:530
-msgid "Ignore (or Unignore) all inbound communications from this connection"
+#: ../../mod/id.php:23
+msgid "Profile Photo 64px"
msgstr ""
-#: ../../mod/connedit.php:531
-msgid "This connection is ignored!"
+#: ../../mod/id.php:24
+msgid "Profile Photo 80px"
msgstr ""
-#: ../../mod/connedit.php:535
-msgid "Unarchive"
+#: ../../mod/id.php:25
+msgid "Profile Photo 128px"
msgstr ""
-#: ../../mod/connedit.php:535
-msgid "Archive"
+#: ../../mod/id.php:26
+msgid "Timezone"
msgstr ""
-#: ../../mod/connedit.php:538
-msgid ""
-"Archive (or Unarchive) this connection - mark channel dead but keep content"
+#: ../../mod/id.php:27 ../../mod/profiles.php:730
+msgid "Homepage URL"
msgstr ""
-#: ../../mod/connedit.php:539
-msgid "This connection is archived!"
+#: ../../mod/id.php:29
+msgid "Birth Year"
msgstr ""
-#: ../../mod/connedit.php:543
-msgid "Unhide"
+#: ../../mod/id.php:30
+msgid "Birth Month"
msgstr ""
-#: ../../mod/connedit.php:543
-msgid "Hide"
+#: ../../mod/id.php:31
+msgid "Birth Day"
msgstr ""
-#: ../../mod/connedit.php:546
-msgid "Hide or Unhide this connection from your other connections"
+#: ../../mod/id.php:32
+msgid "Birthdate"
msgstr ""
-#: ../../mod/connedit.php:547
-msgid "This connection is hidden!"
+#: ../../mod/id.php:33 ../../mod/profiles.php:449
+msgid "Gender"
msgstr ""
-#: ../../mod/connedit.php:554
-msgid "Delete this connection"
+#: ../../mod/impel.php:192
+#, php-format
+msgid "%s element installed"
msgstr ""
-#: ../../mod/connedit.php:635
-msgid "Approve this connection"
+#: ../../mod/impel.php:195
+#, php-format
+msgid "%s element installation failed"
msgstr ""
-#: ../../mod/connedit.php:635
-msgid "Accept connection to allow communication"
+#: ../../mod/import.php:28
+#, php-format
+msgid "Your service plan only allows %d channels."
msgstr ""
-#: ../../mod/connedit.php:640
-msgid "Set Affinity"
+#: ../../mod/import.php:66 ../../mod/import_items.php:38
+msgid "Nothing to import."
msgstr ""
-#: ../../mod/connedit.php:643
-msgid "Set Profile"
+#: ../../mod/import.php:90 ../../mod/import_items.php:62
+msgid "Unable to download data from old server"
msgstr ""
-#: ../../mod/connedit.php:646
-msgid "Set Affinity & Profile"
+#: ../../mod/import.php:96 ../../mod/import_items.php:68
+msgid "Imported file is empty."
msgstr ""
-#: ../../mod/connedit.php:679
-msgid "none"
+#: ../../mod/import.php:118 ../../mod/import_items.php:82
+#, php-format
+msgid "Warning: Database versions differ by %1$d updates."
msgstr ""
-#: ../../mod/connedit.php:684
-msgid "Apply these permissions automatically"
+#: ../../mod/import.php:156
+msgid "No channel. Import failed."
msgstr ""
-#: ../../mod/connedit.php:686
-msgid "This connection's primary address is"
+#: ../../mod/import.php:531
+msgid "You must be logged in to use this feature."
msgstr ""
-#: ../../mod/connedit.php:687
-msgid "Available locations:"
+#: ../../mod/import.php:536
+msgid "Import Channel"
msgstr ""
-#: ../../mod/connedit.php:691
+#: ../../mod/import.php:537
msgid ""
-"The permissions indicated on this page will be applied to all new "
-"connections."
+"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."
msgstr ""
-#: ../../mod/connedit.php:693
-msgid "Slide to adjust your degree of friendship"
+#: ../../mod/import.php:538 ../../mod/import_items.php:115
+msgid "File to Upload"
msgstr ""
-#: ../../mod/connedit.php:695
-msgid "Slide to adjust your rating"
+#: ../../mod/import.php:539
+msgid "Or provide the old server/hub details"
msgstr ""
-#: ../../mod/connedit.php:696 ../../mod/connedit.php:701
-msgid "Optionally explain your rating"
+#: ../../mod/import.php:540
+msgid "Your old identity address (xyz@example.com)"
msgstr ""
-#: ../../mod/connedit.php:698
-msgid "Custom Filter"
+#: ../../mod/import.php:541
+msgid "Your old login email address"
msgstr ""
-#: ../../mod/connedit.php:699
-msgid "Only import posts with this text"
+#: ../../mod/import.php:542
+msgid "Your old login password"
msgstr ""
-#: ../../mod/connedit.php:699 ../../mod/connedit.php:700
+#: ../../mod/import.php:543
msgid ""
-"words one per line or #tags or /patterns/ or lang=xx, leave blank to import "
-"all posts"
-msgstr ""
-
-#: ../../mod/connedit.php:700
-msgid "Do not import posts with this text"
-msgstr ""
-
-#: ../../mod/connedit.php:702
-msgid "This information is public!"
-msgstr ""
-
-#: ../../mod/connedit.php:707
-msgid "Connection Pending Approval"
+"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/connedit.php:708
-msgid "Connection Request"
+#: ../../mod/import.php:544
+msgid "Make this hub my primary location"
msgstr ""
-#: ../../mod/connedit.php:709
-#, php-format
+#: ../../mod/import.php:545
msgid ""
-"(%s) would like to connect with you. Please approve this connection to allow "
-"communication."
-msgstr ""
-
-#: ../../mod/connedit.php:710 ../../mod/admin.php:819
-msgid "Approve"
-msgstr ""
-
-#: ../../mod/connedit.php:711
-msgid "Approve Later"
-msgstr ""
-
-#: ../../mod/connedit.php:714
-msgid "inherited"
+"Import existing posts if possible (experimental - limited by available memory"
msgstr ""
-#: ../../mod/connedit.php:716
-#, php-format
+#: ../../mod/import.php:546
msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
+"This process may take several minutes to complete. Please submit the form "
+"only once and leave this page open until finished."
msgstr ""
-#: ../../mod/connedit.php:718
-msgid "Their Settings"
+#: ../../mod/import_items.php:98
+msgid "Import completed"
msgstr ""
-#: ../../mod/connedit.php:719
-msgid "My Settings"
+#: ../../mod/import_items.php:113
+msgid "Import Items"
msgstr ""
-#: ../../mod/connedit.php:721
-msgid "Individual Permissions"
+#: ../../mod/import_items.php:114
+msgid "Use this form to import existing posts and content from an export file."
msgstr ""
-#: ../../mod/connedit.php:722
-msgid ""
-"Some permissions may be inherited from your channel's <a href=\"settings"
-"\"><strong>privacy settings</strong></a>, which have higher priority than "
-"individual settings. You can <strong>not</strong> change those settings here."
+#: ../../mod/invite.php:25
+msgid "Total invitation limit exceeded."
msgstr ""
-#: ../../mod/connedit.php:723
-msgid ""
-"Some permissions may be inherited from your channel's <a href=\"settings"
-"\"><strong>privacy settings</strong></a>, which have higher priority than "
-"individual settings. You can change those settings here but they wont have "
-"any impact unless the inherited setting changes."
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
msgstr ""
-#: ../../mod/connedit.php:724
-msgid "Last update:"
+#: ../../mod/invite.php:59
+msgid "Please join us on $Projectname"
msgstr ""
-#: ../../mod/acl.php:222
-msgid "network"
+#: ../../mod/invite.php:70
+msgid "Invitation limit exceeded. Please contact your site administrator."
msgstr ""
-#: ../../mod/acl.php:232
-msgid "RSS"
+#: ../../mod/invite.php:75
+#, php-format
+msgid "%s : Message delivery failed."
msgstr ""
-#: ../../mod/dav.php:121
-msgid "$Projectname channel"
-msgstr ""
+#: ../../mod/invite.php:79
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] ""
+msgstr[1] ""
-#: ../../mod/dreport.php:23
-msgid "Invalid message"
+#: ../../mod/invite.php:98
+msgid "You have no more invitations available"
msgstr ""
-#: ../../mod/dreport.php:55
-msgid "no results"
+#: ../../mod/invite.php:129
+msgid "Send invitations"
msgstr ""
-#: ../../mod/dreport.php:60
-#, php-format
-msgid "Delivery report for %1$s"
+#: ../../mod/invite.php:130
+msgid "Enter email addresses, one per line:"
msgstr ""
-#: ../../mod/dreport.php:74
-msgid "channel sync processed"
+#: ../../mod/invite.php:131 ../../mod/mail.php:246
+msgid "Your message:"
msgstr ""
-#: ../../mod/dreport.php:78
-msgid "queued"
+#: ../../mod/invite.php:132
+msgid "Please join my community on $Projectname."
msgstr ""
-#: ../../mod/dreport.php:82
-msgid "posted"
+#: ../../mod/invite.php:134
+msgid "You will need to supply this invitation code:"
msgstr ""
-#: ../../mod/dreport.php:86
-msgid "accepted for delivery"
+#: ../../mod/invite.php:135
+msgid "1. Register at any $Projectname location (they are all inter-connected)"
msgstr ""
-#: ../../mod/dreport.php:90
-msgid "updated"
+#: ../../mod/invite.php:137
+msgid "2. Enter my $Projectname network address into the site searchbar."
msgstr ""
-#: ../../mod/dreport.php:93
-msgid "update ignored"
+#: ../../mod/invite.php:138
+msgid "or visit"
msgstr ""
-#: ../../mod/dreport.php:96
-msgid "permission denied"
+#: ../../mod/invite.php:140
+msgid "3. Click [Connect]"
msgstr ""
-#: ../../mod/dreport.php:100
-msgid "recipient not found"
+#: ../../mod/item.php:174
+msgid "Unable to locate original post."
msgstr ""
-#: ../../mod/dreport.php:103
-msgid "mail recalled"
+#: ../../mod/item.php:423
+msgid "Empty post discarded."
msgstr ""
-#: ../../mod/dreport.php:106
-msgid "duplicate mail received"
+#: ../../mod/item.php:463
+msgid "Executable content type not permitted to this channel."
msgstr ""
-#: ../../mod/dreport.php:109
-msgid "mail delivered"
+#: ../../mod/item.php:843
+msgid "Duplicate post suppressed."
msgstr ""
-#: ../../mod/editwebpage.php:77 ../../mod/editblock.php:78
-#: ../../mod/editblock.php:94 ../../mod/editlayout.php:76
-#: ../../mod/editpost.php:20
-msgid "Item not found"
+#: ../../mod/item.php:973
+msgid "System error. Post not saved."
msgstr ""
-#: ../../mod/editwebpage.php:153
-msgid "Delete webpage?"
+#: ../../mod/item.php:1240
+msgid "Unable to obtain post information from database."
msgstr ""
-#: ../../mod/editwebpage.php:172
-msgid "Page link title"
+#: ../../mod/item.php:1247
+#, php-format
+msgid "You have reached your limit of %1$.0f top level posts."
msgstr ""
-#: ../../mod/editwebpage.php:185 ../../mod/editblock.php:145
-#: ../../mod/editlayout.php:143 ../../mod/editpost.php:121
-msgid "Insert YouTube video"
+#: ../../mod/item.php:1254
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
msgstr ""
-#: ../../mod/editwebpage.php:186 ../../mod/editblock.php:146
-#: ../../mod/editlayout.php:144 ../../mod/editpost.php:122
-msgid "Insert Vorbis [.ogg] video"
+#: ../../mod/layouts.php:176
+msgid "Comanche page description language help"
msgstr ""
-#: ../../mod/editwebpage.php:187 ../../mod/editblock.php:147
-#: ../../mod/editlayout.php:145 ../../mod/editpost.php:123
-msgid "Insert Vorbis [.ogg] audio"
+#: ../../mod/layouts.php:180
+msgid "Layout Description"
msgstr ""
-#: ../../mod/editwebpage.php:222
-msgid "Edit Webpage"
+#: ../../mod/layouts.php:185
+msgid "Download PDL file"
msgstr ""
-#: ../../mod/oexchange.php:23
-msgid "Unable to find your hub."
+#: ../../mod/like.php:15
+msgid "Like/Dislike"
msgstr ""
-#: ../../mod/oexchange.php:37
-msgid "Post successful."
+#: ../../mod/like.php:20
+msgid "This action is restricted to members."
msgstr ""
-#: ../../mod/ping.php:260
-msgid "sent you a private message"
+#: ../../mod/like.php:21
+msgid ""
+"Please <a href=\"rmagic\">login with your $Projectname ID</a> or <a href="
+"\"register\">register as a new $Projectname member</a> to continue."
msgstr ""
-#: ../../mod/ping.php:308
-msgid "added your channel"
+#: ../../mod/like.php:101 ../../mod/like.php:127 ../../mod/like.php:165
+msgid "Invalid request."
msgstr ""
-#: ../../mod/ping.php:350
-msgid "posted an event"
+#: ../../mod/like.php:142
+msgid "thing"
msgstr ""
-#: ../../mod/api.php:74 ../../mod/api.php:98
-msgid "Authorize application connection"
+#: ../../mod/like.php:188
+msgid "Channel unavailable."
msgstr ""
-#: ../../mod/api.php:75
-msgid "Return to your app and insert this Securty Code:"
+#: ../../mod/like.php:236
+msgid "Previous action reversed."
msgstr ""
-#: ../../mod/api.php:85
-msgid "Please login to continue."
+#: ../../mod/like.php:420
+#, php-format
+msgid "%1$s agrees with %2$s's %3$s"
msgstr ""
-#: ../../mod/api.php:100
-msgid ""
-"Do you want to authorize this application to access your posts and contacts, "
-"and/or create new posts for you?"
+#: ../../mod/like.php:422
+#, php-format
+msgid "%1$s doesn't agree with %2$s's %3$s"
msgstr ""
-#: ../../mod/notify.php:53 ../../mod/notifications.php:94
-msgid "No more system notifications."
+#: ../../mod/like.php:424
+#, php-format
+msgid "%1$s abstains from a decision on %2$s's %3$s"
msgstr ""
-#: ../../mod/notify.php:57 ../../mod/notifications.php:98
-msgid "System Notifications"
+#: ../../mod/like.php:426
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
msgstr ""
-#: ../../mod/rbmark.php:90
-msgid "Select a bookmark folder"
+#: ../../mod/like.php:428
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
msgstr ""
-#: ../../mod/rbmark.php:95
-msgid "Save Bookmark"
+#: ../../mod/like.php:430
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
msgstr ""
-#: ../../mod/rbmark.php:96
-msgid "URL of bookmark"
+#: ../../mod/like.php:533
+msgid "Action completed."
msgstr ""
-#: ../../mod/rbmark.php:97 ../../mod/appman.php:93 ../../mod/events.php:450
-msgid "Description"
+#: ../../mod/like.php:534
+msgid "Thank you."
msgstr ""
-#: ../../mod/rbmark.php:101
-msgid "Or enter new bookmark folder name"
+#: ../../mod/lockview.php:57
+msgid "Remote privacy information not available."
msgstr ""
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
+#: ../../mod/lockview.php:78
+msgid "Visible to:"
msgstr ""
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
+#: ../../mod/locs.php:21 ../../mod/locs.php:50
+msgid "Location not found."
msgstr ""
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
+#: ../../mod/locs.php:58
+msgid "Location lookup failed."
msgstr ""
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
+#: ../../mod/locs.php:62
+msgid ""
+"Please select another location to become primary before removing the primary "
+"location."
msgstr ""
-#: ../../mod/sources.php:32
-msgid "Failed to create source. No channel selected."
+#: ../../mod/locs.php:91
+msgid "Syncing locations"
msgstr ""
-#: ../../mod/sources.php:45
-msgid "Source created."
+#: ../../mod/locs.php:101
+msgid "No locations found."
msgstr ""
-#: ../../mod/sources.php:57
-msgid "Source updated."
+#: ../../mod/locs.php:112
+msgid "Manage Channel Locations"
msgstr ""
-#: ../../mod/sources.php:82
-msgid "*"
+#: ../../mod/locs.php:114 ../../mod/admin.php:1158 ../../mod/profiles.php:465
+msgid "Address"
msgstr ""
-#: ../../mod/sources.php:89
-msgid "Manage remote sources of content for your channel."
+#: ../../mod/locs.php:115
+msgid "Primary"
msgstr ""
-#: ../../mod/sources.php:90 ../../mod/sources.php:100
-msgid "New Source"
+#: ../../mod/locs.php:116 ../../mod/menu.php:109
+msgid "Drop"
msgstr ""
-#: ../../mod/sources.php:101 ../../mod/sources.php:133
-msgid ""
-"Import all or selected content from the following channel into this channel "
-"and distribute it according to your channel settings."
+#: ../../mod/locs.php:118
+msgid "Sync Now"
msgstr ""
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Only import content with these words (one per line)"
+#: ../../mod/locs.php:119
+msgid "Please wait several minutes between consecutive operations."
msgstr ""
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Leave blank to import all public content"
+#: ../../mod/locs.php:120
+msgid ""
+"When possible, drop a location by logging into that website/hub and removing "
+"your channel."
msgstr ""
-#: ../../mod/sources.php:123 ../../mod/sources.php:150
-msgid "Source not found."
+#: ../../mod/locs.php:121
+msgid "Use this form to drop the location if the hub is no longer operating."
msgstr ""
-#: ../../mod/sources.php:130
-msgid "Edit Source"
+#: ../../mod/ping.php:260
+msgid "sent you a private message"
msgstr ""
-#: ../../mod/sources.php:131
-msgid "Delete Source"
+#: ../../mod/ping.php:308
+msgid "added your channel"
msgstr ""
-#: ../../mod/sources.php:158
-msgid "Source removed"
+#: ../../mod/ping.php:350
+msgid "posted an event"
msgstr ""
-#: ../../mod/sources.php:160
-msgid "Unable to remove source."
+#: ../../mod/magic.php:69
+msgid "Hub not found."
msgstr ""
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
+#: ../../mod/mail.php:34
+msgid "Unable to lookup recipient."
msgstr ""
-#: ../../mod/notifications.php:35
-msgid "Discard"
+#: ../../mod/mail.php:42
+msgid "Unable to communicate with requested channel."
msgstr ""
-#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94
-msgid "Tag removed"
+#: ../../mod/mail.php:49
+msgid "Cannot verify requested channel."
msgstr ""
-#: ../../mod/tagrm.php:119
-msgid "Remove Item Tag"
+#: ../../mod/mail.php:75
+msgid "Selected channel has private message restrictions. Send failed."
msgstr ""
-#: ../../mod/tagrm.php:121
-msgid "Select a tag to remove: "
+#: ../../mod/mail.php:140
+msgid "Messages"
msgstr ""
-#: ../../mod/tagrm.php:133 ../../mod/photos.php:951
-msgid "Remove"
+#: ../../mod/mail.php:175
+msgid "Message recalled."
msgstr ""
-#: ../../mod/directory.php:236
-#, php-format
-msgid "%d rating"
-msgid_plural "%d ratings"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/directory.php:247
-msgid "Gender: "
+#: ../../mod/mail.php:188
+msgid "Conversation removed."
msgstr ""
-#: ../../mod/directory.php:249
-msgid "Status: "
+#: ../../mod/mail.php:231
+msgid "Requested channel is not in this network"
msgstr ""
-#: ../../mod/directory.php:251
-msgid "Homepage: "
+#: ../../mod/mail.php:239
+msgid "Send Private Message"
msgstr ""
-#: ../../mod/directory.php:310
-msgid "Description:"
+#: ../../mod/mail.php:240 ../../mod/mail.php:370
+msgid "To:"
msgstr ""
-#: ../../mod/directory.php:319
-msgid "Public Forum:"
+#: ../../mod/mail.php:243 ../../mod/mail.php:372
+msgid "Subject:"
msgstr ""
-#: ../../mod/directory.php:322
-msgid "Keywords: "
+#: ../../mod/mail.php:250
+msgid "Send"
msgstr ""
-#: ../../mod/directory.php:325
-msgid "Don't suggest"
+#: ../../mod/mail.php:342
+msgid "Delete message"
msgstr ""
-#: ../../mod/directory.php:327
-msgid "Common connections:"
+#: ../../mod/mail.php:343
+msgid "Delivery report"
msgstr ""
-#: ../../mod/directory.php:376
-msgid "Global Directory"
+#: ../../mod/mail.php:344
+msgid "Recall message"
msgstr ""
-#: ../../mod/directory.php:376
-msgid "Local Directory"
+#: ../../mod/mail.php:346
+msgid "Message has been recalled."
msgstr ""
-#: ../../mod/directory.php:382
-msgid "Finding:"
+#: ../../mod/mail.php:363
+msgid "Delete Conversation"
msgstr ""
-#: ../../mod/directory.php:387
-msgid "next page"
+#: ../../mod/mail.php:365
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
msgstr ""
-#: ../../mod/directory.php:387
-msgid "previous page"
+#: ../../mod/mail.php:369
+msgid "Send Reply"
msgstr ""
-#: ../../mod/directory.php:388
-msgid "Sort options"
+#: ../../mod/mail.php:374
+#, php-format
+msgid "Your message for %s (%s):"
msgstr ""
-#: ../../mod/directory.php:389
-msgid "Alphabetic"
+#: ../../mod/manage.php:130 ../../mod/new_channel.php:117
+#, php-format
+msgid "You have created %1$.0f of %2$.0f allowed channels."
msgstr ""
-#: ../../mod/directory.php:390
-msgid "Reverse Alphabetic"
+#: ../../mod/manage.php:137
+msgid "Create a new channel"
msgstr ""
-#: ../../mod/directory.php:391
-msgid "Newest to Oldest"
+#: ../../mod/manage.php:159
+msgid "Current Channel"
msgstr ""
-#: ../../mod/directory.php:392
-msgid "Oldest to Newest"
+#: ../../mod/manage.php:161
+msgid "Switch to one of your channels by selecting it."
msgstr ""
-#: ../../mod/directory.php:409
-msgid "No entries (some entries may be hidden)."
+#: ../../mod/manage.php:162
+msgid "Default Channel"
msgstr ""
-#: ../../mod/lostpass.php:15
-msgid "No valid account found."
+#: ../../mod/manage.php:163
+msgid "Make Default"
msgstr ""
-#: ../../mod/lostpass.php:29
-msgid "Password reset request issued. Check your email."
+#: ../../mod/manage.php:166
+#, php-format
+msgid "%d new messages"
msgstr ""
-#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103
+#: ../../mod/manage.php:167
#, php-format
-msgid "Site Member (%s)"
+msgid "%d new introductions"
msgstr ""
-#: ../../mod/lostpass.php:40
-#, php-format
-msgid "Password reset requested at %s"
+#: ../../mod/manage.php:169
+msgid "Delegated Channel"
msgstr ""
-#: ../../mod/lostpass.php:63
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
+#: ../../mod/match.php:22
+msgid "Profile Match"
msgstr ""
-#: ../../mod/lostpass.php:86 ../../boot.php:1496
-msgid "Password Reset"
+#: ../../mod/match.php:31
+msgid "No keywords to match. Please add keywords to your default profile."
msgstr ""
-#: ../../mod/lostpass.php:87
-msgid "Your password has been reset as requested."
+#: ../../mod/match.php:63
+msgid "is interested in:"
msgstr ""
-#: ../../mod/lostpass.php:88
-msgid "Your new password is"
+#: ../../mod/match.php:70
+msgid "No matches"
msgstr ""
-#: ../../mod/lostpass.php:89
-msgid "Save or copy your new password - and then"
+#: ../../mod/menu.php:45
+msgid "Unable to update menu."
msgstr ""
-#: ../../mod/lostpass.php:90
-msgid "click here to login"
+#: ../../mod/menu.php:56
+msgid "Unable to create menu."
msgstr ""
-#: ../../mod/lostpass.php:91
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
+#: ../../mod/menu.php:94 ../../mod/menu.php:106
+msgid "Menu Name"
msgstr ""
-#: ../../mod/lostpass.php:108
-#, php-format
-msgid "Your password has changed at %s"
+#: ../../mod/menu.php:94
+msgid "Unique name (not visible on webpage) - required"
msgstr ""
-#: ../../mod/lostpass.php:123
-msgid "Forgot your Password?"
+#: ../../mod/menu.php:95 ../../mod/menu.php:107
+msgid "Menu Title"
msgstr ""
-#: ../../mod/lostpass.php:124
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
+#: ../../mod/menu.php:95
+msgid "Visible on webpage - leave empty for no title"
msgstr ""
-#: ../../mod/lostpass.php:125
-msgid "Email Address"
+#: ../../mod/menu.php:96
+msgid "Allow Bookmarks"
msgstr ""
-#: ../../mod/lostpass.php:126
-msgid "Reset"
+#: ../../mod/menu.php:96 ../../mod/menu.php:153
+msgid "Menu may be used to store saved bookmarks"
msgstr ""
-#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21
-msgid "This site is not a directory server"
+#: ../../mod/menu.php:97 ../../mod/menu.php:155
+msgid "Submit and proceed"
msgstr ""
-#: ../../mod/impel.php:192
-#, php-format
-msgid "%s element installed"
+#: ../../mod/menu.php:113
+msgid "Bookmarks allowed"
msgstr ""
-#: ../../mod/impel.php:195
-#, php-format
-msgid "%s element installation failed"
+#: ../../mod/menu.php:115
+msgid "Delete this menu"
msgstr ""
-#: ../../mod/subthread.php:114
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
+#: ../../mod/menu.php:116 ../../mod/menu.php:150
+msgid "Edit menu contents"
msgstr ""
-#: ../../mod/subthread.php:116
-#, php-format
-msgid "%1$s stopped following %2$s's %3$s"
+#: ../../mod/menu.php:117
+msgid "Edit this menu"
msgstr ""
-#: ../../mod/import.php:28
-#, php-format
-msgid "Your service plan only allows %d channels."
+#: ../../mod/menu.php:132
+msgid "Menu could not be deleted."
msgstr ""
-#: ../../mod/import.php:66 ../../mod/import_items.php:38
-msgid "Nothing to import."
+#: ../../mod/menu.php:140 ../../mod/mitem.php:24
+msgid "Menu not found."
msgstr ""
-#: ../../mod/import.php:90 ../../mod/import_items.php:62
-msgid "Unable to download data from old server"
+#: ../../mod/menu.php:145
+msgid "Edit Menu"
msgstr ""
-#: ../../mod/import.php:96 ../../mod/import_items.php:68
-msgid "Imported file is empty."
+#: ../../mod/menu.php:149
+msgid "Add or remove entries to this menu"
msgstr ""
-#: ../../mod/import.php:116 ../../mod/import_items.php:82
-#, php-format
-msgid "Warning: Database versions differ by %1$d updates."
+#: ../../mod/menu.php:151
+msgid "Menu name"
msgstr ""
-#: ../../mod/import.php:149
-msgid "No channel. Import failed."
+#: ../../mod/menu.php:151
+msgid "Must be unique, only seen by you"
msgstr ""
-#: ../../mod/import.php:509
-msgid "You must be logged in to use this feature."
+#: ../../mod/menu.php:152
+msgid "Menu title"
msgstr ""
-#: ../../mod/import.php:514
-msgid "Import Channel"
+#: ../../mod/menu.php:152
+msgid "Menu title as seen by others"
msgstr ""
-#: ../../mod/import.php:515
-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."
+#: ../../mod/menu.php:153
+msgid "Allow bookmarks"
msgstr ""
-#: ../../mod/import.php:516 ../../mod/import_items.php:121
-msgid "File to Upload"
+#: ../../mod/menu.php:162 ../../mod/mitem.php:116 ../../mod/xchan.php:37
+msgid "Not found."
msgstr ""
-#: ../../mod/import.php:517
-msgid "Or provide the old server/hub details"
+#: ../../mod/mitem.php:48
+msgid "Unable to create element."
msgstr ""
-#: ../../mod/import.php:518
-msgid "Your old identity address (xyz@example.com)"
+#: ../../mod/mitem.php:72
+msgid "Unable to update menu element."
msgstr ""
-#: ../../mod/import.php:519
-msgid "Your old login email address"
+#: ../../mod/mitem.php:88
+msgid "Unable to add menu element."
msgstr ""
-#: ../../mod/import.php:520
-msgid "Your old login password"
+#: ../../mod/mitem.php:149 ../../mod/mitem.php:222
+msgid "Menu Item Permissions"
msgstr ""
-#: ../../mod/import.php:521
-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."
+#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1075
+msgid "(click to open/close)"
msgstr ""
-#: ../../mod/import.php:522
-msgid "Make this hub my primary location"
+#: ../../mod/mitem.php:152 ../../mod/mitem.php:168
+msgid "Link Name"
msgstr ""
-#: ../../mod/import.php:523
-msgid ""
-"Import existing posts if possible (experimental - limited by available memory"
+#: ../../mod/mitem.php:153 ../../mod/mitem.php:227
+msgid "Link or Submenu Target"
msgstr ""
-#: ../../mod/import.php:524
-msgid ""
-"This process may take several minutes to complete. Please submit the form "
-"only once and leave this page open until finished."
+#: ../../mod/mitem.php:153
+msgid "Enter URL of the link or select a menu name to create a submenu"
msgstr ""
-#: ../../mod/invite.php:25
-msgid "Total invitation limit exceeded."
+#: ../../mod/mitem.php:154 ../../mod/mitem.php:228
+msgid "Use magic-auth if available"
msgstr ""
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
+#: ../../mod/mitem.php:155 ../../mod/mitem.php:229
+msgid "Open link in new window"
msgstr ""
-#: ../../mod/invite.php:59
-msgid "Please join us on $Projectname"
+#: ../../mod/mitem.php:156 ../../mod/mitem.php:230
+msgid "Order in list"
msgstr ""
-#: ../../mod/invite.php:70
-msgid "Invitation limit exceeded. Please contact your site administrator."
+#: ../../mod/mitem.php:156 ../../mod/mitem.php:230
+msgid "Higher numbers will sink to bottom of listing"
msgstr ""
-#: ../../mod/invite.php:75
-#, php-format
-msgid "%s : Message delivery failed."
+#: ../../mod/mitem.php:157
+msgid "Submit and finish"
msgstr ""
-#: ../../mod/invite.php:79
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] ""
-msgstr[1] ""
+#: ../../mod/mitem.php:158
+msgid "Submit and continue"
+msgstr ""
-#: ../../mod/invite.php:98
-msgid "You have no more invitations available"
+#: ../../mod/mitem.php:166
+msgid "Menu:"
msgstr ""
-#: ../../mod/invite.php:129
-msgid "Send invitations"
+#: ../../mod/mitem.php:169
+msgid "Link Target"
msgstr ""
-#: ../../mod/invite.php:130
-msgid "Enter email addresses, one per line:"
+#: ../../mod/mitem.php:172
+msgid "Edit menu"
msgstr ""
-#: ../../mod/invite.php:131 ../../mod/mail.php:246
-msgid "Your message:"
+#: ../../mod/mitem.php:175
+msgid "Edit element"
msgstr ""
-#: ../../mod/invite.php:132
-msgid "Please join my community on $Projectname."
+#: ../../mod/mitem.php:176
+msgid "Drop element"
msgstr ""
-#: ../../mod/invite.php:134
-msgid "You will need to supply this invitation code: "
+#: ../../mod/mitem.php:177
+msgid "New element"
msgstr ""
-#: ../../mod/invite.php:135
-msgid "1. Register at any $Projectname location (they are all inter-connected)"
+#: ../../mod/mitem.php:178
+msgid "Edit this menu container"
msgstr ""
-#: ../../mod/invite.php:137
-msgid "2. Enter my $Projectname network address into the site searchbar."
+#: ../../mod/mitem.php:179
+msgid "Add menu element"
msgstr ""
-#: ../../mod/invite.php:138
-msgid "or visit "
+#: ../../mod/mitem.php:180
+msgid "Delete this menu item"
msgstr ""
-#: ../../mod/invite.php:140
-msgid "3. Click [Connect]"
+#: ../../mod/mitem.php:181
+msgid "Edit this menu item"
msgstr ""
-#: ../../mod/probe.php:24 ../../mod/probe.php:30
-#, php-format
-msgid "Fetching URL returns error: %1$s"
+#: ../../mod/mitem.php:198
+msgid "Menu item not found."
msgstr ""
-#: ../../mod/profile_photo.php:112
-msgid "Image uploaded but image cropping failed."
+#: ../../mod/mitem.php:211
+msgid "Menu item deleted."
msgstr ""
-#: ../../mod/profile_photo.php:166
-msgid "Image resize failed."
+#: ../../mod/mitem.php:213
+msgid "Menu item could not be deleted."
msgstr ""
-#: ../../mod/profile_photo.php:212
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
+#: ../../mod/mitem.php:220
+msgid "Edit Menu Element"
msgstr ""
-#: ../../mod/profile_photo.php:250
-msgid "Image upload failed."
+#: ../../mod/mitem.php:226
+msgid "Link text"
msgstr ""
-#: ../../mod/profile_photo.php:269
-msgid "Unable to process image."
+#: ../../mod/mood.php:132
+msgid "Set your current mood and tell your friends"
msgstr ""
-#: ../../mod/profile_photo.php:297
-msgid "female"
+#: ../../mod/network.php:91
+msgid "No such group"
msgstr ""
-#: ../../mod/profile_photo.php:298
-#, php-format
-msgid "%1$s updated her %2$s"
+#: ../../mod/network.php:131
+msgid "No such channel"
msgstr ""
-#: ../../mod/profile_photo.php:299
-msgid "male"
+#: ../../mod/network.php:136
+msgid "forum"
msgstr ""
-#: ../../mod/profile_photo.php:300
-#, php-format
-msgid "%1$s updated his %2$s"
+#: ../../mod/network.php:148
+msgid "Search Results For:"
msgstr ""
-#: ../../mod/profile_photo.php:302
-#, php-format
-msgid "%1$s updated their %2$s"
+#: ../../mod/network.php:209
+msgid "Privacy group is empty"
msgstr ""
-#: ../../mod/profile_photo.php:304
-msgid "profile photo"
+#: ../../mod/network.php:218
+msgid "Privacy group: "
msgstr ""
-#: ../../mod/profile_photo.php:368 ../../mod/profile_photo.php:409
-msgid "Photo not available."
+#: ../../mod/network.php:244
+msgid "Invalid connection."
msgstr ""
-#: ../../mod/profile_photo.php:450
-msgid "Upload File:"
+#: ../../mod/new_channel.php:124 ../../mod/register.php:227
+msgid "Name or caption"
msgstr ""
-#: ../../mod/profile_photo.php:451
-msgid "Select a profile:"
+#: ../../mod/new_channel.php:124 ../../mod/register.php:227
+msgid ""
+"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation "
+"Group\""
msgstr ""
-#: ../../mod/profile_photo.php:452
-msgid "Upload Profile Photo"
+#: ../../mod/new_channel.php:126 ../../mod/register.php:229
+msgid "Choose a short nickname"
msgstr ""
-#: ../../mod/profile_photo.php:457 ../../mod/settings.php:975
-msgid "or"
+#: ../../mod/new_channel.php:126 ../../mod/register.php:229
+#, php-format
+msgid ""
+"Your nickname will be used to create an easy to remember channel address e."
+"g. nickname%s"
msgstr ""
-#: ../../mod/profile_photo.php:457
-msgid "skip this step"
+#: ../../mod/new_channel.php:128 ../../mod/register.php:231
+msgid "Channel role and privacy"
msgstr ""
-#: ../../mod/profile_photo.php:457
-msgid "select a photo from your photo albums"
+#: ../../mod/new_channel.php:128 ../../mod/register.php:231
+msgid "Select a channel role with your privacy requirements."
msgstr ""
-#: ../../mod/profile_photo.php:473
-msgid "Crop Image"
+#: ../../mod/new_channel.php:128 ../../mod/register.php:231
+msgid "Read more about roles"
msgstr ""
-#: ../../mod/profile_photo.php:474
-msgid "Please adjust the image cropping for optimum viewing."
+#: ../../mod/new_channel.php:131
+msgid "Create Channel"
msgstr ""
-#: ../../mod/profile_photo.php:476
-msgid "Done Editing"
+#: ../../mod/new_channel.php:132
+msgid ""
+"A channel is your identity on this network. It can represent a person, a "
+"blog, or a forum to name a few. Channels can make connections with other "
+"channels to share information with highly detailed permissions."
msgstr ""
-#: ../../mod/thing.php:111
-msgid "Thing updated"
+#: ../../mod/new_channel.php:133
+msgid ""
+"or <a href=\"import\">import an existing channel</a> from another location."
msgstr ""
-#: ../../mod/thing.php:163
-msgid "Object store: failed"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
msgstr ""
-#: ../../mod/thing.php:167
-msgid "Thing added"
+#: ../../mod/notifications.php:35
+msgid "Discard"
msgstr ""
-#: ../../mod/thing.php:193
-#, php-format
-msgid "OBJ: %1$s %2$s %3$s"
+#: ../../mod/notifications.php:94 ../../mod/notify.php:53
+msgid "No more system notifications."
msgstr ""
-#: ../../mod/thing.php:256
-msgid "Show Thing"
+#: ../../mod/notifications.php:98 ../../mod/notify.php:57
+msgid "System Notifications"
msgstr ""
-#: ../../mod/thing.php:263
-msgid "item not found."
+#: ../../mod/oexchange.php:23
+msgid "Unable to find your hub."
msgstr ""
-#: ../../mod/thing.php:296
-msgid "Edit Thing"
+#: ../../mod/oexchange.php:37
+msgid "Post successful."
msgstr ""
-#: ../../mod/thing.php:298 ../../mod/thing.php:348
-msgid "Select a profile"
+#: ../../mod/openid.php:26
+msgid "OpenID protocol error. No ID returned."
msgstr ""
-#: ../../mod/thing.php:302 ../../mod/thing.php:351
-msgid "Post an activity"
+#: ../../mod/page.php:129
+msgid ""
+"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
+"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, "
+"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
+"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse "
+"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat "
+"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
msgstr ""
-#: ../../mod/thing.php:302 ../../mod/thing.php:351
-msgid "Only sends to viewers of the applicable profile"
+#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60
+msgid "This setting requires special processing and editing has been blocked."
msgstr ""
-#: ../../mod/thing.php:304 ../../mod/thing.php:353
-msgid "Name of thing e.g. something"
+#: ../../mod/pconfig.php:49
+msgid "Configuration Editor"
msgstr ""
-#: ../../mod/thing.php:306 ../../mod/thing.php:354
-msgid "URL of thing (optional)"
+#: ../../mod/pconfig.php:50
+msgid ""
+"Warning: Changing some settings could render your channel inoperable. Please "
+"leave this page unless you are comfortable with and knowledgeable about how "
+"to correctly use this feature."
msgstr ""
-#: ../../mod/thing.php:308 ../../mod/thing.php:355
-msgid "URL for photo of thing (optional)"
+#: ../../mod/pdledit.php:14
+msgid "Layout updated."
msgstr ""
-#: ../../mod/thing.php:346
-msgid "Add Thing to your Profile"
+#: ../../mod/pdledit.php:30 ../../mod/pdledit.php:57
+msgid "Edit System Page Description"
msgstr ""
-#: ../../mod/dirsearch.php:29
-msgid "This directory server requires an access token"
+#: ../../mod/pdledit.php:52
+msgid "Layout not found."
msgstr ""
-#: ../../mod/editblock.php:118
-msgid "Delete block?"
+#: ../../mod/pdledit.php:58
+msgid "Module Name:"
msgstr ""
-#: ../../mod/editblock.php:180
-msgid "Edit Block"
+#: ../../mod/pdledit.php:59
+msgid "Layout Help"
msgstr ""
-#: ../../mod/removeaccount.php:30
-msgid ""
-"Account removals are not allowed within 48 hours of changing the account "
-"password."
+#: ../../mod/photos.php:79
+msgid "Page owner information could not be retrieved."
msgstr ""
-#: ../../mod/removeaccount.php:57
-msgid "Remove This Account"
+#: ../../mod/photos.php:100 ../../mod/photos.php:144
+msgid "Album not found."
msgstr ""
-#: ../../mod/removeaccount.php:58
-msgid ""
-"This account and all its channels will be completely removed from the "
-"network. "
+#: ../../mod/photos.php:127
+msgid "Delete Album"
msgstr ""
-#: ../../mod/removeaccount.php:60
+#: ../../mod/photos.php:148
msgid ""
-"Remove this account, all its channels and all its channel clones from the "
-"network"
+"Multiple storage folders exist with this album name, but within different "
+"directories. Please remove the desired folder or folders using the Files "
+"manager"
msgstr ""
-#: ../../mod/removeaccount.php:60
-msgid ""
-"By default only the instances of the channels located on this hub will be "
-"removed from the network"
+#: ../../mod/photos.php:205 ../../mod/photos.php:1048
+msgid "Delete Photo"
msgstr ""
-#: ../../mod/removeaccount.php:61 ../../mod/settings.php:700
-msgid "Remove Account"
+#: ../../mod/photos.php:528
+msgid "No photos selected"
msgstr ""
-#: ../../mod/import_items.php:101
-msgid "Import completed"
+#: ../../mod/photos.php:577
+msgid "Access to this item is restricted."
msgstr ""
-#: ../../mod/import_items.php:119
-msgid "Import Items"
+#: ../../mod/photos.php:616
+#, php-format
+msgid "%1$.2f MB of %2$.2f MB photo storage used."
msgstr ""
-#: ../../mod/import_items.php:120
-msgid "Use this form to import existing posts and content from an export file."
+#: ../../mod/photos.php:619
+#, php-format
+msgid "%1$.2f MB photo storage used."
msgstr ""
-#: ../../mod/network.php:91
-msgid "No such group"
+#: ../../mod/photos.php:655
+msgid "Upload Photos"
msgstr ""
-#: ../../mod/network.php:131
-msgid "No such channel"
+#: ../../mod/photos.php:659
+msgid "Enter an album name"
msgstr ""
-#: ../../mod/network.php:136
-msgid "forum"
+#: ../../mod/photos.php:660
+msgid "or select an existing album (doubleclick)"
msgstr ""
-#: ../../mod/network.php:148
-msgid "Search Results For:"
+#: ../../mod/photos.php:661
+msgid "Create a status post for this upload"
msgstr ""
-#: ../../mod/network.php:207
-msgid "Collection is empty"
+#: ../../mod/photos.php:662
+msgid "Caption (optional):"
msgstr ""
-#: ../../mod/network.php:216
-msgid "Collection: "
+#: ../../mod/photos.php:663
+msgid "Description (optional):"
msgstr ""
-#: ../../mod/network.php:242
-msgid "Invalid connection."
+#: ../../mod/photos.php:690
+msgid "Album name could not be decoded"
msgstr ""
-#: ../../mod/pdledit.php:13
-msgid "Layout updated."
+#: ../../mod/photos.php:738 ../../mod/photos.php:1278
+#: ../../mod/photos.php:1295
+msgid "Contact Photos"
msgstr ""
-#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53
-msgid "Edit System Page Description"
+#: ../../mod/photos.php:761
+msgid "Show Newest First"
msgstr ""
-#: ../../mod/pdledit.php:48
-msgid "Layout not found."
+#: ../../mod/photos.php:763
+msgid "Show Oldest First"
msgstr ""
-#: ../../mod/pdledit.php:54
-msgid "Module Name:"
+#: ../../mod/photos.php:865
+msgid "Permission denied. Access to this item may be restricted."
msgstr ""
-#: ../../mod/pdledit.php:55
-msgid "Layout Help"
+#: ../../mod/photos.php:867
+msgid "Photo not available"
msgstr ""
-#: ../../mod/register.php:44
-msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
+#: ../../mod/photos.php:925
+msgid "Use as profile photo"
msgstr ""
-#: ../../mod/register.php:50
-msgid ""
-"Please indicate acceptance of the Terms of Service. Registration failed."
+#: ../../mod/photos.php:926
+msgid "Use as cover photo"
msgstr ""
-#: ../../mod/register.php:84
-msgid "Passwords do not match."
+#: ../../mod/photos.php:933
+msgid "Private Photo"
msgstr ""
-#: ../../mod/register.php:119
-msgid ""
-"Registration successful. Please check your email for validation instructions."
+#: ../../mod/photos.php:948
+msgid "View Full Size"
msgstr ""
-#: ../../mod/register.php:125
-msgid "Your registration is pending approval by the site owner."
+#: ../../mod/photos.php:993 ../../mod/tagrm.php:133
+msgid "Remove"
msgstr ""
-#: ../../mod/register.php:128
-msgid "Your registration can not be processed."
+#: ../../mod/photos.php:1027
+msgid "Edit photo"
msgstr ""
-#: ../../mod/register.php:165
-msgid "Registration on this site/hub is by approval only."
+#: ../../mod/photos.php:1029
+msgid "Rotate CW (right)"
msgstr ""
-#: ../../mod/register.php:166
-msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>"
+#: ../../mod/photos.php:1030
+msgid "Rotate CCW (left)"
msgstr ""
-#: ../../mod/register.php:176
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
+#: ../../mod/photos.php:1033
+msgid "Enter a new album name"
msgstr ""
-#: ../../mod/register.php:187
-msgid "Terms of Service"
+#: ../../mod/photos.php:1034
+msgid "or select an existing one (doubleclick)"
msgstr ""
-#: ../../mod/register.php:193
-#, php-format
-msgid "I accept the %s for this website"
+#: ../../mod/photos.php:1037
+msgid "Caption"
msgstr ""
-#: ../../mod/register.php:195
-#, php-format
-msgid "I am over 13 years of age and accept the %s for this website"
+#: ../../mod/photos.php:1039
+msgid "Add a Tag"
msgstr ""
-#: ../../mod/register.php:209 ../../mod/admin.php:448
-msgid "Registration"
+#: ../../mod/photos.php:1043
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
msgstr ""
-#: ../../mod/register.php:214
-msgid "Membership on this site is by invitation only."
+#: ../../mod/photos.php:1046
+msgid "Flag as adult in album view"
msgstr ""
-#: ../../mod/register.php:215
-msgid "Please enter your invitation code"
+#: ../../mod/photos.php:1238
+msgid "In This Photo:"
msgstr ""
-#: ../../mod/register.php:218
-msgid "Your email address"
+#: ../../mod/photos.php:1243
+msgid "Map"
msgstr ""
-#: ../../mod/register.php:219
-msgid "Choose a password"
+#: ../../mod/photos.php:1334
+msgid "View Album"
msgstr ""
-#: ../../mod/register.php:220
-msgid "Please re-enter your password"
+#: ../../mod/photos.php:1345 ../../mod/photos.php:1358
+#: ../../mod/photos.php:1359
+msgid "Recent Photos"
msgstr ""
#: ../../mod/admin.php:54
msgid "Theme settings updated."
msgstr ""
-#: ../../mod/admin.php:162
+#: ../../mod/admin.php:174
msgid "# Accounts"
msgstr ""
-#: ../../mod/admin.php:163
+#: ../../mod/admin.php:175
msgid "# blocked accounts"
msgstr ""
-#: ../../mod/admin.php:164
+#: ../../mod/admin.php:176
msgid "# expired accounts"
msgstr ""
-#: ../../mod/admin.php:165
+#: ../../mod/admin.php:177
msgid "# expiring accounts"
msgstr ""
-#: ../../mod/admin.php:176
+#: ../../mod/admin.php:188
msgid "# Channels"
msgstr ""
-#: ../../mod/admin.php:177
+#: ../../mod/admin.php:189
msgid "# primary"
msgstr ""
-#: ../../mod/admin.php:178
+#: ../../mod/admin.php:190
msgid "# clones"
msgstr ""
-#: ../../mod/admin.php:184
+#: ../../mod/admin.php:196
msgid "Message queues"
msgstr ""
-#: ../../mod/admin.php:200 ../../mod/admin.php:445 ../../mod/admin.php:545
-#: ../../mod/admin.php:812 ../../mod/admin.php:976 ../../mod/admin.php:1073
-#: ../../mod/admin.php:1113 ../../mod/admin.php:1273 ../../mod/admin.php:1307
-#: ../../mod/admin.php:1392
+#: ../../mod/admin.php:212 ../../mod/admin.php:455 ../../mod/admin.php:669
+#: ../../mod/admin.php:709 ../../mod/admin.php:984 ../../mod/admin.php:1148
+#: ../../mod/admin.php:1263 ../../mod/admin.php:1324 ../../mod/admin.php:1485
+#: ../../mod/admin.php:1519 ../../mod/admin.php:1604
msgid "Administration"
msgstr ""
-#: ../../mod/admin.php:201
+#: ../../mod/admin.php:213
msgid "Summary"
msgstr ""
-#: ../../mod/admin.php:204
+#: ../../mod/admin.php:216
msgid "Registered accounts"
msgstr ""
-#: ../../mod/admin.php:205 ../../mod/admin.php:549
+#: ../../mod/admin.php:217 ../../mod/admin.php:673
msgid "Pending registrations"
msgstr ""
-#: ../../mod/admin.php:206
+#: ../../mod/admin.php:218
msgid "Registered channels"
msgstr ""
-#: ../../mod/admin.php:207 ../../mod/admin.php:550
+#: ../../mod/admin.php:219 ../../mod/admin.php:674
msgid "Active plugins"
msgstr ""
-#: ../../mod/admin.php:208
+#: ../../mod/admin.php:220
msgid "Version"
msgstr ""
-#: ../../mod/admin.php:329
+#: ../../mod/admin.php:339
msgid "Site settings updated."
msgstr ""
-#: ../../mod/admin.php:366 ../../mod/settings.php:793
+#: ../../mod/admin.php:376 ../../mod/settings.php:805
msgid "mobile"
msgstr ""
-#: ../../mod/admin.php:368
+#: ../../mod/admin.php:378
msgid "experimental"
msgstr ""
-#: ../../mod/admin.php:370
+#: ../../mod/admin.php:380
msgid "unsupported"
msgstr ""
-#: ../../mod/admin.php:416
+#: ../../mod/admin.php:426
msgid "Yes - with approval"
msgstr ""
-#: ../../mod/admin.php:422
+#: ../../mod/admin.php:432
msgid "My site is not a public server"
msgstr ""
-#: ../../mod/admin.php:423
+#: ../../mod/admin.php:433
msgid "My site has paid access only"
msgstr ""
-#: ../../mod/admin.php:424
+#: ../../mod/admin.php:434
msgid "My site has free access only"
msgstr ""
-#: ../../mod/admin.php:425
+#: ../../mod/admin.php:435
msgid "My site offers free accounts with optional paid upgrades"
msgstr ""
-#: ../../mod/admin.php:449
+#: ../../mod/admin.php:458 ../../mod/register.php:241
+msgid "Registration"
+msgstr ""
+
+#: ../../mod/admin.php:459
msgid "File upload"
msgstr ""
-#: ../../mod/admin.php:450
+#: ../../mod/admin.php:460
msgid "Policies"
msgstr ""
-#: ../../mod/admin.php:455
+#: ../../mod/admin.php:465
msgid "Site name"
msgstr ""
-#: ../../mod/admin.php:456
+#: ../../mod/admin.php:466
msgid "Banner/Logo"
msgstr ""
-#: ../../mod/admin.php:457
+#: ../../mod/admin.php:467
msgid "Administrator Information"
msgstr ""
-#: ../../mod/admin.php:457
+#: ../../mod/admin.php:467
msgid ""
"Contact information for site administrators. Displayed on siteinfo page. "
"BBCode can be used here"
msgstr ""
-#: ../../mod/admin.php:458
+#: ../../mod/admin.php:468
msgid "System language"
msgstr ""
-#: ../../mod/admin.php:459
+#: ../../mod/admin.php:469
msgid "System theme"
msgstr ""
-#: ../../mod/admin.php:459
+#: ../../mod/admin.php:469
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr ""
-#: ../../mod/admin.php:460
+#: ../../mod/admin.php:470
msgid "Mobile system theme"
msgstr ""
-#: ../../mod/admin.php:460
+#: ../../mod/admin.php:470
msgid "Theme for mobile devices"
msgstr ""
-#: ../../mod/admin.php:462
+#: ../../mod/admin.php:472
msgid "Allow Feeds as Connections"
msgstr ""
-#: ../../mod/admin.php:462
+#: ../../mod/admin.php:472
msgid "(Heavy system resource usage)"
msgstr ""
-#: ../../mod/admin.php:463
+#: ../../mod/admin.php:473
msgid "Maximum image size"
msgstr ""
-#: ../../mod/admin.php:463
+#: ../../mod/admin.php:473
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr ""
-#: ../../mod/admin.php:464
+#: ../../mod/admin.php:474
msgid "Does this site allow new member registration?"
msgstr ""
-#: ../../mod/admin.php:465
+#: ../../mod/admin.php:475
msgid "Invitation only"
msgstr ""
-#: ../../mod/admin.php:465
+#: ../../mod/admin.php:475
msgid ""
"Only allow new member registrations with an invitation code. Above register "
"policy must be set to Yes."
msgstr ""
-#: ../../mod/admin.php:466
+#: ../../mod/admin.php:476
msgid "Which best describes the types of account offered by this hub?"
msgstr ""
-#: ../../mod/admin.php:467
+#: ../../mod/admin.php:477
msgid "Register text"
msgstr ""
-#: ../../mod/admin.php:467
+#: ../../mod/admin.php:477
msgid "Will be displayed prominently on the registration page."
msgstr ""
-#: ../../mod/admin.php:468
+#: ../../mod/admin.php:478
msgid "Site homepage to show visitors (default: login box)"
msgstr ""
-#: ../../mod/admin.php:468
+#: ../../mod/admin.php:478
msgid ""
"example: 'public' to show public stream, 'page/sys/home' to show a system "
"webpage called 'home' or 'include:home.html' to include a file."
msgstr ""
-#: ../../mod/admin.php:469
+#: ../../mod/admin.php:479
msgid "Preserve site homepage URL"
msgstr ""
-#: ../../mod/admin.php:469
+#: ../../mod/admin.php:479
msgid ""
"Present the site homepage in a frame at the original location instead of "
"redirecting"
msgstr ""
-#: ../../mod/admin.php:470
+#: ../../mod/admin.php:480
msgid "Accounts abandoned after x days"
msgstr ""
-#: ../../mod/admin.php:470
+#: ../../mod/admin.php:480
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr ""
-#: ../../mod/admin.php:471
+#: ../../mod/admin.php:481
msgid "Allowed friend domains"
msgstr ""
-#: ../../mod/admin.php:471
+#: ../../mod/admin.php:481
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:472
+#: ../../mod/admin.php:482
msgid "Allowed email domains"
msgstr ""
-#: ../../mod/admin.php:472
+#: ../../mod/admin.php:482
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:473
+#: ../../mod/admin.php:483
msgid "Not allowed email domains"
msgstr ""
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:483
msgid ""
"Comma separated list of domains which are not allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains, unless allowed domains have been defined."
msgstr ""
-#: ../../mod/admin.php:474
-msgid "Block public"
-msgstr ""
-
-#: ../../mod/admin.php:474
-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:475
+#: ../../mod/admin.php:484
msgid "Verify Email Addresses"
msgstr ""
-#: ../../mod/admin.php:475
+#: ../../mod/admin.php:484
msgid ""
"Check to verify email addresses used in account registration (recommended)."
msgstr ""
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:485
msgid "Force publish"
msgstr ""
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:485
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
-#: ../../mod/admin.php:477
+#: ../../mod/admin.php:486
msgid "Import Public Streams"
msgstr ""
-#: ../../mod/admin.php:477
+#: ../../mod/admin.php:486
msgid ""
"Import and allow access to public content pulled from other sites. Warning: "
"this content is unmoderated."
msgstr ""
-#: ../../mod/admin.php:478
+#: ../../mod/admin.php:487
msgid "login on Homepage"
msgstr ""
-#: ../../mod/admin.php:478
+#: ../../mod/admin.php:487
msgid ""
"Present a login box to visitors on the home page if no other content has "
"been configured."
msgstr ""
-#: ../../mod/admin.php:480
+#: ../../mod/admin.php:489
msgid "Directory Server URL"
msgstr ""
-#: ../../mod/admin.php:480
+#: ../../mod/admin.php:489
msgid "Default directory server"
msgstr ""
-#: ../../mod/admin.php:482
+#: ../../mod/admin.php:491
msgid "Proxy user"
msgstr ""
-#: ../../mod/admin.php:483
+#: ../../mod/admin.php:492
msgid "Proxy URL"
msgstr ""
-#: ../../mod/admin.php:484
+#: ../../mod/admin.php:493
msgid "Network timeout"
msgstr ""
-#: ../../mod/admin.php:484
+#: ../../mod/admin.php:493
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
-#: ../../mod/admin.php:485
+#: ../../mod/admin.php:494
msgid "Delivery interval"
msgstr ""
-#: ../../mod/admin.php:485
+#: ../../mod/admin.php:494
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:486
+#: ../../mod/admin.php:495
msgid "Deliveries per process"
msgstr ""
-#: ../../mod/admin.php:486
+#: ../../mod/admin.php:495
msgid ""
"Number of deliveries to attempt in a single operating system process. Adjust "
"if necessary to tune system performance. Recommend: 1-5."
msgstr ""
-#: ../../mod/admin.php:487
+#: ../../mod/admin.php:496
msgid "Poll interval"
msgstr ""
-#: ../../mod/admin.php:487
+#: ../../mod/admin.php:496
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr ""
-#: ../../mod/admin.php:488
+#: ../../mod/admin.php:497
msgid "Maximum Load Average"
msgstr ""
-#: ../../mod/admin.php:488
+#: ../../mod/admin.php:497
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
-#: ../../mod/admin.php:489
-msgid "Expiration period in days for imported (matrix/network) content"
+#: ../../mod/admin.php:498
+msgid "Expiration period in days for imported (grid/network) content"
msgstr ""
-#: ../../mod/admin.php:489
+#: ../../mod/admin.php:498
msgid "0 for no expiration of imported content"
msgstr ""
-#: ../../mod/admin.php:537
+#: ../../mod/admin.php:635 ../../mod/admin.php:636 ../../mod/settings.php:729
+msgid "Off"
+msgstr ""
+
+#: ../../mod/admin.php:635 ../../mod/admin.php:636 ../../mod/settings.php:729
+msgid "On"
+msgstr ""
+
+#: ../../mod/admin.php:636
+#, php-format
+msgid "Lock feature %s"
+msgstr ""
+
+#: ../../mod/admin.php:644
+msgid "Manage Additional Features"
+msgstr ""
+
+#: ../../mod/admin.php:661
msgid "No server found"
msgstr ""
-#: ../../mod/admin.php:544 ../../mod/admin.php:826
+#: ../../mod/admin.php:668 ../../mod/admin.php:998
msgid "ID"
msgstr ""
-#: ../../mod/admin.php:544
+#: ../../mod/admin.php:668
msgid "for channel"
msgstr ""
-#: ../../mod/admin.php:544
+#: ../../mod/admin.php:668
msgid "on server"
msgstr ""
-#: ../../mod/admin.php:544
-msgid "Status"
+#: ../../mod/admin.php:670
+msgid "Server"
msgstr ""
-#: ../../mod/admin.php:546
-msgid "Server"
+#: ../../mod/admin.php:712
+msgid "Block public"
+msgstr ""
+
+#: ../../mod/admin.php:712
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently authenticated."
+msgstr ""
+
+#: ../../mod/admin.php:713
+msgid "Allow communications only from these sites"
+msgstr ""
+
+#: ../../mod/admin.php:713
+msgid ""
+"One site per line. Leave empty to allow communication from anywhere by "
+"default"
+msgstr ""
+
+#: ../../mod/admin.php:714
+msgid "Block communications from these sites"
+msgstr ""
+
+#: ../../mod/admin.php:715
+msgid "Allow communications only from these channels"
+msgstr ""
+
+#: ../../mod/admin.php:715
+msgid ""
+"One channel (hash) per line. Leave empty to allow from any channel by default"
msgstr ""
-#: ../../mod/admin.php:563
+#: ../../mod/admin.php:716
+msgid "Block communications from these channels"
+msgstr ""
+
+#: ../../mod/admin.php:717
+msgid "Allow embedded HTML content only from these domains"
+msgstr ""
+
+#: ../../mod/admin.php:717
+msgid "One site per line. Leave empty to allow from any site by default"
+msgstr ""
+
+#: ../../mod/admin.php:718
+msgid "Block embedded HTML from these domains"
+msgstr ""
+
+#: ../../mod/admin.php:720
+msgid "Cooperative embed security"
+msgstr ""
+
+#: ../../mod/admin.php:720
+msgid "Enable to share embed security with other compatible sites/hubs"
+msgstr ""
+
+#: ../../mod/admin.php:735
msgid "Update has been marked successful"
msgstr ""
-#: ../../mod/admin.php:573
+#: ../../mod/admin.php:745
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr ""
-#: ../../mod/admin.php:576
+#: ../../mod/admin.php:748
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
-#: ../../mod/admin.php:580
+#: ../../mod/admin.php:752
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
-#: ../../mod/admin.php:583
+#: ../../mod/admin.php:755
#, php-format
msgid "Update function %s could not be found."
msgstr ""
-#: ../../mod/admin.php:599
+#: ../../mod/admin.php:771
msgid "No failed updates."
msgstr ""
-#: ../../mod/admin.php:603
+#: ../../mod/admin.php:775
msgid "Failed Updates"
msgstr ""
-#: ../../mod/admin.php:605
+#: ../../mod/admin.php:777
msgid "Mark success (if update was manually applied)"
msgstr ""
-#: ../../mod/admin.php:606
+#: ../../mod/admin.php:778
msgid "Attempt to execute this update step automatically"
msgstr ""
-#: ../../mod/admin.php:637
+#: ../../mod/admin.php:809
msgid "Queue Statistics"
msgstr ""
-#: ../../mod/admin.php:638
+#: ../../mod/admin.php:810
msgid "Total Entries"
msgstr ""
-#: ../../mod/admin.php:639
+#: ../../mod/admin.php:811
msgid "Priority"
msgstr ""
-#: ../../mod/admin.php:640
+#: ../../mod/admin.php:812
msgid "Destination URL"
msgstr ""
-#: ../../mod/admin.php:641
+#: ../../mod/admin.php:813
msgid "Mark hub permanently offline"
msgstr ""
-#: ../../mod/admin.php:642
+#: ../../mod/admin.php:814
msgid "Empty queue for this hub"
msgstr ""
-#: ../../mod/admin.php:643
+#: ../../mod/admin.php:815
msgid "Last known contact"
msgstr ""
-#: ../../mod/admin.php:679
+#: ../../mod/admin.php:851
#, php-format
msgid "%s account blocked/unblocked"
msgid_plural "%s account blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
-#: ../../mod/admin.php:687
+#: ../../mod/admin.php:859
#, php-format
msgid "%s account deleted"
msgid_plural "%s accounts deleted"
msgstr[0] ""
msgstr[1] ""
-#: ../../mod/admin.php:723
+#: ../../mod/admin.php:895
msgid "Account not found"
msgstr ""
-#: ../../mod/admin.php:735
+#: ../../mod/admin.php:907
#, php-format
msgid "Account '%s' deleted"
msgstr ""
-#: ../../mod/admin.php:743
+#: ../../mod/admin.php:915
#, php-format
msgid "Account '%s' blocked"
msgstr ""
-#: ../../mod/admin.php:751
+#: ../../mod/admin.php:923
#, php-format
msgid "Account '%s' unblocked"
msgstr ""
-#: ../../mod/admin.php:813 ../../mod/admin.php:825
+#: ../../mod/admin.php:985 ../../mod/admin.php:997
msgid "Users"
msgstr ""
-#: ../../mod/admin.php:815 ../../mod/admin.php:979
+#: ../../mod/admin.php:987 ../../mod/admin.php:1151
msgid "select all"
msgstr ""
-#: ../../mod/admin.php:816
+#: ../../mod/admin.php:988
msgid "User registrations waiting for confirm"
msgstr ""
-#: ../../mod/admin.php:817
+#: ../../mod/admin.php:989
msgid "Request date"
msgstr ""
-#: ../../mod/admin.php:818
+#: ../../mod/admin.php:990
msgid "No registrations."
msgstr ""
-#: ../../mod/admin.php:820
+#: ../../mod/admin.php:992
msgid "Deny"
msgstr ""
-#: ../../mod/admin.php:826
+#: ../../mod/admin.php:998
msgid "Register date"
msgstr ""
-#: ../../mod/admin.php:826
+#: ../../mod/admin.php:998
msgid "Last login"
msgstr ""
-#: ../../mod/admin.php:826
+#: ../../mod/admin.php:998
msgid "Expires"
msgstr ""
-#: ../../mod/admin.php:826
+#: ../../mod/admin.php:998
msgid "Service Class"
msgstr ""
-#: ../../mod/admin.php:828
+#: ../../mod/admin.php:1000
msgid ""
"Selected accounts will be deleted!\\n\\nEverything these accounts had posted "
"on this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
-#: ../../mod/admin.php:829
+#: ../../mod/admin.php:1001
msgid ""
"The account {0} will be deleted!\\n\\nEverything this account has posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
-#: ../../mod/admin.php:865
+#: ../../mod/admin.php:1037
#, php-format
msgid "%s channel censored/uncensored"
msgid_plural "%s channels censored/uncensored"
msgstr[0] ""
msgstr[1] ""
-#: ../../mod/admin.php:874
+#: ../../mod/admin.php:1046
#, php-format
msgid "%s channel code allowed/disallowed"
msgid_plural "%s channels code allowed/disallowed"
msgstr[0] ""
msgstr[1] ""
-#: ../../mod/admin.php:881
+#: ../../mod/admin.php:1053
#, php-format
msgid "%s channel deleted"
msgid_plural "%s channels deleted"
msgstr[0] ""
msgstr[1] ""
-#: ../../mod/admin.php:901
+#: ../../mod/admin.php:1073
msgid "Channel not found"
msgstr ""
-#: ../../mod/admin.php:912
+#: ../../mod/admin.php:1084
#, php-format
msgid "Channel '%s' deleted"
msgstr ""
-#: ../../mod/admin.php:924
+#: ../../mod/admin.php:1096
#, php-format
msgid "Channel '%s' censored"
msgstr ""
-#: ../../mod/admin.php:924
+#: ../../mod/admin.php:1096
#, php-format
msgid "Channel '%s' uncensored"
msgstr ""
-#: ../../mod/admin.php:935
+#: ../../mod/admin.php:1107
#, php-format
msgid "Channel '%s' code allowed"
msgstr ""
-#: ../../mod/admin.php:935
+#: ../../mod/admin.php:1107
#, php-format
msgid "Channel '%s' code disallowed"
msgstr ""
-#: ../../mod/admin.php:981
+#: ../../mod/admin.php:1153
msgid "Censor"
msgstr ""
-#: ../../mod/admin.php:982
+#: ../../mod/admin.php:1154
msgid "Uncensor"
msgstr ""
-#: ../../mod/admin.php:983
+#: ../../mod/admin.php:1155
msgid "Allow Code"
msgstr ""
-#: ../../mod/admin.php:984
+#: ../../mod/admin.php:1156
msgid "Disallow Code"
msgstr ""
-#: ../../mod/admin.php:986
+#: ../../mod/admin.php:1158
msgid "UID"
msgstr ""
-#: ../../mod/admin.php:988
+#: ../../mod/admin.php:1160
msgid ""
"Selected channels will be deleted!\\n\\nEverything that was posted in these "
"channels on this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
-#: ../../mod/admin.php:989
+#: ../../mod/admin.php:1161
msgid ""
"The channel {0} will be deleted!\\n\\nEverything that was posted in this "
"channel on this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
-#: ../../mod/admin.php:1029
+#: ../../mod/admin.php:1218
#, php-format
msgid "Plugin %s disabled."
msgstr ""
-#: ../../mod/admin.php:1033
+#: ../../mod/admin.php:1222
#, php-format
msgid "Plugin %s enabled."
msgstr ""
-#: ../../mod/admin.php:1043 ../../mod/admin.php:1246
+#: ../../mod/admin.php:1232 ../../mod/admin.php:1458
msgid "Disable"
msgstr ""
-#: ../../mod/admin.php:1046 ../../mod/admin.php:1248
+#: ../../mod/admin.php:1235 ../../mod/admin.php:1460
msgid "Enable"
msgstr ""
-#: ../../mod/admin.php:1075 ../../mod/admin.php:1275
+#: ../../mod/admin.php:1265 ../../mod/admin.php:1487
msgid "Toggle"
msgstr ""
-#: ../../mod/admin.php:1083 ../../mod/admin.php:1285
+#: ../../mod/admin.php:1273 ../../mod/admin.php:1497
msgid "Author: "
msgstr ""
-#: ../../mod/admin.php:1084 ../../mod/admin.php:1286
+#: ../../mod/admin.php:1274 ../../mod/admin.php:1498
msgid "Maintainer: "
msgstr ""
-#: ../../mod/admin.php:1211
+#: ../../mod/admin.php:1275
+msgid "Minimum project version: "
+msgstr ""
+
+#: ../../mod/admin.php:1276
+msgid "Maximum project version: "
+msgstr ""
+
+#: ../../mod/admin.php:1277
+msgid "Minimum PHP version: "
+msgstr ""
+
+#: ../../mod/admin.php:1278
+msgid "Requires: "
+msgstr ""
+
+#: ../../mod/admin.php:1279 ../../mod/admin.php:1330
+msgid "Disabled - version incompatibility"
+msgstr ""
+
+#: ../../mod/admin.php:1423
msgid "No themes found."
msgstr ""
-#: ../../mod/admin.php:1267
+#: ../../mod/admin.php:1479
msgid "Screenshot"
msgstr ""
-#: ../../mod/admin.php:1313
+#: ../../mod/admin.php:1525
msgid "[Experimental]"
msgstr ""
-#: ../../mod/admin.php:1314
+#: ../../mod/admin.php:1526
msgid "[Unsupported]"
msgstr ""
-#: ../../mod/admin.php:1338
+#: ../../mod/admin.php:1550
msgid "Log settings updated."
msgstr ""
-#: ../../mod/admin.php:1395
+#: ../../mod/admin.php:1607
msgid "Clear"
msgstr ""
-#: ../../mod/admin.php:1401
+#: ../../mod/admin.php:1613
msgid "Debugging"
msgstr ""
-#: ../../mod/admin.php:1402
+#: ../../mod/admin.php:1614
msgid "Log file"
msgstr ""
-#: ../../mod/admin.php:1402
+#: ../../mod/admin.php:1614
msgid ""
"Must be writable by web server. Relative to your Red top-level directory."
msgstr ""
-#: ../../mod/admin.php:1403
+#: ../../mod/admin.php:1615
msgid "Log level"
msgstr ""
-#: ../../mod/admin.php:1449
+#: ../../mod/admin.php:1682
msgid "New Profile Field"
msgstr ""
-#: ../../mod/admin.php:1450 ../../mod/admin.php:1470
+#: ../../mod/admin.php:1683 ../../mod/admin.php:1703
msgid "Field nickname"
msgstr ""
-#: ../../mod/admin.php:1450 ../../mod/admin.php:1470
+#: ../../mod/admin.php:1683 ../../mod/admin.php:1703
msgid "System name of field"
msgstr ""
-#: ../../mod/admin.php:1451 ../../mod/admin.php:1471
+#: ../../mod/admin.php:1684 ../../mod/admin.php:1704
msgid "Input type"
msgstr ""
-#: ../../mod/admin.php:1452 ../../mod/admin.php:1472
+#: ../../mod/admin.php:1685 ../../mod/admin.php:1705
msgid "Field Name"
msgstr ""
-#: ../../mod/admin.php:1452 ../../mod/admin.php:1472
+#: ../../mod/admin.php:1685 ../../mod/admin.php:1705
msgid "Label on profile pages"
msgstr ""
-#: ../../mod/admin.php:1453 ../../mod/admin.php:1473
+#: ../../mod/admin.php:1686 ../../mod/admin.php:1706
msgid "Help text"
msgstr ""
-#: ../../mod/admin.php:1453 ../../mod/admin.php:1473
+#: ../../mod/admin.php:1686 ../../mod/admin.php:1706
msgid "Additional info (optional)"
msgstr ""
-#: ../../mod/admin.php:1463
+#: ../../mod/admin.php:1696
msgid "Field definition not found"
msgstr ""
-#: ../../mod/admin.php:1469
+#: ../../mod/admin.php:1702
msgid "Edit Profile Field"
msgstr ""
-#: ../../mod/editlayout.php:112
-msgid "Delete layout?"
+#: ../../mod/admin.php:1761
+msgid "Basic Profile Fields"
msgstr ""
-#: ../../mod/editlayout.php:159 ../../mod/layouts.php:124
-msgid "Layout Description (Optional)"
+#: ../../mod/admin.php:1762
+msgid "Advanced Profile Fields"
msgstr ""
-#: ../../mod/editlayout.php:161 ../../mod/layouts.php:121
-#: ../../mod/layouts.php:179
-msgid "Layout Name"
+#: ../../mod/admin.php:1762
+msgid "(In addition to basic fields)"
msgstr ""
-#: ../../mod/editlayout.php:178
-msgid "Edit Layout"
+#: ../../mod/admin.php:1764
+msgid "All available fields"
msgstr ""
-#: ../../mod/settings.php:76
-msgid "Name is required"
+#: ../../mod/admin.php:1765
+msgid "Custom Fields"
msgstr ""
-#: ../../mod/settings.php:80
-msgid "Key and Secret are required"
+#: ../../mod/admin.php:1769
+msgid "Create Custom Field"
msgstr ""
-#: ../../mod/settings.php:232
-msgid "Passwords do not match. Password unchanged."
+#: ../../mod/poke.php:165
+msgid "Poke somebody"
msgstr ""
-#: ../../mod/settings.php:236
-msgid "Empty passwords are not allowed. Password unchanged."
+#: ../../mod/poke.php:168
+msgid "Poke/Prod"
msgstr ""
-#: ../../mod/settings.php:250
-msgid "Password changed."
+#: ../../mod/poke.php:169
+msgid "Poke, prod or do other things to somebody"
msgstr ""
-#: ../../mod/settings.php:252
-msgid "Password update failed. Please try again."
+#: ../../mod/poke.php:176
+msgid "Recipient"
msgstr ""
-#: ../../mod/settings.php:266
-msgid "Not valid email."
+#: ../../mod/poke.php:177
+msgid "Choose what you wish to do to recipient"
msgstr ""
-#: ../../mod/settings.php:269
-msgid "Protected email address. Cannot change to that email."
+#: ../../mod/poke.php:180 ../../mod/poke.php:181
+msgid "Make this post private"
msgstr ""
-#: ../../mod/settings.php:278
-msgid "System failure storing new email. Please try again."
+#: ../../mod/probe.php:24 ../../mod/probe.php:30
+#, php-format
+msgid "Fetching URL returns error: %1$s"
msgstr ""
-#: ../../mod/settings.php:521
-msgid "Settings updated."
+#: ../../mod/profile_photo.php:112 ../../mod/cover_photo.php:54
+msgid "Image uploaded but image cropping failed."
msgstr ""
-#: ../../mod/settings.php:585 ../../mod/settings.php:611
-#: ../../mod/settings.php:647
-msgid "Add application"
+#: ../../mod/profile_photo.php:166 ../../mod/cover_photo.php:150
+msgid "Image resize failed."
msgstr ""
-#: ../../mod/settings.php:588
-msgid "Name of application"
+#: ../../mod/profile_photo.php:212
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
msgstr ""
-#: ../../mod/settings.php:589 ../../mod/settings.php:615
-msgid "Consumer Key"
+#: ../../mod/profile_photo.php:250 ../../mod/cover_photo.php:188
+msgid "Image upload failed."
msgstr ""
-#: ../../mod/settings.php:589 ../../mod/settings.php:590
-msgid "Automatically generated - change if desired. Max length 20"
+#: ../../mod/profile_photo.php:269 ../../mod/cover_photo.php:206
+msgid "Unable to process image."
msgstr ""
-#: ../../mod/settings.php:590 ../../mod/settings.php:616
-msgid "Consumer Secret"
+#: ../../mod/profile_photo.php:316 ../../mod/profile_photo.php:357
+#: ../../mod/cover_photo.php:299 ../../mod/cover_photo.php:314
+msgid "Photo not available."
msgstr ""
-#: ../../mod/settings.php:591 ../../mod/settings.php:617
-msgid "Redirect"
+#: ../../mod/profile_photo.php:398 ../../mod/cover_photo.php:350
+msgid "Upload File:"
msgstr ""
-#: ../../mod/settings.php:591
-msgid ""
-"Redirect URI - leave blank unless your application specifically requires this"
+#: ../../mod/profile_photo.php:399 ../../mod/cover_photo.php:351
+msgid "Select a profile:"
msgstr ""
-#: ../../mod/settings.php:592 ../../mod/settings.php:618
-msgid "Icon url"
+#: ../../mod/profile_photo.php:400
+msgid "Upload Profile Photo"
msgstr ""
-#: ../../mod/settings.php:592
-msgid "Optional"
+#: ../../mod/profile_photo.php:407 ../../mod/settings.php:992
+#: ../../mod/cover_photo.php:357
+msgid "or"
msgstr ""
-#: ../../mod/settings.php:603
-msgid "You can't edit this application."
+#: ../../mod/profile_photo.php:407 ../../mod/cover_photo.php:357
+msgid "skip this step"
msgstr ""
-#: ../../mod/settings.php:646
-msgid "Connected Apps"
+#: ../../mod/profile_photo.php:407 ../../mod/cover_photo.php:357
+msgid "select a photo from your photo albums"
msgstr ""
-#: ../../mod/settings.php:650
-msgid "Client key starts with"
+#: ../../mod/profile_photo.php:423 ../../mod/cover_photo.php:373
+msgid "Crop Image"
msgstr ""
-#: ../../mod/settings.php:651
-msgid "No name"
+#: ../../mod/profile_photo.php:424 ../../mod/cover_photo.php:374
+msgid "Please adjust the image cropping for optimum viewing."
msgstr ""
-#: ../../mod/settings.php:652
-msgid "Remove authorization"
+#: ../../mod/profile_photo.php:426 ../../mod/cover_photo.php:376
+msgid "Done Editing"
msgstr ""
-#: ../../mod/settings.php:665
-msgid "No feature settings configured"
+#: ../../mod/profiles.php:19 ../../mod/profiles.php:184
+#: ../../mod/profiles.php:241 ../../mod/profiles.php:620
+msgid "Profile not found."
msgstr ""
-#: ../../mod/settings.php:672
-msgid "Feature/Addon Settings"
+#: ../../mod/profiles.php:39
+msgid "Profile deleted."
msgstr ""
-#: ../../mod/settings.php:695
-msgid "Account Settings"
+#: ../../mod/profiles.php:63 ../../mod/profiles.php:99
+msgid "Profile-"
msgstr ""
-#: ../../mod/settings.php:696
-msgid "Enter New Password:"
+#: ../../mod/profiles.php:84 ../../mod/profiles.php:127
+msgid "New profile created."
msgstr ""
-#: ../../mod/settings.php:697
-msgid "Confirm New Password:"
+#: ../../mod/profiles.php:105
+msgid "Profile unavailable to clone."
msgstr ""
-#: ../../mod/settings.php:697
-msgid "Leave password fields blank unless changing"
+#: ../../mod/profiles.php:146
+msgid "Profile unavailable to export."
msgstr ""
-#: ../../mod/settings.php:699 ../../mod/settings.php:1030
-msgid "Email Address:"
+#: ../../mod/profiles.php:251
+msgid "Profile Name is required."
msgstr ""
-#: ../../mod/settings.php:701
-msgid "Remove this account including all its channels"
+#: ../../mod/profiles.php:422
+msgid "Marital Status"
msgstr ""
-#: ../../mod/settings.php:717
-msgid "Off"
+#: ../../mod/profiles.php:426
+msgid "Romantic Partner"
msgstr ""
-#: ../../mod/settings.php:717
-msgid "On"
+#: ../../mod/profiles.php:430 ../../mod/profiles.php:735
+msgid "Likes"
msgstr ""
-#: ../../mod/settings.php:724
-msgid "Additional Features"
+#: ../../mod/profiles.php:434 ../../mod/profiles.php:736
+msgid "Dislikes"
msgstr ""
-#: ../../mod/settings.php:748
-msgid "Connector Settings"
+#: ../../mod/profiles.php:438 ../../mod/profiles.php:743
+msgid "Work/Employment"
msgstr ""
-#: ../../mod/settings.php:787
-msgid "No special theme for mobile devices"
+#: ../../mod/profiles.php:441
+msgid "Religion"
msgstr ""
-#: ../../mod/settings.php:790
-#, php-format
-msgid "%s - (Experimental)"
+#: ../../mod/profiles.php:445
+msgid "Political Views"
msgstr ""
-#: ../../mod/settings.php:829
-msgid "Display Settings"
+#: ../../mod/profiles.php:453
+msgid "Sexual Preference"
msgstr ""
-#: ../../mod/settings.php:830
-msgid "Theme Settings"
+#: ../../mod/profiles.php:457
+msgid "Homepage"
msgstr ""
-#: ../../mod/settings.php:831
-msgid "Custom Theme Settings"
+#: ../../mod/profiles.php:461
+msgid "Interests"
msgstr ""
-#: ../../mod/settings.php:832
-msgid "Content Settings"
+#: ../../mod/profiles.php:555
+msgid "Profile updated."
msgstr ""
-#: ../../mod/settings.php:838
-msgid "Display Theme:"
+#: ../../mod/profiles.php:644
+msgid "Hide your connections list from viewers of this profile"
msgstr ""
-#: ../../mod/settings.php:839
-msgid "Mobile Theme:"
+#: ../../mod/profiles.php:686
+msgid "Edit Profile Details"
msgstr ""
-#: ../../mod/settings.php:840
-msgid "Enable user zoom on mobile devices"
+#: ../../mod/profiles.php:688
+msgid "View this profile"
msgstr ""
-#: ../../mod/settings.php:841
-msgid "Update browser every xx seconds"
+#: ../../mod/profiles.php:690
+msgid "Change cover photo"
msgstr ""
-#: ../../mod/settings.php:841
-msgid "Minimum of 10 seconds, no maximum"
+#: ../../mod/profiles.php:692
+msgid "Create a new profile using these settings"
msgstr ""
-#: ../../mod/settings.php:842
-msgid "Maximum number of conversations to load at any time:"
+#: ../../mod/profiles.php:693
+msgid "Clone this profile"
msgstr ""
-#: ../../mod/settings.php:842
-msgid "Maximum of 100 items"
+#: ../../mod/profiles.php:694
+msgid "Delete this profile"
msgstr ""
-#: ../../mod/settings.php:843
-msgid "Show emoticons (smilies) as images"
+#: ../../mod/profiles.php:695
+msgid "Add profile things"
msgstr ""
-#: ../../mod/settings.php:844
-msgid "Link post titles to source"
+#: ../../mod/profiles.php:698
+msgid "Relation"
msgstr ""
-#: ../../mod/settings.php:845
-msgid "System Page Layout Editor - (advanced)"
+#: ../../mod/profiles.php:701
+msgid "Import profile from file"
msgstr ""
-#: ../../mod/settings.php:848
-msgid "Use blog/list mode on channel page"
+#: ../../mod/profiles.php:702
+msgid "Export profile to file"
msgstr ""
-#: ../../mod/settings.php:848 ../../mod/settings.php:849
-msgid "(comments displayed separately)"
+#: ../../mod/profiles.php:703
+msgid "Your gender"
msgstr ""
-#: ../../mod/settings.php:849
-msgid "Use blog/list mode on matrix page"
+#: ../../mod/profiles.php:704
+msgid "Marital status"
msgstr ""
-#: ../../mod/settings.php:850
-msgid "Channel page max height of content (in pixels)"
+#: ../../mod/profiles.php:705
+msgid "Sexual preference"
msgstr ""
-#: ../../mod/settings.php:850 ../../mod/settings.php:851
-msgid "click to expand content exceeding this height"
+#: ../../mod/profiles.php:708
+msgid "Profile name"
msgstr ""
-#: ../../mod/settings.php:851
-msgid "Matrix page max height of content (in pixels)"
+#: ../../mod/profiles.php:710
+msgid "This is your default profile."
msgstr ""
-#: ../../mod/settings.php:885
-msgid "Nobody except yourself"
+#: ../../mod/profiles.php:712
+msgid "Your full name"
msgstr ""
-#: ../../mod/settings.php:886
-msgid "Only those you specifically allow"
+#: ../../mod/profiles.php:713
+msgid "Title/Description"
msgstr ""
-#: ../../mod/settings.php:887
-msgid "Approved connections"
+#: ../../mod/profiles.php:716
+msgid "Street address"
msgstr ""
-#: ../../mod/settings.php:888
-msgid "Any connections"
+#: ../../mod/profiles.php:717
+msgid "Locality/City"
msgstr ""
-#: ../../mod/settings.php:889
-msgid "Anybody on this website"
+#: ../../mod/profiles.php:718
+msgid "Region/State"
msgstr ""
-#: ../../mod/settings.php:890
-msgid "Anybody in this network"
+#: ../../mod/profiles.php:719
+msgid "Postal/Zip code"
msgstr ""
-#: ../../mod/settings.php:891
-msgid "Anybody authenticated"
+#: ../../mod/profiles.php:720
+msgid "Country"
msgstr ""
-#: ../../mod/settings.php:892
-msgid "Anybody on the internet"
+#: ../../mod/profiles.php:725
+msgid "Who (if applicable)"
msgstr ""
-#: ../../mod/settings.php:966
-msgid "Publish your default profile in the network directory"
+#: ../../mod/profiles.php:725
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr ""
-#: ../../mod/settings.php:971
-msgid "Allow us to suggest you as a potential friend to new members?"
+#: ../../mod/profiles.php:726
+msgid "Since (date)"
msgstr ""
-#: ../../mod/settings.php:980
-msgid "Your channel address is"
+#: ../../mod/profiles.php:729
+msgid "Tell us about yourself"
msgstr ""
-#: ../../mod/settings.php:1021
-msgid "Channel Settings"
+#: ../../mod/profiles.php:731
+msgid "Hometown"
msgstr ""
-#: ../../mod/settings.php:1028
-msgid "Basic Settings"
+#: ../../mod/profiles.php:732
+msgid "Political views"
msgstr ""
-#: ../../mod/settings.php:1031
-msgid "Your Timezone:"
+#: ../../mod/profiles.php:733
+msgid "Religious views"
msgstr ""
-#: ../../mod/settings.php:1032
-msgid "Default Post Location:"
+#: ../../mod/profiles.php:734
+msgid "Keywords used in directory listings"
msgstr ""
-#: ../../mod/settings.php:1032
-msgid "Geographical location to display on your posts"
+#: ../../mod/profiles.php:734
+msgid "Example: fishing photography software"
msgstr ""
-#: ../../mod/settings.php:1033
-msgid "Use Browser Location:"
+#: ../../mod/profiles.php:737
+msgid "Musical interests"
msgstr ""
-#: ../../mod/settings.php:1035
-msgid "Adult Content"
+#: ../../mod/profiles.php:738
+msgid "Books, literature"
msgstr ""
-#: ../../mod/settings.php:1035
-msgid ""
-"This channel frequently or regularly publishes adult content. (Please tag "
-"any adult material and/or nudity with #NSFW)"
+#: ../../mod/profiles.php:739
+msgid "Television"
msgstr ""
-#: ../../mod/settings.php:1037
-msgid "Security and Privacy Settings"
+#: ../../mod/profiles.php:740
+msgid "Film/Dance/Culture/Entertainment"
msgstr ""
-#: ../../mod/settings.php:1039
-msgid "Your permissions are already configured. Click to view/adjust"
+#: ../../mod/profiles.php:741
+msgid "Hobbies/Interests"
msgstr ""
-#: ../../mod/settings.php:1041
-msgid "Hide my online presence"
+#: ../../mod/profiles.php:742
+msgid "Love/Romance"
msgstr ""
-#: ../../mod/settings.php:1041
-msgid "Prevents displaying in your profile that you are online"
+#: ../../mod/profiles.php:744
+msgid "School/Education"
msgstr ""
-#: ../../mod/settings.php:1043
-msgid "Simple Privacy Settings:"
+#: ../../mod/profiles.php:745
+msgid "Contact information and social networks"
msgstr ""
-#: ../../mod/settings.php:1044
-msgid ""
-"Very Public - <em>extremely permissive (should be used with caution)</em>"
+#: ../../mod/profiles.php:746
+msgid "My other channels"
msgstr ""
-#: ../../mod/settings.php:1045
-msgid ""
-"Typical - <em>default public, privacy when desired (similar to social "
-"network permissions but with improved privacy)</em>"
+#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
+msgid "Invalid profile identifier."
msgstr ""
-#: ../../mod/settings.php:1046
-msgid "Private - <em>default private, never open or public</em>"
+#: ../../mod/profperm.php:110
+msgid "Profile Visibility Editor"
msgstr ""
-#: ../../mod/settings.php:1047
-msgid "Blocked - <em>default blocked to/from everybody</em>"
+#: ../../mod/profperm.php:114
+msgid "Click on a contact to add or remove."
msgstr ""
-#: ../../mod/settings.php:1049
-msgid "Allow others to tag your posts"
+#: ../../mod/profperm.php:123
+msgid "Visible To"
msgstr ""
-#: ../../mod/settings.php:1049
+#: ../../mod/pubsites.php:21
msgid ""
-"Often used by the community to retro-actively flag inappropriate content"
+"The listed hubs allow public registration for the $Projectname network. All "
+"hubs in the network are interlinked so membership on any of them conveys "
+"membership in the network as a whole. Some hubs may require subscription or "
+"provide tiered service plans. The hub itself <strong>may</strong> provide "
+"additional details."
msgstr ""
-#: ../../mod/settings.php:1051
-msgid "Advanced Privacy Settings"
+#: ../../mod/pubsites.php:27
+msgid "Hub URL"
msgstr ""
-#: ../../mod/settings.php:1053
-msgid "Expire other channel content after this many days"
+#: ../../mod/pubsites.php:27
+msgid "Access Type"
msgstr ""
-#: ../../mod/settings.php:1053
-msgid "0 or blank prevents expiration"
+#: ../../mod/pubsites.php:27
+msgid "Registration Policy"
msgstr ""
-#: ../../mod/settings.php:1054
-msgid "Maximum Friend Requests/Day:"
+#: ../../mod/pubsites.php:33
+msgid "Rate"
msgstr ""
-#: ../../mod/settings.php:1054
-msgid "May reduce spam activity"
+#: ../../mod/rate.php:158
+msgid "Website:"
msgstr ""
-#: ../../mod/settings.php:1055
-msgid "Default Post Permissions"
+#: ../../mod/rate.php:161
+#, php-format
+msgid "Remote Channel [%s] (not yet known on this site)"
msgstr ""
-#: ../../mod/settings.php:1056 ../../mod/mitem.php:150 ../../mod/mitem.php:223
-msgid "(click to open/close)"
+#: ../../mod/rate.php:162
+msgid "Rating (this information is public)"
msgstr ""
-#: ../../mod/settings.php:1060
-msgid "Channel permissions category:"
+#: ../../mod/rate.php:163
+msgid "Optionally explain your rating (this information is public)"
msgstr ""
-#: ../../mod/settings.php:1066
-msgid "Maximum private messages per day from unknown people:"
+#: ../../mod/ratings.php:69
+msgid "No ratings"
msgstr ""
-#: ../../mod/settings.php:1066
-msgid "Useful to reduce spamming"
+#: ../../mod/ratings.php:100
+msgid "Rating: "
msgstr ""
-#: ../../mod/settings.php:1069
-msgid "Notification Settings"
+#: ../../mod/ratings.php:101
+msgid "Website: "
msgstr ""
-#: ../../mod/settings.php:1070
-msgid "By default post a status message when:"
+#: ../../mod/ratings.php:103
+msgid "Description: "
msgstr ""
-#: ../../mod/settings.php:1071
-msgid "accepting a friend request"
+#: ../../mod/rbmark.php:90
+msgid "Select a bookmark folder"
msgstr ""
-#: ../../mod/settings.php:1072
-msgid "joining a forum/community"
+#: ../../mod/rbmark.php:95
+msgid "Save Bookmark"
msgstr ""
-#: ../../mod/settings.php:1073
-msgid "making an <em>interesting</em> profile change"
+#: ../../mod/rbmark.php:96
+msgid "URL of bookmark"
msgstr ""
-#: ../../mod/settings.php:1074
-msgid "Send a notification email when:"
+#: ../../mod/rbmark.php:101
+msgid "Or enter new bookmark folder name"
msgstr ""
-#: ../../mod/settings.php:1075
-msgid "You receive a connection request"
+#: ../../mod/register.php:45
+msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
msgstr ""
-#: ../../mod/settings.php:1076
-msgid "Your connections are confirmed"
+#: ../../mod/register.php:51
+msgid ""
+"Please indicate acceptance of the Terms of Service. Registration failed."
msgstr ""
-#: ../../mod/settings.php:1077
-msgid "Someone writes on your profile wall"
+#: ../../mod/register.php:85
+msgid "Passwords do not match."
msgstr ""
-#: ../../mod/settings.php:1078
-msgid "Someone writes a followup comment"
+#: ../../mod/register.php:127
+msgid ""
+"Registration successful. Please check your email for validation instructions."
msgstr ""
-#: ../../mod/settings.php:1079
-msgid "You receive a private message"
+#: ../../mod/register.php:133
+msgid "Your registration is pending approval by the site owner."
msgstr ""
-#: ../../mod/settings.php:1080
-msgid "You receive a friend suggestion"
+#: ../../mod/register.php:136
+msgid "Your registration can not be processed."
msgstr ""
-#: ../../mod/settings.php:1081
-msgid "You are tagged in a post"
+#: ../../mod/register.php:180
+msgid "Registration on this hub is disabled."
msgstr ""
-#: ../../mod/settings.php:1082
-msgid "You are poked/prodded/etc. in a post"
+#: ../../mod/register.php:189
+msgid "Registration on this hub is by approval only."
msgstr ""
-#: ../../mod/settings.php:1085
-msgid "Show visual notifications including:"
+#: ../../mod/register.php:190
+msgid "<a href=\"pubsites\">Register at another affiliated hub.</a>"
msgstr ""
-#: ../../mod/settings.php:1087
-msgid "Unseen matrix activity"
+#: ../../mod/register.php:200
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
msgstr ""
-#: ../../mod/settings.php:1088
-msgid "Unseen channel activity"
+#: ../../mod/register.php:211
+msgid "Terms of Service"
msgstr ""
-#: ../../mod/settings.php:1089
-msgid "Unseen private messages"
+#: ../../mod/register.php:217
+#, php-format
+msgid "I accept the %s for this website"
msgstr ""
-#: ../../mod/settings.php:1089 ../../mod/settings.php:1094
-#: ../../mod/settings.php:1095 ../../mod/settings.php:1096
-msgid "Recommended"
+#: ../../mod/register.php:219
+#, php-format
+msgid "I am over 13 years of age and accept the %s for this website"
msgstr ""
-#: ../../mod/settings.php:1090
-msgid "Upcoming events"
+#: ../../mod/register.php:223
+msgid "Your email address"
msgstr ""
-#: ../../mod/settings.php:1091
-msgid "Events today"
+#: ../../mod/register.php:224
+msgid "Choose a password"
msgstr ""
-#: ../../mod/settings.php:1092
-msgid "Upcoming birthdays"
+#: ../../mod/register.php:225
+msgid "Please re-enter your password"
msgstr ""
-#: ../../mod/settings.php:1092
-msgid "Not available in all themes"
+#: ../../mod/register.php:226
+msgid "Please enter your invitation code"
msgstr ""
-#: ../../mod/settings.php:1093
-msgid "System (personal) notifications"
+#: ../../mod/register.php:232
+msgid "no"
msgstr ""
-#: ../../mod/settings.php:1094
-msgid "System info messages"
+#: ../../mod/register.php:232
+msgid "yes"
msgstr ""
-#: ../../mod/settings.php:1095
-msgid "System critical alerts"
+#: ../../mod/register.php:246
+msgid "Membership on this site is by invitation only."
msgstr ""
-#: ../../mod/settings.php:1096
-msgid "New connections"
+#: ../../mod/register.php:258
+msgid "Proceed to create your first channel"
msgstr ""
-#: ../../mod/settings.php:1097
-msgid "System Registrations"
+#: ../../mod/regmod.php:11
+msgid "Please login."
msgstr ""
-#: ../../mod/settings.php:1098
+#: ../../mod/removeaccount.php:30
msgid ""
-"Also show new wall posts, private messages and connections under Notices"
+"Account removals are not allowed within 48 hours of changing the account "
+"password."
msgstr ""
-#: ../../mod/settings.php:1100
-msgid "Notify me of events this many days in advance"
+#: ../../mod/removeaccount.php:57
+msgid "Remove This Account"
msgstr ""
-#: ../../mod/settings.php:1100
-msgid "Must be greater than 0"
+#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58
+msgid "WARNING: "
msgstr ""
-#: ../../mod/settings.php:1102
-msgid "Advanced Account/Page Type Settings"
+#: ../../mod/removeaccount.php:58
+msgid ""
+"This account and all its channels will be completely removed from the "
+"network. "
msgstr ""
-#: ../../mod/settings.php:1103
-msgid "Change the behaviour of this account for special situations"
+#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58
+msgid "This action is permanent and can not be undone!"
msgstr ""
-#: ../../mod/settings.php:1106
+#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59
+msgid "Please enter your password for verification:"
+msgstr ""
+
+#: ../../mod/removeaccount.php:60
msgid ""
-"Please enable expert mode (in <a href=\"settings/features\">Settings > "
-"Additional features</a>) to adjust!"
+"Remove this account, all its channels and all its channel clones from the "
+"network"
msgstr ""
-#: ../../mod/settings.php:1107
-msgid "Miscellaneous Settings"
+#: ../../mod/removeaccount.php:60
+msgid ""
+"By default only the instances of the channels located on this hub will be "
+"removed from the network"
msgstr ""
-#: ../../mod/settings.php:1108
-msgid "Default photo upload folder"
+#: ../../mod/removeaccount.php:61 ../../mod/settings.php:712
+msgid "Remove Account"
msgstr ""
-#: ../../mod/settings.php:1108 ../../mod/settings.php:1109
-msgid "%Y - current year, %m - current month"
+#: ../../mod/removeme.php:29
+msgid ""
+"Channel removals are not allowed within 48 hours of changing the account "
+"password."
msgstr ""
-#: ../../mod/settings.php:1109
-msgid "Default file upload folder"
+#: ../../mod/removeme.php:57
+msgid "Remove This Channel"
msgstr ""
-#: ../../mod/settings.php:1111
-msgid "Personal menu to display in your channel pages"
+#: ../../mod/removeme.php:58
+msgid "This channel will be completely removed from the network. "
msgstr ""
-#: ../../mod/settings.php:1113
-msgid "Remove this channel."
+#: ../../mod/removeme.php:60
+msgid "Remove this channel and all its clones from the network"
msgstr ""
-#: ../../mod/settings.php:1114
-msgid "Firefox Share $Projectname provider"
+#: ../../mod/removeme.php:60
+msgid ""
+"By default only the instance of the channel located on this hub will be "
+"removed from the network"
msgstr ""
-#: ../../mod/settings.php:1115
-msgid "Start calendar week on monday"
+#: ../../mod/removeme.php:61 ../../mod/settings.php:1131
+msgid "Remove Channel"
msgstr ""
-#: ../../mod/webpages.php:191
-msgid "Page Title"
+#: ../../mod/rmagic.php:40
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
msgstr ""
-#: ../../mod/appman.php:28 ../../mod/appman.php:44
-msgid "App installed."
+#: ../../mod/rmagic.php:40
+msgid "The error message was:"
msgstr ""
-#: ../../mod/appman.php:37
-msgid "Malformed app."
+#: ../../mod/rmagic.php:44
+msgid "Authentication failed."
msgstr ""
-#: ../../mod/appman.php:80
-msgid "Embed code"
+#: ../../mod/rmagic.php:84
+msgid "Remote Authentication"
msgstr ""
-#: ../../mod/appman.php:86
-msgid "Edit App"
+#: ../../mod/rmagic.php:85
+msgid "Enter your channel address (e.g. channel@example.com)"
msgstr ""
-#: ../../mod/appman.php:86
-msgid "Create App"
+#: ../../mod/rmagic.php:86
+msgid "Authenticate"
msgstr ""
-#: ../../mod/appman.php:91
-msgid "Name of app"
+#: ../../mod/search.php:212
+#, php-format
+msgid "Items tagged with: %s"
msgstr ""
-#: ../../mod/appman.php:92
-msgid "Location (URL) of app"
+#: ../../mod/search.php:214
+#, php-format
+msgid "Search results for: %s"
msgstr ""
-#: ../../mod/appman.php:94
-msgid "Photo icon URL"
+#: ../../mod/service_limits.php:19
+msgid "No service class restrictions found."
msgstr ""
-#: ../../mod/appman.php:94
-msgid "80 x 80 pixels - optional"
+#: ../../mod/settings.php:76
+msgid "Name is required"
msgstr ""
-#: ../../mod/appman.php:95
-msgid "Version ID"
+#: ../../mod/settings.php:80
+msgid "Key and Secret are required"
msgstr ""
-#: ../../mod/appman.php:96
-msgid "Price of app"
+#: ../../mod/settings.php:232
+msgid "Not valid email."
msgstr ""
-#: ../../mod/appman.php:97
-msgid "Location (URL) to purchase app"
+#: ../../mod/settings.php:235
+msgid "Protected email address. Cannot change to that email."
msgstr ""
-#: ../../mod/filer.php:48
-msgid "- select -"
+#: ../../mod/settings.php:244
+msgid "System failure storing new email. Please try again."
msgstr ""
-#: ../../mod/layouts.php:176
-msgid "Comanche page description language help"
+#: ../../mod/settings.php:261
+msgid "Password verification failed."
msgstr ""
-#: ../../mod/layouts.php:180
-msgid "Layout Description"
+#: ../../mod/settings.php:268
+msgid "Passwords do not match. Password unchanged."
msgstr ""
-#: ../../mod/layouts.php:185
-msgid "Download PDL file"
+#: ../../mod/settings.php:272
+msgid "Empty passwords are not allowed. Password unchanged."
msgstr ""
-#: ../../mod/locs.php:21 ../../mod/locs.php:50
-msgid "Location not found."
+#: ../../mod/settings.php:286
+msgid "Password changed."
msgstr ""
-#: ../../mod/locs.php:58
-msgid "Location lookup failed."
+#: ../../mod/settings.php:288
+msgid "Password update failed. Please try again."
msgstr ""
-#: ../../mod/locs.php:62
-msgid ""
-"Please select another location to become primary before removing the primary "
-"location."
+#: ../../mod/settings.php:532
+msgid "Settings updated."
msgstr ""
-#: ../../mod/locs.php:91
-msgid "Syncing locations"
+#: ../../mod/settings.php:596 ../../mod/settings.php:622
+#: ../../mod/settings.php:658
+msgid "Add application"
msgstr ""
-#: ../../mod/locs.php:101
-msgid "No locations found."
+#: ../../mod/settings.php:599
+msgid "Name of application"
msgstr ""
-#: ../../mod/locs.php:112
-msgid "Manage Channel Locations"
+#: ../../mod/settings.php:600 ../../mod/settings.php:626
+msgid "Consumer Key"
msgstr ""
-#: ../../mod/locs.php:113
-msgid "Location (address)"
+#: ../../mod/settings.php:600 ../../mod/settings.php:601
+msgid "Automatically generated - change if desired. Max length 20"
msgstr ""
-#: ../../mod/locs.php:114
-msgid "Primary Location"
+#: ../../mod/settings.php:601 ../../mod/settings.php:627
+msgid "Consumer Secret"
msgstr ""
-#: ../../mod/locs.php:115
-msgid "Drop location"
+#: ../../mod/settings.php:602 ../../mod/settings.php:628
+msgid "Redirect"
msgstr ""
-#: ../../mod/locs.php:117
-msgid "Sync now"
+#: ../../mod/settings.php:602
+msgid ""
+"Redirect URI - leave blank unless your application specifically requires this"
msgstr ""
-#: ../../mod/locs.php:118
-msgid "Please wait several minutes between consecutive operations."
+#: ../../mod/settings.php:603 ../../mod/settings.php:629
+msgid "Icon url"
msgstr ""
-#: ../../mod/locs.php:119
-msgid ""
-"When possible, drop a location by logging into that website/hub and removing "
-"your channel."
+#: ../../mod/settings.php:603
+msgid "Optional"
msgstr ""
-#: ../../mod/locs.php:120
-msgid "Use this form to drop the location if the hub is no longer operating."
+#: ../../mod/settings.php:614
+msgid "Application not found."
msgstr ""
-#: ../../mod/home.php:57 ../../mod/home.php:65 ../../mod/siteinfo.php:61
-msgid "$Projectname"
+#: ../../mod/settings.php:657
+msgid "Connected Apps"
msgstr ""
-#: ../../mod/home.php:75
-#, php-format
-msgid "Welcome to %s"
+#: ../../mod/settings.php:661
+msgid "Client key starts with"
msgstr ""
-#: ../../mod/regmod.php:11
-msgid "Please login."
+#: ../../mod/settings.php:662
+msgid "No name"
msgstr ""
-#: ../../mod/xchan.php:6
-msgid "Xchan Lookup"
+#: ../../mod/settings.php:663
+msgid "Remove authorization"
msgstr ""
-#: ../../mod/xchan.php:9
-msgid "Lookup xchan beginning with (or webbie): "
+#: ../../mod/settings.php:676
+msgid "No feature settings configured"
msgstr ""
-#: ../../mod/xchan.php:37 ../../mod/menu.php:162 ../../mod/mitem.php:116
-msgid "Not found."
+#: ../../mod/settings.php:683
+msgid "Feature/Addon Settings"
msgstr ""
-#: ../../mod/channel.php:25 ../../mod/chat.php:19
-msgid "You must be logged in to see this page."
+#: ../../mod/settings.php:706
+msgid "Account Settings"
msgstr ""
-#: ../../mod/channel.php:97
-msgid "Insufficient permissions. Request redirected to profile page."
+#: ../../mod/settings.php:707
+msgid "Current Password"
msgstr ""
-#: ../../mod/attach.php:9
-msgid "Item not available."
+#: ../../mod/settings.php:708
+msgid "Enter New Password"
msgstr ""
-#: ../../mod/photos.php:79
-msgid "Page owner information could not be retrieved."
+#: ../../mod/settings.php:709
+msgid "Confirm New Password"
msgstr ""
-#: ../../mod/photos.php:100
-msgid "Album not found."
+#: ../../mod/settings.php:709
+msgid "Leave password fields blank unless changing"
msgstr ""
-#: ../../mod/photos.php:127
-msgid "Delete Album"
+#: ../../mod/settings.php:711 ../../mod/settings.php:1048
+msgid "Email Address:"
msgstr ""
-#: ../../mod/photos.php:171 ../../mod/photos.php:1006
-msgid "Delete Photo"
+#: ../../mod/settings.php:713
+msgid "Remove this account including all its channels"
msgstr ""
-#: ../../mod/photos.php:501
-msgid "No photos selected"
+#: ../../mod/settings.php:736
+msgid "Additional Features"
msgstr ""
-#: ../../mod/photos.php:550
-msgid "Access to this item is restricted."
+#: ../../mod/settings.php:760
+msgid "Connector Settings"
msgstr ""
-#: ../../mod/photos.php:589
-#, php-format
-msgid "%1$.2f MB of %2$.2f MB photo storage used."
+#: ../../mod/settings.php:799
+msgid "No special theme for mobile devices"
msgstr ""
-#: ../../mod/photos.php:592
+#: ../../mod/settings.php:802
#, php-format
-msgid "%1$.2f MB photo storage used."
+msgid "%s - (Experimental)"
msgstr ""
-#: ../../mod/photos.php:620
-msgid "Upload Photos"
+#: ../../mod/settings.php:844
+msgid "Display Settings"
msgstr ""
-#: ../../mod/photos.php:624
-msgid "Enter an album name"
+#: ../../mod/settings.php:845
+msgid "Theme Settings"
msgstr ""
-#: ../../mod/photos.php:625
-msgid "or select an existing album (doubleclick)"
+#: ../../mod/settings.php:846
+msgid "Custom Theme Settings"
msgstr ""
-#: ../../mod/photos.php:626
-msgid "Create a status post for this upload"
+#: ../../mod/settings.php:847
+msgid "Content Settings"
msgstr ""
-#: ../../mod/photos.php:627
-msgid "Caption (optional):"
+#: ../../mod/settings.php:853
+msgid "Display Theme:"
msgstr ""
-#: ../../mod/photos.php:628
-msgid "Description (optional):"
+#: ../../mod/settings.php:854
+msgid "Mobile Theme:"
msgstr ""
-#: ../../mod/photos.php:655
-msgid "Album name could not be decoded"
+#: ../../mod/settings.php:855
+msgid "Preload images before rendering the page"
msgstr ""
-#: ../../mod/photos.php:699 ../../mod/photos.php:1233
-#: ../../mod/photos.php:1250
-msgid "Contact Photos"
+#: ../../mod/settings.php:855
+msgid ""
+"The subjective page load time will be longer but the page will be ready when "
+"displayed"
msgstr ""
-#: ../../mod/photos.php:722
-msgid "Show Newest First"
+#: ../../mod/settings.php:856
+msgid "Enable user zoom on mobile devices"
msgstr ""
-#: ../../mod/photos.php:724
-msgid "Show Oldest First"
+#: ../../mod/settings.php:857
+msgid "Update browser every xx seconds"
msgstr ""
-#: ../../mod/photos.php:824
-msgid "Permission denied. Access to this item may be restricted."
+#: ../../mod/settings.php:857
+msgid "Minimum of 10 seconds, no maximum"
msgstr ""
-#: ../../mod/photos.php:826
-msgid "Photo not available"
+#: ../../mod/settings.php:858
+msgid "Maximum number of conversations to load at any time:"
msgstr ""
-#: ../../mod/photos.php:884
-msgid "Use as profile photo"
+#: ../../mod/settings.php:858
+msgid "Maximum of 100 items"
msgstr ""
-#: ../../mod/photos.php:891
-msgid "Private Photo"
+#: ../../mod/settings.php:859
+msgid "Show emoticons (smilies) as images"
msgstr ""
-#: ../../mod/photos.php:902 ../../mod/events.php:652 ../../mod/events.php:659
-msgid "Previous"
+#: ../../mod/settings.php:860
+msgid "Link post titles to source"
msgstr ""
-#: ../../mod/photos.php:906
-msgid "View Full Size"
+#: ../../mod/settings.php:861
+msgid "System Page Layout Editor - (advanced)"
msgstr ""
-#: ../../mod/photos.php:985
-msgid "Edit photo"
+#: ../../mod/settings.php:864
+msgid "Use blog/list mode on channel page"
msgstr ""
-#: ../../mod/photos.php:987
-msgid "Rotate CW (right)"
+#: ../../mod/settings.php:864 ../../mod/settings.php:865
+msgid "(comments displayed separately)"
msgstr ""
-#: ../../mod/photos.php:988
-msgid "Rotate CCW (left)"
+#: ../../mod/settings.php:865
+msgid "Use blog/list mode on grid page"
msgstr ""
-#: ../../mod/photos.php:991
-msgid "Enter a new album name"
+#: ../../mod/settings.php:866
+msgid "Channel page max height of content (in pixels)"
msgstr ""
-#: ../../mod/photos.php:992
-msgid "or select an existing one (doubleclick)"
+#: ../../mod/settings.php:866 ../../mod/settings.php:867
+msgid "click to expand content exceeding this height"
msgstr ""
-#: ../../mod/photos.php:995
-msgid "Caption"
+#: ../../mod/settings.php:867
+msgid "Grid page max height of content (in pixels)"
msgstr ""
-#: ../../mod/photos.php:997
-msgid "Add a Tag"
+#: ../../mod/settings.php:901
+msgid "Nobody except yourself"
msgstr ""
-#: ../../mod/photos.php:1001
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
+#: ../../mod/settings.php:902
+msgid "Only those you specifically allow"
msgstr ""
-#: ../../mod/photos.php:1004
-msgid "Flag as adult in album view"
+#: ../../mod/settings.php:903
+msgid "Approved connections"
msgstr ""
-#: ../../mod/photos.php:1196
-msgid "In This Photo:"
+#: ../../mod/settings.php:904
+msgid "Any connections"
msgstr ""
-#: ../../mod/photos.php:1201
-msgid "Map"
+#: ../../mod/settings.php:905
+msgid "Anybody on this website"
msgstr ""
-#: ../../mod/photos.php:1289
-msgid "View Album"
+#: ../../mod/settings.php:906
+msgid "Anybody in this network"
msgstr ""
-#: ../../mod/photos.php:1300 ../../mod/photos.php:1313
-#: ../../mod/photos.php:1314
-msgid "Recent Photos"
+#: ../../mod/settings.php:907
+msgid "Anybody authenticated"
msgstr ""
-#: ../../mod/lockview.php:37
-msgid "Remote privacy information not available."
+#: ../../mod/settings.php:908
+msgid "Anybody on the internet"
msgstr ""
-#: ../../mod/lockview.php:58
-msgid "Visible to:"
+#: ../../mod/settings.php:983
+msgid "Publish your default profile in the network directory"
msgstr ""
-#: ../../mod/uexport.php:51 ../../mod/uexport.php:52
-msgid "Export Channel"
+#: ../../mod/settings.php:988
+msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
-#: ../../mod/uexport.php:53
-msgid ""
-"Export your basic channel information to a file. This acts as a backup of "
-"your connections, permissions, profile and basic data, which can be used to "
-"import your data to a new server hub, but does not contain your content."
+#: ../../mod/settings.php:997
+msgid "Your channel address is"
msgstr ""
-#: ../../mod/uexport.php:54
-msgid "Export Content"
+#: ../../mod/settings.php:1039
+msgid "Channel Settings"
msgstr ""
-#: ../../mod/uexport.php:55
+#: ../../mod/settings.php:1046
+msgid "Basic Settings"
+msgstr ""
+
+#: ../../mod/settings.php:1049
+msgid "Your Timezone:"
+msgstr ""
+
+#: ../../mod/settings.php:1050
+msgid "Default Post Location:"
+msgstr ""
+
+#: ../../mod/settings.php:1050
+msgid "Geographical location to display on your posts"
+msgstr ""
+
+#: ../../mod/settings.php:1051
+msgid "Use Browser Location:"
+msgstr ""
+
+#: ../../mod/settings.php:1053
+msgid "Adult Content"
+msgstr ""
+
+#: ../../mod/settings.php:1053
msgid ""
-"Export your channel information and recent content to a JSON backup that can "
-"be restored or imported to another server hub. This backs up all of your "
-"connections, permissions, profile data and several months of posts. This "
-"file may be VERY large. Please be patient - it may take several minutes for "
-"this download to begin."
+"This channel frequently or regularly publishes adult content. (Please tag "
+"any adult material and/or nudity with #NSFW)"
msgstr ""
-#: ../../mod/uexport.php:56
-msgid "Export your posts from a given year."
+#: ../../mod/settings.php:1055
+msgid "Security and Privacy Settings"
msgstr ""
-#: ../../mod/uexport.php:58
+#: ../../mod/settings.php:1058
+msgid "Your permissions are already configured. Click to view/adjust"
+msgstr ""
+
+#: ../../mod/settings.php:1060
+msgid "Hide my online presence"
+msgstr ""
+
+#: ../../mod/settings.php:1060
+msgid "Prevents displaying in your profile that you are online"
+msgstr ""
+
+#: ../../mod/settings.php:1062
+msgid "Simple Privacy Settings:"
+msgstr ""
+
+#: ../../mod/settings.php:1063
msgid ""
-"You may also export your posts and conversations for a particular year or "
-"month. Adjust the date in your browser location bar to select other dates. "
-"If the export fails (possibly due to memory exhaustion on your server hub), "
-"please try again selecting a more limited date range."
+"Very Public - <em>extremely permissive (should be used with caution)</em>"
msgstr ""
-#: ../../mod/uexport.php:59
-#, php-format
+#: ../../mod/settings.php:1064
msgid ""
-"To select all posts for a given year, such as this year, visit <a href=\"%1$s"
-"\">%2$s</a>"
+"Typical - <em>default public, privacy when desired (similar to social "
+"network permissions but with improved privacy)</em>"
msgstr ""
-#: ../../mod/uexport.php:60
-#, php-format
+#: ../../mod/settings.php:1065
+msgid "Private - <em>default private, never open or public</em>"
+msgstr ""
+
+#: ../../mod/settings.php:1066
+msgid "Blocked - <em>default blocked to/from everybody</em>"
+msgstr ""
+
+#: ../../mod/settings.php:1068
+msgid "Allow others to tag your posts"
+msgstr ""
+
+#: ../../mod/settings.php:1068
msgid ""
-"To select all posts for a given month, such as January of this year, visit "
-"<a href=\"%1$s\">%2$s</a>"
+"Often used by the community to retro-actively flag inappropriate content"
msgstr ""
-#: ../../mod/uexport.php:61
+#: ../../mod/settings.php:1070
+msgid "Advanced Privacy Settings"
+msgstr ""
+
+#: ../../mod/settings.php:1072
+msgid "Expire other channel content after this many days"
+msgstr ""
+
+#: ../../mod/settings.php:1072
#, php-format
-msgid ""
-"These content files may be imported or restored by visiting <a href=\"%1$s\">"
-"%2$s</a> on any site containing your channel. For best results please import "
-"or restore these in date order (oldest first)."
+msgid "0 or blank to use the website limit. The website expires after %d days."
msgstr ""
-#: ../../mod/editpost.php:31
-msgid "Item is not editable"
+#: ../../mod/settings.php:1073
+msgid "Maximum Friend Requests/Day:"
msgstr ""
-#: ../../mod/editpost.php:57
-msgid "Delete item?"
+#: ../../mod/settings.php:1073
+msgid "May reduce spam activity"
msgstr ""
-#: ../../mod/editpost.php:164 ../../mod/rpost.php:128
-msgid "Edit post"
+#: ../../mod/settings.php:1074
+msgid "Default Post Permissions"
msgstr ""
-#: ../../mod/follow.php:25
-msgid "Channel added."
+#: ../../mod/settings.php:1079
+msgid "Channel permissions category:"
msgstr ""
-#: ../../mod/rmagic.php:40
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
+#: ../../mod/settings.php:1085
+msgid "Maximum private messages per day from unknown people:"
msgstr ""
-#: ../../mod/rmagic.php:40
-msgid "The error message was:"
+#: ../../mod/settings.php:1085
+msgid "Useful to reduce spamming"
msgstr ""
-#: ../../mod/rmagic.php:44
-msgid "Authentication failed."
+#: ../../mod/settings.php:1088
+msgid "Notification Settings"
msgstr ""
-#: ../../mod/rmagic.php:84
-msgid "Remote Authentication"
+#: ../../mod/settings.php:1089
+msgid "By default post a status message when:"
msgstr ""
-#: ../../mod/rmagic.php:85
-msgid "Enter your channel address (e.g. channel@example.com)"
+#: ../../mod/settings.php:1090
+msgid "accepting a friend request"
msgstr ""
-#: ../../mod/rmagic.php:86
-msgid "Authenticate"
+#: ../../mod/settings.php:1091
+msgid "joining a forum/community"
msgstr ""
-#: ../../mod/chat.php:174
-msgid "Room not found"
+#: ../../mod/settings.php:1092
+msgid "making an <em>interesting</em> profile change"
msgstr ""
-#: ../../mod/chat.php:185
-msgid "Leave Room"
+#: ../../mod/settings.php:1093
+msgid "Send a notification email when:"
msgstr ""
-#: ../../mod/chat.php:186
-msgid "Delete This Room"
+#: ../../mod/settings.php:1094
+msgid "You receive a connection request"
msgstr ""
-#: ../../mod/chat.php:187
-msgid "I am away right now"
+#: ../../mod/settings.php:1095
+msgid "Your connections are confirmed"
msgstr ""
-#: ../../mod/chat.php:188
-msgid "I am online"
+#: ../../mod/settings.php:1096
+msgid "Someone writes on your profile wall"
msgstr ""
-#: ../../mod/chat.php:190
-msgid "Bookmark this room"
+#: ../../mod/settings.php:1097
+msgid "Someone writes a followup comment"
msgstr ""
-#: ../../mod/chat.php:208 ../../mod/chat.php:231
-msgid "New Chatroom"
+#: ../../mod/settings.php:1098
+msgid "You receive a private message"
msgstr ""
-#: ../../mod/chat.php:209
-msgid "Chatroom Name"
+#: ../../mod/settings.php:1099
+msgid "You receive a friend suggestion"
msgstr ""
-#: ../../mod/chat.php:210
-msgid "Expiration of chats (minutes)"
+#: ../../mod/settings.php:1100
+msgid "You are tagged in a post"
msgstr ""
-#: ../../mod/chat.php:227
-#, php-format
-msgid "%1$s's Chatrooms"
+#: ../../mod/settings.php:1101
+msgid "You are poked/prodded/etc. in a post"
msgstr ""
-#: ../../mod/search.php:212
-#, php-format
-msgid "Items tagged with: %s"
+#: ../../mod/settings.php:1104
+msgid "Show visual notifications including:"
msgstr ""
-#: ../../mod/search.php:214
-#, php-format
-msgid "Search results for: %s"
+#: ../../mod/settings.php:1106
+msgid "Unseen grid activity"
msgstr ""
-#: ../../mod/viewsrc.php:40
-msgid "Source of Item"
+#: ../../mod/settings.php:1107
+msgid "Unseen channel activity"
msgstr ""
-#: ../../mod/ffsapi.php:8
-msgid "Share content from Firefox to $Projectname"
+#: ../../mod/settings.php:1108
+msgid "Unseen private messages"
msgstr ""
-#: ../../mod/ffsapi.php:11
-msgid "Activate the Firefox $Projectname provider"
+#: ../../mod/settings.php:1108 ../../mod/settings.php:1113
+#: ../../mod/settings.php:1114 ../../mod/settings.php:1115
+msgid "Recommended"
msgstr ""
-#: ../../mod/magic.php:69
-msgid "Hub not found."
+#: ../../mod/settings.php:1109
+msgid "Upcoming events"
msgstr ""
-#: ../../mod/connections.php:52 ../../mod/connections.php:150
-msgid "Blocked"
+#: ../../mod/settings.php:1110
+msgid "Events today"
msgstr ""
-#: ../../mod/connections.php:57 ../../mod/connections.php:157
-msgid "Ignored"
+#: ../../mod/settings.php:1111
+msgid "Upcoming birthdays"
msgstr ""
-#: ../../mod/connections.php:62 ../../mod/connections.php:171
-msgid "Hidden"
+#: ../../mod/settings.php:1111
+msgid "Not available in all themes"
msgstr ""
-#: ../../mod/connections.php:67 ../../mod/connections.php:164
-msgid "Archived"
+#: ../../mod/settings.php:1112
+msgid "System (personal) notifications"
msgstr ""
-#: ../../mod/connections.php:128
-msgid "Suggest new connections"
+#: ../../mod/settings.php:1113
+msgid "System info messages"
msgstr ""
-#: ../../mod/connections.php:131
-msgid "New Connections"
+#: ../../mod/settings.php:1114
+msgid "System critical alerts"
msgstr ""
-#: ../../mod/connections.php:134
-msgid "Show pending (new) connections"
+#: ../../mod/settings.php:1115
+msgid "New connections"
msgstr ""
-#: ../../mod/connections.php:137 ../../mod/profperm.php:139
-msgid "All Connections"
+#: ../../mod/settings.php:1116
+msgid "System Registrations"
msgstr ""
-#: ../../mod/connections.php:140
-msgid "Show all connections"
+#: ../../mod/settings.php:1117
+msgid ""
+"Also show new wall posts, private messages and connections under Notices"
msgstr ""
-#: ../../mod/connections.php:143
-msgid "Unblocked"
+#: ../../mod/settings.php:1119
+msgid "Notify me of events this many days in advance"
msgstr ""
-#: ../../mod/connections.php:146
-msgid "Only show unblocked connections"
+#: ../../mod/settings.php:1119
+msgid "Must be greater than 0"
msgstr ""
-#: ../../mod/connections.php:153
-msgid "Only show blocked connections"
+#: ../../mod/settings.php:1121
+msgid "Advanced Account/Page Type Settings"
msgstr ""
-#: ../../mod/connections.php:160
-msgid "Only show ignored connections"
+#: ../../mod/settings.php:1122
+msgid "Change the behaviour of this account for special situations"
msgstr ""
-#: ../../mod/connections.php:167
-msgid "Only show archived connections"
+#: ../../mod/settings.php:1125
+msgid ""
+"Please enable expert mode (in <a href=\"settings/features\">Settings > "
+"Additional features</a>) to adjust!"
msgstr ""
-#: ../../mod/connections.php:174
-msgid "Only show hidden connections"
+#: ../../mod/settings.php:1126
+msgid "Miscellaneous Settings"
msgstr ""
-#: ../../mod/connections.php:225
-#, php-format
-msgid "%1$s [%2$s]"
+#: ../../mod/settings.php:1127
+msgid "Default photo upload folder"
msgstr ""
-#: ../../mod/connections.php:226
-msgid "Edit connection"
+#: ../../mod/settings.php:1127 ../../mod/settings.php:1128
+msgid "%Y - current year, %m - current month"
msgstr ""
-#: ../../mod/connections.php:264
-msgid "Search your connections"
+#: ../../mod/settings.php:1128
+msgid "Default file upload folder"
msgstr ""
-#: ../../mod/connections.php:265
-msgid "Finding: "
+#: ../../mod/settings.php:1130
+msgid "Personal menu to display in your channel pages"
msgstr ""
-#: ../../mod/manage.php:130
-#, php-format
-msgid "You have created %1$.0f of %2$.0f allowed channels."
+#: ../../mod/settings.php:1132
+msgid "Remove this channel."
msgstr ""
-#: ../../mod/manage.php:138
-msgid "Create a new channel"
+#: ../../mod/settings.php:1133
+msgid "Firefox Share $Projectname provider"
msgstr ""
-#: ../../mod/manage.php:161
-msgid "Current Channel"
+#: ../../mod/settings.php:1134
+msgid "Start calendar week on monday"
msgstr ""
-#: ../../mod/manage.php:163
-msgid "Switch to one of your channels by selecting it."
+#: ../../mod/setup.php:197
+msgid "$Projectname Server - Setup"
msgstr ""
-#: ../../mod/manage.php:164
-msgid "Default Channel"
+#: ../../mod/setup.php:201
+msgid "Could not connect to database."
msgstr ""
-#: ../../mod/manage.php:165
-msgid "Make Default"
+#: ../../mod/setup.php:205
+msgid ""
+"Could not connect to specified site URL. Possible SSL certificate or DNS "
+"issue."
msgstr ""
-#: ../../mod/manage.php:168
-#, php-format
-msgid "%d new messages"
+#: ../../mod/setup.php:212
+msgid "Could not create table."
msgstr ""
-#: ../../mod/manage.php:169
-#, php-format
-msgid "%d new introductions"
+#: ../../mod/setup.php:217
+msgid "Your site database has been installed."
msgstr ""
-#: ../../mod/manage.php:171
-msgid "Delegated Channels"
+#: ../../mod/setup.php:221
+msgid ""
+"You may need to import the file \"install/schema_xxx.sql\" manually using a "
+"database client."
msgstr ""
-#: ../../mod/menu.php:45
-msgid "Unable to update menu."
+#: ../../mod/setup.php:222 ../../mod/setup.php:290 ../../mod/setup.php:740
+msgid "Please see the file \"install/INSTALL.txt\"."
msgstr ""
-#: ../../mod/menu.php:56
-msgid "Unable to create menu."
+#: ../../mod/setup.php:287
+msgid "System check"
msgstr ""
-#: ../../mod/menu.php:94 ../../mod/menu.php:106
-msgid "Menu Name"
+#: ../../mod/setup.php:292
+msgid "Check again"
msgstr ""
-#: ../../mod/menu.php:94
-msgid "Unique name (not visible on webpage) - required"
+#: ../../mod/setup.php:314
+msgid "Database connection"
msgstr ""
-#: ../../mod/menu.php:95 ../../mod/menu.php:107
-msgid "Menu Title"
+#: ../../mod/setup.php:315
+msgid ""
+"In order to install $Projectname we need to know how to connect to your "
+"database."
msgstr ""
-#: ../../mod/menu.php:95
-msgid "Visible on webpage - leave empty for no title"
+#: ../../mod/setup.php:316
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
msgstr ""
-#: ../../mod/menu.php:96
-msgid "Allow Bookmarks"
+#: ../../mod/setup.php:317
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
msgstr ""
-#: ../../mod/menu.php:96 ../../mod/menu.php:153
-msgid "Menu may be used to store saved bookmarks"
+#: ../../mod/setup.php:321
+msgid "Database Server Name"
msgstr ""
-#: ../../mod/menu.php:97 ../../mod/menu.php:155
-msgid "Submit and proceed"
+#: ../../mod/setup.php:321
+msgid "Default is 127.0.0.1"
msgstr ""
-#: ../../mod/menu.php:109
-msgid "Drop"
+#: ../../mod/setup.php:322
+msgid "Database Port"
msgstr ""
-#: ../../mod/menu.php:113
-msgid "Bookmarks allowed"
+#: ../../mod/setup.php:322
+msgid "Communication port number - use 0 for default"
msgstr ""
-#: ../../mod/menu.php:115
-msgid "Delete this menu"
+#: ../../mod/setup.php:323
+msgid "Database Login Name"
msgstr ""
-#: ../../mod/menu.php:116 ../../mod/menu.php:150
-msgid "Edit menu contents"
+#: ../../mod/setup.php:324
+msgid "Database Login Password"
msgstr ""
-#: ../../mod/menu.php:117
-msgid "Edit this menu"
+#: ../../mod/setup.php:325
+msgid "Database Name"
msgstr ""
-#: ../../mod/menu.php:132
-msgid "Menu could not be deleted."
+#: ../../mod/setup.php:326
+msgid "Database Type"
msgstr ""
-#: ../../mod/menu.php:140 ../../mod/mitem.php:24
-msgid "Menu not found."
+#: ../../mod/setup.php:328 ../../mod/setup.php:368
+msgid "Site administrator email address"
msgstr ""
-#: ../../mod/menu.php:145
-msgid "Edit Menu"
+#: ../../mod/setup.php:328 ../../mod/setup.php:368
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
msgstr ""
-#: ../../mod/menu.php:149
-msgid "Add or remove entries to this menu"
+#: ../../mod/setup.php:329 ../../mod/setup.php:370
+msgid "Website URL"
msgstr ""
-#: ../../mod/menu.php:151
-msgid "Menu name"
+#: ../../mod/setup.php:329 ../../mod/setup.php:370
+msgid "Please use SSL (https) URL if available."
msgstr ""
-#: ../../mod/menu.php:151
-msgid "Must be unique, only seen by you"
+#: ../../mod/setup.php:330 ../../mod/setup.php:373
+msgid "Please select a default timezone for your website"
msgstr ""
-#: ../../mod/menu.php:152
-msgid "Menu title"
+#: ../../mod/setup.php:357
+msgid "Site settings"
msgstr ""
-#: ../../mod/menu.php:152
-msgid "Menu title as seen by others"
+#: ../../mod/setup.php:371
+msgid "Enable $Projectname <strong>advanced</strong> features?"
msgstr ""
-#: ../../mod/menu.php:153
-msgid "Allow bookmarks"
+#: ../../mod/setup.php:371
+msgid ""
+"Some advanced features, while useful - may be best suited for technically "
+"proficient audiences"
msgstr ""
-#: ../../mod/mail.php:34
-msgid "Unable to lookup recipient."
+#: ../../mod/setup.php:423
+msgid "Could not find a command line version of PHP in the web server PATH."
msgstr ""
-#: ../../mod/mail.php:42
-msgid "Unable to communicate with requested channel."
+#: ../../mod/setup.php:424
+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/mail.php:49
-msgid "Cannot verify requested channel."
+#: ../../mod/setup.php:428
+msgid "PHP executable path"
msgstr ""
-#: ../../mod/mail.php:75
-msgid "Selected channel has private message restrictions. Send failed."
+#: ../../mod/setup.php:428
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
msgstr ""
-#: ../../mod/mail.php:140
-msgid "Messages"
+#: ../../mod/setup.php:433
+msgid "Command line PHP"
msgstr ""
-#: ../../mod/mail.php:175
-msgid "Message recalled."
+#: ../../mod/setup.php:442
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
msgstr ""
-#: ../../mod/mail.php:188
-msgid "Conversation removed."
+#: ../../mod/setup.php:443
+msgid "This is required for message delivery to work."
msgstr ""
-#: ../../mod/mail.php:231
-msgid "Requested channel is not in this network"
+#: ../../mod/setup.php:446
+msgid "PHP register_argc_argv"
msgstr ""
-#: ../../mod/mail.php:239
-msgid "Send Private Message"
+#: ../../mod/setup.php:464
+#, php-format
+msgid ""
+"Your max allowed total upload size is set to %s. Maximum size of one file to "
+"upload is set to %s. You are allowed to upload up to %d files at once."
msgstr ""
-#: ../../mod/mail.php:240 ../../mod/mail.php:370
-msgid "To:"
+#: ../../mod/setup.php:469
+msgid "You can adjust these settings in the servers php.ini."
msgstr ""
-#: ../../mod/mail.php:243 ../../mod/mail.php:372
-msgid "Subject:"
+#: ../../mod/setup.php:471
+msgid "PHP upload limits"
msgstr ""
-#: ../../mod/mail.php:250
-msgid "Send"
+#: ../../mod/setup.php:494
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
msgstr ""
-#: ../../mod/mail.php:342
-msgid "Delete message"
+#: ../../mod/setup.php:495
+msgid ""
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
msgstr ""
-#: ../../mod/mail.php:343
-msgid "Delivery report"
+#: ../../mod/setup.php:498
+msgid "Generate encryption keys"
msgstr ""
-#: ../../mod/mail.php:344
-msgid "Recall message"
+#: ../../mod/setup.php:510
+msgid "libCurl PHP module"
msgstr ""
-#: ../../mod/mail.php:346
-msgid "Message has been recalled."
+#: ../../mod/setup.php:511
+msgid "GD graphics PHP module"
msgstr ""
-#: ../../mod/mail.php:363
-msgid "Delete Conversation"
+#: ../../mod/setup.php:512
+msgid "OpenSSL PHP module"
msgstr ""
-#: ../../mod/mail.php:365
+#: ../../mod/setup.php:513
+msgid "mysqli or postgres PHP module"
+msgstr ""
+
+#: ../../mod/setup.php:514
+msgid "mb_string PHP module"
+msgstr ""
+
+#: ../../mod/setup.php:515
+msgid "mcrypt PHP module"
+msgstr ""
+
+#: ../../mod/setup.php:516
+msgid "xml PHP module"
+msgstr ""
+
+#: ../../mod/setup.php:520 ../../mod/setup.php:522
+msgid "Apache mod_rewrite module"
+msgstr ""
+
+#: ../../mod/setup.php:520
msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
+"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr ""
-#: ../../mod/mail.php:369
-msgid "Send Reply"
+#: ../../mod/setup.php:526 ../../mod/setup.php:529
+msgid "proc_open"
msgstr ""
-#: ../../mod/mail.php:374
-#, php-format
-msgid "Your message for %s (%s):"
+#: ../../mod/setup.php:526
+msgid ""
+"Error: proc_open is required but is either not installed or has been "
+"disabled in php.ini"
msgstr ""
-#: ../../mod/help.php:148
-msgid "Documentation Search"
+#: ../../mod/setup.php:534
+msgid "Error: libCURL PHP module required but not installed."
msgstr ""
-#: ../../mod/help.php:186 ../../mod/help.php:192 ../../mod/help.php:198
-msgid "Help:"
+#: ../../mod/setup.php:538
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr ""
-#: ../../mod/help.php:213 ../../index.php:238
-msgid "Not Found"
+#: ../../mod/setup.php:542
+msgid "Error: openssl PHP module required but not installed."
msgstr ""
-#: ../../mod/help.php:237
-msgid "$Projectname Documentation"
+#: ../../mod/setup.php:546
+msgid ""
+"Error: mysqli or postgres PHP module required but neither are installed."
msgstr ""
-#: ../../mod/service_limits.php:19
-msgid "No service class restrictions found."
+#: ../../mod/setup.php:550
+msgid "Error: mb_string PHP module required but not installed."
msgstr ""
-#: ../../mod/siteinfo.php:15
+#: ../../mod/setup.php:554
+msgid "Error: mcrypt PHP module required but not installed."
+msgstr ""
+
+#: ../../mod/setup.php:558
+msgid "Error: xml PHP module required for DAV but not installed."
+msgstr ""
+
+#: ../../mod/setup.php:576
+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:577
+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:578
+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:579
+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:582
+msgid ".htconfig.php is writable"
+msgstr ""
+
+#: ../../mod/setup.php:596
+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:597
#, php-format
-msgid "Version %s"
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory %s under the Red top level folder."
msgstr ""
-#: ../../mod/siteinfo.php:36
-msgid "Installed plugins/addons/apps:"
+#: ../../mod/setup.php:598 ../../mod/setup.php:619
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has "
+"write access to this folder."
msgstr ""
-#: ../../mod/siteinfo.php:49
-msgid "No installed plugins/addons/apps"
+#: ../../mod/setup.php:599
+#, php-format
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"%s only--not the template files (.tpl) that it contains."
msgstr ""
-#: ../../mod/siteinfo.php:62
+#: ../../mod/setup.php:602
+#, php-format
+msgid "%s is writable"
+msgstr ""
+
+#: ../../mod/setup.php:618
msgid ""
-"This is a hub of $Projectname - a global cooperative network of "
-"decentralized privacy enhanced websites."
+"Red uses the store directory to save uploaded files. The web server needs to "
+"have write access to the store directory under the Red top level folder"
msgstr ""
-#: ../../mod/siteinfo.php:64
-msgid "Tag: "
+#: ../../mod/setup.php:622
+msgid "store is writable"
msgstr ""
-#: ../../mod/siteinfo.php:66
-msgid "Last background fetch: "
+#: ../../mod/setup.php:655
+msgid ""
+"SSL certificate cannot be validated. Fix certificate or disable https access "
+"to this site."
msgstr ""
-#: ../../mod/siteinfo.php:68
-msgid "Current load average: "
+#: ../../mod/setup.php:656
+msgid ""
+"If you have https access to your website or allow connections to TCP port "
+"443 (the https: port), you MUST use a browser-valid certificate. You MUST "
+"NOT use self-signed certificates!"
msgstr ""
-#: ../../mod/siteinfo.php:71
-msgid "Running at web location"
+#: ../../mod/setup.php:657
+msgid ""
+"This restriction is incorporated because public posts from you may for "
+"example contain references to images on your own hub."
msgstr ""
-#: ../../mod/siteinfo.php:72
+#: ../../mod/setup.php:658
msgid ""
-"Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more "
-"about $Projectname."
+"If your certificate is not recognized, members of other sites (who may "
+"themselves have valid certificates) will get a warning message on their own "
+"site complaining about security issues."
msgstr ""
-#: ../../mod/siteinfo.php:73
-msgid "Bug reports and issues: please visit"
+#: ../../mod/setup.php:659
+msgid ""
+"This can cause usability issues elsewhere (not just on your own site) so we "
+"must insist on this requirement."
msgstr ""
-#: ../../mod/siteinfo.php:75
-msgid "$projectname issues"
+#: ../../mod/setup.php:660
+msgid ""
+"Providers are available that issue free certificates which are browser-valid."
msgstr ""
-#: ../../mod/siteinfo.php:76
+#: ../../mod/setup.php:662
+msgid "SSL certificate validation"
+msgstr ""
+
+#: ../../mod/setup.php:668
msgid ""
-"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"
+"Url rewrite in .htaccess is not working. Check your server configuration."
+"Test: "
msgstr ""
-#: ../../mod/siteinfo.php:78
-msgid "Site Administrators"
+#: ../../mod/setup.php:671
+msgid "Url rewrite is working"
msgstr ""
-#: ../../mod/suggest.php:35
+#: ../../mod/setup.php:680
msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
+"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/events.php:21
-msgid "Calendar entries imported."
+#: ../../mod/setup.php:704
+msgid "Errors encountered creating database tables."
msgstr ""
-#: ../../mod/events.php:23
-msgid "No calendar entries found."
+#: ../../mod/setup.php:738
+msgid "<h1>What next</h1>"
msgstr ""
-#: ../../mod/events.php:100
-msgid "Event can not end before it has started."
+#: ../../mod/setup.php:739
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
msgstr ""
-#: ../../mod/events.php:102 ../../mod/events.php:111 ../../mod/events.php:131
-msgid "Unable to generate preview."
+#: ../../mod/lostpass.php:15
+msgid "No valid account found."
msgstr ""
-#: ../../mod/events.php:109
-msgid "Event title and start time are required."
+#: ../../mod/lostpass.php:29
+msgid "Password reset request issued. Check your email."
msgstr ""
-#: ../../mod/events.php:129 ../../mod/events.php:254
-msgid "Event not found."
+#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103
+#, php-format
+msgid "Site Member (%s)"
msgstr ""
-#: ../../mod/events.php:437
-msgid "Edit event titel"
+#: ../../mod/lostpass.php:40
+#, php-format
+msgid "Password reset requested at %s"
msgstr ""
-#: ../../mod/events.php:437
-msgid "Event titel"
+#: ../../mod/lostpass.php:63
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
msgstr ""
-#: ../../mod/events.php:439
-msgid "Categories (comma-separated list)"
+#: ../../mod/lostpass.php:86 ../../boot.php:1588
+msgid "Password Reset"
msgstr ""
-#: ../../mod/events.php:440
-msgid "Edit Category"
+#: ../../mod/lostpass.php:87
+msgid "Your password has been reset as requested."
msgstr ""
-#: ../../mod/events.php:440
-msgid "Category"
+#: ../../mod/lostpass.php:88
+msgid "Your new password is"
msgstr ""
-#: ../../mod/events.php:443
-msgid "Edit start date and time"
+#: ../../mod/lostpass.php:89
+msgid "Save or copy your new password - and then"
msgstr ""
-#: ../../mod/events.php:443
-msgid "Start date and time"
+#: ../../mod/lostpass.php:90
+msgid "click here to login"
msgstr ""
-#: ../../mod/events.php:444 ../../mod/events.php:447
-msgid "Finish date and time are not known or not relevant"
+#: ../../mod/lostpass.php:91
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
msgstr ""
-#: ../../mod/events.php:446
-msgid "Edit finish date and time"
+#: ../../mod/lostpass.php:108
+#, php-format
+msgid "Your password has changed at %s"
msgstr ""
-#: ../../mod/events.php:446
-msgid "Finish date and time"
+#: ../../mod/lostpass.php:123
+msgid "Forgot your Password?"
msgstr ""
-#: ../../mod/events.php:448 ../../mod/events.php:449
-msgid "Adjust for viewer timezone"
+#: ../../mod/lostpass.php:124
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
msgstr ""
-#: ../../mod/events.php:448
+#: ../../mod/lostpass.php:125
+msgid "Email Address"
+msgstr ""
+
+#: ../../mod/lostpass.php:126
+msgid "Reset"
+msgstr ""
+
+#: ../../mod/sharedwithme.php:94
+msgid "Files: shared with me"
+msgstr ""
+
+#: ../../mod/sharedwithme.php:96
+msgid "NEW"
+msgstr ""
+
+#: ../../mod/sharedwithme.php:99
+msgid "Remove all files"
+msgstr ""
+
+#: ../../mod/sharedwithme.php:100
+msgid "Remove this file"
+msgstr ""
+
+#: ../../mod/siteinfo.php:15
+#, php-format
+msgid "Version %s"
+msgstr ""
+
+#: ../../mod/siteinfo.php:36
+msgid "Installed plugins/addons/apps:"
+msgstr ""
+
+#: ../../mod/siteinfo.php:49
+msgid "No installed plugins/addons/apps"
+msgstr ""
+
+#: ../../mod/siteinfo.php:62
msgid ""
-"Important for events that happen in a particular place. Not practical for "
-"global holidays."
+"This is a hub of $Projectname - a global cooperative network of "
+"decentralized privacy enhanced websites."
msgstr ""
-#: ../../mod/events.php:450
-msgid "Edit Description"
+#: ../../mod/siteinfo.php:64
+msgid "Tag: "
msgstr ""
-#: ../../mod/events.php:452
-msgid "Edit Location"
+#: ../../mod/siteinfo.php:66
+msgid "Last background fetch: "
msgstr ""
-#: ../../mod/events.php:455 ../../mod/events.php:457
-msgid "Share this event"
+#: ../../mod/siteinfo.php:68
+msgid "Current load average: "
msgstr ""
-#: ../../mod/events.php:462
-msgid "Advanced Options"
+#: ../../mod/siteinfo.php:71
+msgid "Running at web location"
msgstr ""
-#: ../../mod/events.php:574
-msgid "l, F j"
+#: ../../mod/siteinfo.php:72
+msgid ""
+"Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more "
+"about $Projectname."
msgstr ""
-#: ../../mod/events.php:596
-msgid "Edit event"
+#: ../../mod/siteinfo.php:73
+msgid "Bug reports and issues: please visit"
msgstr ""
-#: ../../mod/events.php:598
-msgid "Delete event"
+#: ../../mod/siteinfo.php:75
+msgid "$projectname issues"
msgstr ""
-#: ../../mod/events.php:632
-msgid "calendar"
+#: ../../mod/siteinfo.php:76
+msgid ""
+"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"
msgstr ""
-#: ../../mod/events.php:651
-msgid "Edit Event"
+#: ../../mod/siteinfo.php:78
+msgid "Site Administrators"
msgstr ""
-#: ../../mod/events.php:651
-msgid "Create Event"
+#: ../../mod/sources.php:32
+msgid "Failed to create source. No channel selected."
msgstr ""
-#: ../../mod/events.php:661
-msgid "Today"
+#: ../../mod/sources.php:45
+msgid "Source created."
msgstr ""
-#: ../../mod/events.php:692
-msgid "Event removed"
+#: ../../mod/sources.php:57
+msgid "Source updated."
msgstr ""
-#: ../../mod/events.php:695
-msgid "Failed to remove event"
+#: ../../mod/sources.php:82
+msgid "*"
msgstr ""
-#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
-msgid "Invalid profile identifier."
+#: ../../mod/sources.php:89
+msgid "Manage remote sources of content for your channel."
msgstr ""
-#: ../../mod/profperm.php:110
-msgid "Profile Visibility Editor"
+#: ../../mod/sources.php:90 ../../mod/sources.php:100
+msgid "New Source"
msgstr ""
-#: ../../mod/profperm.php:114
-msgid "Click on a contact to add or remove."
+#: ../../mod/sources.php:101 ../../mod/sources.php:133
+msgid ""
+"Import all or selected content from the following channel into this channel "
+"and distribute it according to your channel settings."
msgstr ""
-#: ../../mod/profperm.php:123
-msgid "Visible To"
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Only import content with these words (one per line)"
msgstr ""
-#: ../../mod/mitem.php:48
-msgid "Unable to create element."
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Leave blank to import all public content"
msgstr ""
-#: ../../mod/mitem.php:72
-msgid "Unable to update menu element."
+#: ../../mod/sources.php:103 ../../mod/sources.php:137
+msgid "Channel Name"
msgstr ""
-#: ../../mod/mitem.php:88
-msgid "Unable to add menu element."
+#: ../../mod/sources.php:123 ../../mod/sources.php:150
+msgid "Source not found."
msgstr ""
-#: ../../mod/mitem.php:149 ../../mod/mitem.php:222
-msgid "Menu Item Permissions"
+#: ../../mod/sources.php:130
+msgid "Edit Source"
msgstr ""
-#: ../../mod/mitem.php:152 ../../mod/mitem.php:168
-msgid "Link Name"
+#: ../../mod/sources.php:131
+msgid "Delete Source"
msgstr ""
-#: ../../mod/mitem.php:153 ../../mod/mitem.php:227
-msgid "Link or Submenu Target"
+#: ../../mod/sources.php:158
+msgid "Source removed"
msgstr ""
-#: ../../mod/mitem.php:153
-msgid "Enter URL of the link or select a menu name to create a submenu"
+#: ../../mod/sources.php:160
+msgid "Unable to remove source."
msgstr ""
-#: ../../mod/mitem.php:154 ../../mod/mitem.php:228
-msgid "Use magic-auth if available"
+#: ../../mod/subthread.php:114
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
msgstr ""
-#: ../../mod/mitem.php:155 ../../mod/mitem.php:229
-msgid "Open link in new window"
+#: ../../mod/subthread.php:116
+#, php-format
+msgid "%1$s stopped following %2$s's %3$s"
msgstr ""
-#: ../../mod/mitem.php:156 ../../mod/mitem.php:230
-msgid "Order in list"
+#: ../../mod/suggest.php:35
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
msgstr ""
-#: ../../mod/mitem.php:156 ../../mod/mitem.php:230
-msgid "Higher numbers will sink to bottom of listing"
+#: ../../mod/tagger.php:96
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr ""
-#: ../../mod/mitem.php:157
-msgid "Submit and finish"
+#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94
+msgid "Tag removed"
msgstr ""
-#: ../../mod/mitem.php:158
-msgid "Submit and continue"
+#: ../../mod/tagrm.php:119
+msgid "Remove Item Tag"
msgstr ""
-#: ../../mod/mitem.php:166
-msgid "Menu:"
+#: ../../mod/tagrm.php:121
+msgid "Select a tag to remove: "
msgstr ""
-#: ../../mod/mitem.php:169
-msgid "Link Target"
+#: ../../mod/thing.php:110
+msgid "Thing updated"
msgstr ""
-#: ../../mod/mitem.php:172
-msgid "Edit menu"
+#: ../../mod/thing.php:162
+msgid "Object store: failed"
msgstr ""
-#: ../../mod/mitem.php:175
-msgid "Edit element"
+#: ../../mod/thing.php:166
+msgid "Thing added"
msgstr ""
-#: ../../mod/mitem.php:176
-msgid "Drop element"
+#: ../../mod/thing.php:192
+#, php-format
+msgid "OBJ: %1$s %2$s %3$s"
msgstr ""
-#: ../../mod/mitem.php:177
-msgid "New element"
+#: ../../mod/thing.php:255
+msgid "Show Thing"
msgstr ""
-#: ../../mod/mitem.php:178
-msgid "Edit this menu container"
+#: ../../mod/thing.php:262
+msgid "item not found."
msgstr ""
-#: ../../mod/mitem.php:179
-msgid "Add menu element"
+#: ../../mod/thing.php:295
+msgid "Edit Thing"
msgstr ""
-#: ../../mod/mitem.php:180
-msgid "Delete this menu item"
+#: ../../mod/thing.php:297 ../../mod/thing.php:347
+msgid "Select a profile"
msgstr ""
-#: ../../mod/mitem.php:181
-msgid "Edit this menu item"
+#: ../../mod/thing.php:301 ../../mod/thing.php:350
+msgid "Post an activity"
msgstr ""
-#: ../../mod/mitem.php:198
-msgid "Menu item not found."
+#: ../../mod/thing.php:301 ../../mod/thing.php:350
+msgid "Only sends to viewers of the applicable profile"
msgstr ""
-#: ../../mod/mitem.php:211
-msgid "Menu item deleted."
+#: ../../mod/thing.php:303 ../../mod/thing.php:352
+msgid "Name of thing e.g. something"
msgstr ""
-#: ../../mod/mitem.php:213
-msgid "Menu item could not be deleted."
+#: ../../mod/thing.php:305 ../../mod/thing.php:353
+msgid "URL of thing (optional)"
msgstr ""
-#: ../../mod/mitem.php:220
-msgid "Edit Menu Element"
+#: ../../mod/thing.php:307 ../../mod/thing.php:354
+msgid "URL for photo of thing (optional)"
msgstr ""
-#: ../../mod/mitem.php:226
-msgid "Link text"
+#: ../../mod/thing.php:345
+msgid "Add Thing to your Profile"
msgstr ""
-#: ../../mod/wholikesme.php:13
-msgid "Who likes me?"
+#: ../../mod/uexport.php:51 ../../mod/uexport.php:52
+msgid "Export Channel"
msgstr ""
-#: ../../mod/sharedwithme.php:94
-msgid "Files: shared with me"
+#: ../../mod/uexport.php:53
+msgid ""
+"Export your basic channel information to a file. This acts as a backup of "
+"your connections, permissions, profile and basic data, which can be used to "
+"import your data to a new server hub, but does not contain your content."
msgstr ""
-#: ../../mod/sharedwithme.php:96
-msgid "NEW"
+#: ../../mod/uexport.php:54
+msgid "Export Content"
msgstr ""
-#: ../../mod/sharedwithme.php:99
-msgid "Remove all files"
+#: ../../mod/uexport.php:55
+msgid ""
+"Export your channel information and recent content to a JSON backup that can "
+"be restored or imported to another server hub. This backs up all of your "
+"connections, permissions, profile data and several months of posts. This "
+"file may be VERY large. Please be patient - it may take several minutes for "
+"this download to begin."
msgstr ""
-#: ../../mod/sharedwithme.php:100
-msgid "Remove this file"
+#: ../../mod/uexport.php:56
+msgid "Export your posts from a given year."
+msgstr ""
+
+#: ../../mod/uexport.php:58
+msgid ""
+"You may also export your posts and conversations for a particular year or "
+"month. Adjust the date in your browser location bar to select other dates. "
+"If the export fails (possibly due to memory exhaustion on your server hub), "
+"please try again selecting a more limited date range."
+msgstr ""
+
+#: ../../mod/uexport.php:59
+#, php-format
+msgid ""
+"To select all posts for a given year, such as this year, visit <a href=\"%1$s"
+"\">%2$s</a>"
+msgstr ""
+
+#: ../../mod/uexport.php:60
+#, php-format
+msgid ""
+"To select all posts for a given month, such as January of this year, visit "
+"<a href=\"%1$s\">%2$s</a>"
+msgstr ""
+
+#: ../../mod/uexport.php:61
+#, php-format
+msgid ""
+"These content files may be imported or restored by visiting <a href=\"%1$s\">"
+"%2$s</a> on any site containing your channel. For best results please import "
+"or restore these in date order (oldest first)."
msgstr ""
#: ../../mod/viewconnections.php:59
@@ -9201,193 +9416,219 @@ msgstr ""
msgid "Visit %s's profile [%s]"
msgstr ""
+#: ../../mod/viewconnections.php:101
+msgid "View Connections"
+msgstr ""
+
+#: ../../mod/viewsrc.php:40
+msgid "Source of Item"
+msgstr ""
+
+#: ../../mod/webpages.php:193
+msgid "Page Title"
+msgstr ""
+
+#: ../../mod/xchan.php:6
+msgid "Xchan Lookup"
+msgstr ""
+
+#: ../../mod/xchan.php:9
+msgid "Lookup xchan beginning with (or webbie): "
+msgstr ""
+
+#: ../../mod/cover_photo.php:130 ../../mod/cover_photo.php:177
+msgid "Cover Photos"
+msgstr ""
+
+#: ../../mod/cover_photo.php:352
+msgid "Upload Cover Photo"
+msgstr ""
+
+#: ../../mod/cal.php:63
+msgid "Permissions denied."
+msgstr ""
+
#: ../../view/theme/redbasic/php/config.php:82
msgid "Focus (Hubzilla default)"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:102
+#: ../../view/theme/redbasic/php/config.php:103
msgid "Theme settings"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:103
+#: ../../view/theme/redbasic/php/config.php:104
msgid "Select scheme"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:104
+#: ../../view/theme/redbasic/php/config.php:105
msgid "Narrow navbar"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:105
+#: ../../view/theme/redbasic/php/config.php:106
msgid "Navigation bar background color"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:106
+#: ../../view/theme/redbasic/php/config.php:107
msgid "Navigation bar gradient top color"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:107
+#: ../../view/theme/redbasic/php/config.php:108
msgid "Navigation bar gradient bottom color"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:108
+#: ../../view/theme/redbasic/php/config.php:109
msgid "Navigation active button gradient top color"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:109
+#: ../../view/theme/redbasic/php/config.php:110
msgid "Navigation active button gradient bottom color"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:110
+#: ../../view/theme/redbasic/php/config.php:111
msgid "Navigation bar border color "
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:111
+#: ../../view/theme/redbasic/php/config.php:112
msgid "Navigation bar icon color "
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:112
+#: ../../view/theme/redbasic/php/config.php:113
msgid "Navigation bar active icon color "
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:113
+#: ../../view/theme/redbasic/php/config.php:114
msgid "link color"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:114
+#: ../../view/theme/redbasic/php/config.php:115
msgid "Set font-color for banner"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:115
+#: ../../view/theme/redbasic/php/config.php:116
msgid "Set the background color"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:116
+#: ../../view/theme/redbasic/php/config.php:117
msgid "Set the background image"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:117
+#: ../../view/theme/redbasic/php/config.php:118
msgid "Set the background color of items"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:118
+#: ../../view/theme/redbasic/php/config.php:119
msgid "Set the background color of comments"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:119
+#: ../../view/theme/redbasic/php/config.php:120
msgid "Set the border color of comments"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:120
+#: ../../view/theme/redbasic/php/config.php:121
msgid "Set the indent for comments"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:121
+#: ../../view/theme/redbasic/php/config.php:122
msgid "Set the basic color for item icons"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:122
+#: ../../view/theme/redbasic/php/config.php:123
msgid "Set the hover color for item icons"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:123
+#: ../../view/theme/redbasic/php/config.php:124
msgid "Set font-size for the entire application"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:123
+#: ../../view/theme/redbasic/php/config.php:124
msgid "Example: 14px"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:124
+#: ../../view/theme/redbasic/php/config.php:125
msgid "Set font-size for posts and comments"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:125
+#: ../../view/theme/redbasic/php/config.php:126
msgid "Set font-color for posts and comments"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:126
+#: ../../view/theme/redbasic/php/config.php:127
msgid "Set radius of corners"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:127
+#: ../../view/theme/redbasic/php/config.php:128
msgid "Set shadow depth of photos"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:128
+#: ../../view/theme/redbasic/php/config.php:129
msgid "Set maximum width of content region in pixel"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:128
+#: ../../view/theme/redbasic/php/config.php:129
msgid "Leave empty for default width"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:129
+#: ../../view/theme/redbasic/php/config.php:130
msgid "Left align page content"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:130
+#: ../../view/theme/redbasic/php/config.php:131
msgid "Set minimum opacity of nav bar - to hide it"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:131
+#: ../../view/theme/redbasic/php/config.php:132
msgid "Set size of conversation author photo"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:132
+#: ../../view/theme/redbasic/php/config.php:133
msgid "Set size of followup author photos"
msgstr ""
-#: ../../Zotlabs/Zot/Auth.php:140
-msgid ""
-"Remote authentication blocked. You are logged into this site locally. Please "
-"logout and retry."
-msgstr ""
-
-#: ../../boot.php:1299
+#: ../../boot.php:1388
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
-#: ../../boot.php:1302
+#: ../../boot.php:1391
#, php-format
msgid "Update Error at %s"
msgstr ""
-#: ../../boot.php:1469
+#: ../../boot.php:1561
msgid ""
"Create an account to access services and applications within the Hubzilla"
msgstr ""
-#: ../../boot.php:1491
+#: ../../boot.php:1583
msgid "Password"
msgstr ""
-#: ../../boot.php:1492
+#: ../../boot.php:1584
msgid "Remember me"
msgstr ""
-#: ../../boot.php:1495
+#: ../../boot.php:1587
msgid "Forgot your password?"
msgstr ""
-#: ../../boot.php:2115
+#: ../../boot.php:2217
msgid "toggle mobile"
msgstr ""
-#: ../../boot.php:2250
+#: ../../boot.php:2370
msgid "Website SSL certificate is not valid. Please correct."
msgstr ""
-#: ../../boot.php:2253
+#: ../../boot.php:2373
#, php-format
msgid "[hubzilla] Website SSL error for %s"
msgstr ""
-#: ../../boot.php:2290
+#: ../../boot.php:2410
msgid "Cron/Scheduled tasks not running."
msgstr ""
-#: ../../boot.php:2294
+#: ../../boot.php:2414
#, php-format
msgid "[hubzilla] Cron tasks not running on %s"
msgstr ""
diff --git a/util/hstrings.php b/util/hstrings.php
index e3fdb6461..1fe63b7f7 100644
--- a/util/hstrings.php
+++ b/util/hstrings.php
@@ -1,2120 +1,2120 @@
<?php
;
-$a->strings["Cannot locate DNS info for database server '%s'"] = "";
-$a->strings["Profile Photos"] = "";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
-$a->strings["created a new post"] = "";
-$a->strings["commented on %s's post"] = "";
-$a->strings["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."] = "";
-$a->strings["Default privacy group for new contacts"] = "";
-$a->strings["All Channels"] = "";
-$a->strings["edit"] = "";
-$a->strings["Collections"] = "";
-$a->strings["Edit collection"] = "";
-$a->strings["Add new collection"] = "";
-$a->strings["Channels not in any collection"] = "";
-$a->strings["add"] = "";
-$a->strings["Not a valid email address"] = "";
-$a->strings["Your email domain is not among those allowed on this site"] = "";
-$a->strings["Your email address is already registered at this site."] = "";
-$a->strings["An invitation is required."] = "";
-$a->strings["Invitation could not be verified."] = "";
-$a->strings["Please enter the required information."] = "";
-$a->strings["Failed to store account information."] = "";
-$a->strings["Registration confirmation for %s"] = "";
-$a->strings["Registration request at %s"] = "";
-$a->strings["Administrator"] = "";
-$a->strings["your registration password"] = "";
-$a->strings["Registration details for %s"] = "";
-$a->strings["Account approved."] = "";
-$a->strings["Registration revoked for %s"] = "";
-$a->strings["Account verified. Please login."] = "";
-$a->strings["Click here to upgrade."] = "";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "";
-$a->strings["This action is not available under your subscription plan."] = "";
-$a->strings["Miscellaneous"] = "";
-$a->strings["YYYY-MM-DD or MM-DD"] = "";
-$a->strings["Required"] = "";
-$a->strings["never"] = "";
-$a->strings["less than a second ago"] = "";
-$a->strings["year"] = "";
-$a->strings["years"] = "";
-$a->strings["month"] = "";
-$a->strings["months"] = "";
-$a->strings["week"] = "";
-$a->strings["weeks"] = "";
-$a->strings["day"] = "";
-$a->strings["days"] = "";
-$a->strings["hour"] = "";
-$a->strings["hours"] = "";
-$a->strings["minute"] = "";
-$a->strings["minutes"] = "";
-$a->strings["second"] = "";
-$a->strings["seconds"] = "";
-$a->strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "";
-$a->strings["%1\$s's birthday"] = "";
-$a->strings["Happy Birthday %1\$s"] = "";
-$a->strings["New Page"] = "";
-$a->strings["Edit"] = "";
-$a->strings["View"] = "";
-$a->strings["Preview"] = "";
-$a->strings["Actions"] = "";
-$a->strings["Page Link"] = "";
-$a->strings["Title"] = "";
-$a->strings["Created"] = "";
-$a->strings["Edited"] = "";
-$a->strings["Public Timeline"] = "";
-$a->strings["Default"] = "";
-$a->strings["Directory Options"] = "";
-$a->strings["Alphabetic"] = "";
-$a->strings["Reverse Alphabetic"] = "";
-$a->strings["Newest to Oldest"] = "";
-$a->strings["Oldest to Newest"] = "";
-$a->strings["Sort"] = "";
-$a->strings["Safe Mode"] = "";
-$a->strings["Public Forums Only"] = "";
-$a->strings["This Website Only"] = "";
-$a->strings["l F d, Y \\@ g:i A"] = "";
-$a->strings["Starts:"] = "";
-$a->strings["Finishes:"] = "";
-$a->strings["Location:"] = "";
-$a->strings["This event has been added to your calendar."] = "";
-$a->strings["Delete this item?"] = "";
-$a->strings["Comment"] = "";
-$a->strings["[+] show all"] = "";
-$a->strings["[-] show less"] = "";
-$a->strings["[+] expand"] = "";
-$a->strings["[-] collapse"] = "";
-$a->strings["Password too short"] = "";
-$a->strings["Passwords do not match"] = "";
-$a->strings["everybody"] = "";
-$a->strings["Secret Passphrase"] = "";
-$a->strings["Passphrase hint"] = "";
-$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "";
-$a->strings["close all"] = "";
-$a->strings["Nothing new here"] = "";
-$a->strings["Rate This Channel (this is public)"] = "";
-$a->strings["Rating"] = "";
-$a->strings["Describe (optional)"] = "";
-$a->strings["Submit"] = "";
-$a->strings["Please enter a link URL"] = "";
-$a->strings["Unsaved changes. Are you sure you wish to leave this page?"] = "";
-$a->strings["timeago.prefixAgo"] = "";
-$a->strings["timeago.prefixFromNow"] = "";
-$a->strings["ago"] = "";
-$a->strings["from now"] = "";
-$a->strings["less than a minute"] = "";
-$a->strings["about a minute"] = "";
-$a->strings["%d minutes"] = "";
-$a->strings["about an hour"] = "";
-$a->strings["about %d hours"] = "";
-$a->strings["a day"] = "";
-$a->strings["%d days"] = "";
-$a->strings["about a month"] = "";
-$a->strings["%d months"] = "";
-$a->strings["about a year"] = "";
-$a->strings["%d years"] = "";
-$a->strings[" "] = "";
-$a->strings["timeago.numbers"] = "";
-$a->strings["parent"] = "";
-$a->strings["Collection"] = "";
-$a->strings["Principal"] = "";
-$a->strings["Addressbook"] = "";
-$a->strings["Calendar"] = "";
-$a->strings["Schedule Inbox"] = "";
-$a->strings["Schedule Outbox"] = "";
-$a->strings["Unknown"] = "";
-$a->strings["%1\$s used"] = "";
-$a->strings["%1\$s used of %2\$s (%3\$s&#37;)"] = "";
-$a->strings["Files"] = "";
-$a->strings["Total"] = "";
-$a->strings["Shared"] = "";
-$a->strings["Create"] = "";
-$a->strings["Upload"] = "";
-$a->strings["Name"] = "";
-$a->strings["Type"] = "";
-$a->strings["Size"] = "";
-$a->strings["Last Modified"] = "";
-$a->strings["Delete"] = "";
-$a->strings["Create new folder"] = "";
-$a->strings["Upload file"] = "";
-$a->strings["%1\$s's bookmarks"] = "";
-$a->strings["view full size"] = "";
-$a->strings["General Features"] = "";
-$a->strings["Content Expiration"] = "";
-$a->strings["Remove posts/comments and/or private messages at a future time"] = "";
-$a->strings["Multiple Profiles"] = "";
-$a->strings["Ability to create multiple profiles"] = "";
-$a->strings["Advanced Profiles"] = "";
-$a->strings["Additional profile sections and selections"] = "";
-$a->strings["Profile Import/Export"] = "";
-$a->strings["Save and load profile details across sites/channels"] = "";
-$a->strings["Web Pages"] = "";
-$a->strings["Provide managed web pages on your channel"] = "";
-$a->strings["Private Notes"] = "";
-$a->strings["Enables a tool to store notes and reminders"] = "";
-$a->strings["Navigation Channel Select"] = "";
-$a->strings["Change channels directly from within the navigation dropdown menu"] = "";
-$a->strings["Photo Location"] = "";
-$a->strings["If location data is available on uploaded photos, link this to a map."] = "";
-$a->strings["Expert Mode"] = "";
-$a->strings["Enable Expert Mode to provide advanced configuration options"] = "";
-$a->strings["Premium Channel"] = "";
-$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "";
-$a->strings["Post Composition Features"] = "";
-$a->strings["Use Markdown"] = "";
-$a->strings["Allow use of \"Markdown\" to format posts"] = "";
-$a->strings["Large Photos"] = "";
-$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "";
-$a->strings["Channel Sources"] = "";
-$a->strings["Automatically import channel content from other channels or feeds"] = "";
-$a->strings["Even More Encryption"] = "";
-$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "";
-$a->strings["Enable voting tools"] = "";
-$a->strings["Provide a class of post which others can vote on"] = "";
-$a->strings["Network and Stream Filtering"] = "";
-$a->strings["Search by Date"] = "";
-$a->strings["Ability to select posts by date ranges"] = "";
-$a->strings["Collections Filter"] = "";
-$a->strings["Enable widget to display Network posts only from selected collections"] = "";
-$a->strings["Saved Searches"] = "";
-$a->strings["Save search terms for re-use"] = "";
-$a->strings["Network Personal Tab"] = "";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
-$a->strings["Network New Tab"] = "";
-$a->strings["Enable tab to display all new Network activity"] = "";
-$a->strings["Affinity Tool"] = "";
-$a->strings["Filter stream activity by depth of relationships"] = "";
-$a->strings["Suggest Channels"] = "";
-$a->strings["Show channel suggestions"] = "";
-$a->strings["Post/Comment Tools"] = "";
-$a->strings["Tagging"] = "";
-$a->strings["Ability to tag existing posts"] = "";
-$a->strings["Post Categories"] = "";
-$a->strings["Add categories to your posts"] = "";
-$a->strings["Saved Folders"] = "";
-$a->strings["Ability to file posts under folders"] = "";
-$a->strings["Dislike Posts"] = "";
-$a->strings["Ability to dislike posts/comments"] = "";
-$a->strings["Star Posts"] = "";
-$a->strings["Ability to mark special posts with a star indicator"] = "";
-$a->strings["Tag Cloud"] = "";
-$a->strings["Provide a personal tag cloud on your channel page"] = "";
-$a->strings["Categories"] = "";
-$a->strings["Apps"] = "";
-$a->strings["System"] = "";
-$a->strings["Personal"] = "";
-$a->strings["Create Personal App"] = "";
-$a->strings["Edit Personal App"] = "";
-$a->strings["Connect"] = "";
-$a->strings["Ignore/Hide"] = "";
-$a->strings["Suggestions"] = "";
-$a->strings["See more..."] = "";
-$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "";
-$a->strings["Add New Connection"] = "";
-$a->strings["Enter the channel address"] = "";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "";
-$a->strings["Notes"] = "";
-$a->strings["Save"] = "";
-$a->strings["Remove term"] = "";
-$a->strings["Everything"] = "";
-$a->strings["Archives"] = "";
-$a->strings["Me"] = "";
-$a->strings["Family"] = "";
-$a->strings["Friends"] = "";
-$a->strings["Acquaintances"] = "";
-$a->strings["All"] = "";
-$a->strings["Refresh"] = "";
-$a->strings["Account settings"] = "";
-$a->strings["Channel settings"] = "";
-$a->strings["Additional features"] = "";
-$a->strings["Feature/Addon settings"] = "";
-$a->strings["Display settings"] = "";
-$a->strings["Connected apps"] = "";
-$a->strings["Export channel"] = "";
-$a->strings["Connection Default Permissions"] = "";
-$a->strings["Premium Channel Settings"] = "";
-$a->strings["Settings"] = "";
-$a->strings["Messages"] = "";
-$a->strings["Check Mail"] = "";
-$a->strings["New Message"] = "";
-$a->strings["Chat Rooms"] = "";
-$a->strings["Bookmarked Chatrooms"] = "";
-$a->strings["Suggested Chatrooms"] = "";
-$a->strings["photo/image"] = "";
-$a->strings["Rate Me"] = "";
-$a->strings["View Ratings"] = "";
-$a->strings["Public Hubs"] = "";
-$a->strings["\$Projectname Notification"] = "";
-$a->strings["\$projectname"] = "";
-$a->strings["Thank You,"] = "";
-$a->strings["%s Administrator"] = "";
-$a->strings["%s <!item_type!>"] = "";
-$a->strings["[Red:Notify] New mail received at %s"] = "";
-$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "";
-$a->strings["%1\$s sent you %2\$s."] = "";
-$a->strings["a private message"] = "";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "";
-$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
-$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "";
-$a->strings["[Red:Notify] %s posted to your profile wall"] = "";
-$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "";
-$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "";
-$a->strings["[Red:Notify] %s tagged you"] = "";
-$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "";
-$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "";
-$a->strings["[Red:Notify] %1\$s poked you"] = "";
-$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "";
-$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "";
-$a->strings["[Red:Notify] %s tagged your post"] = "";
-$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "";
-$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "";
-$a->strings["[Red:Notify] Introduction received"] = "";
-$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "";
-$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "";
-$a->strings["You may visit their profile at %s"] = "";
-$a->strings["Please visit %s to approve or reject the connection request."] = "";
-$a->strings["[Red:Notify] Friend suggestion received"] = "";
-$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "";
-$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "";
-$a->strings["Name:"] = "";
-$a->strings["Photo:"] = "";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "";
-$a->strings["[Red:Notify]"] = "";
-$a->strings["Frequently"] = "";
-$a->strings["Hourly"] = "";
-$a->strings["Twice daily"] = "";
-$a->strings["Daily"] = "";
-$a->strings["Weekly"] = "";
-$a->strings["Monthly"] = "";
-$a->strings["Friendica"] = "";
-$a->strings["OStatus"] = "";
-$a->strings["RSS/Atom"] = "";
-$a->strings["Email"] = "";
-$a->strings["Diaspora"] = "";
-$a->strings["Facebook"] = "";
-$a->strings["Zot!"] = "";
-$a->strings["LinkedIn"] = "";
-$a->strings["XMPP/IM"] = "";
-$a->strings["MySpace"] = "";
-$a->strings["No recipient provided."] = "";
-$a->strings["[no subject]"] = "";
-$a->strings["Unable to determine sender."] = "";
-$a->strings["Stored post could not be verified."] = "";
-$a->strings["Channel is blocked on this site."] = "";
-$a->strings["Channel location missing."] = "";
-$a->strings["Response from remote channel was incomplete."] = "";
-$a->strings["Channel was deleted and no longer exists."] = "";
-$a->strings["Protocol disabled."] = "";
-$a->strings["Channel discovery failed."] = "";
-$a->strings["local account not found."] = "";
-$a->strings["Cannot connect to yourself."] = "";
-$a->strings["Private Message"] = "";
-$a->strings["Select"] = "";
-$a->strings["Save to Folder"] = "";
-$a->strings["I will attend"] = "";
-$a->strings["I will not attend"] = "";
-$a->strings["I might attend"] = "";
-$a->strings["I agree"] = "";
-$a->strings["I disagree"] = "";
-$a->strings["I abstain"] = "";
-$a->strings["View all"] = "";
-$a->strings["__ctx:noun__ Like"] = array(
+App::$strings["Cannot locate DNS info for database server '%s'"] = "";
+App::$strings["Profile Photos"] = "";
+App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
+App::$strings["created a new post"] = "";
+App::$strings["commented on %s's post"] = "";
+App::$strings["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."] = "";
+App::$strings["Default privacy group for new contacts"] = "";
+App::$strings["All Channels"] = "";
+App::$strings["edit"] = "";
+App::$strings["Collections"] = "";
+App::$strings["Edit collection"] = "";
+App::$strings["Add new collection"] = "";
+App::$strings["Channels not in any collection"] = "";
+App::$strings["add"] = "";
+App::$strings["Not a valid email address"] = "";
+App::$strings["Your email domain is not among those allowed on this site"] = "";
+App::$strings["Your email address is already registered at this site."] = "";
+App::$strings["An invitation is required."] = "";
+App::$strings["Invitation could not be verified."] = "";
+App::$strings["Please enter the required information."] = "";
+App::$strings["Failed to store account information."] = "";
+App::$strings["Registration confirmation for %s"] = "";
+App::$strings["Registration request at %s"] = "";
+App::$strings["Administrator"] = "";
+App::$strings["your registration password"] = "";
+App::$strings["Registration details for %s"] = "";
+App::$strings["Account approved."] = "";
+App::$strings["Registration revoked for %s"] = "";
+App::$strings["Account verified. Please login."] = "";
+App::$strings["Click here to upgrade."] = "";
+App::$strings["This action exceeds the limits set by your subscription plan."] = "";
+App::$strings["This action is not available under your subscription plan."] = "";
+App::$strings["Miscellaneous"] = "";
+App::$strings["YYYY-MM-DD or MM-DD"] = "";
+App::$strings["Required"] = "";
+App::$strings["never"] = "";
+App::$strings["less than a second ago"] = "";
+App::$strings["year"] = "";
+App::$strings["years"] = "";
+App::$strings["month"] = "";
+App::$strings["months"] = "";
+App::$strings["week"] = "";
+App::$strings["weeks"] = "";
+App::$strings["day"] = "";
+App::$strings["days"] = "";
+App::$strings["hour"] = "";
+App::$strings["hours"] = "";
+App::$strings["minute"] = "";
+App::$strings["minutes"] = "";
+App::$strings["second"] = "";
+App::$strings["seconds"] = "";
+App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "";
+App::$strings["%1\$s's birthday"] = "";
+App::$strings["Happy Birthday %1\$s"] = "";
+App::$strings["New Page"] = "";
+App::$strings["Edit"] = "";
+App::$strings["View"] = "";
+App::$strings["Preview"] = "";
+App::$strings["Actions"] = "";
+App::$strings["Page Link"] = "";
+App::$strings["Title"] = "";
+App::$strings["Created"] = "";
+App::$strings["Edited"] = "";
+App::$strings["Public Timeline"] = "";
+App::$strings["Default"] = "";
+App::$strings["Directory Options"] = "";
+App::$strings["Alphabetic"] = "";
+App::$strings["Reverse Alphabetic"] = "";
+App::$strings["Newest to Oldest"] = "";
+App::$strings["Oldest to Newest"] = "";
+App::$strings["Sort"] = "";
+App::$strings["Safe Mode"] = "";
+App::$strings["Public Forums Only"] = "";
+App::$strings["This Website Only"] = "";
+App::$strings["l F d, Y \\@ g:i A"] = "";
+App::$strings["Starts:"] = "";
+App::$strings["Finishes:"] = "";
+App::$strings["Location:"] = "";
+App::$strings["This event has been added to your calendar."] = "";
+App::$strings["Delete this item?"] = "";
+App::$strings["Comment"] = "";
+App::$strings["[+] show all"] = "";
+App::$strings["[-] show less"] = "";
+App::$strings["[+] expand"] = "";
+App::$strings["[-] collapse"] = "";
+App::$strings["Password too short"] = "";
+App::$strings["Passwords do not match"] = "";
+App::$strings["everybody"] = "";
+App::$strings["Secret Passphrase"] = "";
+App::$strings["Passphrase hint"] = "";
+App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "";
+App::$strings["close all"] = "";
+App::$strings["Nothing new here"] = "";
+App::$strings["Rate This Channel (this is public)"] = "";
+App::$strings["Rating"] = "";
+App::$strings["Describe (optional)"] = "";
+App::$strings["Submit"] = "";
+App::$strings["Please enter a link URL"] = "";
+App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "";
+App::$strings["timeago.prefixAgo"] = "";
+App::$strings["timeago.prefixFromNow"] = "";
+App::$strings["ago"] = "";
+App::$strings["from now"] = "";
+App::$strings["less than a minute"] = "";
+App::$strings["about a minute"] = "";
+App::$strings["%d minutes"] = "";
+App::$strings["about an hour"] = "";
+App::$strings["about %d hours"] = "";
+App::$strings["a day"] = "";
+App::$strings["%d days"] = "";
+App::$strings["about a month"] = "";
+App::$strings["%d months"] = "";
+App::$strings["about a year"] = "";
+App::$strings["%d years"] = "";
+App::$strings[" "] = "";
+App::$strings["timeago.numbers"] = "";
+App::$strings["parent"] = "";
+App::$strings["Collection"] = "";
+App::$strings["Principal"] = "";
+App::$strings["Addressbook"] = "";
+App::$strings["Calendar"] = "";
+App::$strings["Schedule Inbox"] = "";
+App::$strings["Schedule Outbox"] = "";
+App::$strings["Unknown"] = "";
+App::$strings["%1\$s used"] = "";
+App::$strings["%1\$s used of %2\$s (%3\$s&#37;)"] = "";
+App::$strings["Files"] = "";
+App::$strings["Total"] = "";
+App::$strings["Shared"] = "";
+App::$strings["Create"] = "";
+App::$strings["Upload"] = "";
+App::$strings["Name"] = "";
+App::$strings["Type"] = "";
+App::$strings["Size"] = "";
+App::$strings["Last Modified"] = "";
+App::$strings["Delete"] = "";
+App::$strings["Create new folder"] = "";
+App::$strings["Upload file"] = "";
+App::$strings["%1\$s's bookmarks"] = "";
+App::$strings["view full size"] = "";
+App::$strings["General Features"] = "";
+App::$strings["Content Expiration"] = "";
+App::$strings["Remove posts/comments and/or private messages at a future time"] = "";
+App::$strings["Multiple Profiles"] = "";
+App::$strings["Ability to create multiple profiles"] = "";
+App::$strings["Advanced Profiles"] = "";
+App::$strings["Additional profile sections and selections"] = "";
+App::$strings["Profile Import/Export"] = "";
+App::$strings["Save and load profile details across sites/channels"] = "";
+App::$strings["Web Pages"] = "";
+App::$strings["Provide managed web pages on your channel"] = "";
+App::$strings["Private Notes"] = "";
+App::$strings["Enables a tool to store notes and reminders"] = "";
+App::$strings["Navigation Channel Select"] = "";
+App::$strings["Change channels directly from within the navigation dropdown menu"] = "";
+App::$strings["Photo Location"] = "";
+App::$strings["If location data is available on uploaded photos, link this to a map."] = "";
+App::$strings["Expert Mode"] = "";
+App::$strings["Enable Expert Mode to provide advanced configuration options"] = "";
+App::$strings["Premium Channel"] = "";
+App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "";
+App::$strings["Post Composition Features"] = "";
+App::$strings["Use Markdown"] = "";
+App::$strings["Allow use of \"Markdown\" to format posts"] = "";
+App::$strings["Large Photos"] = "";
+App::$strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "";
+App::$strings["Channel Sources"] = "";
+App::$strings["Automatically import channel content from other channels or feeds"] = "";
+App::$strings["Even More Encryption"] = "";
+App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "";
+App::$strings["Enable voting tools"] = "";
+App::$strings["Provide a class of post which others can vote on"] = "";
+App::$strings["Network and Stream Filtering"] = "";
+App::$strings["Search by Date"] = "";
+App::$strings["Ability to select posts by date ranges"] = "";
+App::$strings["Collections Filter"] = "";
+App::$strings["Enable widget to display Network posts only from selected collections"] = "";
+App::$strings["Saved Searches"] = "";
+App::$strings["Save search terms for re-use"] = "";
+App::$strings["Network Personal Tab"] = "";
+App::$strings["Enable tab to display only Network posts that you've interacted on"] = "";
+App::$strings["Network New Tab"] = "";
+App::$strings["Enable tab to display all new Network activity"] = "";
+App::$strings["Affinity Tool"] = "";
+App::$strings["Filter stream activity by depth of relationships"] = "";
+App::$strings["Suggest Channels"] = "";
+App::$strings["Show channel suggestions"] = "";
+App::$strings["Post/Comment Tools"] = "";
+App::$strings["Tagging"] = "";
+App::$strings["Ability to tag existing posts"] = "";
+App::$strings["Post Categories"] = "";
+App::$strings["Add categories to your posts"] = "";
+App::$strings["Saved Folders"] = "";
+App::$strings["Ability to file posts under folders"] = "";
+App::$strings["Dislike Posts"] = "";
+App::$strings["Ability to dislike posts/comments"] = "";
+App::$strings["Star Posts"] = "";
+App::$strings["Ability to mark special posts with a star indicator"] = "";
+App::$strings["Tag Cloud"] = "";
+App::$strings["Provide a personal tag cloud on your channel page"] = "";
+App::$strings["Categories"] = "";
+App::$strings["Apps"] = "";
+App::$strings["System"] = "";
+App::$strings["Personal"] = "";
+App::$strings["Create Personal App"] = "";
+App::$strings["Edit Personal App"] = "";
+App::$strings["Connect"] = "";
+App::$strings["Ignore/Hide"] = "";
+App::$strings["Suggestions"] = "";
+App::$strings["See more..."] = "";
+App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "";
+App::$strings["Add New Connection"] = "";
+App::$strings["Enter the channel address"] = "";
+App::$strings["Example: bob@example.com, http://example.com/barbara"] = "";
+App::$strings["Notes"] = "";
+App::$strings["Save"] = "";
+App::$strings["Remove term"] = "";
+App::$strings["Everything"] = "";
+App::$strings["Archives"] = "";
+App::$strings["Me"] = "";
+App::$strings["Family"] = "";
+App::$strings["Friends"] = "";
+App::$strings["Acquaintances"] = "";
+App::$strings["All"] = "";
+App::$strings["Refresh"] = "";
+App::$strings["Account settings"] = "";
+App::$strings["Channel settings"] = "";
+App::$strings["Additional features"] = "";
+App::$strings["Feature/Addon settings"] = "";
+App::$strings["Display settings"] = "";
+App::$strings["Connected apps"] = "";
+App::$strings["Export channel"] = "";
+App::$strings["Connection Default Permissions"] = "";
+App::$strings["Premium Channel Settings"] = "";
+App::$strings["Settings"] = "";
+App::$strings["Messages"] = "";
+App::$strings["Check Mail"] = "";
+App::$strings["New Message"] = "";
+App::$strings["Chat Rooms"] = "";
+App::$strings["Bookmarked Chatrooms"] = "";
+App::$strings["Suggested Chatrooms"] = "";
+App::$strings["photo/image"] = "";
+App::$strings["Rate Me"] = "";
+App::$strings["View Ratings"] = "";
+App::$strings["Public Hubs"] = "";
+App::$strings["\$Projectname Notification"] = "";
+App::$strings["\$projectname"] = "";
+App::$strings["Thank You,"] = "";
+App::$strings["%s Administrator"] = "";
+App::$strings["%s <!item_type!>"] = "";
+App::$strings["[Red:Notify] New mail received at %s"] = "";
+App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "";
+App::$strings["%1\$s sent you %2\$s."] = "";
+App::$strings["a private message"] = "";
+App::$strings["Please visit %s to view and/or reply to your private messages."] = "";
+App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "";
+App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "";
+App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "";
+App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
+App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "";
+App::$strings["Please visit %s to view and/or reply to the conversation."] = "";
+App::$strings["[Red:Notify] %s posted to your profile wall"] = "";
+App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "";
+App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "";
+App::$strings["[Red:Notify] %s tagged you"] = "";
+App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "";
+App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "";
+App::$strings["[Red:Notify] %1\$s poked you"] = "";
+App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "";
+App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "";
+App::$strings["[Red:Notify] %s tagged your post"] = "";
+App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "";
+App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "";
+App::$strings["[Red:Notify] Introduction received"] = "";
+App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "";
+App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "";
+App::$strings["You may visit their profile at %s"] = "";
+App::$strings["Please visit %s to approve or reject the connection request."] = "";
+App::$strings["[Red:Notify] Friend suggestion received"] = "";
+App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "";
+App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "";
+App::$strings["Name:"] = "";
+App::$strings["Photo:"] = "";
+App::$strings["Please visit %s to approve or reject the suggestion."] = "";
+App::$strings["[Red:Notify]"] = "";
+App::$strings["Frequently"] = "";
+App::$strings["Hourly"] = "";
+App::$strings["Twice daily"] = "";
+App::$strings["Daily"] = "";
+App::$strings["Weekly"] = "";
+App::$strings["Monthly"] = "";
+App::$strings["Friendica"] = "";
+App::$strings["OStatus"] = "";
+App::$strings["RSS/Atom"] = "";
+App::$strings["Email"] = "";
+App::$strings["Diaspora"] = "";
+App::$strings["Facebook"] = "";
+App::$strings["Zot!"] = "";
+App::$strings["LinkedIn"] = "";
+App::$strings["XMPP/IM"] = "";
+App::$strings["MySpace"] = "";
+App::$strings["No recipient provided."] = "";
+App::$strings["[no subject]"] = "";
+App::$strings["Unable to determine sender."] = "";
+App::$strings["Stored post could not be verified."] = "";
+App::$strings["Channel is blocked on this site."] = "";
+App::$strings["Channel location missing."] = "";
+App::$strings["Response from remote channel was incomplete."] = "";
+App::$strings["Channel was deleted and no longer exists."] = "";
+App::$strings["Protocol disabled."] = "";
+App::$strings["Channel discovery failed."] = "";
+App::$strings["local account not found."] = "";
+App::$strings["Cannot connect to yourself."] = "";
+App::$strings["Private Message"] = "";
+App::$strings["Select"] = "";
+App::$strings["Save to Folder"] = "";
+App::$strings["I will attend"] = "";
+App::$strings["I will not attend"] = "";
+App::$strings["I might attend"] = "";
+App::$strings["I agree"] = "";
+App::$strings["I disagree"] = "";
+App::$strings["I abstain"] = "";
+App::$strings["View all"] = "";
+App::$strings["__ctx:noun__ Like"] = array(
0 => "",
1 => "",
);
-$a->strings["__ctx:noun__ Dislike"] = array(
+App::$strings["__ctx:noun__ Dislike"] = array(
0 => "",
1 => "",
);
-$a->strings["Add Star"] = "";
-$a->strings["Remove Star"] = "";
-$a->strings["Toggle Star Status"] = "";
-$a->strings["starred"] = "";
-$a->strings["Message signature validated"] = "";
-$a->strings["Message signature incorrect"] = "";
-$a->strings["Add Tag"] = "";
-$a->strings["I like this (toggle)"] = "";
-$a->strings["like"] = "";
-$a->strings["I don't like this (toggle)"] = "";
-$a->strings["dislike"] = "";
-$a->strings["Share This"] = "";
-$a->strings["share"] = "";
-$a->strings["%d comment"] = array(
+App::$strings["Add Star"] = "";
+App::$strings["Remove Star"] = "";
+App::$strings["Toggle Star Status"] = "";
+App::$strings["starred"] = "";
+App::$strings["Message signature validated"] = "";
+App::$strings["Message signature incorrect"] = "";
+App::$strings["Add Tag"] = "";
+App::$strings["I like this (toggle)"] = "";
+App::$strings["like"] = "";
+App::$strings["I don't like this (toggle)"] = "";
+App::$strings["dislike"] = "";
+App::$strings["Share This"] = "";
+App::$strings["share"] = "";
+App::$strings["%d comment"] = array(
0 => "",
1 => "",
);
-$a->strings["View %s's profile - %s"] = "";
-$a->strings["to"] = "";
-$a->strings["via"] = "";
-$a->strings["Wall-to-Wall"] = "";
-$a->strings["via Wall-To-Wall:"] = "";
-$a->strings["from %s"] = "";
-$a->strings["last edited: %s"] = "";
-$a->strings["Expires: %s"] = "";
-$a->strings["Save Bookmarks"] = "";
-$a->strings["Add to Calendar"] = "";
-$a->strings["Mark all seen"] = "";
-$a->strings["__ctx:noun__ Likes"] = "";
-$a->strings["__ctx:noun__ Dislikes"] = "";
-$a->strings["Close"] = "";
-$a->strings["Please wait"] = "";
-$a->strings["This is you"] = "";
-$a->strings["Bold"] = "";
-$a->strings["Italic"] = "";
-$a->strings["Underline"] = "";
-$a->strings["Quote"] = "";
-$a->strings["Code"] = "";
-$a->strings["Image"] = "";
-$a->strings["Insert Link"] = "";
-$a->strings["Video"] = "";
-$a->strings["Encrypt text"] = "";
-$a->strings["New window"] = "";
-$a->strings["Open the selected location in a different window or browser tab"] = "";
-$a->strings["User '%s' deleted"] = "";
-$a->strings["Attachments:"] = "";
-$a->strings["\$Projectname event notification:"] = "";
-$a->strings["prev"] = "";
-$a->strings["first"] = "";
-$a->strings["last"] = "";
-$a->strings["next"] = "";
-$a->strings["older"] = "";
-$a->strings["newer"] = "";
-$a->strings["No connections"] = "";
-$a->strings["%d Connection"] = array(
+App::$strings["View %s's profile - %s"] = "";
+App::$strings["to"] = "";
+App::$strings["via"] = "";
+App::$strings["Wall-to-Wall"] = "";
+App::$strings["via Wall-To-Wall:"] = "";
+App::$strings["from %s"] = "";
+App::$strings["last edited: %s"] = "";
+App::$strings["Expires: %s"] = "";
+App::$strings["Save Bookmarks"] = "";
+App::$strings["Add to Calendar"] = "";
+App::$strings["Mark all seen"] = "";
+App::$strings["__ctx:noun__ Likes"] = "";
+App::$strings["__ctx:noun__ Dislikes"] = "";
+App::$strings["Close"] = "";
+App::$strings["Please wait"] = "";
+App::$strings["This is you"] = "";
+App::$strings["Bold"] = "";
+App::$strings["Italic"] = "";
+App::$strings["Underline"] = "";
+App::$strings["Quote"] = "";
+App::$strings["Code"] = "";
+App::$strings["Image"] = "";
+App::$strings["Insert Link"] = "";
+App::$strings["Video"] = "";
+App::$strings["Encrypt text"] = "";
+App::$strings["New window"] = "";
+App::$strings["Open the selected location in a different window or browser tab"] = "";
+App::$strings["User '%s' deleted"] = "";
+App::$strings["Attachments:"] = "";
+App::$strings["\$Projectname event notification:"] = "";
+App::$strings["prev"] = "";
+App::$strings["first"] = "";
+App::$strings["last"] = "";
+App::$strings["next"] = "";
+App::$strings["older"] = "";
+App::$strings["newer"] = "";
+App::$strings["No connections"] = "";
+App::$strings["%d Connection"] = array(
0 => "",
1 => "",
);
-$a->strings["View Connections"] = "";
-$a->strings["Search"] = "";
-$a->strings["poke"] = "";
-$a->strings["poked"] = "";
-$a->strings["ping"] = "";
-$a->strings["pinged"] = "";
-$a->strings["prod"] = "";
-$a->strings["prodded"] = "";
-$a->strings["slap"] = "";
-$a->strings["slapped"] = "";
-$a->strings["finger"] = "";
-$a->strings["fingered"] = "";
-$a->strings["rebuff"] = "";
-$a->strings["rebuffed"] = "";
-$a->strings["happy"] = "";
-$a->strings["sad"] = "";
-$a->strings["mellow"] = "";
-$a->strings["tired"] = "";
-$a->strings["perky"] = "";
-$a->strings["angry"] = "";
-$a->strings["stupified"] = "";
-$a->strings["puzzled"] = "";
-$a->strings["interested"] = "";
-$a->strings["bitter"] = "";
-$a->strings["cheerful"] = "";
-$a->strings["alive"] = "";
-$a->strings["annoyed"] = "";
-$a->strings["anxious"] = "";
-$a->strings["cranky"] = "";
-$a->strings["disturbed"] = "";
-$a->strings["frustrated"] = "";
-$a->strings["depressed"] = "";
-$a->strings["motivated"] = "";
-$a->strings["relaxed"] = "";
-$a->strings["surprised"] = "";
-$a->strings["Monday"] = "";
-$a->strings["Tuesday"] = "";
-$a->strings["Wednesday"] = "";
-$a->strings["Thursday"] = "";
-$a->strings["Friday"] = "";
-$a->strings["Saturday"] = "";
-$a->strings["Sunday"] = "";
-$a->strings["January"] = "";
-$a->strings["February"] = "";
-$a->strings["March"] = "";
-$a->strings["April"] = "";
-$a->strings["May"] = "";
-$a->strings["June"] = "";
-$a->strings["July"] = "";
-$a->strings["August"] = "";
-$a->strings["September"] = "";
-$a->strings["October"] = "";
-$a->strings["November"] = "";
-$a->strings["December"] = "";
-$a->strings["unknown.???"] = "";
-$a->strings["bytes"] = "";
-$a->strings["remove category"] = "";
-$a->strings["remove from file"] = "";
-$a->strings["Click to open/close"] = "";
-$a->strings["Link to Source"] = "";
-$a->strings["default"] = "";
-$a->strings["Page layout"] = "";
-$a->strings["You can create your own with the layouts tool"] = "";
-$a->strings["Page content type"] = "";
-$a->strings["Select an alternate language"] = "";
-$a->strings["photo"] = "";
-$a->strings["event"] = "";
-$a->strings["status"] = "";
-$a->strings["comment"] = "";
-$a->strings["activity"] = "";
-$a->strings["Design Tools"] = "";
-$a->strings["Blocks"] = "";
-$a->strings["Menus"] = "";
-$a->strings["Layouts"] = "";
-$a->strings["Pages"] = "";
-$a->strings["Logout"] = "";
-$a->strings["End this session"] = "";
-$a->strings["Home"] = "";
-$a->strings["Your posts and conversations"] = "";
-$a->strings["View Profile"] = "";
-$a->strings["Your profile page"] = "";
-$a->strings["Edit Profiles"] = "";
-$a->strings["Manage/Edit profiles"] = "";
-$a->strings["Edit Profile"] = "";
-$a->strings["Edit your profile"] = "";
-$a->strings["Photos"] = "";
-$a->strings["Your photos"] = "";
-$a->strings["Your files"] = "";
-$a->strings["Chat"] = "";
-$a->strings["Your chatrooms"] = "";
-$a->strings["Bookmarks"] = "";
-$a->strings["Your bookmarks"] = "";
-$a->strings["Webpages"] = "";
-$a->strings["Your webpages"] = "";
-$a->strings["Login"] = "";
-$a->strings["Sign in"] = "";
-$a->strings["%s - click to logout"] = "";
-$a->strings["Remote authentication"] = "";
-$a->strings["Click to authenticate to your home hub"] = "";
-$a->strings["Home Page"] = "";
-$a->strings["Register"] = "";
-$a->strings["Create an account"] = "";
-$a->strings["Help"] = "";
-$a->strings["Help and documentation"] = "";
-$a->strings["Applications, utilities, links, games"] = "";
-$a->strings["Search site content"] = "";
-$a->strings["Directory"] = "";
-$a->strings["Channel Directory"] = "";
-$a->strings["Matrix"] = "";
-$a->strings["Your matrix"] = "";
-$a->strings["Mark all matrix notifications seen"] = "";
-$a->strings["Channel Home"] = "";
-$a->strings["Channel home"] = "";
-$a->strings["Mark all channel notifications seen"] = "";
-$a->strings["Connections"] = "";
-$a->strings["Notices"] = "";
-$a->strings["Notifications"] = "";
-$a->strings["See all notifications"] = "";
-$a->strings["Mark all system notifications seen"] = "";
-$a->strings["Mail"] = "";
-$a->strings["Private mail"] = "";
-$a->strings["See all private messages"] = "";
-$a->strings["Mark all private messages seen"] = "";
-$a->strings["Inbox"] = "";
-$a->strings["Outbox"] = "";
-$a->strings["Events"] = "";
-$a->strings["Event Calendar"] = "";
-$a->strings["See all events"] = "";
-$a->strings["Mark all events seen"] = "";
-$a->strings["Channel Manager"] = "";
-$a->strings["Manage Your Channels"] = "";
-$a->strings["Account/Channel Settings"] = "";
-$a->strings["Admin"] = "";
-$a->strings["Site Setup and Configuration"] = "";
-$a->strings["Loading..."] = "";
-$a->strings["@name, #tag, content"] = "";
-$a->strings["Please wait..."] = "";
-$a->strings["Tags"] = "";
-$a->strings["Keywords"] = "";
-$a->strings["have"] = "";
-$a->strings["has"] = "";
-$a->strings["want"] = "";
-$a->strings["wants"] = "";
-$a->strings["likes"] = "";
-$a->strings["dislikes"] = "";
-$a->strings[" and "] = "";
-$a->strings["public profile"] = "";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
-$a->strings["Visit %1\$s's %2\$s"] = "";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
-$a->strings["Permission denied"] = "";
-$a->strings["(Unknown)"] = "";
-$a->strings["Visible to anybody on the internet."] = "";
-$a->strings["Visible to you only."] = "";
-$a->strings["Visible to anybody in this network."] = "";
-$a->strings["Visible to anybody authenticated."] = "";
-$a->strings["Visible to anybody on %s."] = "";
-$a->strings["Visible to all connections."] = "";
-$a->strings["Visible to approved connections."] = "";
-$a->strings["Visible to specific connections."] = "";
-$a->strings["Item not found."] = "";
-$a->strings["Permission denied."] = "";
-$a->strings["Collection not found."] = "";
-$a->strings["Collection is empty."] = "";
-$a->strings["Collection: %s"] = "";
-$a->strings["Connection: %s"] = "";
-$a->strings["Connection not found."] = "";
-$a->strings["Can view my normal stream and posts"] = "";
-$a->strings["Can view my default channel profile"] = "";
-$a->strings["Can view my photo albums"] = "";
-$a->strings["Can view my connections"] = "";
-$a->strings["Can view my file storage"] = "";
-$a->strings["Can view my webpages"] = "";
-$a->strings["Can send me their channel stream and posts"] = "";
-$a->strings["Can post on my channel page (\"wall\")"] = "";
-$a->strings["Can comment on or like my posts"] = "";
-$a->strings["Can send me private mail messages"] = "";
-$a->strings["Can post photos to my photo albums"] = "";
-$a->strings["Can like/dislike stuff"] = "";
-$a->strings["Profiles and things other than posts/comments"] = "";
-$a->strings["Can forward to all my channel contacts via post @mentions"] = "";
-$a->strings["Advanced - useful for creating group forum channels"] = "";
-$a->strings["Can chat with me (when available)"] = "";
-$a->strings["Can write to my file storage"] = "";
-$a->strings["Can edit my webpages"] = "";
-$a->strings["Can source my public posts in derived channels"] = "";
-$a->strings["Somewhat advanced - very useful in open communities"] = "";
-$a->strings["Can administer my channel resources"] = "";
-$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "";
-$a->strings["Social Networking"] = "";
-$a->strings["Mostly Public"] = "";
-$a->strings["Restricted"] = "";
-$a->strings["Private"] = "";
-$a->strings["Community Forum"] = "";
-$a->strings["Feed Republish"] = "";
-$a->strings["Special Purpose"] = "";
-$a->strings["Celebrity/Soapbox"] = "";
-$a->strings["Group Repository"] = "";
-$a->strings["Other"] = "";
-$a->strings["Custom/Expert Mode"] = "";
-$a->strings["channel"] = "";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "";
-$a->strings["%1\$s is now connected with %2\$s"] = "";
-$a->strings["%1\$s poked %2\$s"] = "";
-$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "";
-$a->strings["__ctx:title__ Likes"] = "";
-$a->strings["__ctx:title__ Dislikes"] = "";
-$a->strings["__ctx:title__ Agree"] = "";
-$a->strings["__ctx:title__ Disagree"] = "";
-$a->strings["__ctx:title__ Abstain"] = "";
-$a->strings["__ctx:title__ Attending"] = "";
-$a->strings["__ctx:title__ Not attending"] = "";
-$a->strings["__ctx:title__ Might attend"] = "";
-$a->strings["View %s's profile @ %s"] = "";
-$a->strings["Categories:"] = "";
-$a->strings["Filed under:"] = "";
-$a->strings["View in context"] = "";
-$a->strings["remove"] = "";
-$a->strings["Delete Selected Items"] = "";
-$a->strings["View Source"] = "";
-$a->strings["Follow Thread"] = "";
-$a->strings["View Status"] = "";
-$a->strings["View Photos"] = "";
-$a->strings["Matrix Activity"] = "";
-$a->strings["Edit Contact"] = "";
-$a->strings["Send PM"] = "";
-$a->strings["Poke"] = "";
-$a->strings["%s likes this."] = "";
-$a->strings["%s doesn't like this."] = "";
-$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
+App::$strings["View Connections"] = "";
+App::$strings["Search"] = "";
+App::$strings["poke"] = "";
+App::$strings["poked"] = "";
+App::$strings["ping"] = "";
+App::$strings["pinged"] = "";
+App::$strings["prod"] = "";
+App::$strings["prodded"] = "";
+App::$strings["slap"] = "";
+App::$strings["slapped"] = "";
+App::$strings["finger"] = "";
+App::$strings["fingered"] = "";
+App::$strings["rebuff"] = "";
+App::$strings["rebuffed"] = "";
+App::$strings["happy"] = "";
+App::$strings["sad"] = "";
+App::$strings["mellow"] = "";
+App::$strings["tired"] = "";
+App::$strings["perky"] = "";
+App::$strings["angry"] = "";
+App::$strings["stupified"] = "";
+App::$strings["puzzled"] = "";
+App::$strings["interested"] = "";
+App::$strings["bitter"] = "";
+App::$strings["cheerful"] = "";
+App::$strings["alive"] = "";
+App::$strings["annoyed"] = "";
+App::$strings["anxious"] = "";
+App::$strings["cranky"] = "";
+App::$strings["disturbed"] = "";
+App::$strings["frustrated"] = "";
+App::$strings["depressed"] = "";
+App::$strings["motivated"] = "";
+App::$strings["relaxed"] = "";
+App::$strings["surprised"] = "";
+App::$strings["Monday"] = "";
+App::$strings["Tuesday"] = "";
+App::$strings["Wednesday"] = "";
+App::$strings["Thursday"] = "";
+App::$strings["Friday"] = "";
+App::$strings["Saturday"] = "";
+App::$strings["Sunday"] = "";
+App::$strings["January"] = "";
+App::$strings["February"] = "";
+App::$strings["March"] = "";
+App::$strings["April"] = "";
+App::$strings["May"] = "";
+App::$strings["June"] = "";
+App::$strings["July"] = "";
+App::$strings["August"] = "";
+App::$strings["September"] = "";
+App::$strings["October"] = "";
+App::$strings["November"] = "";
+App::$strings["December"] = "";
+App::$strings["unknown.???"] = "";
+App::$strings["bytes"] = "";
+App::$strings["remove category"] = "";
+App::$strings["remove from file"] = "";
+App::$strings["Click to open/close"] = "";
+App::$strings["Link to Source"] = "";
+App::$strings["default"] = "";
+App::$strings["Page layout"] = "";
+App::$strings["You can create your own with the layouts tool"] = "";
+App::$strings["Page content type"] = "";
+App::$strings["Select an alternate language"] = "";
+App::$strings["photo"] = "";
+App::$strings["event"] = "";
+App::$strings["status"] = "";
+App::$strings["comment"] = "";
+App::$strings["activity"] = "";
+App::$strings["Design Tools"] = "";
+App::$strings["Blocks"] = "";
+App::$strings["Menus"] = "";
+App::$strings["Layouts"] = "";
+App::$strings["Pages"] = "";
+App::$strings["Logout"] = "";
+App::$strings["End this session"] = "";
+App::$strings["Home"] = "";
+App::$strings["Your posts and conversations"] = "";
+App::$strings["View Profile"] = "";
+App::$strings["Your profile page"] = "";
+App::$strings["Edit Profiles"] = "";
+App::$strings["Manage/Edit profiles"] = "";
+App::$strings["Edit Profile"] = "";
+App::$strings["Edit your profile"] = "";
+App::$strings["Photos"] = "";
+App::$strings["Your photos"] = "";
+App::$strings["Your files"] = "";
+App::$strings["Chat"] = "";
+App::$strings["Your chatrooms"] = "";
+App::$strings["Bookmarks"] = "";
+App::$strings["Your bookmarks"] = "";
+App::$strings["Webpages"] = "";
+App::$strings["Your webpages"] = "";
+App::$strings["Login"] = "";
+App::$strings["Sign in"] = "";
+App::$strings["%s - click to logout"] = "";
+App::$strings["Remote authentication"] = "";
+App::$strings["Click to authenticate to your home hub"] = "";
+App::$strings["Home Page"] = "";
+App::$strings["Register"] = "";
+App::$strings["Create an account"] = "";
+App::$strings["Help"] = "";
+App::$strings["Help and documentation"] = "";
+App::$strings["Applications, utilities, links, games"] = "";
+App::$strings["Search site content"] = "";
+App::$strings["Directory"] = "";
+App::$strings["Channel Directory"] = "";
+App::$strings["Matrix"] = "";
+App::$strings["Your matrix"] = "";
+App::$strings["Mark all matrix notifications seen"] = "";
+App::$strings["Channel Home"] = "";
+App::$strings["Channel home"] = "";
+App::$strings["Mark all channel notifications seen"] = "";
+App::$strings["Connections"] = "";
+App::$strings["Notices"] = "";
+App::$strings["Notifications"] = "";
+App::$strings["See all notifications"] = "";
+App::$strings["Mark all system notifications seen"] = "";
+App::$strings["Mail"] = "";
+App::$strings["Private mail"] = "";
+App::$strings["See all private messages"] = "";
+App::$strings["Mark all private messages seen"] = "";
+App::$strings["Inbox"] = "";
+App::$strings["Outbox"] = "";
+App::$strings["Events"] = "";
+App::$strings["Event Calendar"] = "";
+App::$strings["See all events"] = "";
+App::$strings["Mark all events seen"] = "";
+App::$strings["Channel Manager"] = "";
+App::$strings["Manage Your Channels"] = "";
+App::$strings["Account/Channel Settings"] = "";
+App::$strings["Admin"] = "";
+App::$strings["Site Setup and Configuration"] = "";
+App::$strings["Loading..."] = "";
+App::$strings["@name, #tag, content"] = "";
+App::$strings["Please wait..."] = "";
+App::$strings["Tags"] = "";
+App::$strings["Keywords"] = "";
+App::$strings["have"] = "";
+App::$strings["has"] = "";
+App::$strings["want"] = "";
+App::$strings["wants"] = "";
+App::$strings["likes"] = "";
+App::$strings["dislikes"] = "";
+App::$strings[" and "] = "";
+App::$strings["public profile"] = "";
+App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
+App::$strings["Visit %1\$s's %2\$s"] = "";
+App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
+App::$strings["Permission denied"] = "";
+App::$strings["(Unknown)"] = "";
+App::$strings["Visible to anybody on the internet."] = "";
+App::$strings["Visible to you only."] = "";
+App::$strings["Visible to anybody in this network."] = "";
+App::$strings["Visible to anybody authenticated."] = "";
+App::$strings["Visible to anybody on %s."] = "";
+App::$strings["Visible to all connections."] = "";
+App::$strings["Visible to approved connections."] = "";
+App::$strings["Visible to specific connections."] = "";
+App::$strings["Item not found."] = "";
+App::$strings["Permission denied."] = "";
+App::$strings["Collection not found."] = "";
+App::$strings["Collection is empty."] = "";
+App::$strings["Collection: %s"] = "";
+App::$strings["Connection: %s"] = "";
+App::$strings["Connection not found."] = "";
+App::$strings["Can view my normal stream and posts"] = "";
+App::$strings["Can view my default channel profile"] = "";
+App::$strings["Can view my photo albums"] = "";
+App::$strings["Can view my connections"] = "";
+App::$strings["Can view my file storage"] = "";
+App::$strings["Can view my webpages"] = "";
+App::$strings["Can send me their channel stream and posts"] = "";
+App::$strings["Can post on my channel page (\"wall\")"] = "";
+App::$strings["Can comment on or like my posts"] = "";
+App::$strings["Can send me private mail messages"] = "";
+App::$strings["Can post photos to my photo albums"] = "";
+App::$strings["Can like/dislike stuff"] = "";
+App::$strings["Profiles and things other than posts/comments"] = "";
+App::$strings["Can forward to all my channel contacts via post @mentions"] = "";
+App::$strings["Advanced - useful for creating group forum channels"] = "";
+App::$strings["Can chat with me (when available)"] = "";
+App::$strings["Can write to my file storage"] = "";
+App::$strings["Can edit my webpages"] = "";
+App::$strings["Can source my public posts in derived channels"] = "";
+App::$strings["Somewhat advanced - very useful in open communities"] = "";
+App::$strings["Can administer my channel resources"] = "";
+App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "";
+App::$strings["Social Networking"] = "";
+App::$strings["Mostly Public"] = "";
+App::$strings["Restricted"] = "";
+App::$strings["Private"] = "";
+App::$strings["Community Forum"] = "";
+App::$strings["Feed Republish"] = "";
+App::$strings["Special Purpose"] = "";
+App::$strings["Celebrity/Soapbox"] = "";
+App::$strings["Group Repository"] = "";
+App::$strings["Other"] = "";
+App::$strings["Custom/Expert Mode"] = "";
+App::$strings["channel"] = "";
+App::$strings["%1\$s likes %2\$s's %3\$s"] = "";
+App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "";
+App::$strings["%1\$s is now connected with %2\$s"] = "";
+App::$strings["%1\$s poked %2\$s"] = "";
+App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "";
+App::$strings["__ctx:title__ Likes"] = "";
+App::$strings["__ctx:title__ Dislikes"] = "";
+App::$strings["__ctx:title__ Agree"] = "";
+App::$strings["__ctx:title__ Disagree"] = "";
+App::$strings["__ctx:title__ Abstain"] = "";
+App::$strings["__ctx:title__ Attending"] = "";
+App::$strings["__ctx:title__ Not attending"] = "";
+App::$strings["__ctx:title__ Might attend"] = "";
+App::$strings["View %s's profile @ %s"] = "";
+App::$strings["Categories:"] = "";
+App::$strings["Filed under:"] = "";
+App::$strings["View in context"] = "";
+App::$strings["remove"] = "";
+App::$strings["Delete Selected Items"] = "";
+App::$strings["View Source"] = "";
+App::$strings["Follow Thread"] = "";
+App::$strings["View Status"] = "";
+App::$strings["View Photos"] = "";
+App::$strings["Matrix Activity"] = "";
+App::$strings["Edit Contact"] = "";
+App::$strings["Send PM"] = "";
+App::$strings["Poke"] = "";
+App::$strings["%s likes this."] = "";
+App::$strings["%s doesn't like this."] = "";
+App::$strings["<span %1\$s>%2\$d people</span> like this."] = array(
0 => "",
1 => "",
);
-$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
+App::$strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
0 => "",
1 => "",
);
-$a->strings["and"] = "";
-$a->strings[", and %d other people"] = array(
+App::$strings["and"] = "";
+App::$strings[", and %d other people"] = array(
0 => "",
1 => "",
);
-$a->strings["%s like this."] = "";
-$a->strings["%s don't like this."] = "";
-$a->strings["Visible to <strong>everybody</strong>"] = "";
-$a->strings["Please enter a link URL:"] = "";
-$a->strings["Please enter a video link/URL:"] = "";
-$a->strings["Please enter an audio link/URL:"] = "";
-$a->strings["Tag term:"] = "";
-$a->strings["Save to Folder:"] = "";
-$a->strings["Where are you right now?"] = "";
-$a->strings["Expires YYYY-MM-DD HH:MM"] = "";
-$a->strings["Share"] = "";
-$a->strings["Page link name"] = "";
-$a->strings["Post as"] = "";
-$a->strings["Upload photo"] = "";
-$a->strings["upload photo"] = "";
-$a->strings["Attach file"] = "";
-$a->strings["attach file"] = "";
-$a->strings["Insert web link"] = "";
-$a->strings["web link"] = "";
-$a->strings["Insert video link"] = "";
-$a->strings["video link"] = "";
-$a->strings["Insert audio link"] = "";
-$a->strings["audio link"] = "";
-$a->strings["Set your location"] = "";
-$a->strings["set location"] = "";
-$a->strings["Toggle voting"] = "";
-$a->strings["Clear browser location"] = "";
-$a->strings["clear location"] = "";
-$a->strings["Title (optional)"] = "";
-$a->strings["Categories (optional, comma-separated list)"] = "";
-$a->strings["Permission settings"] = "";
-$a->strings["permissions"] = "";
-$a->strings["Public post"] = "";
-$a->strings["Example: bob@example.com, mary@example.com"] = "";
-$a->strings["Set expiration date"] = "";
-$a->strings["OK"] = "";
-$a->strings["Cancel"] = "";
-$a->strings["Discover"] = "";
-$a->strings["Imported public streams"] = "";
-$a->strings["Commented Order"] = "";
-$a->strings["Sort by Comment Date"] = "";
-$a->strings["Posted Order"] = "";
-$a->strings["Sort by Post Date"] = "";
-$a->strings["Posts that mention or involve you"] = "";
-$a->strings["New"] = "";
-$a->strings["Activity Stream - by date"] = "";
-$a->strings["Starred"] = "";
-$a->strings["Favourite Posts"] = "";
-$a->strings["Spam"] = "";
-$a->strings["Posts flagged as SPAM"] = "";
-$a->strings["Channel"] = "";
-$a->strings["Status Messages and Posts"] = "";
-$a->strings["About"] = "";
-$a->strings["Profile Details"] = "";
-$a->strings["Photo Albums"] = "";
-$a->strings["Files and Storage"] = "";
-$a->strings["Chatrooms"] = "";
-$a->strings["Saved Bookmarks"] = "";
-$a->strings["Manage Webpages"] = "";
-$a->strings["__ctx:noun__ Attending"] = array(
+App::$strings["%s like this."] = "";
+App::$strings["%s don't like this."] = "";
+App::$strings["Visible to <strong>everybody</strong>"] = "";
+App::$strings["Please enter a link URL:"] = "";
+App::$strings["Please enter a video link/URL:"] = "";
+App::$strings["Please enter an audio link/URL:"] = "";
+App::$strings["Tag term:"] = "";
+App::$strings["Save to Folder:"] = "";
+App::$strings["Where are you right now?"] = "";
+App::$strings["Expires YYYY-MM-DD HH:MM"] = "";
+App::$strings["Share"] = "";
+App::$strings["Page link name"] = "";
+App::$strings["Post as"] = "";
+App::$strings["Upload photo"] = "";
+App::$strings["upload photo"] = "";
+App::$strings["Attach file"] = "";
+App::$strings["attach file"] = "";
+App::$strings["Insert web link"] = "";
+App::$strings["web link"] = "";
+App::$strings["Insert video link"] = "";
+App::$strings["video link"] = "";
+App::$strings["Insert audio link"] = "";
+App::$strings["audio link"] = "";
+App::$strings["Set your location"] = "";
+App::$strings["set location"] = "";
+App::$strings["Toggle voting"] = "";
+App::$strings["Clear browser location"] = "";
+App::$strings["clear location"] = "";
+App::$strings["Title (optional)"] = "";
+App::$strings["Categories (optional, comma-separated list)"] = "";
+App::$strings["Permission settings"] = "";
+App::$strings["permissions"] = "";
+App::$strings["Public post"] = "";
+App::$strings["Example: bob@example.com, mary@example.com"] = "";
+App::$strings["Set expiration date"] = "";
+App::$strings["OK"] = "";
+App::$strings["Cancel"] = "";
+App::$strings["Discover"] = "";
+App::$strings["Imported public streams"] = "";
+App::$strings["Commented Order"] = "";
+App::$strings["Sort by Comment Date"] = "";
+App::$strings["Posted Order"] = "";
+App::$strings["Sort by Post Date"] = "";
+App::$strings["Posts that mention or involve you"] = "";
+App::$strings["New"] = "";
+App::$strings["Activity Stream - by date"] = "";
+App::$strings["Starred"] = "";
+App::$strings["Favourite Posts"] = "";
+App::$strings["Spam"] = "";
+App::$strings["Posts flagged as SPAM"] = "";
+App::$strings["Channel"] = "";
+App::$strings["Status Messages and Posts"] = "";
+App::$strings["About"] = "";
+App::$strings["Profile Details"] = "";
+App::$strings["Photo Albums"] = "";
+App::$strings["Files and Storage"] = "";
+App::$strings["Chatrooms"] = "";
+App::$strings["Saved Bookmarks"] = "";
+App::$strings["Manage Webpages"] = "";
+App::$strings["__ctx:noun__ Attending"] = array(
0 => "",
1 => "",
);
-$a->strings["__ctx:noun__ Not Attending"] = array(
+App::$strings["__ctx:noun__ Not Attending"] = array(
0 => "",
1 => "",
);
-$a->strings["__ctx:noun__ Undecided"] = array(
+App::$strings["__ctx:noun__ Undecided"] = array(
0 => "",
1 => "",
);
-$a->strings["__ctx:noun__ Agree"] = array(
+App::$strings["__ctx:noun__ Agree"] = array(
0 => "",
1 => "",
);
-$a->strings["__ctx:noun__ Disagree"] = array(
+App::$strings["__ctx:noun__ Disagree"] = array(
0 => "",
1 => "",
);
-$a->strings["__ctx:noun__ Abstain"] = array(
+App::$strings["__ctx:noun__ Abstain"] = array(
0 => "",
1 => "",
);
-$a->strings["Image/photo"] = "";
-$a->strings["Encrypted content"] = "";
-$a->strings["Install design element: "] = "";
-$a->strings["QR code"] = "";
-$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "";
-$a->strings["post"] = "";
-$a->strings["Different viewers will see this text differently"] = "";
-$a->strings["$1 spoiler"] = "";
-$a->strings["$1 wrote:"] = "";
-$a->strings["Image exceeds website size limit of %lu bytes"] = "";
-$a->strings["Image file is empty."] = "";
-$a->strings["Unable to process image"] = "";
-$a->strings["Photo storage failed."] = "";
-$a->strings["Upload New Photos"] = "";
-$a->strings["Invalid data packet"] = "";
-$a->strings["Unable to verify channel signature"] = "";
-$a->strings["Unable to verify site signature for %s"] = "";
-$a->strings["Embedded content"] = "";
-$a->strings["Embedding disabled"] = "";
-$a->strings["Logged out."] = "";
-$a->strings["Failed authentication"] = "";
-$a->strings["Login failed."] = "";
-$a->strings["%d invitation available"] = array(
+App::$strings["Image/photo"] = "";
+App::$strings["Encrypted content"] = "";
+App::$strings["Install design element: "] = "";
+App::$strings["QR code"] = "";
+App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "";
+App::$strings["post"] = "";
+App::$strings["Different viewers will see this text differently"] = "";
+App::$strings["$1 spoiler"] = "";
+App::$strings["$1 wrote:"] = "";
+App::$strings["Image exceeds website size limit of %lu bytes"] = "";
+App::$strings["Image file is empty."] = "";
+App::$strings["Unable to process image"] = "";
+App::$strings["Photo storage failed."] = "";
+App::$strings["Upload New Photos"] = "";
+App::$strings["Invalid data packet"] = "";
+App::$strings["Unable to verify channel signature"] = "";
+App::$strings["Unable to verify site signature for %s"] = "";
+App::$strings["Embedded content"] = "";
+App::$strings["Embedding disabled"] = "";
+App::$strings["Logged out."] = "";
+App::$strings["Failed authentication"] = "";
+App::$strings["Login failed."] = "";
+App::$strings["%d invitation available"] = array(
0 => "",
1 => "",
);
-$a->strings["Advanced"] = "";
-$a->strings["Find Channels"] = "";
-$a->strings["Enter name or interest"] = "";
-$a->strings["Connect/Follow"] = "";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "";
-$a->strings["Find"] = "";
-$a->strings["Channel Suggestions"] = "";
-$a->strings["Random Profile"] = "";
-$a->strings["Invite Friends"] = "";
-$a->strings["Advanced example: name=fred and country=iceland"] = "";
-$a->strings["%d connection in common"] = array(
+App::$strings["Advanced"] = "";
+App::$strings["Find Channels"] = "";
+App::$strings["Enter name or interest"] = "";
+App::$strings["Connect/Follow"] = "";
+App::$strings["Examples: Robert Morgenstein, Fishing"] = "";
+App::$strings["Find"] = "";
+App::$strings["Channel Suggestions"] = "";
+App::$strings["Random Profile"] = "";
+App::$strings["Invite Friends"] = "";
+App::$strings["Advanced example: name=fred and country=iceland"] = "";
+App::$strings["%d connection in common"] = array(
0 => "",
1 => "",
);
-$a->strings["show more"] = "";
-$a->strings["Visible to your default audience"] = "";
-$a->strings["Show"] = "";
-$a->strings["Don't show"] = "";
-$a->strings["Permissions"] = "";
-$a->strings["Item was not found."] = "";
-$a->strings["No source file."] = "";
-$a->strings["Cannot locate file to replace"] = "";
-$a->strings["Cannot locate file to revise/update"] = "";
-$a->strings["File exceeds size limit of %d"] = "";
-$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "";
-$a->strings["File upload failed. Possible system limit or action terminated."] = "";
-$a->strings["Stored file could not be verified. Upload failed."] = "";
-$a->strings["Path not available."] = "";
-$a->strings["Empty pathname"] = "";
-$a->strings["duplicate filename or path"] = "";
-$a->strings["Path not found."] = "";
-$a->strings["mkdir failed."] = "";
-$a->strings["database storage failed."] = "";
-$a->strings["Unable to obtain identity information from database"] = "";
-$a->strings["Empty name"] = "";
-$a->strings["Name too long"] = "";
-$a->strings["No account identifier"] = "";
-$a->strings["Nickname is required."] = "";
-$a->strings["Reserved nickname. Please choose another."] = "";
-$a->strings["Nickname has unsupported characters or is already being used on this site."] = "";
-$a->strings["Unable to retrieve created identity"] = "";
-$a->strings["Default Profile"] = "";
-$a->strings["Requested channel is not available."] = "";
-$a->strings["Requested profile is not available."] = "";
-$a->strings["Change profile photo"] = "";
-$a->strings["Profiles"] = "";
-$a->strings["Manage/edit profiles"] = "";
-$a->strings["Create New Profile"] = "";
-$a->strings["Profile Image"] = "";
-$a->strings["visible to everybody"] = "";
-$a->strings["Edit visibility"] = "";
-$a->strings["Gender:"] = "";
-$a->strings["Status:"] = "";
-$a->strings["Homepage:"] = "";
-$a->strings["Online Now"] = "";
-$a->strings["g A l F d"] = "";
-$a->strings["F d"] = "";
-$a->strings["[today]"] = "";
-$a->strings["Birthday Reminders"] = "";
-$a->strings["Birthdays this week:"] = "";
-$a->strings["[No description]"] = "";
-$a->strings["Event Reminders"] = "";
-$a->strings["Events this week:"] = "";
-$a->strings["Profile"] = "";
-$a->strings["Full Name:"] = "";
-$a->strings["Like this channel"] = "";
-$a->strings["j F, Y"] = "";
-$a->strings["j F"] = "";
-$a->strings["Birthday:"] = "";
-$a->strings["Age:"] = "";
-$a->strings["for %1\$d %2\$s"] = "";
-$a->strings["Sexual Preference:"] = "";
-$a->strings["Hometown:"] = "";
-$a->strings["Tags:"] = "";
-$a->strings["Political Views:"] = "";
-$a->strings["Religion:"] = "";
-$a->strings["About:"] = "";
-$a->strings["Hobbies/Interests:"] = "";
-$a->strings["Likes:"] = "";
-$a->strings["Dislikes:"] = "";
-$a->strings["Contact information and Social Networks:"] = "";
-$a->strings["My other channels:"] = "";
-$a->strings["Musical interests:"] = "";
-$a->strings["Books, literature:"] = "";
-$a->strings["Television:"] = "";
-$a->strings["Film/dance/culture/entertainment:"] = "";
-$a->strings["Love/Romance:"] = "";
-$a->strings["Work/employment:"] = "";
-$a->strings["School/education:"] = "";
-$a->strings["Like this thing"] = "";
-$a->strings["Male"] = "";
-$a->strings["Female"] = "";
-$a->strings["Currently Male"] = "";
-$a->strings["Currently Female"] = "";
-$a->strings["Mostly Male"] = "";
-$a->strings["Mostly Female"] = "";
-$a->strings["Transgender"] = "";
-$a->strings["Intersex"] = "";
-$a->strings["Transsexual"] = "";
-$a->strings["Hermaphrodite"] = "";
-$a->strings["Neuter"] = "";
-$a->strings["Non-specific"] = "";
-$a->strings["Undecided"] = "";
-$a->strings["Males"] = "";
-$a->strings["Females"] = "";
-$a->strings["Gay"] = "";
-$a->strings["Lesbian"] = "";
-$a->strings["No Preference"] = "";
-$a->strings["Bisexual"] = "";
-$a->strings["Autosexual"] = "";
-$a->strings["Abstinent"] = "";
-$a->strings["Virgin"] = "";
-$a->strings["Deviant"] = "";
-$a->strings["Fetish"] = "";
-$a->strings["Oodles"] = "";
-$a->strings["Nonsexual"] = "";
-$a->strings["Single"] = "";
-$a->strings["Lonely"] = "";
-$a->strings["Available"] = "";
-$a->strings["Unavailable"] = "";
-$a->strings["Has crush"] = "";
-$a->strings["Infatuated"] = "";
-$a->strings["Dating"] = "";
-$a->strings["Unfaithful"] = "";
-$a->strings["Sex Addict"] = "";
-$a->strings["Friends/Benefits"] = "";
-$a->strings["Casual"] = "";
-$a->strings["Engaged"] = "";
-$a->strings["Married"] = "";
-$a->strings["Imaginarily married"] = "";
-$a->strings["Partners"] = "";
-$a->strings["Cohabiting"] = "";
-$a->strings["Common law"] = "";
-$a->strings["Happy"] = "";
-$a->strings["Not looking"] = "";
-$a->strings["Swinger"] = "";
-$a->strings["Betrayed"] = "";
-$a->strings["Separated"] = "";
-$a->strings["Unstable"] = "";
-$a->strings["Divorced"] = "";
-$a->strings["Imaginarily divorced"] = "";
-$a->strings["Widowed"] = "";
-$a->strings["Uncertain"] = "";
-$a->strings["It's complicated"] = "";
-$a->strings["Don't care"] = "";
-$a->strings["Ask me"] = "";
-$a->strings["Site Admin"] = "";
-$a->strings["Address Book"] = "";
-$a->strings["Mood"] = "";
-$a->strings["Probe"] = "";
-$a->strings["Suggest"] = "";
-$a->strings["Random Channel"] = "";
-$a->strings["Invite"] = "";
-$a->strings["Features"] = "";
-$a->strings["Language"] = "";
-$a->strings["Post"] = "";
-$a->strings["Profile Photo"] = "";
-$a->strings["Update"] = "";
-$a->strings["Install"] = "";
-$a->strings["Purchase"] = "";
-$a->strings["Missing room name"] = "";
-$a->strings["Duplicate room name"] = "";
-$a->strings["Invalid room specifier."] = "";
-$a->strings["Room not found."] = "";
-$a->strings["Room is full"] = "";
-$a->strings["Please choose"] = "";
-$a->strings["Agree"] = "";
-$a->strings["Disagree"] = "";
-$a->strings["Abstain"] = "";
-$a->strings["projectname"] = "";
-$a->strings["Some blurb about what to do when you're new here"] = "";
-$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "";
-$a->strings["Create a new channel"] = "";
-$a->strings["Current Channel"] = "";
-$a->strings["Switch to one of your channels by selecting it."] = "";
-$a->strings["Default Channel"] = "";
-$a->strings["Make Default"] = "";
-$a->strings["%d new messages"] = "";
-$a->strings["%d new introductions"] = "";
-$a->strings["Delegated Channels"] = "";
-$a->strings["Name is required"] = "";
-$a->strings["Key and Secret are required"] = "";
-$a->strings["Diaspora Policy Settings updated."] = "";
-$a->strings["Passwords do not match. Password unchanged."] = "";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "";
-$a->strings["Password changed."] = "";
-$a->strings["Password update failed. Please try again."] = "";
-$a->strings["Not valid email."] = "";
-$a->strings["Protected email address. Cannot change to that email."] = "";
-$a->strings["System failure storing new email. Please try again."] = "";
-$a->strings["Settings updated."] = "";
-$a->strings["No"] = "";
-$a->strings["Yes"] = "";
-$a->strings["Add application"] = "";
-$a->strings["Name of application"] = "";
-$a->strings["Consumer Key"] = "";
-$a->strings["Automatically generated - change if desired. Max length 20"] = "";
-$a->strings["Consumer Secret"] = "";
-$a->strings["Redirect"] = "";
-$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "";
-$a->strings["Icon url"] = "";
-$a->strings["Optional"] = "";
-$a->strings["You can't edit this application."] = "";
-$a->strings["Connected Apps"] = "";
-$a->strings["Client key starts with"] = "";
-$a->strings["No name"] = "";
-$a->strings["Remove authorization"] = "";
-$a->strings["No feature settings configured"] = "";
-$a->strings["Feature/Addon Settings"] = "";
-$a->strings["Settings for the built-in Diaspora emulator"] = "";
-$a->strings["Allow any Diaspora member to comment on your public posts"] = "";
-$a->strings["Diaspora Policy Settings"] = "";
-$a->strings["Prevent your hashtags from being redirected to other sites"] = "";
-$a->strings["Account Settings"] = "";
-$a->strings["Enter New Password:"] = "";
-$a->strings["Confirm New Password:"] = "";
-$a->strings["Leave password fields blank unless changing"] = "";
-$a->strings["Email Address:"] = "";
-$a->strings["Remove Account"] = "";
-$a->strings["Remove this account including all its channels"] = "";
-$a->strings["Off"] = "";
-$a->strings["On"] = "";
-$a->strings["Additional Features"] = "";
-$a->strings["Connector Settings"] = "";
-$a->strings["No special theme for mobile devices"] = "";
-$a->strings["%s - (Experimental)"] = "";
-$a->strings["mobile"] = "";
-$a->strings["Display Settings"] = "";
-$a->strings["Display Theme:"] = "";
-$a->strings["Mobile Theme:"] = "";
-$a->strings["Enable user zoom on mobile devices"] = "";
-$a->strings["Update browser every xx seconds"] = "";
-$a->strings["Minimum of 10 seconds, no maximum"] = "";
-$a->strings["Maximum number of conversations to load at any time:"] = "";
-$a->strings["Maximum of 100 items"] = "";
-$a->strings["Show emoticons (smilies) as images"] = "";
-$a->strings["Link post titles to source"] = "";
-$a->strings["System Page Layout Editor - (advanced)"] = "";
-$a->strings["Use blog/list mode on channel page"] = "";
-$a->strings["(comments displayed separately)"] = "";
-$a->strings["Use blog/list mode on matrix page"] = "";
-$a->strings["Channel page max height of content (in pixels)"] = "";
-$a->strings["click to expand content exceeding this height"] = "";
-$a->strings["Matrix page max height of content (in pixels)"] = "";
-$a->strings["Nobody except yourself"] = "";
-$a->strings["Only those you specifically allow"] = "";
-$a->strings["Approved connections"] = "";
-$a->strings["Any connections"] = "";
-$a->strings["Anybody on this website"] = "";
-$a->strings["Anybody in this network"] = "";
-$a->strings["Anybody authenticated"] = "";
-$a->strings["Anybody on the internet"] = "";
-$a->strings["Publish your default profile in the network directory"] = "";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "";
-$a->strings["or"] = "";
-$a->strings["Your channel address is"] = "";
-$a->strings["Channel Settings"] = "";
-$a->strings["Basic Settings"] = "";
-$a->strings["Your Timezone:"] = "";
-$a->strings["Default Post Location:"] = "";
-$a->strings["Geographical location to display on your posts"] = "";
-$a->strings["Use Browser Location:"] = "";
-$a->strings["Adult Content"] = "";
-$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "";
-$a->strings["Security and Privacy Settings"] = "";
-$a->strings["Your permissions are already configured. Click to view/adjust"] = "";
-$a->strings["Hide my online presence"] = "";
-$a->strings["Prevents displaying in your profile that you are online"] = "";
-$a->strings["Simple Privacy Settings:"] = "";
-$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "";
-$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "";
-$a->strings["Private - <em>default private, never open or public</em>"] = "";
-$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "";
-$a->strings["Allow others to tag your posts"] = "";
-$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "";
-$a->strings["Advanced Privacy Settings"] = "";
-$a->strings["Expire other channel content after this many days"] = "";
-$a->strings["0 or blank prevents expiration"] = "";
-$a->strings["Maximum Friend Requests/Day:"] = "";
-$a->strings["May reduce spam activity"] = "";
-$a->strings["Default Post Permissions"] = "";
-$a->strings["(click to open/close)"] = "";
-$a->strings["Channel permissions category:"] = "";
-$a->strings["Maximum private messages per day from unknown people:"] = "";
-$a->strings["Useful to reduce spamming"] = "";
-$a->strings["Notification Settings"] = "";
-$a->strings["By default post a status message when:"] = "";
-$a->strings["accepting a friend request"] = "";
-$a->strings["joining a forum/community"] = "";
-$a->strings["making an <em>interesting</em> profile change"] = "";
-$a->strings["Send a notification email when:"] = "";
-$a->strings["You receive a connection request"] = "";
-$a->strings["Your connections are confirmed"] = "";
-$a->strings["Someone writes on your profile wall"] = "";
-$a->strings["Someone writes a followup comment"] = "";
-$a->strings["You receive a private message"] = "";
-$a->strings["You receive a friend suggestion"] = "";
-$a->strings["You are tagged in a post"] = "";
-$a->strings["You are poked/prodded/etc. in a post"] = "";
-$a->strings["Show visual notifications including:"] = "";
-$a->strings["Unseen matrix activity"] = "";
-$a->strings["Unseen channel activity"] = "";
-$a->strings["Unseen private messages"] = "";
-$a->strings["Recommended"] = "";
-$a->strings["Upcoming events"] = "";
-$a->strings["Events today"] = "";
-$a->strings["Upcoming birthdays"] = "";
-$a->strings["Not available in all themes"] = "";
-$a->strings["System (personal) notifications"] = "";
-$a->strings["System info messages"] = "";
-$a->strings["System critical alerts"] = "";
-$a->strings["New connections"] = "";
-$a->strings["System Registrations"] = "";
-$a->strings["Also show new wall posts, private messages and connections under Notices"] = "";
-$a->strings["Notify me of events this many days in advance"] = "";
-$a->strings["Must be greater than 0"] = "";
-$a->strings["Advanced Account/Page Type Settings"] = "";
-$a->strings["Change the behaviour of this account for special situations"] = "";
-$a->strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "";
-$a->strings["Miscellaneous Settings"] = "";
-$a->strings["Personal menu to display in your channel pages"] = "";
-$a->strings["Remove Channel"] = "";
-$a->strings["Remove this channel."] = "";
-$a->strings["Xchan Lookup"] = "";
-$a->strings["Lookup xchan beginning with (or webbie): "] = "";
-$a->strings["Not found."] = "";
-$a->strings["Authorize application connection"] = "";
-$a->strings["Return to your app and insert this Securty Code:"] = "";
-$a->strings["Please login to continue."] = "";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
-$a->strings["Page Title"] = "";
-$a->strings["Channel added."] = "";
-$a->strings["Tag removed"] = "";
-$a->strings["Remove Item Tag"] = "";
-$a->strings["Select a tag to remove: "] = "";
-$a->strings["Remove"] = "";
-$a->strings["Continue"] = "";
-$a->strings["Premium Channel Setup"] = "";
-$a->strings["Enable premium channel connection restrictions"] = "";
-$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "";
-$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "";
-$a->strings["Potential connections will then see the following text before proceeding:"] = "";
-$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "";
-$a->strings["(No specific instructions have been provided by the channel owner.)"] = "";
-$a->strings["Restricted or Premium Channel"] = "";
-$a->strings["Thing updated"] = "";
-$a->strings["Object store: failed"] = "";
-$a->strings["Thing added"] = "";
-$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "";
-$a->strings["Show Thing"] = "";
-$a->strings["item not found."] = "";
-$a->strings["Edit Thing"] = "";
-$a->strings["Select a profile"] = "";
-$a->strings["Post an activity"] = "";
-$a->strings["Only sends to viewers of the applicable profile"] = "";
-$a->strings["Name of thing e.g. something"] = "";
-$a->strings["URL of thing (optional)"] = "";
-$a->strings["URL for photo of thing (optional)"] = "";
-$a->strings["Add Thing to your Profile"] = "";
-$a->strings["Item not available."] = "";
-$a->strings["Fetching URL returns error: %1\$s"] = "";
-$a->strings["\$Projectname"] = "";
-$a->strings["Welcome to %s"] = "";
-$a->strings["Image uploaded but image cropping failed."] = "";
-$a->strings["Image resize failed."] = "";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
-$a->strings["Image exceeds size limit of %d"] = "";
-$a->strings["Unable to process image."] = "";
-$a->strings["Photo not available."] = "";
-$a->strings["Upload File:"] = "";
-$a->strings["Select a profile:"] = "";
-$a->strings["Upload Profile Photo"] = "";
-$a->strings["skip this step"] = "";
-$a->strings["select a photo from your photo albums"] = "";
-$a->strings["Crop Image"] = "";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "";
-$a->strings["Done Editing"] = "";
-$a->strings["Image uploaded successfully."] = "";
-$a->strings["Image upload failed."] = "";
-$a->strings["Image size reduction [%s] failed."] = "";
-$a->strings["Invalid item."] = "";
-$a->strings["Channel not found."] = "";
-$a->strings["Page not found."] = "";
-$a->strings["Like/Dislike"] = "";
-$a->strings["This action is restricted to members."] = "";
-$a->strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "";
-$a->strings["Invalid request."] = "";
-$a->strings["thing"] = "";
-$a->strings["Channel unavailable."] = "";
-$a->strings["Previous action reversed."] = "";
-$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "";
-$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "";
-$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "";
-$a->strings["Action completed."] = "";
-$a->strings["Thank you."] = "";
-$a->strings["Event can not end before it has started."] = "";
-$a->strings["Unable to generate preview."] = "";
-$a->strings["Event title and start time are required."] = "";
-$a->strings["Event not found."] = "";
-$a->strings["l, F j"] = "";
-$a->strings["Edit event"] = "";
-$a->strings["Delete event"] = "";
-$a->strings["Create New Event"] = "";
-$a->strings["Previous"] = "";
-$a->strings["Next"] = "";
-$a->strings["Export"] = "";
-$a->strings["Event removed"] = "";
-$a->strings["Failed to remove event"] = "";
-$a->strings["Event details"] = "";
-$a->strings["Starting date and Title are required."] = "";
-$a->strings["Categories (comma-separated list)"] = "";
-$a->strings["Event Starts:"] = "";
-$a->strings["Finish date/time is not known or not relevant"] = "";
-$a->strings["Event Finishes:"] = "";
-$a->strings["Adjust for viewer timezone"] = "";
-$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "";
-$a->strings["Description:"] = "";
-$a->strings["Title:"] = "";
-$a->strings["Share this event"] = "";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
-$a->strings["Public Sites"] = "";
-$a->strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "";
-$a->strings["Rate this hub"] = "";
-$a->strings["Site URL"] = "";
-$a->strings["Access Type"] = "";
-$a->strings["Registration Policy"] = "";
-$a->strings["Location"] = "";
-$a->strings["View hub ratings"] = "";
-$a->strings["Rate"] = "";
-$a->strings["View ratings"] = "";
-$a->strings["Edit post"] = "";
-$a->strings["\$Projectname channel"] = "";
-$a->strings["Collection created."] = "";
-$a->strings["Could not create collection."] = "";
-$a->strings["Collection updated."] = "";
-$a->strings["Create a collection of channels."] = "";
-$a->strings["Collection Name: "] = "";
-$a->strings["Members are visible to other channels"] = "";
-$a->strings["Collection removed."] = "";
-$a->strings["Unable to remove collection."] = "";
-$a->strings["Collection Editor"] = "";
-$a->strings["Members"] = "";
-$a->strings["All Connected Channels"] = "";
-$a->strings["Click on a channel to add or remove."] = "";
-$a->strings["Version %s"] = "";
-$a->strings["Installed plugins/addons/apps:"] = "";
-$a->strings["No installed plugins/addons/apps"] = "";
-$a->strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "";
-$a->strings["Tag: "] = "";
-$a->strings["Last background fetch: "] = "";
-$a->strings["Running at web location"] = "";
-$a->strings["Please visit <a href=\"https://redmatrix.me\">redmatrix.me</a> to learn more about \$Projectname."] = "";
-$a->strings["Bug reports and issues: please visit"] = "";
-$a->strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = "";
-$a->strings["Site Administrators"] = "";
-$a->strings["Help:"] = "";
-$a->strings["Not Found"] = "";
-$a->strings["\$Projectname Server - Setup"] = "";
-$a->strings["Could not connect to database."] = "";
-$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "";
-$a->strings["Could not create table."] = "";
-$a->strings["Your site database has been installed."] = "";
-$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "";
-$a->strings["Please see the file \"install/INSTALL.txt\"."] = "";
-$a->strings["System check"] = "";
-$a->strings["Check again"] = "";
-$a->strings["Database connection"] = "";
-$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "";
-$a->strings["Database Server Name"] = "";
-$a->strings["Default is localhost"] = "";
-$a->strings["Database Port"] = "";
-$a->strings["Communication port number - use 0 for default"] = "";
-$a->strings["Database Login Name"] = "";
-$a->strings["Database Login Password"] = "";
-$a->strings["Database Name"] = "";
-$a->strings["Database Type"] = "";
-$a->strings["Site administrator email address"] = "";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "";
-$a->strings["Website URL"] = "";
-$a->strings["Please use SSL (https) URL if available."] = "";
-$a->strings["Please select a default timezone for your website"] = "";
-$a->strings["Site settings"] = "";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "";
-$a->strings["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."] = "";
-$a->strings["PHP executable path"] = "";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
-$a->strings["Command line PHP"] = "";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "";
-$a->strings["This is required for message delivery to work."] = "";
-$a->strings["PHP register_argc_argv"] = "";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "";
-$a->strings["Generate encryption keys"] = "";
-$a->strings["libCurl PHP module"] = "";
-$a->strings["GD graphics PHP module"] = "";
-$a->strings["OpenSSL PHP module"] = "";
-$a->strings["mysqli or postgres PHP module"] = "";
-$a->strings["mb_string PHP module"] = "";
-$a->strings["mcrypt PHP module"] = "";
-$a->strings["Apache mod_rewrite module"] = "";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "";
-$a->strings["proc_open"] = "";
-$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "";
-$a->strings["Error: libCURL PHP module required but not installed."] = "";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "";
-$a->strings["Error: openssl PHP module required but not installed."] = "";
-$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "";
-$a->strings["Error: mb_string PHP module required but not installed."] = "";
-$a->strings["Error: mcrypt PHP module required but not installed."] = "";
-$a->strings["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."] = "";
-$a->strings["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."] = "";
-$a->strings["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."] = "";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "";
-$a->strings[".htconfig.php is writable"] = "";
-$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
-$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "";
-$a->strings["%s is writable"] = "";
-$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "";
-$a->strings["store is writable"] = "";
-$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "";
-$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "";
-$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "";
-$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "";
-$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "";
-$a->strings["Providers are available that issue free certificates which are browser-valid."] = "";
-$a->strings["SSL certificate validation"] = "";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "";
-$a->strings["Url rewrite is working"] = "";
-$a->strings["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."] = "";
-$a->strings["Errors encountered creating database tables."] = "";
-$a->strings["<h1>What next</h1>"] = "";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
-$a->strings["No channel."] = "";
-$a->strings["Common connections"] = "";
-$a->strings["No connections in common."] = "";
-$a->strings["This site is not a directory server"] = "";
-$a->strings["Could not access contact record."] = "";
-$a->strings["Could not locate selected profile."] = "";
-$a->strings["Connection updated."] = "";
-$a->strings["Failed to update connection record."] = "";
-$a->strings["Blocked"] = "";
-$a->strings["Ignored"] = "";
-$a->strings["Hidden"] = "";
-$a->strings["Archived"] = "";
-$a->strings["Suggest new connections"] = "";
-$a->strings["New Connections"] = "";
-$a->strings["Show pending (new) connections"] = "";
-$a->strings["All Connections"] = "";
-$a->strings["Show all connections"] = "";
-$a->strings["Unblocked"] = "";
-$a->strings["Only show unblocked connections"] = "";
-$a->strings["Only show blocked connections"] = "";
-$a->strings["Only show ignored connections"] = "";
-$a->strings["Only show archived connections"] = "";
-$a->strings["Only show hidden connections"] = "";
-$a->strings["%1\$s [%2\$s]"] = "";
-$a->strings["Edit connection"] = "";
-$a->strings["Search your connections"] = "";
-$a->strings["Finding: "] = "";
-$a->strings["Block Name"] = "";
-$a->strings["Block Title"] = "";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
-$a->strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "";
-$a->strings["Page owner information could not be retrieved."] = "";
-$a->strings["Album not found."] = "";
-$a->strings["Delete Album"] = "";
-$a->strings["Delete Photo"] = "";
-$a->strings["Public access denied."] = "";
-$a->strings["No photos selected"] = "";
-$a->strings["Access to this item is restricted."] = "";
-$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "";
-$a->strings["%1$.2f MB photo storage used."] = "";
-$a->strings["Upload Photos"] = "";
-$a->strings["Enter a new album name"] = "";
-$a->strings["or select an existing one (doubleclick)"] = "";
-$a->strings["Create a status post for this upload"] = "";
-$a->strings["Album name could not be decoded"] = "";
-$a->strings["Contact Photos"] = "";
-$a->strings["Show Newest First"] = "";
-$a->strings["Show Oldest First"] = "";
-$a->strings["View Photo"] = "";
-$a->strings["Edit Album"] = "";
-$a->strings["Permission denied. Access to this item may be restricted."] = "";
-$a->strings["Photo not available"] = "";
-$a->strings["Use as profile photo"] = "";
-$a->strings["Private Photo"] = "";
-$a->strings["View Full Size"] = "";
-$a->strings["Edit photo"] = "";
-$a->strings["Rotate CW (right)"] = "";
-$a->strings["Rotate CCW (left)"] = "";
-$a->strings["Caption"] = "";
-$a->strings["Add a Tag"] = "";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "";
-$a->strings["Flag as adult in album view"] = "";
-$a->strings["In This Photo:"] = "";
-$a->strings["Map"] = "";
-$a->strings["View Album"] = "";
-$a->strings["Recent Photos"] = "";
-$a->strings["Profile Match"] = "";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "";
-$a->strings["is interested in:"] = "";
-$a->strings["No matches"] = "";
-$a->strings["Away"] = "";
-$a->strings["Online"] = "";
-$a->strings["Select a bookmark folder"] = "";
-$a->strings["Save Bookmark"] = "";
-$a->strings["URL of bookmark"] = "";
-$a->strings["Description"] = "";
-$a->strings["Or enter new bookmark folder name"] = "";
-$a->strings["No more system notifications."] = "";
-$a->strings["System Notifications"] = "";
-$a->strings["network"] = "";
-$a->strings["RSS"] = "";
-$a->strings["Layout updated."] = "";
-$a->strings["Edit System Page Description"] = "";
-$a->strings["Layout not found."] = "";
-$a->strings["Module Name:"] = "";
-$a->strings["Layout Help"] = "";
-$a->strings["- select -"] = "";
-$a->strings["Your service plan only allows %d channels."] = "";
-$a->strings["Nothing to import."] = "";
-$a->strings["Unable to download data from old server"] = "";
-$a->strings["Imported file is empty."] = "";
-$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "";
-$a->strings["Unable to create a unique channel address. Import failed."] = "";
-$a->strings["Channel clone failed. Import failed."] = "";
-$a->strings["Cloned channel not found. Import failed."] = "";
-$a->strings["Import completed."] = "";
-$a->strings["You must be logged in to use this feature."] = "";
-$a->strings["Import Channel"] = "";
-$a->strings["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."] = "";
-$a->strings["File to Upload"] = "";
-$a->strings["Or provide the old server/hub details"] = "";
-$a->strings["Your old identity address (xyz@example.com)"] = "";
-$a->strings["Your old login email address"] = "";
-$a->strings["Your old login password"] = "";
-$a->strings["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."] = "";
-$a->strings["Make this hub my primary location"] = "";
-$a->strings["Import existing posts if possible"] = "";
-$a->strings["Item not found"] = "";
-$a->strings["Edit Layout"] = "";
-$a->strings["Delete layout?"] = "";
-$a->strings["Insert YouTube video"] = "";
-$a->strings["Insert Vorbis [.ogg] video"] = "";
-$a->strings["Insert Vorbis [.ogg] audio"] = "";
-$a->strings["Layout Description (Optional)"] = "";
-$a->strings["Layout Name"] = "";
-$a->strings["You must be logged in to see this page."] = "";
-$a->strings["Room not found"] = "";
-$a->strings["Leave Room"] = "";
-$a->strings["Delete This Room"] = "";
-$a->strings["I am away right now"] = "";
-$a->strings["I am online"] = "";
-$a->strings["Bookmark this room"] = "";
-$a->strings["New Chatroom"] = "";
-$a->strings["Chatroom Name"] = "";
-$a->strings["%1\$s's Chatrooms"] = "";
-$a->strings["Delete webpage?"] = "";
-$a->strings["Page link title"] = "";
-$a->strings["Edit Webpage"] = "";
-$a->strings["This directory server requires an access token"] = "";
-$a->strings["No valid account found."] = "";
-$a->strings["Password reset request issued. Check your email."] = "";
-$a->strings["Site Member (%s)"] = "";
-$a->strings["Password reset requested at %s"] = "";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "";
-$a->strings["Password Reset"] = "";
-$a->strings["Your password has been reset as requested."] = "";
-$a->strings["Your new password is"] = "";
-$a->strings["Save or copy your new password - and then"] = "";
-$a->strings["click here to login"] = "";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "";
-$a->strings["Your password has changed at %s"] = "";
-$a->strings["Forgot your Password?"] = "";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "";
-$a->strings["Email Address"] = "";
-$a->strings["Reset"] = "";
-$a->strings["Website:"] = "";
-$a->strings["Remote Channel [%s] (not yet known on this site)"] = "";
-$a->strings["Rating (this information is public)"] = "";
-$a->strings["Optionally explain your rating (this information is public)"] = "";
-$a->strings["Item is not editable"] = "";
-$a->strings["Delete item?"] = "";
-$a->strings["Total invitation limit exceeded."] = "";
-$a->strings["%s : Not a valid email address."] = "";
-$a->strings["Please join us on Red"] = "";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
-$a->strings["%s : Message delivery failed."] = "";
-$a->strings["%d message sent."] = array(
+App::$strings["show more"] = "";
+App::$strings["Visible to your default audience"] = "";
+App::$strings["Show"] = "";
+App::$strings["Don't show"] = "";
+App::$strings["Permissions"] = "";
+App::$strings["Item was not found."] = "";
+App::$strings["No source file."] = "";
+App::$strings["Cannot locate file to replace"] = "";
+App::$strings["Cannot locate file to revise/update"] = "";
+App::$strings["File exceeds size limit of %d"] = "";
+App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "";
+App::$strings["File upload failed. Possible system limit or action terminated."] = "";
+App::$strings["Stored file could not be verified. Upload failed."] = "";
+App::$strings["Path not available."] = "";
+App::$strings["Empty pathname"] = "";
+App::$strings["duplicate filename or path"] = "";
+App::$strings["Path not found."] = "";
+App::$strings["mkdir failed."] = "";
+App::$strings["database storage failed."] = "";
+App::$strings["Unable to obtain identity information from database"] = "";
+App::$strings["Empty name"] = "";
+App::$strings["Name too long"] = "";
+App::$strings["No account identifier"] = "";
+App::$strings["Nickname is required."] = "";
+App::$strings["Reserved nickname. Please choose another."] = "";
+App::$strings["Nickname has unsupported characters or is already being used on this site."] = "";
+App::$strings["Unable to retrieve created identity"] = "";
+App::$strings["Default Profile"] = "";
+App::$strings["Requested channel is not available."] = "";
+App::$strings["Requested profile is not available."] = "";
+App::$strings["Change profile photo"] = "";
+App::$strings["Profiles"] = "";
+App::$strings["Manage/edit profiles"] = "";
+App::$strings["Create New Profile"] = "";
+App::$strings["Profile Image"] = "";
+App::$strings["visible to everybody"] = "";
+App::$strings["Edit visibility"] = "";
+App::$strings["Gender:"] = "";
+App::$strings["Status:"] = "";
+App::$strings["Homepage:"] = "";
+App::$strings["Online Now"] = "";
+App::$strings["g A l F d"] = "";
+App::$strings["F d"] = "";
+App::$strings["[today]"] = "";
+App::$strings["Birthday Reminders"] = "";
+App::$strings["Birthdays this week:"] = "";
+App::$strings["[No description]"] = "";
+App::$strings["Event Reminders"] = "";
+App::$strings["Events this week:"] = "";
+App::$strings["Profile"] = "";
+App::$strings["Full Name:"] = "";
+App::$strings["Like this channel"] = "";
+App::$strings["j F, Y"] = "";
+App::$strings["j F"] = "";
+App::$strings["Birthday:"] = "";
+App::$strings["Age:"] = "";
+App::$strings["for %1\$d %2\$s"] = "";
+App::$strings["Sexual Preference:"] = "";
+App::$strings["Hometown:"] = "";
+App::$strings["Tags:"] = "";
+App::$strings["Political Views:"] = "";
+App::$strings["Religion:"] = "";
+App::$strings["About:"] = "";
+App::$strings["Hobbies/Interests:"] = "";
+App::$strings["Likes:"] = "";
+App::$strings["Dislikes:"] = "";
+App::$strings["Contact information and Social Networks:"] = "";
+App::$strings["My other channels:"] = "";
+App::$strings["Musical interests:"] = "";
+App::$strings["Books, literature:"] = "";
+App::$strings["Television:"] = "";
+App::$strings["Film/dance/culture/entertainment:"] = "";
+App::$strings["Love/Romance:"] = "";
+App::$strings["Work/employment:"] = "";
+App::$strings["School/education:"] = "";
+App::$strings["Like this thing"] = "";
+App::$strings["Male"] = "";
+App::$strings["Female"] = "";
+App::$strings["Currently Male"] = "";
+App::$strings["Currently Female"] = "";
+App::$strings["Mostly Male"] = "";
+App::$strings["Mostly Female"] = "";
+App::$strings["Transgender"] = "";
+App::$strings["Intersex"] = "";
+App::$strings["Transsexual"] = "";
+App::$strings["Hermaphrodite"] = "";
+App::$strings["Neuter"] = "";
+App::$strings["Non-specific"] = "";
+App::$strings["Undecided"] = "";
+App::$strings["Males"] = "";
+App::$strings["Females"] = "";
+App::$strings["Gay"] = "";
+App::$strings["Lesbian"] = "";
+App::$strings["No Preference"] = "";
+App::$strings["Bisexual"] = "";
+App::$strings["Autosexual"] = "";
+App::$strings["Abstinent"] = "";
+App::$strings["Virgin"] = "";
+App::$strings["Deviant"] = "";
+App::$strings["Fetish"] = "";
+App::$strings["Oodles"] = "";
+App::$strings["Nonsexual"] = "";
+App::$strings["Single"] = "";
+App::$strings["Lonely"] = "";
+App::$strings["Available"] = "";
+App::$strings["Unavailable"] = "";
+App::$strings["Has crush"] = "";
+App::$strings["Infatuated"] = "";
+App::$strings["Dating"] = "";
+App::$strings["Unfaithful"] = "";
+App::$strings["Sex Addict"] = "";
+App::$strings["Friends/Benefits"] = "";
+App::$strings["Casual"] = "";
+App::$strings["Engaged"] = "";
+App::$strings["Married"] = "";
+App::$strings["Imaginarily married"] = "";
+App::$strings["Partners"] = "";
+App::$strings["Cohabiting"] = "";
+App::$strings["Common law"] = "";
+App::$strings["Happy"] = "";
+App::$strings["Not looking"] = "";
+App::$strings["Swinger"] = "";
+App::$strings["Betrayed"] = "";
+App::$strings["Separated"] = "";
+App::$strings["Unstable"] = "";
+App::$strings["Divorced"] = "";
+App::$strings["Imaginarily divorced"] = "";
+App::$strings["Widowed"] = "";
+App::$strings["Uncertain"] = "";
+App::$strings["It's complicated"] = "";
+App::$strings["Don't care"] = "";
+App::$strings["Ask me"] = "";
+App::$strings["Site Admin"] = "";
+App::$strings["Address Book"] = "";
+App::$strings["Mood"] = "";
+App::$strings["Probe"] = "";
+App::$strings["Suggest"] = "";
+App::$strings["Random Channel"] = "";
+App::$strings["Invite"] = "";
+App::$strings["Features"] = "";
+App::$strings["Language"] = "";
+App::$strings["Post"] = "";
+App::$strings["Profile Photo"] = "";
+App::$strings["Update"] = "";
+App::$strings["Install"] = "";
+App::$strings["Purchase"] = "";
+App::$strings["Missing room name"] = "";
+App::$strings["Duplicate room name"] = "";
+App::$strings["Invalid room specifier."] = "";
+App::$strings["Room not found."] = "";
+App::$strings["Room is full"] = "";
+App::$strings["Please choose"] = "";
+App::$strings["Agree"] = "";
+App::$strings["Disagree"] = "";
+App::$strings["Abstain"] = "";
+App::$strings["projectname"] = "";
+App::$strings["Some blurb about what to do when you're new here"] = "";
+App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "";
+App::$strings["Create a new channel"] = "";
+App::$strings["Current Channel"] = "";
+App::$strings["Switch to one of your channels by selecting it."] = "";
+App::$strings["Default Channel"] = "";
+App::$strings["Make Default"] = "";
+App::$strings["%d new messages"] = "";
+App::$strings["%d new introductions"] = "";
+App::$strings["Delegated Channels"] = "";
+App::$strings["Name is required"] = "";
+App::$strings["Key and Secret are required"] = "";
+App::$strings["Diaspora Policy Settings updated."] = "";
+App::$strings["Passwords do not match. Password unchanged."] = "";
+App::$strings["Empty passwords are not allowed. Password unchanged."] = "";
+App::$strings["Password changed."] = "";
+App::$strings["Password update failed. Please try again."] = "";
+App::$strings["Not valid email."] = "";
+App::$strings["Protected email address. Cannot change to that email."] = "";
+App::$strings["System failure storing new email. Please try again."] = "";
+App::$strings["Settings updated."] = "";
+App::$strings["No"] = "";
+App::$strings["Yes"] = "";
+App::$strings["Add application"] = "";
+App::$strings["Name of application"] = "";
+App::$strings["Consumer Key"] = "";
+App::$strings["Automatically generated - change if desired. Max length 20"] = "";
+App::$strings["Consumer Secret"] = "";
+App::$strings["Redirect"] = "";
+App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "";
+App::$strings["Icon url"] = "";
+App::$strings["Optional"] = "";
+App::$strings["You can't edit this application."] = "";
+App::$strings["Connected Apps"] = "";
+App::$strings["Client key starts with"] = "";
+App::$strings["No name"] = "";
+App::$strings["Remove authorization"] = "";
+App::$strings["No feature settings configured"] = "";
+App::$strings["Feature/Addon Settings"] = "";
+App::$strings["Settings for the built-in Diaspora emulator"] = "";
+App::$strings["Allow any Diaspora member to comment on your public posts"] = "";
+App::$strings["Diaspora Policy Settings"] = "";
+App::$strings["Prevent your hashtags from being redirected to other sites"] = "";
+App::$strings["Account Settings"] = "";
+App::$strings["Enter New Password:"] = "";
+App::$strings["Confirm New Password:"] = "";
+App::$strings["Leave password fields blank unless changing"] = "";
+App::$strings["Email Address:"] = "";
+App::$strings["Remove Account"] = "";
+App::$strings["Remove this account including all its channels"] = "";
+App::$strings["Off"] = "";
+App::$strings["On"] = "";
+App::$strings["Additional Features"] = "";
+App::$strings["Connector Settings"] = "";
+App::$strings["No special theme for mobile devices"] = "";
+App::$strings["%s - (Experimental)"] = "";
+App::$strings["mobile"] = "";
+App::$strings["Display Settings"] = "";
+App::$strings["Display Theme:"] = "";
+App::$strings["Mobile Theme:"] = "";
+App::$strings["Enable user zoom on mobile devices"] = "";
+App::$strings["Update browser every xx seconds"] = "";
+App::$strings["Minimum of 10 seconds, no maximum"] = "";
+App::$strings["Maximum number of conversations to load at any time:"] = "";
+App::$strings["Maximum of 100 items"] = "";
+App::$strings["Show emoticons (smilies) as images"] = "";
+App::$strings["Link post titles to source"] = "";
+App::$strings["System Page Layout Editor - (advanced)"] = "";
+App::$strings["Use blog/list mode on channel page"] = "";
+App::$strings["(comments displayed separately)"] = "";
+App::$strings["Use blog/list mode on matrix page"] = "";
+App::$strings["Channel page max height of content (in pixels)"] = "";
+App::$strings["click to expand content exceeding this height"] = "";
+App::$strings["Matrix page max height of content (in pixels)"] = "";
+App::$strings["Nobody except yourself"] = "";
+App::$strings["Only those you specifically allow"] = "";
+App::$strings["Approved connections"] = "";
+App::$strings["Any connections"] = "";
+App::$strings["Anybody on this website"] = "";
+App::$strings["Anybody in this network"] = "";
+App::$strings["Anybody authenticated"] = "";
+App::$strings["Anybody on the internet"] = "";
+App::$strings["Publish your default profile in the network directory"] = "";
+App::$strings["Allow us to suggest you as a potential friend to new members?"] = "";
+App::$strings["or"] = "";
+App::$strings["Your channel address is"] = "";
+App::$strings["Channel Settings"] = "";
+App::$strings["Basic Settings"] = "";
+App::$strings["Your Timezone:"] = "";
+App::$strings["Default Post Location:"] = "";
+App::$strings["Geographical location to display on your posts"] = "";
+App::$strings["Use Browser Location:"] = "";
+App::$strings["Adult Content"] = "";
+App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "";
+App::$strings["Security and Privacy Settings"] = "";
+App::$strings["Your permissions are already configured. Click to view/adjust"] = "";
+App::$strings["Hide my online presence"] = "";
+App::$strings["Prevents displaying in your profile that you are online"] = "";
+App::$strings["Simple Privacy Settings:"] = "";
+App::$strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "";
+App::$strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "";
+App::$strings["Private - <em>default private, never open or public</em>"] = "";
+App::$strings["Blocked - <em>default blocked to/from everybody</em>"] = "";
+App::$strings["Allow others to tag your posts"] = "";
+App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "";
+App::$strings["Advanced Privacy Settings"] = "";
+App::$strings["Expire other channel content after this many days"] = "";
+App::$strings["0 or blank prevents expiration"] = "";
+App::$strings["Maximum Friend Requests/Day:"] = "";
+App::$strings["May reduce spam activity"] = "";
+App::$strings["Default Post Permissions"] = "";
+App::$strings["(click to open/close)"] = "";
+App::$strings["Channel permissions category:"] = "";
+App::$strings["Maximum private messages per day from unknown people:"] = "";
+App::$strings["Useful to reduce spamming"] = "";
+App::$strings["Notification Settings"] = "";
+App::$strings["By default post a status message when:"] = "";
+App::$strings["accepting a friend request"] = "";
+App::$strings["joining a forum/community"] = "";
+App::$strings["making an <em>interesting</em> profile change"] = "";
+App::$strings["Send a notification email when:"] = "";
+App::$strings["You receive a connection request"] = "";
+App::$strings["Your connections are confirmed"] = "";
+App::$strings["Someone writes on your profile wall"] = "";
+App::$strings["Someone writes a followup comment"] = "";
+App::$strings["You receive a private message"] = "";
+App::$strings["You receive a friend suggestion"] = "";
+App::$strings["You are tagged in a post"] = "";
+App::$strings["You are poked/prodded/etc. in a post"] = "";
+App::$strings["Show visual notifications including:"] = "";
+App::$strings["Unseen matrix activity"] = "";
+App::$strings["Unseen channel activity"] = "";
+App::$strings["Unseen private messages"] = "";
+App::$strings["Recommended"] = "";
+App::$strings["Upcoming events"] = "";
+App::$strings["Events today"] = "";
+App::$strings["Upcoming birthdays"] = "";
+App::$strings["Not available in all themes"] = "";
+App::$strings["System (personal) notifications"] = "";
+App::$strings["System info messages"] = "";
+App::$strings["System critical alerts"] = "";
+App::$strings["New connections"] = "";
+App::$strings["System Registrations"] = "";
+App::$strings["Also show new wall posts, private messages and connections under Notices"] = "";
+App::$strings["Notify me of events this many days in advance"] = "";
+App::$strings["Must be greater than 0"] = "";
+App::$strings["Advanced Account/Page Type Settings"] = "";
+App::$strings["Change the behaviour of this account for special situations"] = "";
+App::$strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "";
+App::$strings["Miscellaneous Settings"] = "";
+App::$strings["Personal menu to display in your channel pages"] = "";
+App::$strings["Remove Channel"] = "";
+App::$strings["Remove this channel."] = "";
+App::$strings["Xchan Lookup"] = "";
+App::$strings["Lookup xchan beginning with (or webbie): "] = "";
+App::$strings["Not found."] = "";
+App::$strings["Authorize application connection"] = "";
+App::$strings["Return to your app and insert this Securty Code:"] = "";
+App::$strings["Please login to continue."] = "";
+App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
+App::$strings["Page Title"] = "";
+App::$strings["Channel added."] = "";
+App::$strings["Tag removed"] = "";
+App::$strings["Remove Item Tag"] = "";
+App::$strings["Select a tag to remove: "] = "";
+App::$strings["Remove"] = "";
+App::$strings["Continue"] = "";
+App::$strings["Premium Channel Setup"] = "";
+App::$strings["Enable premium channel connection restrictions"] = "";
+App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "";
+App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "";
+App::$strings["Potential connections will then see the following text before proceeding:"] = "";
+App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "";
+App::$strings["(No specific instructions have been provided by the channel owner.)"] = "";
+App::$strings["Restricted or Premium Channel"] = "";
+App::$strings["Thing updated"] = "";
+App::$strings["Object store: failed"] = "";
+App::$strings["Thing added"] = "";
+App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "";
+App::$strings["Show Thing"] = "";
+App::$strings["item not found."] = "";
+App::$strings["Edit Thing"] = "";
+App::$strings["Select a profile"] = "";
+App::$strings["Post an activity"] = "";
+App::$strings["Only sends to viewers of the applicable profile"] = "";
+App::$strings["Name of thing e.g. something"] = "";
+App::$strings["URL of thing (optional)"] = "";
+App::$strings["URL for photo of thing (optional)"] = "";
+App::$strings["Add Thing to your Profile"] = "";
+App::$strings["Item not available."] = "";
+App::$strings["Fetching URL returns error: %1\$s"] = "";
+App::$strings["\$Projectname"] = "";
+App::$strings["Welcome to %s"] = "";
+App::$strings["Image uploaded but image cropping failed."] = "";
+App::$strings["Image resize failed."] = "";
+App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
+App::$strings["Image exceeds size limit of %d"] = "";
+App::$strings["Unable to process image."] = "";
+App::$strings["Photo not available."] = "";
+App::$strings["Upload File:"] = "";
+App::$strings["Select a profile:"] = "";
+App::$strings["Upload Profile Photo"] = "";
+App::$strings["skip this step"] = "";
+App::$strings["select a photo from your photo albums"] = "";
+App::$strings["Crop Image"] = "";
+App::$strings["Please adjust the image cropping for optimum viewing."] = "";
+App::$strings["Done Editing"] = "";
+App::$strings["Image uploaded successfully."] = "";
+App::$strings["Image upload failed."] = "";
+App::$strings["Image size reduction [%s] failed."] = "";
+App::$strings["Invalid item."] = "";
+App::$strings["Channel not found."] = "";
+App::$strings["Page not found."] = "";
+App::$strings["Like/Dislike"] = "";
+App::$strings["This action is restricted to members."] = "";
+App::$strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "";
+App::$strings["Invalid request."] = "";
+App::$strings["thing"] = "";
+App::$strings["Channel unavailable."] = "";
+App::$strings["Previous action reversed."] = "";
+App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "";
+App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "";
+App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "";
+App::$strings["%1\$s is attending %2\$s's %3\$s"] = "";
+App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "";
+App::$strings["%1\$s may attend %2\$s's %3\$s"] = "";
+App::$strings["Action completed."] = "";
+App::$strings["Thank you."] = "";
+App::$strings["Event can not end before it has started."] = "";
+App::$strings["Unable to generate preview."] = "";
+App::$strings["Event title and start time are required."] = "";
+App::$strings["Event not found."] = "";
+App::$strings["l, F j"] = "";
+App::$strings["Edit event"] = "";
+App::$strings["Delete event"] = "";
+App::$strings["Create New Event"] = "";
+App::$strings["Previous"] = "";
+App::$strings["Next"] = "";
+App::$strings["Export"] = "";
+App::$strings["Event removed"] = "";
+App::$strings["Failed to remove event"] = "";
+App::$strings["Event details"] = "";
+App::$strings["Starting date and Title are required."] = "";
+App::$strings["Categories (comma-separated list)"] = "";
+App::$strings["Event Starts:"] = "";
+App::$strings["Finish date/time is not known or not relevant"] = "";
+App::$strings["Event Finishes:"] = "";
+App::$strings["Adjust for viewer timezone"] = "";
+App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "";
+App::$strings["Description:"] = "";
+App::$strings["Title:"] = "";
+App::$strings["Share this event"] = "";
+App::$strings["%1\$s is following %2\$s's %3\$s"] = "";
+App::$strings["Public Sites"] = "";
+App::$strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "";
+App::$strings["Rate this hub"] = "";
+App::$strings["Site URL"] = "";
+App::$strings["Access Type"] = "";
+App::$strings["Registration Policy"] = "";
+App::$strings["Location"] = "";
+App::$strings["View hub ratings"] = "";
+App::$strings["Rate"] = "";
+App::$strings["View ratings"] = "";
+App::$strings["Edit post"] = "";
+App::$strings["\$Projectname channel"] = "";
+App::$strings["Collection created."] = "";
+App::$strings["Could not create collection."] = "";
+App::$strings["Collection updated."] = "";
+App::$strings["Create a collection of channels."] = "";
+App::$strings["Collection Name: "] = "";
+App::$strings["Members are visible to other channels"] = "";
+App::$strings["Collection removed."] = "";
+App::$strings["Unable to remove collection."] = "";
+App::$strings["Collection Editor"] = "";
+App::$strings["Members"] = "";
+App::$strings["All Connected Channels"] = "";
+App::$strings["Click on a channel to add or remove."] = "";
+App::$strings["Version %s"] = "";
+App::$strings["Installed plugins/addons/apps:"] = "";
+App::$strings["No installed plugins/addons/apps"] = "";
+App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "";
+App::$strings["Tag: "] = "";
+App::$strings["Last background fetch: "] = "";
+App::$strings["Running at web location"] = "";
+App::$strings["Please visit <a href=\"https://redmatrix.me\">redmatrix.me</a> to learn more about \$Projectname."] = "";
+App::$strings["Bug reports and issues: please visit"] = "";
+App::$strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = "";
+App::$strings["Site Administrators"] = "";
+App::$strings["Help:"] = "";
+App::$strings["Not Found"] = "";
+App::$strings["\$Projectname Server - Setup"] = "";
+App::$strings["Could not connect to database."] = "";
+App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "";
+App::$strings["Could not create table."] = "";
+App::$strings["Your site database has been installed."] = "";
+App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "";
+App::$strings["Please see the file \"install/INSTALL.txt\"."] = "";
+App::$strings["System check"] = "";
+App::$strings["Check again"] = "";
+App::$strings["Database connection"] = "";
+App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "";
+App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "";
+App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "";
+App::$strings["Database Server Name"] = "";
+App::$strings["Default is localhost"] = "";
+App::$strings["Database Port"] = "";
+App::$strings["Communication port number - use 0 for default"] = "";
+App::$strings["Database Login Name"] = "";
+App::$strings["Database Login Password"] = "";
+App::$strings["Database Name"] = "";
+App::$strings["Database Type"] = "";
+App::$strings["Site administrator email address"] = "";
+App::$strings["Your account email address must match this in order to use the web admin panel."] = "";
+App::$strings["Website URL"] = "";
+App::$strings["Please use SSL (https) URL if available."] = "";
+App::$strings["Please select a default timezone for your website"] = "";
+App::$strings["Site settings"] = "";
+App::$strings["Could not find a command line version of PHP in the web server PATH."] = "";
+App::$strings["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."] = "";
+App::$strings["PHP executable path"] = "";
+App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
+App::$strings["Command line PHP"] = "";
+App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "";
+App::$strings["This is required for message delivery to work."] = "";
+App::$strings["PHP register_argc_argv"] = "";
+App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
+App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "";
+App::$strings["Generate encryption keys"] = "";
+App::$strings["libCurl PHP module"] = "";
+App::$strings["GD graphics PHP module"] = "";
+App::$strings["OpenSSL PHP module"] = "";
+App::$strings["mysqli or postgres PHP module"] = "";
+App::$strings["mb_string PHP module"] = "";
+App::$strings["mcrypt PHP module"] = "";
+App::$strings["Apache mod_rewrite module"] = "";
+App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "";
+App::$strings["proc_open"] = "";
+App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "";
+App::$strings["Error: libCURL PHP module required but not installed."] = "";
+App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "";
+App::$strings["Error: openssl PHP module required but not installed."] = "";
+App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "";
+App::$strings["Error: mb_string PHP module required but not installed."] = "";
+App::$strings["Error: mcrypt PHP module required but not installed."] = "";
+App::$strings["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."] = "";
+App::$strings["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."] = "";
+App::$strings["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."] = "";
+App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "";
+App::$strings[".htconfig.php is writable"] = "";
+App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
+App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "";
+App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
+App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "";
+App::$strings["%s is writable"] = "";
+App::$strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "";
+App::$strings["store is writable"] = "";
+App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "";
+App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "";
+App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "";
+App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "";
+App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "";
+App::$strings["Providers are available that issue free certificates which are browser-valid."] = "";
+App::$strings["SSL certificate validation"] = "";
+App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "";
+App::$strings["Url rewrite is working"] = "";
+App::$strings["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."] = "";
+App::$strings["Errors encountered creating database tables."] = "";
+App::$strings["<h1>What next</h1>"] = "";
+App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
+App::$strings["No channel."] = "";
+App::$strings["Common connections"] = "";
+App::$strings["No connections in common."] = "";
+App::$strings["This site is not a directory server"] = "";
+App::$strings["Could not access contact record."] = "";
+App::$strings["Could not locate selected profile."] = "";
+App::$strings["Connection updated."] = "";
+App::$strings["Failed to update connection record."] = "";
+App::$strings["Blocked"] = "";
+App::$strings["Ignored"] = "";
+App::$strings["Hidden"] = "";
+App::$strings["Archived"] = "";
+App::$strings["Suggest new connections"] = "";
+App::$strings["New Connections"] = "";
+App::$strings["Show pending (new) connections"] = "";
+App::$strings["All Connections"] = "";
+App::$strings["Show all connections"] = "";
+App::$strings["Unblocked"] = "";
+App::$strings["Only show unblocked connections"] = "";
+App::$strings["Only show blocked connections"] = "";
+App::$strings["Only show ignored connections"] = "";
+App::$strings["Only show archived connections"] = "";
+App::$strings["Only show hidden connections"] = "";
+App::$strings["%1\$s [%2\$s]"] = "";
+App::$strings["Edit connection"] = "";
+App::$strings["Search your connections"] = "";
+App::$strings["Finding: "] = "";
+App::$strings["Block Name"] = "";
+App::$strings["Block Title"] = "";
+App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
+App::$strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "";
+App::$strings["Page owner information could not be retrieved."] = "";
+App::$strings["Album not found."] = "";
+App::$strings["Delete Album"] = "";
+App::$strings["Delete Photo"] = "";
+App::$strings["Public access denied."] = "";
+App::$strings["No photos selected"] = "";
+App::$strings["Access to this item is restricted."] = "";
+App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "";
+App::$strings["%1$.2f MB photo storage used."] = "";
+App::$strings["Upload Photos"] = "";
+App::$strings["Enter a new album name"] = "";
+App::$strings["or select an existing one (doubleclick)"] = "";
+App::$strings["Create a status post for this upload"] = "";
+App::$strings["Album name could not be decoded"] = "";
+App::$strings["Contact Photos"] = "";
+App::$strings["Show Newest First"] = "";
+App::$strings["Show Oldest First"] = "";
+App::$strings["View Photo"] = "";
+App::$strings["Edit Album"] = "";
+App::$strings["Permission denied. Access to this item may be restricted."] = "";
+App::$strings["Photo not available"] = "";
+App::$strings["Use as profile photo"] = "";
+App::$strings["Private Photo"] = "";
+App::$strings["View Full Size"] = "";
+App::$strings["Edit photo"] = "";
+App::$strings["Rotate CW (right)"] = "";
+App::$strings["Rotate CCW (left)"] = "";
+App::$strings["Caption"] = "";
+App::$strings["Add a Tag"] = "";
+App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "";
+App::$strings["Flag as adult in album view"] = "";
+App::$strings["In This Photo:"] = "";
+App::$strings["Map"] = "";
+App::$strings["View Album"] = "";
+App::$strings["Recent Photos"] = "";
+App::$strings["Profile Match"] = "";
+App::$strings["No keywords to match. Please add keywords to your default profile."] = "";
+App::$strings["is interested in:"] = "";
+App::$strings["No matches"] = "";
+App::$strings["Away"] = "";
+App::$strings["Online"] = "";
+App::$strings["Select a bookmark folder"] = "";
+App::$strings["Save Bookmark"] = "";
+App::$strings["URL of bookmark"] = "";
+App::$strings["Description"] = "";
+App::$strings["Or enter new bookmark folder name"] = "";
+App::$strings["No more system notifications."] = "";
+App::$strings["System Notifications"] = "";
+App::$strings["network"] = "";
+App::$strings["RSS"] = "";
+App::$strings["Layout updated."] = "";
+App::$strings["Edit System Page Description"] = "";
+App::$strings["Layout not found."] = "";
+App::$strings["Module Name:"] = "";
+App::$strings["Layout Help"] = "";
+App::$strings["- select -"] = "";
+App::$strings["Your service plan only allows %d channels."] = "";
+App::$strings["Nothing to import."] = "";
+App::$strings["Unable to download data from old server"] = "";
+App::$strings["Imported file is empty."] = "";
+App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "";
+App::$strings["Unable to create a unique channel address. Import failed."] = "";
+App::$strings["Channel clone failed. Import failed."] = "";
+App::$strings["Cloned channel not found. Import failed."] = "";
+App::$strings["Import completed."] = "";
+App::$strings["You must be logged in to use this feature."] = "";
+App::$strings["Import Channel"] = "";
+App::$strings["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."] = "";
+App::$strings["File to Upload"] = "";
+App::$strings["Or provide the old server/hub details"] = "";
+App::$strings["Your old identity address (xyz@example.com)"] = "";
+App::$strings["Your old login email address"] = "";
+App::$strings["Your old login password"] = "";
+App::$strings["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."] = "";
+App::$strings["Make this hub my primary location"] = "";
+App::$strings["Import existing posts if possible"] = "";
+App::$strings["Item not found"] = "";
+App::$strings["Edit Layout"] = "";
+App::$strings["Delete layout?"] = "";
+App::$strings["Insert YouTube video"] = "";
+App::$strings["Insert Vorbis [.ogg] video"] = "";
+App::$strings["Insert Vorbis [.ogg] audio"] = "";
+App::$strings["Layout Description (Optional)"] = "";
+App::$strings["Layout Name"] = "";
+App::$strings["You must be logged in to see this page."] = "";
+App::$strings["Room not found"] = "";
+App::$strings["Leave Room"] = "";
+App::$strings["Delete This Room"] = "";
+App::$strings["I am away right now"] = "";
+App::$strings["I am online"] = "";
+App::$strings["Bookmark this room"] = "";
+App::$strings["New Chatroom"] = "";
+App::$strings["Chatroom Name"] = "";
+App::$strings["%1\$s's Chatrooms"] = "";
+App::$strings["Delete webpage?"] = "";
+App::$strings["Page link title"] = "";
+App::$strings["Edit Webpage"] = "";
+App::$strings["This directory server requires an access token"] = "";
+App::$strings["No valid account found."] = "";
+App::$strings["Password reset request issued. Check your email."] = "";
+App::$strings["Site Member (%s)"] = "";
+App::$strings["Password reset requested at %s"] = "";
+App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "";
+App::$strings["Password Reset"] = "";
+App::$strings["Your password has been reset as requested."] = "";
+App::$strings["Your new password is"] = "";
+App::$strings["Save or copy your new password - and then"] = "";
+App::$strings["click here to login"] = "";
+App::$strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "";
+App::$strings["Your password has changed at %s"] = "";
+App::$strings["Forgot your Password?"] = "";
+App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "";
+App::$strings["Email Address"] = "";
+App::$strings["Reset"] = "";
+App::$strings["Website:"] = "";
+App::$strings["Remote Channel [%s] (not yet known on this site)"] = "";
+App::$strings["Rating (this information is public)"] = "";
+App::$strings["Optionally explain your rating (this information is public)"] = "";
+App::$strings["Item is not editable"] = "";
+App::$strings["Delete item?"] = "";
+App::$strings["Total invitation limit exceeded."] = "";
+App::$strings["%s : Not a valid email address."] = "";
+App::$strings["Please join us on Red"] = "";
+App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "";
+App::$strings["%s : Message delivery failed."] = "";
+App::$strings["%d message sent."] = array(
0 => "",
1 => "",
);
-$a->strings["You have no more invitations available"] = "";
-$a->strings["Send invitations"] = "";
-$a->strings["Enter email addresses, one per line:"] = "";
-$a->strings["Your message:"] = "";
-$a->strings["Please join my community on \$Projectname."] = "";
-$a->strings["You will need to supply this invitation code: "] = "";
-$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "";
-$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "";
-$a->strings["or visit "] = "";
-$a->strings["3. Click [Connect]"] = "";
-$a->strings["Location not found."] = "";
-$a->strings["Primary location cannot be removed."] = "";
-$a->strings["No locations found."] = "";
-$a->strings["Manage Channel Locations"] = "";
-$a->strings["Location (address)"] = "";
-$a->strings["Primary Location"] = "";
-$a->strings["Drop location"] = "";
-$a->strings["Failed to create source. No channel selected."] = "";
-$a->strings["Source created."] = "";
-$a->strings["Source updated."] = "";
-$a->strings["*"] = "";
-$a->strings["Manage remote sources of content for your channel."] = "";
-$a->strings["New Source"] = "";
-$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "";
-$a->strings["Only import content with these words (one per line)"] = "";
-$a->strings["Leave blank to import all public content"] = "";
-$a->strings["Channel Name"] = "";
-$a->strings["Source not found."] = "";
-$a->strings["Edit Source"] = "";
-$a->strings["Delete Source"] = "";
-$a->strings["Source removed"] = "";
-$a->strings["Unable to remove source."] = "";
-$a->strings["Unable to update menu."] = "";
-$a->strings["Unable to create menu."] = "";
-$a->strings["Menu Name"] = "";
-$a->strings["Unique name (not visible on webpage) - required"] = "";
-$a->strings["Menu Title"] = "";
-$a->strings["Visible on webpage - leave empty for no title"] = "";
-$a->strings["Allow Bookmarks"] = "";
-$a->strings["Menu may be used to store saved bookmarks"] = "";
-$a->strings["Submit and proceed"] = "";
-$a->strings["Drop"] = "";
-$a->strings["Bookmarks allowed"] = "";
-$a->strings["Delete this menu"] = "";
-$a->strings["Edit menu contents"] = "";
-$a->strings["Edit this menu"] = "";
-$a->strings["Menu could not be deleted."] = "";
-$a->strings["Menu not found."] = "";
-$a->strings["Edit Menu"] = "";
-$a->strings["Add or remove entries to this menu"] = "";
-$a->strings["Menu name"] = "";
-$a->strings["Must be unique, only seen by you"] = "";
-$a->strings["Menu title"] = "";
-$a->strings["Menu title as seen by others"] = "";
-$a->strings["Allow bookmarks"] = "";
-$a->strings["Modify"] = "";
-$a->strings["Permission Denied."] = "";
-$a->strings["File not found."] = "";
-$a->strings["Edit file permissions"] = "";
-$a->strings["Set/edit permissions"] = "";
-$a->strings["Include all files and sub folders"] = "";
-$a->strings["Return to file list"] = "";
-$a->strings["Copy/paste this code to attach file to a post"] = "";
-$a->strings["Copy/paste this URL to link file from a web page"] = "";
-$a->strings["Share this file"] = "";
-$a->strings["Show URL to this file"] = "";
-$a->strings["Notify your contacts about this file"] = "";
-$a->strings["Contact not found."] = "";
-$a->strings["Friend suggestion sent."] = "";
-$a->strings["Suggest Friends"] = "";
-$a->strings["Suggest a friend for %s"] = "";
-$a->strings["Hub not found."] = "";
-$a->strings["Poke/Prod"] = "";
-$a->strings["poke, prod or do other things to somebody"] = "";
-$a->strings["Recipient"] = "";
-$a->strings["Choose what you wish to do to recipient"] = "";
-$a->strings["Make this post private"] = "";
-$a->strings["Invalid profile identifier."] = "";
-$a->strings["Profile Visibility Editor"] = "";
-$a->strings["Click on a contact to add or remove."] = "";
-$a->strings["Visible To"] = "";
-$a->strings["webpage"] = "";
-$a->strings["block"] = "";
-$a->strings["layout"] = "";
-$a->strings["%s element installed"] = "";
-$a->strings["Profile not found."] = "";
-$a->strings["Profile deleted."] = "";
-$a->strings["Profile-"] = "";
-$a->strings["New profile created."] = "";
-$a->strings["Profile unavailable to clone."] = "";
-$a->strings["Profile unavailable to export."] = "";
-$a->strings["Profile Name is required."] = "";
-$a->strings["Marital Status"] = "";
-$a->strings["Romantic Partner"] = "";
-$a->strings["Likes"] = "";
-$a->strings["Dislikes"] = "";
-$a->strings["Work/Employment"] = "";
-$a->strings["Religion"] = "";
-$a->strings["Political Views"] = "";
-$a->strings["Gender"] = "";
-$a->strings["Sexual Preference"] = "";
-$a->strings["Homepage"] = "";
-$a->strings["Interests"] = "";
-$a->strings["Address"] = "";
-$a->strings["Profile updated."] = "";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "";
-$a->strings["Edit Profile Details"] = "";
-$a->strings["View this profile"] = "";
-$a->strings["Change Profile Photo"] = "";
-$a->strings["Create a new profile using these settings"] = "";
-$a->strings["Clone this profile"] = "";
-$a->strings["Delete this profile"] = "";
-$a->strings["Import profile from file"] = "";
-$a->strings["Export profile to file"] = "";
-$a->strings["Profile Name:"] = "";
-$a->strings["Your Full Name:"] = "";
-$a->strings["Title/Description:"] = "";
-$a->strings["Your Gender:"] = "";
-$a->strings["Birthday :"] = "";
-$a->strings["Street Address:"] = "";
-$a->strings["Locality/City:"] = "";
-$a->strings["Postal/Zip Code:"] = "";
-$a->strings["Country:"] = "";
-$a->strings["Region/State:"] = "";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "";
-$a->strings["Who: (if applicable)"] = "";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "";
-$a->strings["Since [date]:"] = "";
-$a->strings["Homepage URL:"] = "";
-$a->strings["Religious Views:"] = "";
-$a->strings["Keywords:"] = "";
-$a->strings["Example: fishing photography software"] = "";
-$a->strings["Used in directory listings"] = "";
-$a->strings["Tell us about yourself..."] = "";
-$a->strings["Hobbies/Interests"] = "";
-$a->strings["Contact information and Social Networks"] = "";
-$a->strings["My other channels"] = "";
-$a->strings["Musical interests"] = "";
-$a->strings["Books, literature"] = "";
-$a->strings["Television"] = "";
-$a->strings["Film/dance/culture/entertainment"] = "";
-$a->strings["Love/romance"] = "";
-$a->strings["Work/employment"] = "";
-$a->strings["School/education"] = "";
-$a->strings["This is your default profile."] = "";
-$a->strings["Age: "] = "";
-$a->strings["Edit/Manage Profiles"] = "";
-$a->strings["Add profile things"] = "";
-$a->strings["Include desirable objects in your profile"] = "";
-$a->strings["No ratings"] = "";
-$a->strings["Ratings"] = "";
-$a->strings["Rating: "] = "";
-$a->strings["Website: "] = "";
-$a->strings["Description: "] = "";
-$a->strings["Source of Item"] = "";
-$a->strings["OpenID protocol error. No ID returned."] = "";
-$a->strings["Welcome %s. Remote authentication successful."] = "";
-$a->strings["%d rating"] = array(
+App::$strings["You have no more invitations available"] = "";
+App::$strings["Send invitations"] = "";
+App::$strings["Enter email addresses, one per line:"] = "";
+App::$strings["Your message:"] = "";
+App::$strings["Please join my community on \$Projectname."] = "";
+App::$strings["You will need to supply this invitation code: "] = "";
+App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "";
+App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "";
+App::$strings["or visit "] = "";
+App::$strings["3. Click [Connect]"] = "";
+App::$strings["Location not found."] = "";
+App::$strings["Primary location cannot be removed."] = "";
+App::$strings["No locations found."] = "";
+App::$strings["Manage Channel Locations"] = "";
+App::$strings["Location (address)"] = "";
+App::$strings["Primary Location"] = "";
+App::$strings["Drop location"] = "";
+App::$strings["Failed to create source. No channel selected."] = "";
+App::$strings["Source created."] = "";
+App::$strings["Source updated."] = "";
+App::$strings["*"] = "";
+App::$strings["Manage remote sources of content for your channel."] = "";
+App::$strings["New Source"] = "";
+App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "";
+App::$strings["Only import content with these words (one per line)"] = "";
+App::$strings["Leave blank to import all public content"] = "";
+App::$strings["Channel Name"] = "";
+App::$strings["Source not found."] = "";
+App::$strings["Edit Source"] = "";
+App::$strings["Delete Source"] = "";
+App::$strings["Source removed"] = "";
+App::$strings["Unable to remove source."] = "";
+App::$strings["Unable to update menu."] = "";
+App::$strings["Unable to create menu."] = "";
+App::$strings["Menu Name"] = "";
+App::$strings["Unique name (not visible on webpage) - required"] = "";
+App::$strings["Menu Title"] = "";
+App::$strings["Visible on webpage - leave empty for no title"] = "";
+App::$strings["Allow Bookmarks"] = "";
+App::$strings["Menu may be used to store saved bookmarks"] = "";
+App::$strings["Submit and proceed"] = "";
+App::$strings["Drop"] = "";
+App::$strings["Bookmarks allowed"] = "";
+App::$strings["Delete this menu"] = "";
+App::$strings["Edit menu contents"] = "";
+App::$strings["Edit this menu"] = "";
+App::$strings["Menu could not be deleted."] = "";
+App::$strings["Menu not found."] = "";
+App::$strings["Edit Menu"] = "";
+App::$strings["Add or remove entries to this menu"] = "";
+App::$strings["Menu name"] = "";
+App::$strings["Must be unique, only seen by you"] = "";
+App::$strings["Menu title"] = "";
+App::$strings["Menu title as seen by others"] = "";
+App::$strings["Allow bookmarks"] = "";
+App::$strings["Modify"] = "";
+App::$strings["Permission Denied."] = "";
+App::$strings["File not found."] = "";
+App::$strings["Edit file permissions"] = "";
+App::$strings["Set/edit permissions"] = "";
+App::$strings["Include all files and sub folders"] = "";
+App::$strings["Return to file list"] = "";
+App::$strings["Copy/paste this code to attach file to a post"] = "";
+App::$strings["Copy/paste this URL to link file from a web page"] = "";
+App::$strings["Share this file"] = "";
+App::$strings["Show URL to this file"] = "";
+App::$strings["Notify your contacts about this file"] = "";
+App::$strings["Contact not found."] = "";
+App::$strings["Friend suggestion sent."] = "";
+App::$strings["Suggest Friends"] = "";
+App::$strings["Suggest a friend for %s"] = "";
+App::$strings["Hub not found."] = "";
+App::$strings["Poke/Prod"] = "";
+App::$strings["poke, prod or do other things to somebody"] = "";
+App::$strings["Recipient"] = "";
+App::$strings["Choose what you wish to do to recipient"] = "";
+App::$strings["Make this post private"] = "";
+App::$strings["Invalid profile identifier."] = "";
+App::$strings["Profile Visibility Editor"] = "";
+App::$strings["Click on a contact to add or remove."] = "";
+App::$strings["Visible To"] = "";
+App::$strings["webpage"] = "";
+App::$strings["block"] = "";
+App::$strings["layout"] = "";
+App::$strings["%s element installed"] = "";
+App::$strings["Profile not found."] = "";
+App::$strings["Profile deleted."] = "";
+App::$strings["Profile-"] = "";
+App::$strings["New profile created."] = "";
+App::$strings["Profile unavailable to clone."] = "";
+App::$strings["Profile unavailable to export."] = "";
+App::$strings["Profile Name is required."] = "";
+App::$strings["Marital Status"] = "";
+App::$strings["Romantic Partner"] = "";
+App::$strings["Likes"] = "";
+App::$strings["Dislikes"] = "";
+App::$strings["Work/Employment"] = "";
+App::$strings["Religion"] = "";
+App::$strings["Political Views"] = "";
+App::$strings["Gender"] = "";
+App::$strings["Sexual Preference"] = "";
+App::$strings["Homepage"] = "";
+App::$strings["Interests"] = "";
+App::$strings["Address"] = "";
+App::$strings["Profile updated."] = "";
+App::$strings["Hide your contact/friend list from viewers of this profile?"] = "";
+App::$strings["Edit Profile Details"] = "";
+App::$strings["View this profile"] = "";
+App::$strings["Change Profile Photo"] = "";
+App::$strings["Create a new profile using these settings"] = "";
+App::$strings["Clone this profile"] = "";
+App::$strings["Delete this profile"] = "";
+App::$strings["Import profile from file"] = "";
+App::$strings["Export profile to file"] = "";
+App::$strings["Profile Name:"] = "";
+App::$strings["Your Full Name:"] = "";
+App::$strings["Title/Description:"] = "";
+App::$strings["Your Gender:"] = "";
+App::$strings["Birthday :"] = "";
+App::$strings["Street Address:"] = "";
+App::$strings["Locality/City:"] = "";
+App::$strings["Postal/Zip Code:"] = "";
+App::$strings["Country:"] = "";
+App::$strings["Region/State:"] = "";
+App::$strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "";
+App::$strings["Who: (if applicable)"] = "";
+App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "";
+App::$strings["Since [date]:"] = "";
+App::$strings["Homepage URL:"] = "";
+App::$strings["Religious Views:"] = "";
+App::$strings["Keywords:"] = "";
+App::$strings["Example: fishing photography software"] = "";
+App::$strings["Used in directory listings"] = "";
+App::$strings["Tell us about yourself..."] = "";
+App::$strings["Hobbies/Interests"] = "";
+App::$strings["Contact information and Social Networks"] = "";
+App::$strings["My other channels"] = "";
+App::$strings["Musical interests"] = "";
+App::$strings["Books, literature"] = "";
+App::$strings["Television"] = "";
+App::$strings["Film/dance/culture/entertainment"] = "";
+App::$strings["Love/romance"] = "";
+App::$strings["Work/employment"] = "";
+App::$strings["School/education"] = "";
+App::$strings["This is your default profile."] = "";
+App::$strings["Age: "] = "";
+App::$strings["Edit/Manage Profiles"] = "";
+App::$strings["Add profile things"] = "";
+App::$strings["Include desirable objects in your profile"] = "";
+App::$strings["No ratings"] = "";
+App::$strings["Ratings"] = "";
+App::$strings["Rating: "] = "";
+App::$strings["Website: "] = "";
+App::$strings["Description: "] = "";
+App::$strings["Source of Item"] = "";
+App::$strings["OpenID protocol error. No ID returned."] = "";
+App::$strings["Welcome %s. Remote authentication successful."] = "";
+App::$strings["%d rating"] = array(
0 => "",
1 => "",
);
-$a->strings["Gender: "] = "";
-$a->strings["Status: "] = "";
-$a->strings["Homepage: "] = "";
-$a->strings["Hometown: "] = "";
-$a->strings["About: "] = "";
-$a->strings["Public Forum:"] = "";
-$a->strings["Keywords: "] = "";
-$a->strings["Common connections: %s"] = "";
-$a->strings["Finding:"] = "";
-$a->strings["next page"] = "";
-$a->strings["previous page"] = "";
-$a->strings["No entries (some entries may be hidden)."] = "";
-$a->strings["Export Channel"] = "";
-$a->strings["Export your basic channel information to a small file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new hub, but\tdoes not contain your content."] = "";
-$a->strings["Export Content"] = "";
-$a->strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "";
-$a->strings["No connections."] = "";
-$a->strings["Visit %s's profile [%s]"] = "";
-$a->strings["invalid target signature"] = "";
-$a->strings["Theme settings updated."] = "";
-$a->strings["Site"] = "";
-$a->strings["Accounts"] = "";
-$a->strings["Channels"] = "";
-$a->strings["Plugins"] = "";
-$a->strings["Themes"] = "";
-$a->strings["Inspect queue"] = "";
-$a->strings["Profile Config"] = "";
-$a->strings["DB updates"] = "";
-$a->strings["Logs"] = "";
-$a->strings["Plugin Features"] = "";
-$a->strings["User registrations waiting for confirmation"] = "";
-$a->strings["# Accounts"] = "";
-$a->strings["# blocked accounts"] = "";
-$a->strings["# expired accounts"] = "";
-$a->strings["# expiring accounts"] = "";
-$a->strings["# Channels"] = "";
-$a->strings["# primary"] = "";
-$a->strings["# clones"] = "";
-$a->strings["Message queues"] = "";
-$a->strings["Administration"] = "";
-$a->strings["Summary"] = "";
-$a->strings["Registered accounts"] = "";
-$a->strings["Pending registrations"] = "";
-$a->strings["Registered channels"] = "";
-$a->strings["Active plugins"] = "";
-$a->strings["Version"] = "";
-$a->strings["Site settings updated."] = "";
-$a->strings["experimental"] = "";
-$a->strings["unsupported"] = "";
-$a->strings["Yes - with approval"] = "";
-$a->strings["My site is not a public server"] = "";
-$a->strings["My site has paid access only"] = "";
-$a->strings["My site has free access only"] = "";
-$a->strings["My site offers free accounts with optional paid upgrades"] = "";
-$a->strings["Registration"] = "";
-$a->strings["File upload"] = "";
-$a->strings["Policies"] = "";
-$a->strings["Site name"] = "";
-$a->strings["Banner/Logo"] = "";
-$a->strings["Administrator Information"] = "";
-$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "";
-$a->strings["System language"] = "";
-$a->strings["System theme"] = "";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
-$a->strings["Mobile system theme"] = "";
-$a->strings["Theme for mobile devices"] = "";
-$a->strings["Enable Diaspora Protocol"] = "";
-$a->strings["Communicate with Diaspora and Friendica - experimental"] = "";
-$a->strings["Allow Feeds as Connections"] = "";
-$a->strings["(Heavy system resource usage)"] = "";
-$a->strings["Maximum image size"] = "";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
-$a->strings["Does this site allow new member registration?"] = "";
-$a->strings["Which best describes the types of account offered by this hub?"] = "";
-$a->strings["Register text"] = "";
-$a->strings["Will be displayed prominently on the registration page."] = "";
-$a->strings["Accounts abandoned after x days"] = "";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
-$a->strings["Allowed friend domains"] = "";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
-$a->strings["Allowed email domains"] = "";
-$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
-$a->strings["Not allowed email domains"] = "";
-$a->strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "";
-$a->strings["Block public"] = "";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
-$a->strings["Verify Email Addresses"] = "";
-$a->strings["Check to verify email addresses used in account registration (recommended)."] = "";
-$a->strings["Force publish"] = "";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
-$a->strings["Disable discovery tab"] = "";
-$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "";
-$a->strings["No login on Homepage"] = "";
-$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "";
-$a->strings["Proxy user"] = "";
-$a->strings["Proxy URL"] = "";
-$a->strings["Network timeout"] = "";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
-$a->strings["Delivery interval"] = "";
-$a->strings["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."] = "";
-$a->strings["Poll interval"] = "";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
-$a->strings["Maximum Load Average"] = "";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
-$a->strings["Expiration period in days for imported (matrix/network) content"] = "";
-$a->strings["0 for no expiration of imported content"] = "";
-$a->strings["No server found"] = "";
-$a->strings["ID"] = "";
-$a->strings["for channel"] = "";
-$a->strings["on server"] = "";
-$a->strings["Status"] = "";
-$a->strings["Server"] = "";
-$a->strings["Update has been marked successful"] = "";
-$a->strings["Executing %s failed. Check system logs."] = "";
-$a->strings["Update %s was successfully applied."] = "";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
-$a->strings["Update function %s could not be found."] = "";
-$a->strings["No failed updates."] = "";
-$a->strings["Failed Updates"] = "";
-$a->strings["Mark success (if update was manually applied)"] = "";
-$a->strings["Attempt to execute this update step automatically"] = "";
-$a->strings["Queue Statistics"] = "";
-$a->strings["Total Entries"] = "";
-$a->strings["Priority"] = "";
-$a->strings["Destination URL"] = "";
-$a->strings["Mark hub permanently offline"] = "";
-$a->strings["Empty queue for this hub"] = "";
-$a->strings["Last known contact"] = "";
-$a->strings["%s user blocked/unblocked"] = array(
+App::$strings["Gender: "] = "";
+App::$strings["Status: "] = "";
+App::$strings["Homepage: "] = "";
+App::$strings["Hometown: "] = "";
+App::$strings["About: "] = "";
+App::$strings["Public Forum:"] = "";
+App::$strings["Keywords: "] = "";
+App::$strings["Common connections: %s"] = "";
+App::$strings["Finding:"] = "";
+App::$strings["next page"] = "";
+App::$strings["previous page"] = "";
+App::$strings["No entries (some entries may be hidden)."] = "";
+App::$strings["Export Channel"] = "";
+App::$strings["Export your basic channel information to a small file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new hub, but\tdoes not contain your content."] = "";
+App::$strings["Export Content"] = "";
+App::$strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "";
+App::$strings["No connections."] = "";
+App::$strings["Visit %s's profile [%s]"] = "";
+App::$strings["invalid target signature"] = "";
+App::$strings["Theme settings updated."] = "";
+App::$strings["Site"] = "";
+App::$strings["Accounts"] = "";
+App::$strings["Channels"] = "";
+App::$strings["Plugins"] = "";
+App::$strings["Themes"] = "";
+App::$strings["Inspect queue"] = "";
+App::$strings["Profile Config"] = "";
+App::$strings["DB updates"] = "";
+App::$strings["Logs"] = "";
+App::$strings["Plugin Features"] = "";
+App::$strings["User registrations waiting for confirmation"] = "";
+App::$strings["# Accounts"] = "";
+App::$strings["# blocked accounts"] = "";
+App::$strings["# expired accounts"] = "";
+App::$strings["# expiring accounts"] = "";
+App::$strings["# Channels"] = "";
+App::$strings["# primary"] = "";
+App::$strings["# clones"] = "";
+App::$strings["Message queues"] = "";
+App::$strings["Administration"] = "";
+App::$strings["Summary"] = "";
+App::$strings["Registered accounts"] = "";
+App::$strings["Pending registrations"] = "";
+App::$strings["Registered channels"] = "";
+App::$strings["Active plugins"] = "";
+App::$strings["Version"] = "";
+App::$strings["Site settings updated."] = "";
+App::$strings["experimental"] = "";
+App::$strings["unsupported"] = "";
+App::$strings["Yes - with approval"] = "";
+App::$strings["My site is not a public server"] = "";
+App::$strings["My site has paid access only"] = "";
+App::$strings["My site has free access only"] = "";
+App::$strings["My site offers free accounts with optional paid upgrades"] = "";
+App::$strings["Registration"] = "";
+App::$strings["File upload"] = "";
+App::$strings["Policies"] = "";
+App::$strings["Site name"] = "";
+App::$strings["Banner/Logo"] = "";
+App::$strings["Administrator Information"] = "";
+App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "";
+App::$strings["System language"] = "";
+App::$strings["System theme"] = "";
+App::$strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
+App::$strings["Mobile system theme"] = "";
+App::$strings["Theme for mobile devices"] = "";
+App::$strings["Enable Diaspora Protocol"] = "";
+App::$strings["Communicate with Diaspora and Friendica - experimental"] = "";
+App::$strings["Allow Feeds as Connections"] = "";
+App::$strings["(Heavy system resource usage)"] = "";
+App::$strings["Maximum image size"] = "";
+App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
+App::$strings["Does this site allow new member registration?"] = "";
+App::$strings["Which best describes the types of account offered by this hub?"] = "";
+App::$strings["Register text"] = "";
+App::$strings["Will be displayed prominently on the registration page."] = "";
+App::$strings["Accounts abandoned after x days"] = "";
+App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
+App::$strings["Allowed friend domains"] = "";
+App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
+App::$strings["Allowed email domains"] = "";
+App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
+App::$strings["Not allowed email domains"] = "";
+App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "";
+App::$strings["Block public"] = "";
+App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
+App::$strings["Verify Email Addresses"] = "";
+App::$strings["Check to verify email addresses used in account registration (recommended)."] = "";
+App::$strings["Force publish"] = "";
+App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "";
+App::$strings["Disable discovery tab"] = "";
+App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "";
+App::$strings["No login on Homepage"] = "";
+App::$strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "";
+App::$strings["Proxy user"] = "";
+App::$strings["Proxy URL"] = "";
+App::$strings["Network timeout"] = "";
+App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
+App::$strings["Delivery interval"] = "";
+App::$strings["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."] = "";
+App::$strings["Poll interval"] = "";
+App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
+App::$strings["Maximum Load Average"] = "";
+App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
+App::$strings["Expiration period in days for imported (matrix/network) content"] = "";
+App::$strings["0 for no expiration of imported content"] = "";
+App::$strings["No server found"] = "";
+App::$strings["ID"] = "";
+App::$strings["for channel"] = "";
+App::$strings["on server"] = "";
+App::$strings["Status"] = "";
+App::$strings["Server"] = "";
+App::$strings["Update has been marked successful"] = "";
+App::$strings["Executing %s failed. Check system logs."] = "";
+App::$strings["Update %s was successfully applied."] = "";
+App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "";
+App::$strings["Update function %s could not be found."] = "";
+App::$strings["No failed updates."] = "";
+App::$strings["Failed Updates"] = "";
+App::$strings["Mark success (if update was manually applied)"] = "";
+App::$strings["Attempt to execute this update step automatically"] = "";
+App::$strings["Queue Statistics"] = "";
+App::$strings["Total Entries"] = "";
+App::$strings["Priority"] = "";
+App::$strings["Destination URL"] = "";
+App::$strings["Mark hub permanently offline"] = "";
+App::$strings["Empty queue for this hub"] = "";
+App::$strings["Last known contact"] = "";
+App::$strings["%s user blocked/unblocked"] = array(
0 => "",
1 => "",
);
-$a->strings["%s user deleted"] = array(
+App::$strings["%s user deleted"] = array(
0 => "",
1 => "",
);
-$a->strings["Account not found"] = "";
-$a->strings["User '%s' blocked"] = "";
-$a->strings["User '%s' unblocked"] = "";
-$a->strings["Users"] = "";
-$a->strings["select all"] = "";
-$a->strings["User registrations waiting for confirm"] = "";
-$a->strings["Request date"] = "";
-$a->strings["No registrations."] = "";
-$a->strings["Approve"] = "";
-$a->strings["Deny"] = "";
-$a->strings["Block"] = "";
-$a->strings["Unblock"] = "";
-$a->strings["Register date"] = "";
-$a->strings["Last login"] = "";
-$a->strings["Expires"] = "";
-$a->strings["Service Class"] = "";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
-$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
-$a->strings["%s channel censored/uncensored"] = array(
+App::$strings["Account not found"] = "";
+App::$strings["User '%s' blocked"] = "";
+App::$strings["User '%s' unblocked"] = "";
+App::$strings["Users"] = "";
+App::$strings["select all"] = "";
+App::$strings["User registrations waiting for confirm"] = "";
+App::$strings["Request date"] = "";
+App::$strings["No registrations."] = "";
+App::$strings["Approve"] = "";
+App::$strings["Deny"] = "";
+App::$strings["Block"] = "";
+App::$strings["Unblock"] = "";
+App::$strings["Register date"] = "";
+App::$strings["Last login"] = "";
+App::$strings["Expires"] = "";
+App::$strings["Service Class"] = "";
+App::$strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
+App::$strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
+App::$strings["%s channel censored/uncensored"] = array(
0 => "",
1 => "",
);
-$a->strings["%s channel deleted"] = array(
+App::$strings["%s channel deleted"] = array(
0 => "",
1 => "",
);
-$a->strings["Channel not found"] = "";
-$a->strings["Channel '%s' deleted"] = "";
-$a->strings["Channel '%s' uncensored"] = "";
-$a->strings["Channel '%s' censored"] = "";
-$a->strings["Censor"] = "";
-$a->strings["Uncensor"] = "";
-$a->strings["UID"] = "";
-$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
-$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
-$a->strings["Plugin %s disabled."] = "";
-$a->strings["Plugin %s enabled."] = "";
-$a->strings["Disable"] = "";
-$a->strings["Enable"] = "";
-$a->strings["Toggle"] = "";
-$a->strings["Author: "] = "";
-$a->strings["Maintainer: "] = "";
-$a->strings["No themes found."] = "";
-$a->strings["Screenshot"] = "";
-$a->strings["[Experimental]"] = "";
-$a->strings["[Unsupported]"] = "";
-$a->strings["Log settings updated."] = "";
-$a->strings["Clear"] = "";
-$a->strings["Debugging"] = "";
-$a->strings["Log file"] = "";
-$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "";
-$a->strings["Log level"] = "";
-$a->strings["New Profile Field"] = "";
-$a->strings["Field nickname"] = "";
-$a->strings["System name of field"] = "";
-$a->strings["Input type"] = "";
-$a->strings["Field Name"] = "";
-$a->strings["Label on profile pages"] = "";
-$a->strings["Help text"] = "";
-$a->strings["Additional info (optional)"] = "";
-$a->strings["Field definition not found"] = "";
-$a->strings["Edit Profile Field"] = "";
-$a->strings["Unable to find your hub."] = "";
-$a->strings["Post successful."] = "";
-$a->strings["Edit Block"] = "";
-$a->strings["Delete block?"] = "";
-$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "";
-$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "";
-$a->strings["Passwords do not match."] = "";
-$a->strings["Registration successful. Please check your email for validation instructions."] = "";
-$a->strings["Your registration is pending approval by the site owner."] = "";
-$a->strings["Your registration can not be processed."] = "";
-$a->strings["Registration on this site/hub is by approval only."] = "";
-$a->strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
-$a->strings["Terms of Service"] = "";
-$a->strings["I accept the %s for this website"] = "";
-$a->strings["I am over 13 years of age and accept the %s for this website"] = "";
-$a->strings["Membership on this site is by invitation only."] = "";
-$a->strings["Please enter your invitation code"] = "";
-$a->strings["Your email address"] = "";
-$a->strings["Choose a password"] = "";
-$a->strings["Please re-enter your password"] = "";
-$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "";
-$a->strings["Remove This Account"] = "";
-$a->strings["WARNING: "] = "";
-$a->strings["This account and all its channels will be completely removed from the network. "] = "";
-$a->strings["This action is permanent and can not be undone!"] = "";
-$a->strings["Please enter your password for verification:"] = "";
-$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "";
-$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "";
-$a->strings["Unable to locate original post."] = "";
-$a->strings["Empty post discarded."] = "";
-$a->strings["Executable content type not permitted to this channel."] = "";
-$a->strings["System error. Post not saved."] = "";
-$a->strings["Unable to obtain post information from database."] = "";
-$a->strings["You have reached your limit of %1$.0f top level posts."] = "";
-$a->strings["You have reached your limit of %1$.0f webpages."] = "";
-$a->strings["[Embedded content - reload page to view]"] = "";
-$a->strings["Remote privacy information not available."] = "";
-$a->strings["Visible to:"] = "";
-$a->strings["Comanche page description language help"] = "";
-$a->strings["Layout Description"] = "";
-$a->strings["Download PDL file"] = "";
-$a->strings["First Name"] = "";
-$a->strings["Last Name"] = "";
-$a->strings["Nickname"] = "";
-$a->strings["Full Name"] = "";
-$a->strings["Profile Photo 16px"] = "";
-$a->strings["Profile Photo 32px"] = "";
-$a->strings["Profile Photo 48px"] = "";
-$a->strings["Profile Photo 64px"] = "";
-$a->strings["Profile Photo 80px"] = "";
-$a->strings["Profile Photo 128px"] = "";
-$a->strings["Timezone"] = "";
-$a->strings["Homepage URL"] = "";
-$a->strings["Birth Year"] = "";
-$a->strings["Birth Month"] = "";
-$a->strings["Birth Day"] = "";
-$a->strings["Birthdate"] = "";
-$a->strings["Conversation removed."] = "";
-$a->strings["No messages."] = "";
-$a->strings["Delete conversation"] = "";
-$a->strings["D, d M Y - g:i A"] = "";
-$a->strings["Unable to create element."] = "";
-$a->strings["Unable to update menu element."] = "";
-$a->strings["Unable to add menu element."] = "";
-$a->strings["Menu Item Permissions"] = "";
-$a->strings["Link Name"] = "";
-$a->strings["Link or Submenu Target"] = "";
-$a->strings["Enter URL of the link or select a menu name to create a submenu"] = "";
-$a->strings["Use magic-auth if available"] = "";
-$a->strings["Open link in new window"] = "";
-$a->strings["Order in list"] = "";
-$a->strings["Higher numbers will sink to bottom of listing"] = "";
-$a->strings["Submit and finish"] = "";
-$a->strings["Submit and continue"] = "";
-$a->strings["Menu:"] = "";
-$a->strings["Link Target"] = "";
-$a->strings["Edit menu"] = "";
-$a->strings["Edit element"] = "";
-$a->strings["Drop element"] = "";
-$a->strings["New element"] = "";
-$a->strings["Edit this menu container"] = "";
-$a->strings["Add menu element"] = "";
-$a->strings["Delete this menu item"] = "";
-$a->strings["Edit this menu item"] = "";
-$a->strings["Menu item not found."] = "";
-$a->strings["Menu item deleted."] = "";
-$a->strings["Menu item could not be deleted."] = "";
-$a->strings["Edit Menu Element"] = "";
-$a->strings["Link text"] = "";
-$a->strings["Set your current mood and tell your friends"] = "";
-$a->strings["Total votes"] = "";
-$a->strings["Average Rating"] = "";
-$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "";
-$a->strings["Remove This Channel"] = "";
-$a->strings["This channel will be completely removed from the network. "] = "";
-$a->strings["Remove this channel and all its clones from the network"] = "";
-$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "";
-$a->strings["is now connected to"] = "";
-$a->strings["Could not access address book record."] = "";
-$a->strings["Refresh failed - channel is currently unavailable."] = "";
-$a->strings["Channel has been unblocked"] = "";
-$a->strings["Channel has been blocked"] = "";
-$a->strings["Unable to set address book parameters."] = "";
-$a->strings["Channel has been unignored"] = "";
-$a->strings["Channel has been ignored"] = "";
-$a->strings["Channel has been unarchived"] = "";
-$a->strings["Channel has been archived"] = "";
-$a->strings["Channel has been unhidden"] = "";
-$a->strings["Channel has been hidden"] = "";
-$a->strings["Channel has been approved"] = "";
-$a->strings["Channel has been unapproved"] = "";
-$a->strings["Connection has been removed."] = "";
-$a->strings["View %s's profile"] = "";
-$a->strings["Refresh Permissions"] = "";
-$a->strings["Fetch updated permissions"] = "";
-$a->strings["Recent Activity"] = "";
-$a->strings["View recent posts and comments"] = "";
-$a->strings["Block (or Unblock) all communications with this connection"] = "";
-$a->strings["Unignore"] = "";
-$a->strings["Ignore"] = "";
-$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "";
-$a->strings["Unarchive"] = "";
-$a->strings["Archive"] = "";
-$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "";
-$a->strings["Unhide"] = "";
-$a->strings["Hide"] = "";
-$a->strings["Hide or Unhide this connection from your other connections"] = "";
-$a->strings["Delete this connection"] = "";
-$a->strings["Approve this connection"] = "";
-$a->strings["Accept connection to allow communication"] = "";
-$a->strings["Connections: settings for %s"] = "";
-$a->strings["Apply these permissions automatically"] = "";
-$a->strings["Apply the permissions indicated on this page to all new connections."] = "";
-$a->strings["Slide to adjust your degree of friendship"] = "";
-$a->strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may <em>not</em> be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "";
-$a->strings["inherited"] = "";
-$a->strings["Connection has no individual permissions!"] = "";
-$a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "";
-$a->strings["Profile Visibility"] = "";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "";
-$a->strings["Contact Information / Notes"] = "";
-$a->strings["Edit contact notes"] = "";
-$a->strings["Their Settings"] = "";
-$a->strings["My Settings"] = "";
-$a->strings["Default permissions for this channel type have (just) been applied. They have <em>not</em> been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "";
-$a->strings["Clear/Disable Automatic Permissions"] = "";
-$a->strings["Forum Members"] = "";
-$a->strings["Soapbox"] = "";
-$a->strings["Full Sharing (typical social network permissions)"] = "";
-$a->strings["Cautious Sharing "] = "";
-$a->strings["Follow Only"] = "";
-$a->strings["Individual Permissions"] = "";
-$a->strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "";
-$a->strings["Advanced Permissions"] = "";
-$a->strings["Simple Permissions (select one and submit)"] = "";
-$a->strings["Visit %s's profile - %s"] = "";
-$a->strings["Block/Unblock contact"] = "";
-$a->strings["Ignore contact"] = "";
-$a->strings["Repair URL settings"] = "";
-$a->strings["View conversations"] = "";
-$a->strings["Delete contact"] = "";
-$a->strings["Last update:"] = "";
-$a->strings["Update public posts"] = "";
-$a->strings["Update now"] = "";
-$a->strings["Currently blocked"] = "";
-$a->strings["Currently ignored"] = "";
-$a->strings["Currently archived"] = "";
-$a->strings["Currently pending"] = "";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
-$a->strings["The error message was:"] = "";
-$a->strings["Authentication failed."] = "";
-$a->strings["Remote Authentication"] = "";
-$a->strings["Enter your channel address (e.g. channel@example.com)"] = "";
-$a->strings["Authenticate"] = "";
-$a->strings["Unable to lookup recipient."] = "";
-$a->strings["Unable to communicate with requested channel."] = "";
-$a->strings["Cannot verify requested channel."] = "";
-$a->strings["Selected channel has private message restrictions. Send failed."] = "";
-$a->strings["Message deleted."] = "";
-$a->strings["Message recalled."] = "";
-$a->strings["Send Private Message"] = "";
-$a->strings["To:"] = "";
-$a->strings["Subject:"] = "";
-$a->strings["Send"] = "";
-$a->strings["Message not found."] = "";
-$a->strings["Delete message"] = "";
-$a->strings["Recall message"] = "";
-$a->strings["Message has been recalled."] = "";
-$a->strings["Private Conversation"] = "";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
-$a->strings["Send Reply"] = "";
-$a->strings["Invalid request identifier."] = "";
-$a->strings["Discard"] = "";
-$a->strings["Please login."] = "";
-$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "";
-$a->strings["Add a Channel"] = "";
-$a->strings["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."] = "";
-$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "";
-$a->strings["Choose a short nickname"] = "";
-$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "";
-$a->strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "";
-$a->strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "";
-$a->strings["Channel Type"] = "";
-$a->strings["Read more about roles"] = "";
-$a->strings["App installed."] = "";
-$a->strings["Malformed app."] = "";
-$a->strings["Embed code"] = "";
-$a->strings["Edit App"] = "";
-$a->strings["Create App"] = "";
-$a->strings["Name of app"] = "";
-$a->strings["Location (URL) of app"] = "";
-$a->strings["Photo icon URL"] = "";
-$a->strings["80 x 80 pixels - optional"] = "";
-$a->strings["Version ID"] = "";
-$a->strings["Price of app"] = "";
-$a->strings["Location (URL) to purchase app"] = "";
-$a->strings["sent you a private message"] = "";
-$a->strings["added your channel"] = "";
-$a->strings["posted an event"] = "";
-$a->strings["No such group"] = "";
-$a->strings["No such channel"] = "";
-$a->strings["Search Results For:"] = "";
-$a->strings["Collection is empty"] = "";
-$a->strings["Collection: "] = "";
-$a->strings["Connection: "] = "";
-$a->strings["Invalid connection."] = "";
-$a->strings["Ipsum Lorem"] = "";
-$a->strings["Bookmark added"] = "";
-$a->strings["My Bookmarks"] = "";
-$a->strings["My Connections Bookmarks"] = "";
-$a->strings["Insufficient permissions. Request redirected to profile page."] = "";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
-$a->strings["Poll"] = "";
-$a->strings["View Results"] = "";
-$a->strings["No service class restrictions found."] = "";
-$a->strings["Files: shared with me"] = "";
-$a->strings["NEW"] = "";
-$a->strings["Remove all files"] = "";
-$a->strings["Remove this file"] = "";
-$a->strings["Schema Default"] = "";
-$a->strings["Sans-Serif"] = "";
-$a->strings["Monospace"] = "";
-$a->strings["Theme settings"] = "";
-$a->strings["Set scheme"] = "";
-$a->strings["Set font-size for posts and comments"] = "";
-$a->strings["Set font face"] = "";
-$a->strings["Set iconset"] = "";
-$a->strings["Set big shadow size, default 15px 15px 15px"] = "";
-$a->strings["Set small shadow size, default 5px 5px 5px"] = "";
-$a->strings["Set shadow color, default #000"] = "";
-$a->strings["Set radius size, default 5px"] = "";
-$a->strings["Set line-height for posts and comments"] = "";
-$a->strings["Set background image"] = "";
-$a->strings["Set background attachment"] = "";
-$a->strings["Set background color"] = "";
-$a->strings["Set section background image"] = "";
-$a->strings["Set section background color"] = "";
-$a->strings["Set color of items - use hex"] = "";
-$a->strings["Set color of links - use hex"] = "";
-$a->strings["Set max-width for items. Default 400px"] = "";
-$a->strings["Set min-width for items. Default 240px"] = "";
-$a->strings["Set the generic content wrapper width. Default 48%"] = "";
-$a->strings["Set color of fonts - use hex"] = "";
-$a->strings["Set background-size element"] = "";
-$a->strings["Item opacity"] = "";
-$a->strings["Display post previews only"] = "";
-$a->strings["Display side bar on channel page"] = "";
-$a->strings["Colour of the navigation bar"] = "";
-$a->strings["Item float"] = "";
-$a->strings["Left offset of the section element"] = "";
-$a->strings["Right offset of the section element"] = "";
-$a->strings["Section width"] = "";
-$a->strings["Left offset of the aside"] = "";
-$a->strings["Right offset of the aside element"] = "";
-$a->strings["Light (Hubzilla default)"] = "";
-$a->strings["Select scheme"] = "";
-$a->strings["Narrow navbar"] = "";
-$a->strings["Navigation bar background color"] = "";
-$a->strings["Navigation bar gradient top color"] = "";
-$a->strings["Navigation bar gradient bottom color"] = "";
-$a->strings["Navigation active button gradient top color"] = "";
-$a->strings["Navigation active button gradient bottom color"] = "";
-$a->strings["Navigation bar border color "] = "";
-$a->strings["Navigation bar icon color "] = "";
-$a->strings["Navigation bar active icon color "] = "";
-$a->strings["link color"] = "";
-$a->strings["Set font-color for banner"] = "";
-$a->strings["Set the background color"] = "";
-$a->strings["Set the background image"] = "";
-$a->strings["Set the background color of items"] = "";
-$a->strings["Set the background color of comments"] = "";
-$a->strings["Set the border color of comments"] = "";
-$a->strings["Set the indent for comments"] = "";
-$a->strings["Set the basic color for item icons"] = "";
-$a->strings["Set the hover color for item icons"] = "";
-$a->strings["Set font-size for the entire application"] = "";
-$a->strings["Example: 14px"] = "";
-$a->strings["Set font-color for posts and comments"] = "";
-$a->strings["Set radius of corners"] = "";
-$a->strings["Set shadow depth of photos"] = "";
-$a->strings["Set maximum width of content region in pixel"] = "";
-$a->strings["Leave empty for default width"] = "";
-$a->strings["Center page content"] = "";
-$a->strings["Set minimum opacity of nav bar - to hide it"] = "";
-$a->strings["Set size of conversation author photo"] = "";
-$a->strings["Set size of followup author photos"] = "";
-$a->strings["Update %s failed. See error logs."] = "";
-$a->strings["Update Error at %s"] = "";
-$a->strings["Create an account to access services and applications within the Hubzilla"] = "";
-$a->strings["Password"] = "";
-$a->strings["Remember me"] = "";
-$a->strings["Forgot your password?"] = "";
-$a->strings["toggle mobile"] = "";
-$a->strings["Website SSL certificate is not valid. Please correct."] = "";
-$a->strings["[red] Website SSL error for %s"] = "";
-$a->strings["Cron/Scheduled tasks not running."] = "";
-$a->strings["[red] Cron tasks not running on %s"] = "";
+App::$strings["Channel not found"] = "";
+App::$strings["Channel '%s' deleted"] = "";
+App::$strings["Channel '%s' uncensored"] = "";
+App::$strings["Channel '%s' censored"] = "";
+App::$strings["Censor"] = "";
+App::$strings["Uncensor"] = "";
+App::$strings["UID"] = "";
+App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
+App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
+App::$strings["Plugin %s disabled."] = "";
+App::$strings["Plugin %s enabled."] = "";
+App::$strings["Disable"] = "";
+App::$strings["Enable"] = "";
+App::$strings["Toggle"] = "";
+App::$strings["Author: "] = "";
+App::$strings["Maintainer: "] = "";
+App::$strings["No themes found."] = "";
+App::$strings["Screenshot"] = "";
+App::$strings["[Experimental]"] = "";
+App::$strings["[Unsupported]"] = "";
+App::$strings["Log settings updated."] = "";
+App::$strings["Clear"] = "";
+App::$strings["Debugging"] = "";
+App::$strings["Log file"] = "";
+App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "";
+App::$strings["Log level"] = "";
+App::$strings["New Profile Field"] = "";
+App::$strings["Field nickname"] = "";
+App::$strings["System name of field"] = "";
+App::$strings["Input type"] = "";
+App::$strings["Field Name"] = "";
+App::$strings["Label on profile pages"] = "";
+App::$strings["Help text"] = "";
+App::$strings["Additional info (optional)"] = "";
+App::$strings["Field definition not found"] = "";
+App::$strings["Edit Profile Field"] = "";
+App::$strings["Unable to find your hub."] = "";
+App::$strings["Post successful."] = "";
+App::$strings["Edit Block"] = "";
+App::$strings["Delete block?"] = "";
+App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "";
+App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "";
+App::$strings["Passwords do not match."] = "";
+App::$strings["Registration successful. Please check your email for validation instructions."] = "";
+App::$strings["Your registration is pending approval by the site owner."] = "";
+App::$strings["Your registration can not be processed."] = "";
+App::$strings["Registration on this site/hub is by approval only."] = "";
+App::$strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "";
+App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
+App::$strings["Terms of Service"] = "";
+App::$strings["I accept the %s for this website"] = "";
+App::$strings["I am over 13 years of age and accept the %s for this website"] = "";
+App::$strings["Membership on this site is by invitation only."] = "";
+App::$strings["Please enter your invitation code"] = "";
+App::$strings["Your email address"] = "";
+App::$strings["Choose a password"] = "";
+App::$strings["Please re-enter your password"] = "";
+App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "";
+App::$strings["Remove This Account"] = "";
+App::$strings["WARNING: "] = "";
+App::$strings["This account and all its channels will be completely removed from the network. "] = "";
+App::$strings["This action is permanent and can not be undone!"] = "";
+App::$strings["Please enter your password for verification:"] = "";
+App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "";
+App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "";
+App::$strings["Unable to locate original post."] = "";
+App::$strings["Empty post discarded."] = "";
+App::$strings["Executable content type not permitted to this channel."] = "";
+App::$strings["System error. Post not saved."] = "";
+App::$strings["Unable to obtain post information from database."] = "";
+App::$strings["You have reached your limit of %1$.0f top level posts."] = "";
+App::$strings["You have reached your limit of %1$.0f webpages."] = "";
+App::$strings["[Embedded content - reload page to view]"] = "";
+App::$strings["Remote privacy information not available."] = "";
+App::$strings["Visible to:"] = "";
+App::$strings["Comanche page description language help"] = "";
+App::$strings["Layout Description"] = "";
+App::$strings["Download PDL file"] = "";
+App::$strings["First Name"] = "";
+App::$strings["Last Name"] = "";
+App::$strings["Nickname"] = "";
+App::$strings["Full Name"] = "";
+App::$strings["Profile Photo 16px"] = "";
+App::$strings["Profile Photo 32px"] = "";
+App::$strings["Profile Photo 48px"] = "";
+App::$strings["Profile Photo 64px"] = "";
+App::$strings["Profile Photo 80px"] = "";
+App::$strings["Profile Photo 128px"] = "";
+App::$strings["Timezone"] = "";
+App::$strings["Homepage URL"] = "";
+App::$strings["Birth Year"] = "";
+App::$strings["Birth Month"] = "";
+App::$strings["Birth Day"] = "";
+App::$strings["Birthdate"] = "";
+App::$strings["Conversation removed."] = "";
+App::$strings["No messages."] = "";
+App::$strings["Delete conversation"] = "";
+App::$strings["D, d M Y - g:i A"] = "";
+App::$strings["Unable to create element."] = "";
+App::$strings["Unable to update menu element."] = "";
+App::$strings["Unable to add menu element."] = "";
+App::$strings["Menu Item Permissions"] = "";
+App::$strings["Link Name"] = "";
+App::$strings["Link or Submenu Target"] = "";
+App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "";
+App::$strings["Use magic-auth if available"] = "";
+App::$strings["Open link in new window"] = "";
+App::$strings["Order in list"] = "";
+App::$strings["Higher numbers will sink to bottom of listing"] = "";
+App::$strings["Submit and finish"] = "";
+App::$strings["Submit and continue"] = "";
+App::$strings["Menu:"] = "";
+App::$strings["Link Target"] = "";
+App::$strings["Edit menu"] = "";
+App::$strings["Edit element"] = "";
+App::$strings["Drop element"] = "";
+App::$strings["New element"] = "";
+App::$strings["Edit this menu container"] = "";
+App::$strings["Add menu element"] = "";
+App::$strings["Delete this menu item"] = "";
+App::$strings["Edit this menu item"] = "";
+App::$strings["Menu item not found."] = "";
+App::$strings["Menu item deleted."] = "";
+App::$strings["Menu item could not be deleted."] = "";
+App::$strings["Edit Menu Element"] = "";
+App::$strings["Link text"] = "";
+App::$strings["Set your current mood and tell your friends"] = "";
+App::$strings["Total votes"] = "";
+App::$strings["Average Rating"] = "";
+App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "";
+App::$strings["Remove This Channel"] = "";
+App::$strings["This channel will be completely removed from the network. "] = "";
+App::$strings["Remove this channel and all its clones from the network"] = "";
+App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "";
+App::$strings["is now connected to"] = "";
+App::$strings["Could not access address book record."] = "";
+App::$strings["Refresh failed - channel is currently unavailable."] = "";
+App::$strings["Channel has been unblocked"] = "";
+App::$strings["Channel has been blocked"] = "";
+App::$strings["Unable to set address book parameters."] = "";
+App::$strings["Channel has been unignored"] = "";
+App::$strings["Channel has been ignored"] = "";
+App::$strings["Channel has been unarchived"] = "";
+App::$strings["Channel has been archived"] = "";
+App::$strings["Channel has been unhidden"] = "";
+App::$strings["Channel has been hidden"] = "";
+App::$strings["Channel has been approved"] = "";
+App::$strings["Channel has been unapproved"] = "";
+App::$strings["Connection has been removed."] = "";
+App::$strings["View %s's profile"] = "";
+App::$strings["Refresh Permissions"] = "";
+App::$strings["Fetch updated permissions"] = "";
+App::$strings["Recent Activity"] = "";
+App::$strings["View recent posts and comments"] = "";
+App::$strings["Block (or Unblock) all communications with this connection"] = "";
+App::$strings["Unignore"] = "";
+App::$strings["Ignore"] = "";
+App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "";
+App::$strings["Unarchive"] = "";
+App::$strings["Archive"] = "";
+App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "";
+App::$strings["Unhide"] = "";
+App::$strings["Hide"] = "";
+App::$strings["Hide or Unhide this connection from your other connections"] = "";
+App::$strings["Delete this connection"] = "";
+App::$strings["Approve this connection"] = "";
+App::$strings["Accept connection to allow communication"] = "";
+App::$strings["Connections: settings for %s"] = "";
+App::$strings["Apply these permissions automatically"] = "";
+App::$strings["Apply the permissions indicated on this page to all new connections."] = "";
+App::$strings["Slide to adjust your degree of friendship"] = "";
+App::$strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may <em>not</em> be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "";
+App::$strings["inherited"] = "";
+App::$strings["Connection has no individual permissions!"] = "";
+App::$strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "";
+App::$strings["Profile Visibility"] = "";
+App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "";
+App::$strings["Contact Information / Notes"] = "";
+App::$strings["Edit contact notes"] = "";
+App::$strings["Their Settings"] = "";
+App::$strings["My Settings"] = "";
+App::$strings["Default permissions for this channel type have (just) been applied. They have <em>not</em> been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "";
+App::$strings["Clear/Disable Automatic Permissions"] = "";
+App::$strings["Forum Members"] = "";
+App::$strings["Soapbox"] = "";
+App::$strings["Full Sharing (typical social network permissions)"] = "";
+App::$strings["Cautious Sharing "] = "";
+App::$strings["Follow Only"] = "";
+App::$strings["Individual Permissions"] = "";
+App::$strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "";
+App::$strings["Advanced Permissions"] = "";
+App::$strings["Simple Permissions (select one and submit)"] = "";
+App::$strings["Visit %s's profile - %s"] = "";
+App::$strings["Block/Unblock contact"] = "";
+App::$strings["Ignore contact"] = "";
+App::$strings["Repair URL settings"] = "";
+App::$strings["View conversations"] = "";
+App::$strings["Delete contact"] = "";
+App::$strings["Last update:"] = "";
+App::$strings["Update public posts"] = "";
+App::$strings["Update now"] = "";
+App::$strings["Currently blocked"] = "";
+App::$strings["Currently ignored"] = "";
+App::$strings["Currently archived"] = "";
+App::$strings["Currently pending"] = "";
+App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
+App::$strings["The error message was:"] = "";
+App::$strings["Authentication failed."] = "";
+App::$strings["Remote Authentication"] = "";
+App::$strings["Enter your channel address (e.g. channel@example.com)"] = "";
+App::$strings["Authenticate"] = "";
+App::$strings["Unable to lookup recipient."] = "";
+App::$strings["Unable to communicate with requested channel."] = "";
+App::$strings["Cannot verify requested channel."] = "";
+App::$strings["Selected channel has private message restrictions. Send failed."] = "";
+App::$strings["Message deleted."] = "";
+App::$strings["Message recalled."] = "";
+App::$strings["Send Private Message"] = "";
+App::$strings["To:"] = "";
+App::$strings["Subject:"] = "";
+App::$strings["Send"] = "";
+App::$strings["Message not found."] = "";
+App::$strings["Delete message"] = "";
+App::$strings["Recall message"] = "";
+App::$strings["Message has been recalled."] = "";
+App::$strings["Private Conversation"] = "";
+App::$strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
+App::$strings["Send Reply"] = "";
+App::$strings["Invalid request identifier."] = "";
+App::$strings["Discard"] = "";
+App::$strings["Please login."] = "";
+App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "";
+App::$strings["Add a Channel"] = "";
+App::$strings["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."] = "";
+App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "";
+App::$strings["Choose a short nickname"] = "";
+App::$strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "";
+App::$strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "";
+App::$strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "";
+App::$strings["Channel Type"] = "";
+App::$strings["Read more about roles"] = "";
+App::$strings["App installed."] = "";
+App::$strings["Malformed app."] = "";
+App::$strings["Embed code"] = "";
+App::$strings["Edit App"] = "";
+App::$strings["Create App"] = "";
+App::$strings["Name of app"] = "";
+App::$strings["Location (URL) of app"] = "";
+App::$strings["Photo icon URL"] = "";
+App::$strings["80 x 80 pixels - optional"] = "";
+App::$strings["Version ID"] = "";
+App::$strings["Price of app"] = "";
+App::$strings["Location (URL) to purchase app"] = "";
+App::$strings["sent you a private message"] = "";
+App::$strings["added your channel"] = "";
+App::$strings["posted an event"] = "";
+App::$strings["No such group"] = "";
+App::$strings["No such channel"] = "";
+App::$strings["Search Results For:"] = "";
+App::$strings["Collection is empty"] = "";
+App::$strings["Collection: "] = "";
+App::$strings["Connection: "] = "";
+App::$strings["Invalid connection."] = "";
+App::$strings["Ipsum Lorem"] = "";
+App::$strings["Bookmark added"] = "";
+App::$strings["My Bookmarks"] = "";
+App::$strings["My Connections Bookmarks"] = "";
+App::$strings["Insufficient permissions. Request redirected to profile page."] = "";
+App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
+App::$strings["Poll"] = "";
+App::$strings["View Results"] = "";
+App::$strings["No service class restrictions found."] = "";
+App::$strings["Files: shared with me"] = "";
+App::$strings["NEW"] = "";
+App::$strings["Remove all files"] = "";
+App::$strings["Remove this file"] = "";
+App::$strings["Schema Default"] = "";
+App::$strings["Sans-Serif"] = "";
+App::$strings["Monospace"] = "";
+App::$strings["Theme settings"] = "";
+App::$strings["Set scheme"] = "";
+App::$strings["Set font-size for posts and comments"] = "";
+App::$strings["Set font face"] = "";
+App::$strings["Set iconset"] = "";
+App::$strings["Set big shadow size, default 15px 15px 15px"] = "";
+App::$strings["Set small shadow size, default 5px 5px 5px"] = "";
+App::$strings["Set shadow color, default #000"] = "";
+App::$strings["Set radius size, default 5px"] = "";
+App::$strings["Set line-height for posts and comments"] = "";
+App::$strings["Set background image"] = "";
+App::$strings["Set background attachment"] = "";
+App::$strings["Set background color"] = "";
+App::$strings["Set section background image"] = "";
+App::$strings["Set section background color"] = "";
+App::$strings["Set color of items - use hex"] = "";
+App::$strings["Set color of links - use hex"] = "";
+App::$strings["Set max-width for items. Default 400px"] = "";
+App::$strings["Set min-width for items. Default 240px"] = "";
+App::$strings["Set the generic content wrapper width. Default 48%"] = "";
+App::$strings["Set color of fonts - use hex"] = "";
+App::$strings["Set background-size element"] = "";
+App::$strings["Item opacity"] = "";
+App::$strings["Display post previews only"] = "";
+App::$strings["Display side bar on channel page"] = "";
+App::$strings["Colour of the navigation bar"] = "";
+App::$strings["Item float"] = "";
+App::$strings["Left offset of the section element"] = "";
+App::$strings["Right offset of the section element"] = "";
+App::$strings["Section width"] = "";
+App::$strings["Left offset of the aside"] = "";
+App::$strings["Right offset of the aside element"] = "";
+App::$strings["Light (Hubzilla default)"] = "";
+App::$strings["Select scheme"] = "";
+App::$strings["Narrow navbar"] = "";
+App::$strings["Navigation bar background color"] = "";
+App::$strings["Navigation bar gradient top color"] = "";
+App::$strings["Navigation bar gradient bottom color"] = "";
+App::$strings["Navigation active button gradient top color"] = "";
+App::$strings["Navigation active button gradient bottom color"] = "";
+App::$strings["Navigation bar border color "] = "";
+App::$strings["Navigation bar icon color "] = "";
+App::$strings["Navigation bar active icon color "] = "";
+App::$strings["link color"] = "";
+App::$strings["Set font-color for banner"] = "";
+App::$strings["Set the background color"] = "";
+App::$strings["Set the background image"] = "";
+App::$strings["Set the background color of items"] = "";
+App::$strings["Set the background color of comments"] = "";
+App::$strings["Set the border color of comments"] = "";
+App::$strings["Set the indent for comments"] = "";
+App::$strings["Set the basic color for item icons"] = "";
+App::$strings["Set the hover color for item icons"] = "";
+App::$strings["Set font-size for the entire application"] = "";
+App::$strings["Example: 14px"] = "";
+App::$strings["Set font-color for posts and comments"] = "";
+App::$strings["Set radius of corners"] = "";
+App::$strings["Set shadow depth of photos"] = "";
+App::$strings["Set maximum width of content region in pixel"] = "";
+App::$strings["Leave empty for default width"] = "";
+App::$strings["Center page content"] = "";
+App::$strings["Set minimum opacity of nav bar - to hide it"] = "";
+App::$strings["Set size of conversation author photo"] = "";
+App::$strings["Set size of followup author photos"] = "";
+App::$strings["Update %s failed. See error logs."] = "";
+App::$strings["Update Error at %s"] = "";
+App::$strings["Create an account to access services and applications within the Hubzilla"] = "";
+App::$strings["Password"] = "";
+App::$strings["Remember me"] = "";
+App::$strings["Forgot your password?"] = "";
+App::$strings["toggle mobile"] = "";
+App::$strings["Website SSL certificate is not valid. Please correct."] = "";
+App::$strings["[red] Website SSL error for %s"] = "";
+App::$strings["Cron/Scheduled tasks not running."] = "";
+App::$strings["[red] Cron tasks not running on %s"] = "";
diff --git a/util/hz b/util/hz
new file mode 100755
index 000000000..cb6ccf419
--- /dev/null
+++ b/util/hz
@@ -0,0 +1,38 @@
+#!/bin/bash
+
+# Simple, minimalist command line tool to post status to hubzilla via the API. Requires curl.
+# Put it in your path, and sneeze your statuses to the zot network from your shell.
+
+CONF=${HOME}/.hubzilla
+
+usage () {
+echo "usage: hz [conffile]"
+echo "Create a conf file, either in .hubzilla in your home directory, or supplied as an arg"
+echo " USER=youruserame "
+echo " PASS=yourpass"
+echo " HUB=your.hub.domain.org"
+echo
+echo "Type \"hz\" (with or without a conf file as an arg), then enter your message. Use ctrl-D to send.."
+
+}
+
+CUR=`which curl`
+
+[ "$CUR" ] || { echo "curl is not installed or on your path"; usage; exit 1; }
+
+[ "$1" ] && CONF="$1"
+
+
+. ${CONF}
+
+[ "$USER" ] || { echo "no USER"; usage; exit 1; }
+[ "$PASS" ] || { echo "no PASS"; usage; exit 1; }
+[ "$HUB" ] || { echo "no HUB"; usage; exit 1; }
+
+echo "enter your message to be posted as $USER @ $HUB, then hit Ctrl-D to send."
+
+MSG=$(cat)
+
+curl -ssl -u${USER}:${PASS} --data-urlencode "status=${MSG}" https://${HUB}/api/statuses/update
+
+
diff --git a/util/pconfig b/util/pconfig
index cefa6901c..038fa74c3 100755
--- a/util/pconfig
+++ b/util/pconfig
@@ -20,7 +20,7 @@ if($argc == 4) {
if($argc == 3) {
load_pconfig($argv[1],$argv[2]);
- foreach($a->config[$argv[1]][$argv[2]] as $k => $x) {
+ foreach(App::$config[$argv[1]][$argv[2]] as $k => $x) {
echo "pconfig[{$argv[1]}][{$argv[2]}][{$k}] = " . $x . "\n";
}
}
diff --git a/util/php2po.php b/util/php2po.php
index f071c60bf..ff41e6d1e 100644
--- a/util/php2po.php
+++ b/util/php2po.php
@@ -34,10 +34,10 @@
$ink = False;
$v = '""';
//echo "DBG: k:'$k'\n";
- if (isset($a->strings[$k])) {
- $v= '"'.$a->strings[$k].'"';
+ if (isset(App::$strings[$k])) {
+ $v= '"'.App::$strings[$k].'"';
//echo "DBG\n";
- //var_dump($k, $v, $a->strings[$k], $v);
+ //var_dump($k, $v, App::$strings[$k], $v);
//echo "/DBG\n";
}
diff --git a/util/po2php.php b/util/po2php.php
index e8f6c2c39..66807083b 100644
--- a/util/po2php.php
+++ b/util/po2php.php
@@ -55,7 +55,7 @@ function po2php_run($argv, $argc) {
}
if ($k!="" && substr($l,0,7)=="msgstr "){
- if ($ink) { $ink = False; $out .= '$a->strings["'.$k.'"] = '; }
+ if ($ink) { $ink = False; $out .= 'App::$strings["'.$k.'"] = '; }
if ($inv) { $inv = False; $out .= '"'.$v.'"'; }
$v = substr($l,8,$len-10);
@@ -66,7 +66,7 @@ function po2php_run($argv, $argc) {
if ($k!="" && substr($l,0,7)=="msgstr["){
if ($ink) {
$ink = False;
- $out .= '$a->strings["'.$k.'"] = ';
+ $out .= 'App::$strings["'.$k.'"] = ';
}
if ($inv) {
$inv = False;
@@ -86,14 +86,14 @@ function po2php_run($argv, $argc) {
if (substr($l,0,6)=="msgid_") {
$ink = False;
- $out .= '$a->strings["'.$k.'"] = ';
+ $out .= 'App::$strings["'.$k.'"] = ';
}
if ($ink) {
$k .= trim_message($l);
$k = preg_replace_callback($escape_s_exp,'escape_s',$k);
- //$out .= '$a->strings['.$k.'] = ';
+ //$out .= 'App::$strings['.$k.'] = ';
}
if (substr($l,0,6)=="msgid "){
@@ -112,7 +112,7 @@ function po2php_run($argv, $argc) {
if ($inv && substr($l,0,6)!="msgstr" && substr($l,0,7)!="msgctxt") {
$v .= trim_message($l);
$v = preg_replace_callback($escape_s_exp,'escape_s',$v);
- //$out .= '$a->strings['.$k.'] = ';
+ //$out .= 'App::$strings['.$k.'] = ';
}
if (substr($l,0,7)=="msgctxt") {
diff --git a/util/service_class b/util/service_class
index d3b60a2df..2b5998615 100755
--- a/util/service_class
+++ b/util/service_class
@@ -90,8 +90,8 @@ if($argc == 2) {
if($argc == 1) {
load_config('service_class');
- if(is_array($a->config['service_class']) && $a->config['service_class']) {
- foreach($a->config['service_class'] as $class=>$props) {
+ if(is_array(App::$config['service_class']) && App::$config['service_class']) {
+ foreach(App::$config['service_class'] as $class=>$props) {
echo "$class:\n";
$d = unserialize($props);
if(is_array($d) && $d) {
diff --git a/util/shredder/JSON.sh b/util/shredder/JSON.sh
index 65f5f1f66..20c4d282e 100755
--- a/util/shredder/JSON.sh
+++ b/util/shredder/JSON.sh
@@ -1,3 +1,4 @@
+#!/bin/bash
# The MIT License
#
# Copyright (c) 2011 Dominic Tarr
diff --git a/util/strings.php b/util/strings.php
index e3fdb6461..1fe63b7f7 100644
--- a/util/strings.php
+++ b/util/strings.php
@@ -1,2120 +1,2120 @@
<?php
;
-$a->strings["Cannot locate DNS info for database server '%s'"] = "";
-$a->strings["Profile Photos"] = "";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
-$a->strings["created a new post"] = "";
-$a->strings["commented on %s's post"] = "";
-$a->strings["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."] = "";
-$a->strings["Default privacy group for new contacts"] = "";
-$a->strings["All Channels"] = "";
-$a->strings["edit"] = "";
-$a->strings["Collections"] = "";
-$a->strings["Edit collection"] = "";
-$a->strings["Add new collection"] = "";
-$a->strings["Channels not in any collection"] = "";
-$a->strings["add"] = "";
-$a->strings["Not a valid email address"] = "";
-$a->strings["Your email domain is not among those allowed on this site"] = "";
-$a->strings["Your email address is already registered at this site."] = "";
-$a->strings["An invitation is required."] = "";
-$a->strings["Invitation could not be verified."] = "";
-$a->strings["Please enter the required information."] = "";
-$a->strings["Failed to store account information."] = "";
-$a->strings["Registration confirmation for %s"] = "";
-$a->strings["Registration request at %s"] = "";
-$a->strings["Administrator"] = "";
-$a->strings["your registration password"] = "";
-$a->strings["Registration details for %s"] = "";
-$a->strings["Account approved."] = "";
-$a->strings["Registration revoked for %s"] = "";
-$a->strings["Account verified. Please login."] = "";
-$a->strings["Click here to upgrade."] = "";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "";
-$a->strings["This action is not available under your subscription plan."] = "";
-$a->strings["Miscellaneous"] = "";
-$a->strings["YYYY-MM-DD or MM-DD"] = "";
-$a->strings["Required"] = "";
-$a->strings["never"] = "";
-$a->strings["less than a second ago"] = "";
-$a->strings["year"] = "";
-$a->strings["years"] = "";
-$a->strings["month"] = "";
-$a->strings["months"] = "";
-$a->strings["week"] = "";
-$a->strings["weeks"] = "";
-$a->strings["day"] = "";
-$a->strings["days"] = "";
-$a->strings["hour"] = "";
-$a->strings["hours"] = "";
-$a->strings["minute"] = "";
-$a->strings["minutes"] = "";
-$a->strings["second"] = "";
-$a->strings["seconds"] = "";
-$a->strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "";
-$a->strings["%1\$s's birthday"] = "";
-$a->strings["Happy Birthday %1\$s"] = "";
-$a->strings["New Page"] = "";
-$a->strings["Edit"] = "";
-$a->strings["View"] = "";
-$a->strings["Preview"] = "";
-$a->strings["Actions"] = "";
-$a->strings["Page Link"] = "";
-$a->strings["Title"] = "";
-$a->strings["Created"] = "";
-$a->strings["Edited"] = "";
-$a->strings["Public Timeline"] = "";
-$a->strings["Default"] = "";
-$a->strings["Directory Options"] = "";
-$a->strings["Alphabetic"] = "";
-$a->strings["Reverse Alphabetic"] = "";
-$a->strings["Newest to Oldest"] = "";
-$a->strings["Oldest to Newest"] = "";
-$a->strings["Sort"] = "";
-$a->strings["Safe Mode"] = "";
-$a->strings["Public Forums Only"] = "";
-$a->strings["This Website Only"] = "";
-$a->strings["l F d, Y \\@ g:i A"] = "";
-$a->strings["Starts:"] = "";
-$a->strings["Finishes:"] = "";
-$a->strings["Location:"] = "";
-$a->strings["This event has been added to your calendar."] = "";
-$a->strings["Delete this item?"] = "";
-$a->strings["Comment"] = "";
-$a->strings["[+] show all"] = "";
-$a->strings["[-] show less"] = "";
-$a->strings["[+] expand"] = "";
-$a->strings["[-] collapse"] = "";
-$a->strings["Password too short"] = "";
-$a->strings["Passwords do not match"] = "";
-$a->strings["everybody"] = "";
-$a->strings["Secret Passphrase"] = "";
-$a->strings["Passphrase hint"] = "";
-$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "";
-$a->strings["close all"] = "";
-$a->strings["Nothing new here"] = "";
-$a->strings["Rate This Channel (this is public)"] = "";
-$a->strings["Rating"] = "";
-$a->strings["Describe (optional)"] = "";
-$a->strings["Submit"] = "";
-$a->strings["Please enter a link URL"] = "";
-$a->strings["Unsaved changes. Are you sure you wish to leave this page?"] = "";
-$a->strings["timeago.prefixAgo"] = "";
-$a->strings["timeago.prefixFromNow"] = "";
-$a->strings["ago"] = "";
-$a->strings["from now"] = "";
-$a->strings["less than a minute"] = "";
-$a->strings["about a minute"] = "";
-$a->strings["%d minutes"] = "";
-$a->strings["about an hour"] = "";
-$a->strings["about %d hours"] = "";
-$a->strings["a day"] = "";
-$a->strings["%d days"] = "";
-$a->strings["about a month"] = "";
-$a->strings["%d months"] = "";
-$a->strings["about a year"] = "";
-$a->strings["%d years"] = "";
-$a->strings[" "] = "";
-$a->strings["timeago.numbers"] = "";
-$a->strings["parent"] = "";
-$a->strings["Collection"] = "";
-$a->strings["Principal"] = "";
-$a->strings["Addressbook"] = "";
-$a->strings["Calendar"] = "";
-$a->strings["Schedule Inbox"] = "";
-$a->strings["Schedule Outbox"] = "";
-$a->strings["Unknown"] = "";
-$a->strings["%1\$s used"] = "";
-$a->strings["%1\$s used of %2\$s (%3\$s&#37;)"] = "";
-$a->strings["Files"] = "";
-$a->strings["Total"] = "";
-$a->strings["Shared"] = "";
-$a->strings["Create"] = "";
-$a->strings["Upload"] = "";
-$a->strings["Name"] = "";
-$a->strings["Type"] = "";
-$a->strings["Size"] = "";
-$a->strings["Last Modified"] = "";
-$a->strings["Delete"] = "";
-$a->strings["Create new folder"] = "";
-$a->strings["Upload file"] = "";
-$a->strings["%1\$s's bookmarks"] = "";
-$a->strings["view full size"] = "";
-$a->strings["General Features"] = "";
-$a->strings["Content Expiration"] = "";
-$a->strings["Remove posts/comments and/or private messages at a future time"] = "";
-$a->strings["Multiple Profiles"] = "";
-$a->strings["Ability to create multiple profiles"] = "";
-$a->strings["Advanced Profiles"] = "";
-$a->strings["Additional profile sections and selections"] = "";
-$a->strings["Profile Import/Export"] = "";
-$a->strings["Save and load profile details across sites/channels"] = "";
-$a->strings["Web Pages"] = "";
-$a->strings["Provide managed web pages on your channel"] = "";
-$a->strings["Private Notes"] = "";
-$a->strings["Enables a tool to store notes and reminders"] = "";
-$a->strings["Navigation Channel Select"] = "";
-$a->strings["Change channels directly from within the navigation dropdown menu"] = "";
-$a->strings["Photo Location"] = "";
-$a->strings["If location data is available on uploaded photos, link this to a map."] = "";
-$a->strings["Expert Mode"] = "";
-$a->strings["Enable Expert Mode to provide advanced configuration options"] = "";
-$a->strings["Premium Channel"] = "";
-$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "";
-$a->strings["Post Composition Features"] = "";
-$a->strings["Use Markdown"] = "";
-$a->strings["Allow use of \"Markdown\" to format posts"] = "";
-$a->strings["Large Photos"] = "";
-$a->strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "";
-$a->strings["Channel Sources"] = "";
-$a->strings["Automatically import channel content from other channels or feeds"] = "";
-$a->strings["Even More Encryption"] = "";
-$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "";
-$a->strings["Enable voting tools"] = "";
-$a->strings["Provide a class of post which others can vote on"] = "";
-$a->strings["Network and Stream Filtering"] = "";
-$a->strings["Search by Date"] = "";
-$a->strings["Ability to select posts by date ranges"] = "";
-$a->strings["Collections Filter"] = "";
-$a->strings["Enable widget to display Network posts only from selected collections"] = "";
-$a->strings["Saved Searches"] = "";
-$a->strings["Save search terms for re-use"] = "";
-$a->strings["Network Personal Tab"] = "";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
-$a->strings["Network New Tab"] = "";
-$a->strings["Enable tab to display all new Network activity"] = "";
-$a->strings["Affinity Tool"] = "";
-$a->strings["Filter stream activity by depth of relationships"] = "";
-$a->strings["Suggest Channels"] = "";
-$a->strings["Show channel suggestions"] = "";
-$a->strings["Post/Comment Tools"] = "";
-$a->strings["Tagging"] = "";
-$a->strings["Ability to tag existing posts"] = "";
-$a->strings["Post Categories"] = "";
-$a->strings["Add categories to your posts"] = "";
-$a->strings["Saved Folders"] = "";
-$a->strings["Ability to file posts under folders"] = "";
-$a->strings["Dislike Posts"] = "";
-$a->strings["Ability to dislike posts/comments"] = "";
-$a->strings["Star Posts"] = "";
-$a->strings["Ability to mark special posts with a star indicator"] = "";
-$a->strings["Tag Cloud"] = "";
-$a->strings["Provide a personal tag cloud on your channel page"] = "";
-$a->strings["Categories"] = "";
-$a->strings["Apps"] = "";
-$a->strings["System"] = "";
-$a->strings["Personal"] = "";
-$a->strings["Create Personal App"] = "";
-$a->strings["Edit Personal App"] = "";
-$a->strings["Connect"] = "";
-$a->strings["Ignore/Hide"] = "";
-$a->strings["Suggestions"] = "";
-$a->strings["See more..."] = "";
-$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "";
-$a->strings["Add New Connection"] = "";
-$a->strings["Enter the channel address"] = "";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "";
-$a->strings["Notes"] = "";
-$a->strings["Save"] = "";
-$a->strings["Remove term"] = "";
-$a->strings["Everything"] = "";
-$a->strings["Archives"] = "";
-$a->strings["Me"] = "";
-$a->strings["Family"] = "";
-$a->strings["Friends"] = "";
-$a->strings["Acquaintances"] = "";
-$a->strings["All"] = "";
-$a->strings["Refresh"] = "";
-$a->strings["Account settings"] = "";
-$a->strings["Channel settings"] = "";
-$a->strings["Additional features"] = "";
-$a->strings["Feature/Addon settings"] = "";
-$a->strings["Display settings"] = "";
-$a->strings["Connected apps"] = "";
-$a->strings["Export channel"] = "";
-$a->strings["Connection Default Permissions"] = "";
-$a->strings["Premium Channel Settings"] = "";
-$a->strings["Settings"] = "";
-$a->strings["Messages"] = "";
-$a->strings["Check Mail"] = "";
-$a->strings["New Message"] = "";
-$a->strings["Chat Rooms"] = "";
-$a->strings["Bookmarked Chatrooms"] = "";
-$a->strings["Suggested Chatrooms"] = "";
-$a->strings["photo/image"] = "";
-$a->strings["Rate Me"] = "";
-$a->strings["View Ratings"] = "";
-$a->strings["Public Hubs"] = "";
-$a->strings["\$Projectname Notification"] = "";
-$a->strings["\$projectname"] = "";
-$a->strings["Thank You,"] = "";
-$a->strings["%s Administrator"] = "";
-$a->strings["%s <!item_type!>"] = "";
-$a->strings["[Red:Notify] New mail received at %s"] = "";
-$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "";
-$a->strings["%1\$s sent you %2\$s."] = "";
-$a->strings["a private message"] = "";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "";
-$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
-$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "";
-$a->strings["[Red:Notify] %s posted to your profile wall"] = "";
-$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "";
-$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "";
-$a->strings["[Red:Notify] %s tagged you"] = "";
-$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "";
-$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "";
-$a->strings["[Red:Notify] %1\$s poked you"] = "";
-$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "";
-$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "";
-$a->strings["[Red:Notify] %s tagged your post"] = "";
-$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "";
-$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "";
-$a->strings["[Red:Notify] Introduction received"] = "";
-$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "";
-$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "";
-$a->strings["You may visit their profile at %s"] = "";
-$a->strings["Please visit %s to approve or reject the connection request."] = "";
-$a->strings["[Red:Notify] Friend suggestion received"] = "";
-$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "";
-$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "";
-$a->strings["Name:"] = "";
-$a->strings["Photo:"] = "";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "";
-$a->strings["[Red:Notify]"] = "";
-$a->strings["Frequently"] = "";
-$a->strings["Hourly"] = "";
-$a->strings["Twice daily"] = "";
-$a->strings["Daily"] = "";
-$a->strings["Weekly"] = "";
-$a->strings["Monthly"] = "";
-$a->strings["Friendica"] = "";
-$a->strings["OStatus"] = "";
-$a->strings["RSS/Atom"] = "";
-$a->strings["Email"] = "";
-$a->strings["Diaspora"] = "";
-$a->strings["Facebook"] = "";
-$a->strings["Zot!"] = "";
-$a->strings["LinkedIn"] = "";
-$a->strings["XMPP/IM"] = "";
-$a->strings["MySpace"] = "";
-$a->strings["No recipient provided."] = "";
-$a->strings["[no subject]"] = "";
-$a->strings["Unable to determine sender."] = "";
-$a->strings["Stored post could not be verified."] = "";
-$a->strings["Channel is blocked on this site."] = "";
-$a->strings["Channel location missing."] = "";
-$a->strings["Response from remote channel was incomplete."] = "";
-$a->strings["Channel was deleted and no longer exists."] = "";
-$a->strings["Protocol disabled."] = "";
-$a->strings["Channel discovery failed."] = "";
-$a->strings["local account not found."] = "";
-$a->strings["Cannot connect to yourself."] = "";
-$a->strings["Private Message"] = "";
-$a->strings["Select"] = "";
-$a->strings["Save to Folder"] = "";
-$a->strings["I will attend"] = "";
-$a->strings["I will not attend"] = "";
-$a->strings["I might attend"] = "";
-$a->strings["I agree"] = "";
-$a->strings["I disagree"] = "";
-$a->strings["I abstain"] = "";
-$a->strings["View all"] = "";
-$a->strings["__ctx:noun__ Like"] = array(
+App::$strings["Cannot locate DNS info for database server '%s'"] = "";
+App::$strings["Profile Photos"] = "";
+App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
+App::$strings["created a new post"] = "";
+App::$strings["commented on %s's post"] = "";
+App::$strings["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."] = "";
+App::$strings["Default privacy group for new contacts"] = "";
+App::$strings["All Channels"] = "";
+App::$strings["edit"] = "";
+App::$strings["Collections"] = "";
+App::$strings["Edit collection"] = "";
+App::$strings["Add new collection"] = "";
+App::$strings["Channels not in any collection"] = "";
+App::$strings["add"] = "";
+App::$strings["Not a valid email address"] = "";
+App::$strings["Your email domain is not among those allowed on this site"] = "";
+App::$strings["Your email address is already registered at this site."] = "";
+App::$strings["An invitation is required."] = "";
+App::$strings["Invitation could not be verified."] = "";
+App::$strings["Please enter the required information."] = "";
+App::$strings["Failed to store account information."] = "";
+App::$strings["Registration confirmation for %s"] = "";
+App::$strings["Registration request at %s"] = "";
+App::$strings["Administrator"] = "";
+App::$strings["your registration password"] = "";
+App::$strings["Registration details for %s"] = "";
+App::$strings["Account approved."] = "";
+App::$strings["Registration revoked for %s"] = "";
+App::$strings["Account verified. Please login."] = "";
+App::$strings["Click here to upgrade."] = "";
+App::$strings["This action exceeds the limits set by your subscription plan."] = "";
+App::$strings["This action is not available under your subscription plan."] = "";
+App::$strings["Miscellaneous"] = "";
+App::$strings["YYYY-MM-DD or MM-DD"] = "";
+App::$strings["Required"] = "";
+App::$strings["never"] = "";
+App::$strings["less than a second ago"] = "";
+App::$strings["year"] = "";
+App::$strings["years"] = "";
+App::$strings["month"] = "";
+App::$strings["months"] = "";
+App::$strings["week"] = "";
+App::$strings["weeks"] = "";
+App::$strings["day"] = "";
+App::$strings["days"] = "";
+App::$strings["hour"] = "";
+App::$strings["hours"] = "";
+App::$strings["minute"] = "";
+App::$strings["minutes"] = "";
+App::$strings["second"] = "";
+App::$strings["seconds"] = "";
+App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "";
+App::$strings["%1\$s's birthday"] = "";
+App::$strings["Happy Birthday %1\$s"] = "";
+App::$strings["New Page"] = "";
+App::$strings["Edit"] = "";
+App::$strings["View"] = "";
+App::$strings["Preview"] = "";
+App::$strings["Actions"] = "";
+App::$strings["Page Link"] = "";
+App::$strings["Title"] = "";
+App::$strings["Created"] = "";
+App::$strings["Edited"] = "";
+App::$strings["Public Timeline"] = "";
+App::$strings["Default"] = "";
+App::$strings["Directory Options"] = "";
+App::$strings["Alphabetic"] = "";
+App::$strings["Reverse Alphabetic"] = "";
+App::$strings["Newest to Oldest"] = "";
+App::$strings["Oldest to Newest"] = "";
+App::$strings["Sort"] = "";
+App::$strings["Safe Mode"] = "";
+App::$strings["Public Forums Only"] = "";
+App::$strings["This Website Only"] = "";
+App::$strings["l F d, Y \\@ g:i A"] = "";
+App::$strings["Starts:"] = "";
+App::$strings["Finishes:"] = "";
+App::$strings["Location:"] = "";
+App::$strings["This event has been added to your calendar."] = "";
+App::$strings["Delete this item?"] = "";
+App::$strings["Comment"] = "";
+App::$strings["[+] show all"] = "";
+App::$strings["[-] show less"] = "";
+App::$strings["[+] expand"] = "";
+App::$strings["[-] collapse"] = "";
+App::$strings["Password too short"] = "";
+App::$strings["Passwords do not match"] = "";
+App::$strings["everybody"] = "";
+App::$strings["Secret Passphrase"] = "";
+App::$strings["Passphrase hint"] = "";
+App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "";
+App::$strings["close all"] = "";
+App::$strings["Nothing new here"] = "";
+App::$strings["Rate This Channel (this is public)"] = "";
+App::$strings["Rating"] = "";
+App::$strings["Describe (optional)"] = "";
+App::$strings["Submit"] = "";
+App::$strings["Please enter a link URL"] = "";
+App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "";
+App::$strings["timeago.prefixAgo"] = "";
+App::$strings["timeago.prefixFromNow"] = "";
+App::$strings["ago"] = "";
+App::$strings["from now"] = "";
+App::$strings["less than a minute"] = "";
+App::$strings["about a minute"] = "";
+App::$strings["%d minutes"] = "";
+App::$strings["about an hour"] = "";
+App::$strings["about %d hours"] = "";
+App::$strings["a day"] = "";
+App::$strings["%d days"] = "";
+App::$strings["about a month"] = "";
+App::$strings["%d months"] = "";
+App::$strings["about a year"] = "";
+App::$strings["%d years"] = "";
+App::$strings[" "] = "";
+App::$strings["timeago.numbers"] = "";
+App::$strings["parent"] = "";
+App::$strings["Collection"] = "";
+App::$strings["Principal"] = "";
+App::$strings["Addressbook"] = "";
+App::$strings["Calendar"] = "";
+App::$strings["Schedule Inbox"] = "";
+App::$strings["Schedule Outbox"] = "";
+App::$strings["Unknown"] = "";
+App::$strings["%1\$s used"] = "";
+App::$strings["%1\$s used of %2\$s (%3\$s&#37;)"] = "";
+App::$strings["Files"] = "";
+App::$strings["Total"] = "";
+App::$strings["Shared"] = "";
+App::$strings["Create"] = "";
+App::$strings["Upload"] = "";
+App::$strings["Name"] = "";
+App::$strings["Type"] = "";
+App::$strings["Size"] = "";
+App::$strings["Last Modified"] = "";
+App::$strings["Delete"] = "";
+App::$strings["Create new folder"] = "";
+App::$strings["Upload file"] = "";
+App::$strings["%1\$s's bookmarks"] = "";
+App::$strings["view full size"] = "";
+App::$strings["General Features"] = "";
+App::$strings["Content Expiration"] = "";
+App::$strings["Remove posts/comments and/or private messages at a future time"] = "";
+App::$strings["Multiple Profiles"] = "";
+App::$strings["Ability to create multiple profiles"] = "";
+App::$strings["Advanced Profiles"] = "";
+App::$strings["Additional profile sections and selections"] = "";
+App::$strings["Profile Import/Export"] = "";
+App::$strings["Save and load profile details across sites/channels"] = "";
+App::$strings["Web Pages"] = "";
+App::$strings["Provide managed web pages on your channel"] = "";
+App::$strings["Private Notes"] = "";
+App::$strings["Enables a tool to store notes and reminders"] = "";
+App::$strings["Navigation Channel Select"] = "";
+App::$strings["Change channels directly from within the navigation dropdown menu"] = "";
+App::$strings["Photo Location"] = "";
+App::$strings["If location data is available on uploaded photos, link this to a map."] = "";
+App::$strings["Expert Mode"] = "";
+App::$strings["Enable Expert Mode to provide advanced configuration options"] = "";
+App::$strings["Premium Channel"] = "";
+App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "";
+App::$strings["Post Composition Features"] = "";
+App::$strings["Use Markdown"] = "";
+App::$strings["Allow use of \"Markdown\" to format posts"] = "";
+App::$strings["Large Photos"] = "";
+App::$strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "";
+App::$strings["Channel Sources"] = "";
+App::$strings["Automatically import channel content from other channels or feeds"] = "";
+App::$strings["Even More Encryption"] = "";
+App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "";
+App::$strings["Enable voting tools"] = "";
+App::$strings["Provide a class of post which others can vote on"] = "";
+App::$strings["Network and Stream Filtering"] = "";
+App::$strings["Search by Date"] = "";
+App::$strings["Ability to select posts by date ranges"] = "";
+App::$strings["Collections Filter"] = "";
+App::$strings["Enable widget to display Network posts only from selected collections"] = "";
+App::$strings["Saved Searches"] = "";
+App::$strings["Save search terms for re-use"] = "";
+App::$strings["Network Personal Tab"] = "";
+App::$strings["Enable tab to display only Network posts that you've interacted on"] = "";
+App::$strings["Network New Tab"] = "";
+App::$strings["Enable tab to display all new Network activity"] = "";
+App::$strings["Affinity Tool"] = "";
+App::$strings["Filter stream activity by depth of relationships"] = "";
+App::$strings["Suggest Channels"] = "";
+App::$strings["Show channel suggestions"] = "";
+App::$strings["Post/Comment Tools"] = "";
+App::$strings["Tagging"] = "";
+App::$strings["Ability to tag existing posts"] = "";
+App::$strings["Post Categories"] = "";
+App::$strings["Add categories to your posts"] = "";
+App::$strings["Saved Folders"] = "";
+App::$strings["Ability to file posts under folders"] = "";
+App::$strings["Dislike Posts"] = "";
+App::$strings["Ability to dislike posts/comments"] = "";
+App::$strings["Star Posts"] = "";
+App::$strings["Ability to mark special posts with a star indicator"] = "";
+App::$strings["Tag Cloud"] = "";
+App::$strings["Provide a personal tag cloud on your channel page"] = "";
+App::$strings["Categories"] = "";
+App::$strings["Apps"] = "";
+App::$strings["System"] = "";
+App::$strings["Personal"] = "";
+App::$strings["Create Personal App"] = "";
+App::$strings["Edit Personal App"] = "";
+App::$strings["Connect"] = "";
+App::$strings["Ignore/Hide"] = "";
+App::$strings["Suggestions"] = "";
+App::$strings["See more..."] = "";
+App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "";
+App::$strings["Add New Connection"] = "";
+App::$strings["Enter the channel address"] = "";
+App::$strings["Example: bob@example.com, http://example.com/barbara"] = "";
+App::$strings["Notes"] = "";
+App::$strings["Save"] = "";
+App::$strings["Remove term"] = "";
+App::$strings["Everything"] = "";
+App::$strings["Archives"] = "";
+App::$strings["Me"] = "";
+App::$strings["Family"] = "";
+App::$strings["Friends"] = "";
+App::$strings["Acquaintances"] = "";
+App::$strings["All"] = "";
+App::$strings["Refresh"] = "";
+App::$strings["Account settings"] = "";
+App::$strings["Channel settings"] = "";
+App::$strings["Additional features"] = "";
+App::$strings["Feature/Addon settings"] = "";
+App::$strings["Display settings"] = "";
+App::$strings["Connected apps"] = "";
+App::$strings["Export channel"] = "";
+App::$strings["Connection Default Permissions"] = "";
+App::$strings["Premium Channel Settings"] = "";
+App::$strings["Settings"] = "";
+App::$strings["Messages"] = "";
+App::$strings["Check Mail"] = "";
+App::$strings["New Message"] = "";
+App::$strings["Chat Rooms"] = "";
+App::$strings["Bookmarked Chatrooms"] = "";
+App::$strings["Suggested Chatrooms"] = "";
+App::$strings["photo/image"] = "";
+App::$strings["Rate Me"] = "";
+App::$strings["View Ratings"] = "";
+App::$strings["Public Hubs"] = "";
+App::$strings["\$Projectname Notification"] = "";
+App::$strings["\$projectname"] = "";
+App::$strings["Thank You,"] = "";
+App::$strings["%s Administrator"] = "";
+App::$strings["%s <!item_type!>"] = "";
+App::$strings["[Red:Notify] New mail received at %s"] = "";
+App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "";
+App::$strings["%1\$s sent you %2\$s."] = "";
+App::$strings["a private message"] = "";
+App::$strings["Please visit %s to view and/or reply to your private messages."] = "";
+App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "";
+App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "";
+App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "";
+App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
+App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "";
+App::$strings["Please visit %s to view and/or reply to the conversation."] = "";
+App::$strings["[Red:Notify] %s posted to your profile wall"] = "";
+App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "";
+App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "";
+App::$strings["[Red:Notify] %s tagged you"] = "";
+App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "";
+App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "";
+App::$strings["[Red:Notify] %1\$s poked you"] = "";
+App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "";
+App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "";
+App::$strings["[Red:Notify] %s tagged your post"] = "";
+App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "";
+App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "";
+App::$strings["[Red:Notify] Introduction received"] = "";
+App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "";
+App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "";
+App::$strings["You may visit their profile at %s"] = "";
+App::$strings["Please visit %s to approve or reject the connection request."] = "";
+App::$strings["[Red:Notify] Friend suggestion received"] = "";
+App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "";
+App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "";
+App::$strings["Name:"] = "";
+App::$strings["Photo:"] = "";
+App::$strings["Please visit %s to approve or reject the suggestion."] = "";
+App::$strings["[Red:Notify]"] = "";
+App::$strings["Frequently"] = "";
+App::$strings["Hourly"] = "";
+App::$strings["Twice daily"] = "";
+App::$strings["Daily"] = "";
+App::$strings["Weekly"] = "";
+App::$strings["Monthly"] = "";
+App::$strings["Friendica"] = "";
+App::$strings["OStatus"] = "";
+App::$strings["RSS/Atom"] = "";
+App::$strings["Email"] = "";
+App::$strings["Diaspora"] = "";
+App::$strings["Facebook"] = "";
+App::$strings["Zot!"] = "";
+App::$strings["LinkedIn"] = "";
+App::$strings["XMPP/IM"] = "";
+App::$strings["MySpace"] = "";
+App::$strings["No recipient provided."] = "";
+App::$strings["[no subject]"] = "";
+App::$strings["Unable to determine sender."] = "";
+App::$strings["Stored post could not be verified."] = "";
+App::$strings["Channel is blocked on this site."] = "";
+App::$strings["Channel location missing."] = "";
+App::$strings["Response from remote channel was incomplete."] = "";
+App::$strings["Channel was deleted and no longer exists."] = "";
+App::$strings["Protocol disabled."] = "";
+App::$strings["Channel discovery failed."] = "";
+App::$strings["local account not found."] = "";
+App::$strings["Cannot connect to yourself."] = "";
+App::$strings["Private Message"] = "";
+App::$strings["Select"] = "";
+App::$strings["Save to Folder"] = "";
+App::$strings["I will attend"] = "";
+App::$strings["I will not attend"] = "";
+App::$strings["I might attend"] = "";
+App::$strings["I agree"] = "";
+App::$strings["I disagree"] = "";
+App::$strings["I abstain"] = "";
+App::$strings["View all"] = "";
+App::$strings["__ctx:noun__ Like"] = array(
0 => "",
1 => "",
);
-$a->strings["__ctx:noun__ Dislike"] = array(
+App::$strings["__ctx:noun__ Dislike"] = array(
0 => "",
1 => "",
);
-$a->strings["Add Star"] = "";
-$a->strings["Remove Star"] = "";
-$a->strings["Toggle Star Status"] = "";
-$a->strings["starred"] = "";
-$a->strings["Message signature validated"] = "";
-$a->strings["Message signature incorrect"] = "";
-$a->strings["Add Tag"] = "";
-$a->strings["I like this (toggle)"] = "";
-$a->strings["like"] = "";
-$a->strings["I don't like this (toggle)"] = "";
-$a->strings["dislike"] = "";
-$a->strings["Share This"] = "";
-$a->strings["share"] = "";
-$a->strings["%d comment"] = array(
+App::$strings["Add Star"] = "";
+App::$strings["Remove Star"] = "";
+App::$strings["Toggle Star Status"] = "";
+App::$strings["starred"] = "";
+App::$strings["Message signature validated"] = "";
+App::$strings["Message signature incorrect"] = "";
+App::$strings["Add Tag"] = "";
+App::$strings["I like this (toggle)"] = "";
+App::$strings["like"] = "";
+App::$strings["I don't like this (toggle)"] = "";
+App::$strings["dislike"] = "";
+App::$strings["Share This"] = "";
+App::$strings["share"] = "";
+App::$strings["%d comment"] = array(
0 => "",
1 => "",
);
-$a->strings["View %s's profile - %s"] = "";
-$a->strings["to"] = "";
-$a->strings["via"] = "";
-$a->strings["Wall-to-Wall"] = "";
-$a->strings["via Wall-To-Wall:"] = "";
-$a->strings["from %s"] = "";
-$a->strings["last edited: %s"] = "";
-$a->strings["Expires: %s"] = "";
-$a->strings["Save Bookmarks"] = "";
-$a->strings["Add to Calendar"] = "";
-$a->strings["Mark all seen"] = "";
-$a->strings["__ctx:noun__ Likes"] = "";
-$a->strings["__ctx:noun__ Dislikes"] = "";
-$a->strings["Close"] = "";
-$a->strings["Please wait"] = "";
-$a->strings["This is you"] = "";
-$a->strings["Bold"] = "";
-$a->strings["Italic"] = "";
-$a->strings["Underline"] = "";
-$a->strings["Quote"] = "";
-$a->strings["Code"] = "";
-$a->strings["Image"] = "";
-$a->strings["Insert Link"] = "";
-$a->strings["Video"] = "";
-$a->strings["Encrypt text"] = "";
-$a->strings["New window"] = "";
-$a->strings["Open the selected location in a different window or browser tab"] = "";
-$a->strings["User '%s' deleted"] = "";
-$a->strings["Attachments:"] = "";
-$a->strings["\$Projectname event notification:"] = "";
-$a->strings["prev"] = "";
-$a->strings["first"] = "";
-$a->strings["last"] = "";
-$a->strings["next"] = "";
-$a->strings["older"] = "";
-$a->strings["newer"] = "";
-$a->strings["No connections"] = "";
-$a->strings["%d Connection"] = array(
+App::$strings["View %s's profile - %s"] = "";
+App::$strings["to"] = "";
+App::$strings["via"] = "";
+App::$strings["Wall-to-Wall"] = "";
+App::$strings["via Wall-To-Wall:"] = "";
+App::$strings["from %s"] = "";
+App::$strings["last edited: %s"] = "";
+App::$strings["Expires: %s"] = "";
+App::$strings["Save Bookmarks"] = "";
+App::$strings["Add to Calendar"] = "";
+App::$strings["Mark all seen"] = "";
+App::$strings["__ctx:noun__ Likes"] = "";
+App::$strings["__ctx:noun__ Dislikes"] = "";
+App::$strings["Close"] = "";
+App::$strings["Please wait"] = "";
+App::$strings["This is you"] = "";
+App::$strings["Bold"] = "";
+App::$strings["Italic"] = "";
+App::$strings["Underline"] = "";
+App::$strings["Quote"] = "";
+App::$strings["Code"] = "";
+App::$strings["Image"] = "";
+App::$strings["Insert Link"] = "";
+App::$strings["Video"] = "";
+App::$strings["Encrypt text"] = "";
+App::$strings["New window"] = "";
+App::$strings["Open the selected location in a different window or browser tab"] = "";
+App::$strings["User '%s' deleted"] = "";
+App::$strings["Attachments:"] = "";
+App::$strings["\$Projectname event notification:"] = "";
+App::$strings["prev"] = "";
+App::$strings["first"] = "";
+App::$strings["last"] = "";
+App::$strings["next"] = "";
+App::$strings["older"] = "";
+App::$strings["newer"] = "";
+App::$strings["No connections"] = "";
+App::$strings["%d Connection"] = array(
0 => "",
1 => "",
);
-$a->strings["View Connections"] = "";
-$a->strings["Search"] = "";
-$a->strings["poke"] = "";
-$a->strings["poked"] = "";
-$a->strings["ping"] = "";
-$a->strings["pinged"] = "";
-$a->strings["prod"] = "";
-$a->strings["prodded"] = "";
-$a->strings["slap"] = "";
-$a->strings["slapped"] = "";
-$a->strings["finger"] = "";
-$a->strings["fingered"] = "";
-$a->strings["rebuff"] = "";
-$a->strings["rebuffed"] = "";
-$a->strings["happy"] = "";
-$a->strings["sad"] = "";
-$a->strings["mellow"] = "";
-$a->strings["tired"] = "";
-$a->strings["perky"] = "";
-$a->strings["angry"] = "";
-$a->strings["stupified"] = "";
-$a->strings["puzzled"] = "";
-$a->strings["interested"] = "";
-$a->strings["bitter"] = "";
-$a->strings["cheerful"] = "";
-$a->strings["alive"] = "";
-$a->strings["annoyed"] = "";
-$a->strings["anxious"] = "";
-$a->strings["cranky"] = "";
-$a->strings["disturbed"] = "";
-$a->strings["frustrated"] = "";
-$a->strings["depressed"] = "";
-$a->strings["motivated"] = "";
-$a->strings["relaxed"] = "";
-$a->strings["surprised"] = "";
-$a->strings["Monday"] = "";
-$a->strings["Tuesday"] = "";
-$a->strings["Wednesday"] = "";
-$a->strings["Thursday"] = "";
-$a->strings["Friday"] = "";
-$a->strings["Saturday"] = "";
-$a->strings["Sunday"] = "";
-$a->strings["January"] = "";
-$a->strings["February"] = "";
-$a->strings["March"] = "";
-$a->strings["April"] = "";
-$a->strings["May"] = "";
-$a->strings["June"] = "";
-$a->strings["July"] = "";
-$a->strings["August"] = "";
-$a->strings["September"] = "";
-$a->strings["October"] = "";
-$a->strings["November"] = "";
-$a->strings["December"] = "";
-$a->strings["unknown.???"] = "";
-$a->strings["bytes"] = "";
-$a->strings["remove category"] = "";
-$a->strings["remove from file"] = "";
-$a->strings["Click to open/close"] = "";
-$a->strings["Link to Source"] = "";
-$a->strings["default"] = "";
-$a->strings["Page layout"] = "";
-$a->strings["You can create your own with the layouts tool"] = "";
-$a->strings["Page content type"] = "";
-$a->strings["Select an alternate language"] = "";
-$a->strings["photo"] = "";
-$a->strings["event"] = "";
-$a->strings["status"] = "";
-$a->strings["comment"] = "";
-$a->strings["activity"] = "";
-$a->strings["Design Tools"] = "";
-$a->strings["Blocks"] = "";
-$a->strings["Menus"] = "";
-$a->strings["Layouts"] = "";
-$a->strings["Pages"] = "";
-$a->strings["Logout"] = "";
-$a->strings["End this session"] = "";
-$a->strings["Home"] = "";
-$a->strings["Your posts and conversations"] = "";
-$a->strings["View Profile"] = "";
-$a->strings["Your profile page"] = "";
-$a->strings["Edit Profiles"] = "";
-$a->strings["Manage/Edit profiles"] = "";
-$a->strings["Edit Profile"] = "";
-$a->strings["Edit your profile"] = "";
-$a->strings["Photos"] = "";
-$a->strings["Your photos"] = "";
-$a->strings["Your files"] = "";
-$a->strings["Chat"] = "";
-$a->strings["Your chatrooms"] = "";
-$a->strings["Bookmarks"] = "";
-$a->strings["Your bookmarks"] = "";
-$a->strings["Webpages"] = "";
-$a->strings["Your webpages"] = "";
-$a->strings["Login"] = "";
-$a->strings["Sign in"] = "";
-$a->strings["%s - click to logout"] = "";
-$a->strings["Remote authentication"] = "";
-$a->strings["Click to authenticate to your home hub"] = "";
-$a->strings["Home Page"] = "";
-$a->strings["Register"] = "";
-$a->strings["Create an account"] = "";
-$a->strings["Help"] = "";
-$a->strings["Help and documentation"] = "";
-$a->strings["Applications, utilities, links, games"] = "";
-$a->strings["Search site content"] = "";
-$a->strings["Directory"] = "";
-$a->strings["Channel Directory"] = "";
-$a->strings["Matrix"] = "";
-$a->strings["Your matrix"] = "";
-$a->strings["Mark all matrix notifications seen"] = "";
-$a->strings["Channel Home"] = "";
-$a->strings["Channel home"] = "";
-$a->strings["Mark all channel notifications seen"] = "";
-$a->strings["Connections"] = "";
-$a->strings["Notices"] = "";
-$a->strings["Notifications"] = "";
-$a->strings["See all notifications"] = "";
-$a->strings["Mark all system notifications seen"] = "";
-$a->strings["Mail"] = "";
-$a->strings["Private mail"] = "";
-$a->strings["See all private messages"] = "";
-$a->strings["Mark all private messages seen"] = "";
-$a->strings["Inbox"] = "";
-$a->strings["Outbox"] = "";
-$a->strings["Events"] = "";
-$a->strings["Event Calendar"] = "";
-$a->strings["See all events"] = "";
-$a->strings["Mark all events seen"] = "";
-$a->strings["Channel Manager"] = "";
-$a->strings["Manage Your Channels"] = "";
-$a->strings["Account/Channel Settings"] = "";
-$a->strings["Admin"] = "";
-$a->strings["Site Setup and Configuration"] = "";
-$a->strings["Loading..."] = "";
-$a->strings["@name, #tag, content"] = "";
-$a->strings["Please wait..."] = "";
-$a->strings["Tags"] = "";
-$a->strings["Keywords"] = "";
-$a->strings["have"] = "";
-$a->strings["has"] = "";
-$a->strings["want"] = "";
-$a->strings["wants"] = "";
-$a->strings["likes"] = "";
-$a->strings["dislikes"] = "";
-$a->strings[" and "] = "";
-$a->strings["public profile"] = "";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
-$a->strings["Visit %1\$s's %2\$s"] = "";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
-$a->strings["Permission denied"] = "";
-$a->strings["(Unknown)"] = "";
-$a->strings["Visible to anybody on the internet."] = "";
-$a->strings["Visible to you only."] = "";
-$a->strings["Visible to anybody in this network."] = "";
-$a->strings["Visible to anybody authenticated."] = "";
-$a->strings["Visible to anybody on %s."] = "";
-$a->strings["Visible to all connections."] = "";
-$a->strings["Visible to approved connections."] = "";
-$a->strings["Visible to specific connections."] = "";
-$a->strings["Item not found."] = "";
-$a->strings["Permission denied."] = "";
-$a->strings["Collection not found."] = "";
-$a->strings["Collection is empty."] = "";
-$a->strings["Collection: %s"] = "";
-$a->strings["Connection: %s"] = "";
-$a->strings["Connection not found."] = "";
-$a->strings["Can view my normal stream and posts"] = "";
-$a->strings["Can view my default channel profile"] = "";
-$a->strings["Can view my photo albums"] = "";
-$a->strings["Can view my connections"] = "";
-$a->strings["Can view my file storage"] = "";
-$a->strings["Can view my webpages"] = "";
-$a->strings["Can send me their channel stream and posts"] = "";
-$a->strings["Can post on my channel page (\"wall\")"] = "";
-$a->strings["Can comment on or like my posts"] = "";
-$a->strings["Can send me private mail messages"] = "";
-$a->strings["Can post photos to my photo albums"] = "";
-$a->strings["Can like/dislike stuff"] = "";
-$a->strings["Profiles and things other than posts/comments"] = "";
-$a->strings["Can forward to all my channel contacts via post @mentions"] = "";
-$a->strings["Advanced - useful for creating group forum channels"] = "";
-$a->strings["Can chat with me (when available)"] = "";
-$a->strings["Can write to my file storage"] = "";
-$a->strings["Can edit my webpages"] = "";
-$a->strings["Can source my public posts in derived channels"] = "";
-$a->strings["Somewhat advanced - very useful in open communities"] = "";
-$a->strings["Can administer my channel resources"] = "";
-$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "";
-$a->strings["Social Networking"] = "";
-$a->strings["Mostly Public"] = "";
-$a->strings["Restricted"] = "";
-$a->strings["Private"] = "";
-$a->strings["Community Forum"] = "";
-$a->strings["Feed Republish"] = "";
-$a->strings["Special Purpose"] = "";
-$a->strings["Celebrity/Soapbox"] = "";
-$a->strings["Group Repository"] = "";
-$a->strings["Other"] = "";
-$a->strings["Custom/Expert Mode"] = "";
-$a->strings["channel"] = "";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "";
-$a->strings["%1\$s is now connected with %2\$s"] = "";
-$a->strings["%1\$s poked %2\$s"] = "";
-$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "";
-$a->strings["__ctx:title__ Likes"] = "";
-$a->strings["__ctx:title__ Dislikes"] = "";
-$a->strings["__ctx:title__ Agree"] = "";
-$a->strings["__ctx:title__ Disagree"] = "";
-$a->strings["__ctx:title__ Abstain"] = "";
-$a->strings["__ctx:title__ Attending"] = "";
-$a->strings["__ctx:title__ Not attending"] = "";
-$a->strings["__ctx:title__ Might attend"] = "";
-$a->strings["View %s's profile @ %s"] = "";
-$a->strings["Categories:"] = "";
-$a->strings["Filed under:"] = "";
-$a->strings["View in context"] = "";
-$a->strings["remove"] = "";
-$a->strings["Delete Selected Items"] = "";
-$a->strings["View Source"] = "";
-$a->strings["Follow Thread"] = "";
-$a->strings["View Status"] = "";
-$a->strings["View Photos"] = "";
-$a->strings["Matrix Activity"] = "";
-$a->strings["Edit Contact"] = "";
-$a->strings["Send PM"] = "";
-$a->strings["Poke"] = "";
-$a->strings["%s likes this."] = "";
-$a->strings["%s doesn't like this."] = "";
-$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
+App::$strings["View Connections"] = "";
+App::$strings["Search"] = "";
+App::$strings["poke"] = "";
+App::$strings["poked"] = "";
+App::$strings["ping"] = "";
+App::$strings["pinged"] = "";
+App::$strings["prod"] = "";
+App::$strings["prodded"] = "";
+App::$strings["slap"] = "";
+App::$strings["slapped"] = "";
+App::$strings["finger"] = "";
+App::$strings["fingered"] = "";
+App::$strings["rebuff"] = "";
+App::$strings["rebuffed"] = "";
+App::$strings["happy"] = "";
+App::$strings["sad"] = "";
+App::$strings["mellow"] = "";
+App::$strings["tired"] = "";
+App::$strings["perky"] = "";
+App::$strings["angry"] = "";
+App::$strings["stupified"] = "";
+App::$strings["puzzled"] = "";
+App::$strings["interested"] = "";
+App::$strings["bitter"] = "";
+App::$strings["cheerful"] = "";
+App::$strings["alive"] = "";
+App::$strings["annoyed"] = "";
+App::$strings["anxious"] = "";
+App::$strings["cranky"] = "";
+App::$strings["disturbed"] = "";
+App::$strings["frustrated"] = "";
+App::$strings["depressed"] = "";
+App::$strings["motivated"] = "";
+App::$strings["relaxed"] = "";
+App::$strings["surprised"] = "";
+App::$strings["Monday"] = "";
+App::$strings["Tuesday"] = "";
+App::$strings["Wednesday"] = "";
+App::$strings["Thursday"] = "";
+App::$strings["Friday"] = "";
+App::$strings["Saturday"] = "";
+App::$strings["Sunday"] = "";
+App::$strings["January"] = "";
+App::$strings["February"] = "";
+App::$strings["March"] = "";
+App::$strings["April"] = "";
+App::$strings["May"] = "";
+App::$strings["June"] = "";
+App::$strings["July"] = "";
+App::$strings["August"] = "";
+App::$strings["September"] = "";
+App::$strings["October"] = "";
+App::$strings["November"] = "";
+App::$strings["December"] = "";
+App::$strings["unknown.???"] = "";
+App::$strings["bytes"] = "";
+App::$strings["remove category"] = "";
+App::$strings["remove from file"] = "";
+App::$strings["Click to open/close"] = "";
+App::$strings["Link to Source"] = "";
+App::$strings["default"] = "";
+App::$strings["Page layout"] = "";
+App::$strings["You can create your own with the layouts tool"] = "";
+App::$strings["Page content type"] = "";
+App::$strings["Select an alternate language"] = "";
+App::$strings["photo"] = "";
+App::$strings["event"] = "";
+App::$strings["status"] = "";
+App::$strings["comment"] = "";
+App::$strings["activity"] = "";
+App::$strings["Design Tools"] = "";
+App::$strings["Blocks"] = "";
+App::$strings["Menus"] = "";
+App::$strings["Layouts"] = "";
+App::$strings["Pages"] = "";
+App::$strings["Logout"] = "";
+App::$strings["End this session"] = "";
+App::$strings["Home"] = "";
+App::$strings["Your posts and conversations"] = "";
+App::$strings["View Profile"] = "";
+App::$strings["Your profile page"] = "";
+App::$strings["Edit Profiles"] = "";
+App::$strings["Manage/Edit profiles"] = "";
+App::$strings["Edit Profile"] = "";
+App::$strings["Edit your profile"] = "";
+App::$strings["Photos"] = "";
+App::$strings["Your photos"] = "";
+App::$strings["Your files"] = "";
+App::$strings["Chat"] = "";
+App::$strings["Your chatrooms"] = "";
+App::$strings["Bookmarks"] = "";
+App::$strings["Your bookmarks"] = "";
+App::$strings["Webpages"] = "";
+App::$strings["Your webpages"] = "";
+App::$strings["Login"] = "";
+App::$strings["Sign in"] = "";
+App::$strings["%s - click to logout"] = "";
+App::$strings["Remote authentication"] = "";
+App::$strings["Click to authenticate to your home hub"] = "";
+App::$strings["Home Page"] = "";
+App::$strings["Register"] = "";
+App::$strings["Create an account"] = "";
+App::$strings["Help"] = "";
+App::$strings["Help and documentation"] = "";
+App::$strings["Applications, utilities, links, games"] = "";
+App::$strings["Search site content"] = "";
+App::$strings["Directory"] = "";
+App::$strings["Channel Directory"] = "";
+App::$strings["Matrix"] = "";
+App::$strings["Your matrix"] = "";
+App::$strings["Mark all matrix notifications seen"] = "";
+App::$strings["Channel Home"] = "";
+App::$strings["Channel home"] = "";
+App::$strings["Mark all channel notifications seen"] = "";
+App::$strings["Connections"] = "";
+App::$strings["Notices"] = "";
+App::$strings["Notifications"] = "";
+App::$strings["See all notifications"] = "";
+App::$strings["Mark all system notifications seen"] = "";
+App::$strings["Mail"] = "";
+App::$strings["Private mail"] = "";
+App::$strings["See all private messages"] = "";
+App::$strings["Mark all private messages seen"] = "";
+App::$strings["Inbox"] = "";
+App::$strings["Outbox"] = "";
+App::$strings["Events"] = "";
+App::$strings["Event Calendar"] = "";
+App::$strings["See all events"] = "";
+App::$strings["Mark all events seen"] = "";
+App::$strings["Channel Manager"] = "";
+App::$strings["Manage Your Channels"] = "";
+App::$strings["Account/Channel Settings"] = "";
+App::$strings["Admin"] = "";
+App::$strings["Site Setup and Configuration"] = "";
+App::$strings["Loading..."] = "";
+App::$strings["@name, #tag, content"] = "";
+App::$strings["Please wait..."] = "";
+App::$strings["Tags"] = "";
+App::$strings["Keywords"] = "";
+App::$strings["have"] = "";
+App::$strings["has"] = "";
+App::$strings["want"] = "";
+App::$strings["wants"] = "";
+App::$strings["likes"] = "";
+App::$strings["dislikes"] = "";
+App::$strings[" and "] = "";
+App::$strings["public profile"] = "";
+App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
+App::$strings["Visit %1\$s's %2\$s"] = "";
+App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
+App::$strings["Permission denied"] = "";
+App::$strings["(Unknown)"] = "";
+App::$strings["Visible to anybody on the internet."] = "";
+App::$strings["Visible to you only."] = "";
+App::$strings["Visible to anybody in this network."] = "";
+App::$strings["Visible to anybody authenticated."] = "";
+App::$strings["Visible to anybody on %s."] = "";
+App::$strings["Visible to all connections."] = "";
+App::$strings["Visible to approved connections."] = "";
+App::$strings["Visible to specific connections."] = "";
+App::$strings["Item not found."] = "";
+App::$strings["Permission denied."] = "";
+App::$strings["Collection not found."] = "";
+App::$strings["Collection is empty."] = "";
+App::$strings["Collection: %s"] = "";
+App::$strings["Connection: %s"] = "";
+App::$strings["Connection not found."] = "";
+App::$strings["Can view my normal stream and posts"] = "";
+App::$strings["Can view my default channel profile"] = "";
+App::$strings["Can view my photo albums"] = "";
+App::$strings["Can view my connections"] = "";
+App::$strings["Can view my file storage"] = "";
+App::$strings["Can view my webpages"] = "";
+App::$strings["Can send me their channel stream and posts"] = "";
+App::$strings["Can post on my channel page (\"wall\")"] = "";
+App::$strings["Can comment on or like my posts"] = "";
+App::$strings["Can send me private mail messages"] = "";
+App::$strings["Can post photos to my photo albums"] = "";
+App::$strings["Can like/dislike stuff"] = "";
+App::$strings["Profiles and things other than posts/comments"] = "";
+App::$strings["Can forward to all my channel contacts via post @mentions"] = "";
+App::$strings["Advanced - useful for creating group forum channels"] = "";
+App::$strings["Can chat with me (when available)"] = "";
+App::$strings["Can write to my file storage"] = "";
+App::$strings["Can edit my webpages"] = "";
+App::$strings["Can source my public posts in derived channels"] = "";
+App::$strings["Somewhat advanced - very useful in open communities"] = "";
+App::$strings["Can administer my channel resources"] = "";
+App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "";
+App::$strings["Social Networking"] = "";
+App::$strings["Mostly Public"] = "";
+App::$strings["Restricted"] = "";
+App::$strings["Private"] = "";
+App::$strings["Community Forum"] = "";
+App::$strings["Feed Republish"] = "";
+App::$strings["Special Purpose"] = "";
+App::$strings["Celebrity/Soapbox"] = "";
+App::$strings["Group Repository"] = "";
+App::$strings["Other"] = "";
+App::$strings["Custom/Expert Mode"] = "";
+App::$strings["channel"] = "";
+App::$strings["%1\$s likes %2\$s's %3\$s"] = "";
+App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "";
+App::$strings["%1\$s is now connected with %2\$s"] = "";
+App::$strings["%1\$s poked %2\$s"] = "";
+App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "";
+App::$strings["__ctx:title__ Likes"] = "";
+App::$strings["__ctx:title__ Dislikes"] = "";
+App::$strings["__ctx:title__ Agree"] = "";
+App::$strings["__ctx:title__ Disagree"] = "";
+App::$strings["__ctx:title__ Abstain"] = "";
+App::$strings["__ctx:title__ Attending"] = "";
+App::$strings["__ctx:title__ Not attending"] = "";
+App::$strings["__ctx:title__ Might attend"] = "";
+App::$strings["View %s's profile @ %s"] = "";
+App::$strings["Categories:"] = "";
+App::$strings["Filed under:"] = "";
+App::$strings["View in context"] = "";
+App::$strings["remove"] = "";
+App::$strings["Delete Selected Items"] = "";
+App::$strings["View Source"] = "";
+App::$strings["Follow Thread"] = "";
+App::$strings["View Status"] = "";
+App::$strings["View Photos"] = "";
+App::$strings["Matrix Activity"] = "";
+App::$strings["Edit Contact"] = "";
+App::$strings["Send PM"] = "";
+App::$strings["Poke"] = "";
+App::$strings["%s likes this."] = "";
+App::$strings["%s doesn't like this."] = "";
+App::$strings["<span %1\$s>%2\$d people</span> like this."] = array(
0 => "",
1 => "",
);
-$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
+App::$strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
0 => "",
1 => "",
);
-$a->strings["and"] = "";
-$a->strings[", and %d other people"] = array(
+App::$strings["and"] = "";
+App::$strings[", and %d other people"] = array(
0 => "",
1 => "",
);
-$a->strings["%s like this."] = "";
-$a->strings["%s don't like this."] = "";
-$a->strings["Visible to <strong>everybody</strong>"] = "";
-$a->strings["Please enter a link URL:"] = "";
-$a->strings["Please enter a video link/URL:"] = "";
-$a->strings["Please enter an audio link/URL:"] = "";
-$a->strings["Tag term:"] = "";
-$a->strings["Save to Folder:"] = "";
-$a->strings["Where are you right now?"] = "";
-$a->strings["Expires YYYY-MM-DD HH:MM"] = "";
-$a->strings["Share"] = "";
-$a->strings["Page link name"] = "";
-$a->strings["Post as"] = "";
-$a->strings["Upload photo"] = "";
-$a->strings["upload photo"] = "";
-$a->strings["Attach file"] = "";
-$a->strings["attach file"] = "";
-$a->strings["Insert web link"] = "";
-$a->strings["web link"] = "";
-$a->strings["Insert video link"] = "";
-$a->strings["video link"] = "";
-$a->strings["Insert audio link"] = "";
-$a->strings["audio link"] = "";
-$a->strings["Set your location"] = "";
-$a->strings["set location"] = "";
-$a->strings["Toggle voting"] = "";
-$a->strings["Clear browser location"] = "";
-$a->strings["clear location"] = "";
-$a->strings["Title (optional)"] = "";
-$a->strings["Categories (optional, comma-separated list)"] = "";
-$a->strings["Permission settings"] = "";
-$a->strings["permissions"] = "";
-$a->strings["Public post"] = "";
-$a->strings["Example: bob@example.com, mary@example.com"] = "";
-$a->strings["Set expiration date"] = "";
-$a->strings["OK"] = "";
-$a->strings["Cancel"] = "";
-$a->strings["Discover"] = "";
-$a->strings["Imported public streams"] = "";
-$a->strings["Commented Order"] = "";
-$a->strings["Sort by Comment Date"] = "";
-$a->strings["Posted Order"] = "";
-$a->strings["Sort by Post Date"] = "";
-$a->strings["Posts that mention or involve you"] = "";
-$a->strings["New"] = "";
-$a->strings["Activity Stream - by date"] = "";
-$a->strings["Starred"] = "";
-$a->strings["Favourite Posts"] = "";
-$a->strings["Spam"] = "";
-$a->strings["Posts flagged as SPAM"] = "";
-$a->strings["Channel"] = "";
-$a->strings["Status Messages and Posts"] = "";
-$a->strings["About"] = "";
-$a->strings["Profile Details"] = "";
-$a->strings["Photo Albums"] = "";
-$a->strings["Files and Storage"] = "";
-$a->strings["Chatrooms"] = "";
-$a->strings["Saved Bookmarks"] = "";
-$a->strings["Manage Webpages"] = "";
-$a->strings["__ctx:noun__ Attending"] = array(
+App::$strings["%s like this."] = "";
+App::$strings["%s don't like this."] = "";
+App::$strings["Visible to <strong>everybody</strong>"] = "";
+App::$strings["Please enter a link URL:"] = "";
+App::$strings["Please enter a video link/URL:"] = "";
+App::$strings["Please enter an audio link/URL:"] = "";
+App::$strings["Tag term:"] = "";
+App::$strings["Save to Folder:"] = "";
+App::$strings["Where are you right now?"] = "";
+App::$strings["Expires YYYY-MM-DD HH:MM"] = "";
+App::$strings["Share"] = "";
+App::$strings["Page link name"] = "";
+App::$strings["Post as"] = "";
+App::$strings["Upload photo"] = "";
+App::$strings["upload photo"] = "";
+App::$strings["Attach file"] = "";
+App::$strings["attach file"] = "";
+App::$strings["Insert web link"] = "";
+App::$strings["web link"] = "";
+App::$strings["Insert video link"] = "";
+App::$strings["video link"] = "";
+App::$strings["Insert audio link"] = "";
+App::$strings["audio link"] = "";
+App::$strings["Set your location"] = "";
+App::$strings["set location"] = "";
+App::$strings["Toggle voting"] = "";
+App::$strings["Clear browser location"] = "";
+App::$strings["clear location"] = "";
+App::$strings["Title (optional)"] = "";
+App::$strings["Categories (optional, comma-separated list)"] = "";
+App::$strings["Permission settings"] = "";
+App::$strings["permissions"] = "";
+App::$strings["Public post"] = "";
+App::$strings["Example: bob@example.com, mary@example.com"] = "";
+App::$strings["Set expiration date"] = "";
+App::$strings["OK"] = "";
+App::$strings["Cancel"] = "";
+App::$strings["Discover"] = "";
+App::$strings["Imported public streams"] = "";
+App::$strings["Commented Order"] = "";
+App::$strings["Sort by Comment Date"] = "";
+App::$strings["Posted Order"] = "";
+App::$strings["Sort by Post Date"] = "";
+App::$strings["Posts that mention or involve you"] = "";
+App::$strings["New"] = "";
+App::$strings["Activity Stream - by date"] = "";
+App::$strings["Starred"] = "";
+App::$strings["Favourite Posts"] = "";
+App::$strings["Spam"] = "";
+App::$strings["Posts flagged as SPAM"] = "";
+App::$strings["Channel"] = "";
+App::$strings["Status Messages and Posts"] = "";
+App::$strings["About"] = "";
+App::$strings["Profile Details"] = "";
+App::$strings["Photo Albums"] = "";
+App::$strings["Files and Storage"] = "";
+App::$strings["Chatrooms"] = "";
+App::$strings["Saved Bookmarks"] = "";
+App::$strings["Manage Webpages"] = "";
+App::$strings["__ctx:noun__ Attending"] = array(
0 => "",
1 => "",
);
-$a->strings["__ctx:noun__ Not Attending"] = array(
+App::$strings["__ctx:noun__ Not Attending"] = array(
0 => "",
1 => "",
);
-$a->strings["__ctx:noun__ Undecided"] = array(
+App::$strings["__ctx:noun__ Undecided"] = array(
0 => "",
1 => "",
);
-$a->strings["__ctx:noun__ Agree"] = array(
+App::$strings["__ctx:noun__ Agree"] = array(
0 => "",
1 => "",
);
-$a->strings["__ctx:noun__ Disagree"] = array(
+App::$strings["__ctx:noun__ Disagree"] = array(
0 => "",
1 => "",
);
-$a->strings["__ctx:noun__ Abstain"] = array(
+App::$strings["__ctx:noun__ Abstain"] = array(
0 => "",
1 => "",
);
-$a->strings["Image/photo"] = "";
-$a->strings["Encrypted content"] = "";
-$a->strings["Install design element: "] = "";
-$a->strings["QR code"] = "";
-$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "";
-$a->strings["post"] = "";
-$a->strings["Different viewers will see this text differently"] = "";
-$a->strings["$1 spoiler"] = "";
-$a->strings["$1 wrote:"] = "";
-$a->strings["Image exceeds website size limit of %lu bytes"] = "";
-$a->strings["Image file is empty."] = "";
-$a->strings["Unable to process image"] = "";
-$a->strings["Photo storage failed."] = "";
-$a->strings["Upload New Photos"] = "";
-$a->strings["Invalid data packet"] = "";
-$a->strings["Unable to verify channel signature"] = "";
-$a->strings["Unable to verify site signature for %s"] = "";
-$a->strings["Embedded content"] = "";
-$a->strings["Embedding disabled"] = "";
-$a->strings["Logged out."] = "";
-$a->strings["Failed authentication"] = "";
-$a->strings["Login failed."] = "";
-$a->strings["%d invitation available"] = array(
+App::$strings["Image/photo"] = "";
+App::$strings["Encrypted content"] = "";
+App::$strings["Install design element: "] = "";
+App::$strings["QR code"] = "";
+App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "";
+App::$strings["post"] = "";
+App::$strings["Different viewers will see this text differently"] = "";
+App::$strings["$1 spoiler"] = "";
+App::$strings["$1 wrote:"] = "";
+App::$strings["Image exceeds website size limit of %lu bytes"] = "";
+App::$strings["Image file is empty."] = "";
+App::$strings["Unable to process image"] = "";
+App::$strings["Photo storage failed."] = "";
+App::$strings["Upload New Photos"] = "";
+App::$strings["Invalid data packet"] = "";
+App::$strings["Unable to verify channel signature"] = "";
+App::$strings["Unable to verify site signature for %s"] = "";
+App::$strings["Embedded content"] = "";
+App::$strings["Embedding disabled"] = "";
+App::$strings["Logged out."] = "";
+App::$strings["Failed authentication"] = "";
+App::$strings["Login failed."] = "";
+App::$strings["%d invitation available"] = array(
0 => "",
1 => "",
);
-$a->strings["Advanced"] = "";
-$a->strings["Find Channels"] = "";
-$a->strings["Enter name or interest"] = "";
-$a->strings["Connect/Follow"] = "";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "";
-$a->strings["Find"] = "";
-$a->strings["Channel Suggestions"] = "";
-$a->strings["Random Profile"] = "";
-$a->strings["Invite Friends"] = "";
-$a->strings["Advanced example: name=fred and country=iceland"] = "";
-$a->strings["%d connection in common"] = array(
+App::$strings["Advanced"] = "";
+App::$strings["Find Channels"] = "";
+App::$strings["Enter name or interest"] = "";
+App::$strings["Connect/Follow"] = "";
+App::$strings["Examples: Robert Morgenstein, Fishing"] = "";
+App::$strings["Find"] = "";
+App::$strings["Channel Suggestions"] = "";
+App::$strings["Random Profile"] = "";
+App::$strings["Invite Friends"] = "";
+App::$strings["Advanced example: name=fred and country=iceland"] = "";
+App::$strings["%d connection in common"] = array(
0 => "",
1 => "",
);
-$a->strings["show more"] = "";
-$a->strings["Visible to your default audience"] = "";
-$a->strings["Show"] = "";
-$a->strings["Don't show"] = "";
-$a->strings["Permissions"] = "";
-$a->strings["Item was not found."] = "";
-$a->strings["No source file."] = "";
-$a->strings["Cannot locate file to replace"] = "";
-$a->strings["Cannot locate file to revise/update"] = "";
-$a->strings["File exceeds size limit of %d"] = "";
-$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "";
-$a->strings["File upload failed. Possible system limit or action terminated."] = "";
-$a->strings["Stored file could not be verified. Upload failed."] = "";
-$a->strings["Path not available."] = "";
-$a->strings["Empty pathname"] = "";
-$a->strings["duplicate filename or path"] = "";
-$a->strings["Path not found."] = "";
-$a->strings["mkdir failed."] = "";
-$a->strings["database storage failed."] = "";
-$a->strings["Unable to obtain identity information from database"] = "";
-$a->strings["Empty name"] = "";
-$a->strings["Name too long"] = "";
-$a->strings["No account identifier"] = "";
-$a->strings["Nickname is required."] = "";
-$a->strings["Reserved nickname. Please choose another."] = "";
-$a->strings["Nickname has unsupported characters or is already being used on this site."] = "";
-$a->strings["Unable to retrieve created identity"] = "";
-$a->strings["Default Profile"] = "";
-$a->strings["Requested channel is not available."] = "";
-$a->strings["Requested profile is not available."] = "";
-$a->strings["Change profile photo"] = "";
-$a->strings["Profiles"] = "";
-$a->strings["Manage/edit profiles"] = "";
-$a->strings["Create New Profile"] = "";
-$a->strings["Profile Image"] = "";
-$a->strings["visible to everybody"] = "";
-$a->strings["Edit visibility"] = "";
-$a->strings["Gender:"] = "";
-$a->strings["Status:"] = "";
-$a->strings["Homepage:"] = "";
-$a->strings["Online Now"] = "";
-$a->strings["g A l F d"] = "";
-$a->strings["F d"] = "";
-$a->strings["[today]"] = "";
-$a->strings["Birthday Reminders"] = "";
-$a->strings["Birthdays this week:"] = "";
-$a->strings["[No description]"] = "";
-$a->strings["Event Reminders"] = "";
-$a->strings["Events this week:"] = "";
-$a->strings["Profile"] = "";
-$a->strings["Full Name:"] = "";
-$a->strings["Like this channel"] = "";
-$a->strings["j F, Y"] = "";
-$a->strings["j F"] = "";
-$a->strings["Birthday:"] = "";
-$a->strings["Age:"] = "";
-$a->strings["for %1\$d %2\$s"] = "";
-$a->strings["Sexual Preference:"] = "";
-$a->strings["Hometown:"] = "";
-$a->strings["Tags:"] = "";
-$a->strings["Political Views:"] = "";
-$a->strings["Religion:"] = "";
-$a->strings["About:"] = "";
-$a->strings["Hobbies/Interests:"] = "";
-$a->strings["Likes:"] = "";
-$a->strings["Dislikes:"] = "";
-$a->strings["Contact information and Social Networks:"] = "";
-$a->strings["My other channels:"] = "";
-$a->strings["Musical interests:"] = "";
-$a->strings["Books, literature:"] = "";
-$a->strings["Television:"] = "";
-$a->strings["Film/dance/culture/entertainment:"] = "";
-$a->strings["Love/Romance:"] = "";
-$a->strings["Work/employment:"] = "";
-$a->strings["School/education:"] = "";
-$a->strings["Like this thing"] = "";
-$a->strings["Male"] = "";
-$a->strings["Female"] = "";
-$a->strings["Currently Male"] = "";
-$a->strings["Currently Female"] = "";
-$a->strings["Mostly Male"] = "";
-$a->strings["Mostly Female"] = "";
-$a->strings["Transgender"] = "";
-$a->strings["Intersex"] = "";
-$a->strings["Transsexual"] = "";
-$a->strings["Hermaphrodite"] = "";
-$a->strings["Neuter"] = "";
-$a->strings["Non-specific"] = "";
-$a->strings["Undecided"] = "";
-$a->strings["Males"] = "";
-$a->strings["Females"] = "";
-$a->strings["Gay"] = "";
-$a->strings["Lesbian"] = "";
-$a->strings["No Preference"] = "";
-$a->strings["Bisexual"] = "";
-$a->strings["Autosexual"] = "";
-$a->strings["Abstinent"] = "";
-$a->strings["Virgin"] = "";
-$a->strings["Deviant"] = "";
-$a->strings["Fetish"] = "";
-$a->strings["Oodles"] = "";
-$a->strings["Nonsexual"] = "";
-$a->strings["Single"] = "";
-$a->strings["Lonely"] = "";
-$a->strings["Available"] = "";
-$a->strings["Unavailable"] = "";
-$a->strings["Has crush"] = "";
-$a->strings["Infatuated"] = "";
-$a->strings["Dating"] = "";
-$a->strings["Unfaithful"] = "";
-$a->strings["Sex Addict"] = "";
-$a->strings["Friends/Benefits"] = "";
-$a->strings["Casual"] = "";
-$a->strings["Engaged"] = "";
-$a->strings["Married"] = "";
-$a->strings["Imaginarily married"] = "";
-$a->strings["Partners"] = "";
-$a->strings["Cohabiting"] = "";
-$a->strings["Common law"] = "";
-$a->strings["Happy"] = "";
-$a->strings["Not looking"] = "";
-$a->strings["Swinger"] = "";
-$a->strings["Betrayed"] = "";
-$a->strings["Separated"] = "";
-$a->strings["Unstable"] = "";
-$a->strings["Divorced"] = "";
-$a->strings["Imaginarily divorced"] = "";
-$a->strings["Widowed"] = "";
-$a->strings["Uncertain"] = "";
-$a->strings["It's complicated"] = "";
-$a->strings["Don't care"] = "";
-$a->strings["Ask me"] = "";
-$a->strings["Site Admin"] = "";
-$a->strings["Address Book"] = "";
-$a->strings["Mood"] = "";
-$a->strings["Probe"] = "";
-$a->strings["Suggest"] = "";
-$a->strings["Random Channel"] = "";
-$a->strings["Invite"] = "";
-$a->strings["Features"] = "";
-$a->strings["Language"] = "";
-$a->strings["Post"] = "";
-$a->strings["Profile Photo"] = "";
-$a->strings["Update"] = "";
-$a->strings["Install"] = "";
-$a->strings["Purchase"] = "";
-$a->strings["Missing room name"] = "";
-$a->strings["Duplicate room name"] = "";
-$a->strings["Invalid room specifier."] = "";
-$a->strings["Room not found."] = "";
-$a->strings["Room is full"] = "";
-$a->strings["Please choose"] = "";
-$a->strings["Agree"] = "";
-$a->strings["Disagree"] = "";
-$a->strings["Abstain"] = "";
-$a->strings["projectname"] = "";
-$a->strings["Some blurb about what to do when you're new here"] = "";
-$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "";
-$a->strings["Create a new channel"] = "";
-$a->strings["Current Channel"] = "";
-$a->strings["Switch to one of your channels by selecting it."] = "";
-$a->strings["Default Channel"] = "";
-$a->strings["Make Default"] = "";
-$a->strings["%d new messages"] = "";
-$a->strings["%d new introductions"] = "";
-$a->strings["Delegated Channels"] = "";
-$a->strings["Name is required"] = "";
-$a->strings["Key and Secret are required"] = "";
-$a->strings["Diaspora Policy Settings updated."] = "";
-$a->strings["Passwords do not match. Password unchanged."] = "";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "";
-$a->strings["Password changed."] = "";
-$a->strings["Password update failed. Please try again."] = "";
-$a->strings["Not valid email."] = "";
-$a->strings["Protected email address. Cannot change to that email."] = "";
-$a->strings["System failure storing new email. Please try again."] = "";
-$a->strings["Settings updated."] = "";
-$a->strings["No"] = "";
-$a->strings["Yes"] = "";
-$a->strings["Add application"] = "";
-$a->strings["Name of application"] = "";
-$a->strings["Consumer Key"] = "";
-$a->strings["Automatically generated - change if desired. Max length 20"] = "";
-$a->strings["Consumer Secret"] = "";
-$a->strings["Redirect"] = "";
-$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "";
-$a->strings["Icon url"] = "";
-$a->strings["Optional"] = "";
-$a->strings["You can't edit this application."] = "";
-$a->strings["Connected Apps"] = "";
-$a->strings["Client key starts with"] = "";
-$a->strings["No name"] = "";
-$a->strings["Remove authorization"] = "";
-$a->strings["No feature settings configured"] = "";
-$a->strings["Feature/Addon Settings"] = "";
-$a->strings["Settings for the built-in Diaspora emulator"] = "";
-$a->strings["Allow any Diaspora member to comment on your public posts"] = "";
-$a->strings["Diaspora Policy Settings"] = "";
-$a->strings["Prevent your hashtags from being redirected to other sites"] = "";
-$a->strings["Account Settings"] = "";
-$a->strings["Enter New Password:"] = "";
-$a->strings["Confirm New Password:"] = "";
-$a->strings["Leave password fields blank unless changing"] = "";
-$a->strings["Email Address:"] = "";
-$a->strings["Remove Account"] = "";
-$a->strings["Remove this account including all its channels"] = "";
-$a->strings["Off"] = "";
-$a->strings["On"] = "";
-$a->strings["Additional Features"] = "";
-$a->strings["Connector Settings"] = "";
-$a->strings["No special theme for mobile devices"] = "";
-$a->strings["%s - (Experimental)"] = "";
-$a->strings["mobile"] = "";
-$a->strings["Display Settings"] = "";
-$a->strings["Display Theme:"] = "";
-$a->strings["Mobile Theme:"] = "";
-$a->strings["Enable user zoom on mobile devices"] = "";
-$a->strings["Update browser every xx seconds"] = "";
-$a->strings["Minimum of 10 seconds, no maximum"] = "";
-$a->strings["Maximum number of conversations to load at any time:"] = "";
-$a->strings["Maximum of 100 items"] = "";
-$a->strings["Show emoticons (smilies) as images"] = "";
-$a->strings["Link post titles to source"] = "";
-$a->strings["System Page Layout Editor - (advanced)"] = "";
-$a->strings["Use blog/list mode on channel page"] = "";
-$a->strings["(comments displayed separately)"] = "";
-$a->strings["Use blog/list mode on matrix page"] = "";
-$a->strings["Channel page max height of content (in pixels)"] = "";
-$a->strings["click to expand content exceeding this height"] = "";
-$a->strings["Matrix page max height of content (in pixels)"] = "";
-$a->strings["Nobody except yourself"] = "";
-$a->strings["Only those you specifically allow"] = "";
-$a->strings["Approved connections"] = "";
-$a->strings["Any connections"] = "";
-$a->strings["Anybody on this website"] = "";
-$a->strings["Anybody in this network"] = "";
-$a->strings["Anybody authenticated"] = "";
-$a->strings["Anybody on the internet"] = "";
-$a->strings["Publish your default profile in the network directory"] = "";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "";
-$a->strings["or"] = "";
-$a->strings["Your channel address is"] = "";
-$a->strings["Channel Settings"] = "";
-$a->strings["Basic Settings"] = "";
-$a->strings["Your Timezone:"] = "";
-$a->strings["Default Post Location:"] = "";
-$a->strings["Geographical location to display on your posts"] = "";
-$a->strings["Use Browser Location:"] = "";
-$a->strings["Adult Content"] = "";
-$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "";
-$a->strings["Security and Privacy Settings"] = "";
-$a->strings["Your permissions are already configured. Click to view/adjust"] = "";
-$a->strings["Hide my online presence"] = "";
-$a->strings["Prevents displaying in your profile that you are online"] = "";
-$a->strings["Simple Privacy Settings:"] = "";
-$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "";
-$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "";
-$a->strings["Private - <em>default private, never open or public</em>"] = "";
-$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "";
-$a->strings["Allow others to tag your posts"] = "";
-$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "";
-$a->strings["Advanced Privacy Settings"] = "";
-$a->strings["Expire other channel content after this many days"] = "";
-$a->strings["0 or blank prevents expiration"] = "";
-$a->strings["Maximum Friend Requests/Day:"] = "";
-$a->strings["May reduce spam activity"] = "";
-$a->strings["Default Post Permissions"] = "";
-$a->strings["(click to open/close)"] = "";
-$a->strings["Channel permissions category:"] = "";
-$a->strings["Maximum private messages per day from unknown people:"] = "";
-$a->strings["Useful to reduce spamming"] = "";
-$a->strings["Notification Settings"] = "";
-$a->strings["By default post a status message when:"] = "";
-$a->strings["accepting a friend request"] = "";
-$a->strings["joining a forum/community"] = "";
-$a->strings["making an <em>interesting</em> profile change"] = "";
-$a->strings["Send a notification email when:"] = "";
-$a->strings["You receive a connection request"] = "";
-$a->strings["Your connections are confirmed"] = "";
-$a->strings["Someone writes on your profile wall"] = "";
-$a->strings["Someone writes a followup comment"] = "";
-$a->strings["You receive a private message"] = "";
-$a->strings["You receive a friend suggestion"] = "";
-$a->strings["You are tagged in a post"] = "";
-$a->strings["You are poked/prodded/etc. in a post"] = "";
-$a->strings["Show visual notifications including:"] = "";
-$a->strings["Unseen matrix activity"] = "";
-$a->strings["Unseen channel activity"] = "";
-$a->strings["Unseen private messages"] = "";
-$a->strings["Recommended"] = "";
-$a->strings["Upcoming events"] = "";
-$a->strings["Events today"] = "";
-$a->strings["Upcoming birthdays"] = "";
-$a->strings["Not available in all themes"] = "";
-$a->strings["System (personal) notifications"] = "";
-$a->strings["System info messages"] = "";
-$a->strings["System critical alerts"] = "";
-$a->strings["New connections"] = "";
-$a->strings["System Registrations"] = "";
-$a->strings["Also show new wall posts, private messages and connections under Notices"] = "";
-$a->strings["Notify me of events this many days in advance"] = "";
-$a->strings["Must be greater than 0"] = "";
-$a->strings["Advanced Account/Page Type Settings"] = "";
-$a->strings["Change the behaviour of this account for special situations"] = "";
-$a->strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "";
-$a->strings["Miscellaneous Settings"] = "";
-$a->strings["Personal menu to display in your channel pages"] = "";
-$a->strings["Remove Channel"] = "";
-$a->strings["Remove this channel."] = "";
-$a->strings["Xchan Lookup"] = "";
-$a->strings["Lookup xchan beginning with (or webbie): "] = "";
-$a->strings["Not found."] = "";
-$a->strings["Authorize application connection"] = "";
-$a->strings["Return to your app and insert this Securty Code:"] = "";
-$a->strings["Please login to continue."] = "";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
-$a->strings["Page Title"] = "";
-$a->strings["Channel added."] = "";
-$a->strings["Tag removed"] = "";
-$a->strings["Remove Item Tag"] = "";
-$a->strings["Select a tag to remove: "] = "";
-$a->strings["Remove"] = "";
-$a->strings["Continue"] = "";
-$a->strings["Premium Channel Setup"] = "";
-$a->strings["Enable premium channel connection restrictions"] = "";
-$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "";
-$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "";
-$a->strings["Potential connections will then see the following text before proceeding:"] = "";
-$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "";
-$a->strings["(No specific instructions have been provided by the channel owner.)"] = "";
-$a->strings["Restricted or Premium Channel"] = "";
-$a->strings["Thing updated"] = "";
-$a->strings["Object store: failed"] = "";
-$a->strings["Thing added"] = "";
-$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "";
-$a->strings["Show Thing"] = "";
-$a->strings["item not found."] = "";
-$a->strings["Edit Thing"] = "";
-$a->strings["Select a profile"] = "";
-$a->strings["Post an activity"] = "";
-$a->strings["Only sends to viewers of the applicable profile"] = "";
-$a->strings["Name of thing e.g. something"] = "";
-$a->strings["URL of thing (optional)"] = "";
-$a->strings["URL for photo of thing (optional)"] = "";
-$a->strings["Add Thing to your Profile"] = "";
-$a->strings["Item not available."] = "";
-$a->strings["Fetching URL returns error: %1\$s"] = "";
-$a->strings["\$Projectname"] = "";
-$a->strings["Welcome to %s"] = "";
-$a->strings["Image uploaded but image cropping failed."] = "";
-$a->strings["Image resize failed."] = "";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
-$a->strings["Image exceeds size limit of %d"] = "";
-$a->strings["Unable to process image."] = "";
-$a->strings["Photo not available."] = "";
-$a->strings["Upload File:"] = "";
-$a->strings["Select a profile:"] = "";
-$a->strings["Upload Profile Photo"] = "";
-$a->strings["skip this step"] = "";
-$a->strings["select a photo from your photo albums"] = "";
-$a->strings["Crop Image"] = "";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "";
-$a->strings["Done Editing"] = "";
-$a->strings["Image uploaded successfully."] = "";
-$a->strings["Image upload failed."] = "";
-$a->strings["Image size reduction [%s] failed."] = "";
-$a->strings["Invalid item."] = "";
-$a->strings["Channel not found."] = "";
-$a->strings["Page not found."] = "";
-$a->strings["Like/Dislike"] = "";
-$a->strings["This action is restricted to members."] = "";
-$a->strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "";
-$a->strings["Invalid request."] = "";
-$a->strings["thing"] = "";
-$a->strings["Channel unavailable."] = "";
-$a->strings["Previous action reversed."] = "";
-$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "";
-$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "";
-$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "";
-$a->strings["Action completed."] = "";
-$a->strings["Thank you."] = "";
-$a->strings["Event can not end before it has started."] = "";
-$a->strings["Unable to generate preview."] = "";
-$a->strings["Event title and start time are required."] = "";
-$a->strings["Event not found."] = "";
-$a->strings["l, F j"] = "";
-$a->strings["Edit event"] = "";
-$a->strings["Delete event"] = "";
-$a->strings["Create New Event"] = "";
-$a->strings["Previous"] = "";
-$a->strings["Next"] = "";
-$a->strings["Export"] = "";
-$a->strings["Event removed"] = "";
-$a->strings["Failed to remove event"] = "";
-$a->strings["Event details"] = "";
-$a->strings["Starting date and Title are required."] = "";
-$a->strings["Categories (comma-separated list)"] = "";
-$a->strings["Event Starts:"] = "";
-$a->strings["Finish date/time is not known or not relevant"] = "";
-$a->strings["Event Finishes:"] = "";
-$a->strings["Adjust for viewer timezone"] = "";
-$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "";
-$a->strings["Description:"] = "";
-$a->strings["Title:"] = "";
-$a->strings["Share this event"] = "";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
-$a->strings["Public Sites"] = "";
-$a->strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "";
-$a->strings["Rate this hub"] = "";
-$a->strings["Site URL"] = "";
-$a->strings["Access Type"] = "";
-$a->strings["Registration Policy"] = "";
-$a->strings["Location"] = "";
-$a->strings["View hub ratings"] = "";
-$a->strings["Rate"] = "";
-$a->strings["View ratings"] = "";
-$a->strings["Edit post"] = "";
-$a->strings["\$Projectname channel"] = "";
-$a->strings["Collection created."] = "";
-$a->strings["Could not create collection."] = "";
-$a->strings["Collection updated."] = "";
-$a->strings["Create a collection of channels."] = "";
-$a->strings["Collection Name: "] = "";
-$a->strings["Members are visible to other channels"] = "";
-$a->strings["Collection removed."] = "";
-$a->strings["Unable to remove collection."] = "";
-$a->strings["Collection Editor"] = "";
-$a->strings["Members"] = "";
-$a->strings["All Connected Channels"] = "";
-$a->strings["Click on a channel to add or remove."] = "";
-$a->strings["Version %s"] = "";
-$a->strings["Installed plugins/addons/apps:"] = "";
-$a->strings["No installed plugins/addons/apps"] = "";
-$a->strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "";
-$a->strings["Tag: "] = "";
-$a->strings["Last background fetch: "] = "";
-$a->strings["Running at web location"] = "";
-$a->strings["Please visit <a href=\"https://redmatrix.me\">redmatrix.me</a> to learn more about \$Projectname."] = "";
-$a->strings["Bug reports and issues: please visit"] = "";
-$a->strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = "";
-$a->strings["Site Administrators"] = "";
-$a->strings["Help:"] = "";
-$a->strings["Not Found"] = "";
-$a->strings["\$Projectname Server - Setup"] = "";
-$a->strings["Could not connect to database."] = "";
-$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "";
-$a->strings["Could not create table."] = "";
-$a->strings["Your site database has been installed."] = "";
-$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "";
-$a->strings["Please see the file \"install/INSTALL.txt\"."] = "";
-$a->strings["System check"] = "";
-$a->strings["Check again"] = "";
-$a->strings["Database connection"] = "";
-$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "";
-$a->strings["Database Server Name"] = "";
-$a->strings["Default is localhost"] = "";
-$a->strings["Database Port"] = "";
-$a->strings["Communication port number - use 0 for default"] = "";
-$a->strings["Database Login Name"] = "";
-$a->strings["Database Login Password"] = "";
-$a->strings["Database Name"] = "";
-$a->strings["Database Type"] = "";
-$a->strings["Site administrator email address"] = "";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "";
-$a->strings["Website URL"] = "";
-$a->strings["Please use SSL (https) URL if available."] = "";
-$a->strings["Please select a default timezone for your website"] = "";
-$a->strings["Site settings"] = "";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "";
-$a->strings["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."] = "";
-$a->strings["PHP executable path"] = "";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
-$a->strings["Command line PHP"] = "";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "";
-$a->strings["This is required for message delivery to work."] = "";
-$a->strings["PHP register_argc_argv"] = "";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "";
-$a->strings["Generate encryption keys"] = "";
-$a->strings["libCurl PHP module"] = "";
-$a->strings["GD graphics PHP module"] = "";
-$a->strings["OpenSSL PHP module"] = "";
-$a->strings["mysqli or postgres PHP module"] = "";
-$a->strings["mb_string PHP module"] = "";
-$a->strings["mcrypt PHP module"] = "";
-$a->strings["Apache mod_rewrite module"] = "";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "";
-$a->strings["proc_open"] = "";
-$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "";
-$a->strings["Error: libCURL PHP module required but not installed."] = "";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "";
-$a->strings["Error: openssl PHP module required but not installed."] = "";
-$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "";
-$a->strings["Error: mb_string PHP module required but not installed."] = "";
-$a->strings["Error: mcrypt PHP module required but not installed."] = "";
-$a->strings["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."] = "";
-$a->strings["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."] = "";
-$a->strings["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."] = "";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "";
-$a->strings[".htconfig.php is writable"] = "";
-$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
-$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "";
-$a->strings["%s is writable"] = "";
-$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "";
-$a->strings["store is writable"] = "";
-$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "";
-$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "";
-$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "";
-$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "";
-$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "";
-$a->strings["Providers are available that issue free certificates which are browser-valid."] = "";
-$a->strings["SSL certificate validation"] = "";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "";
-$a->strings["Url rewrite is working"] = "";
-$a->strings["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."] = "";
-$a->strings["Errors encountered creating database tables."] = "";
-$a->strings["<h1>What next</h1>"] = "";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
-$a->strings["No channel."] = "";
-$a->strings["Common connections"] = "";
-$a->strings["No connections in common."] = "";
-$a->strings["This site is not a directory server"] = "";
-$a->strings["Could not access contact record."] = "";
-$a->strings["Could not locate selected profile."] = "";
-$a->strings["Connection updated."] = "";
-$a->strings["Failed to update connection record."] = "";
-$a->strings["Blocked"] = "";
-$a->strings["Ignored"] = "";
-$a->strings["Hidden"] = "";
-$a->strings["Archived"] = "";
-$a->strings["Suggest new connections"] = "";
-$a->strings["New Connections"] = "";
-$a->strings["Show pending (new) connections"] = "";
-$a->strings["All Connections"] = "";
-$a->strings["Show all connections"] = "";
-$a->strings["Unblocked"] = "";
-$a->strings["Only show unblocked connections"] = "";
-$a->strings["Only show blocked connections"] = "";
-$a->strings["Only show ignored connections"] = "";
-$a->strings["Only show archived connections"] = "";
-$a->strings["Only show hidden connections"] = "";
-$a->strings["%1\$s [%2\$s]"] = "";
-$a->strings["Edit connection"] = "";
-$a->strings["Search your connections"] = "";
-$a->strings["Finding: "] = "";
-$a->strings["Block Name"] = "";
-$a->strings["Block Title"] = "";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
-$a->strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "";
-$a->strings["Page owner information could not be retrieved."] = "";
-$a->strings["Album not found."] = "";
-$a->strings["Delete Album"] = "";
-$a->strings["Delete Photo"] = "";
-$a->strings["Public access denied."] = "";
-$a->strings["No photos selected"] = "";
-$a->strings["Access to this item is restricted."] = "";
-$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "";
-$a->strings["%1$.2f MB photo storage used."] = "";
-$a->strings["Upload Photos"] = "";
-$a->strings["Enter a new album name"] = "";
-$a->strings["or select an existing one (doubleclick)"] = "";
-$a->strings["Create a status post for this upload"] = "";
-$a->strings["Album name could not be decoded"] = "";
-$a->strings["Contact Photos"] = "";
-$a->strings["Show Newest First"] = "";
-$a->strings["Show Oldest First"] = "";
-$a->strings["View Photo"] = "";
-$a->strings["Edit Album"] = "";
-$a->strings["Permission denied. Access to this item may be restricted."] = "";
-$a->strings["Photo not available"] = "";
-$a->strings["Use as profile photo"] = "";
-$a->strings["Private Photo"] = "";
-$a->strings["View Full Size"] = "";
-$a->strings["Edit photo"] = "";
-$a->strings["Rotate CW (right)"] = "";
-$a->strings["Rotate CCW (left)"] = "";
-$a->strings["Caption"] = "";
-$a->strings["Add a Tag"] = "";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "";
-$a->strings["Flag as adult in album view"] = "";
-$a->strings["In This Photo:"] = "";
-$a->strings["Map"] = "";
-$a->strings["View Album"] = "";
-$a->strings["Recent Photos"] = "";
-$a->strings["Profile Match"] = "";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "";
-$a->strings["is interested in:"] = "";
-$a->strings["No matches"] = "";
-$a->strings["Away"] = "";
-$a->strings["Online"] = "";
-$a->strings["Select a bookmark folder"] = "";
-$a->strings["Save Bookmark"] = "";
-$a->strings["URL of bookmark"] = "";
-$a->strings["Description"] = "";
-$a->strings["Or enter new bookmark folder name"] = "";
-$a->strings["No more system notifications."] = "";
-$a->strings["System Notifications"] = "";
-$a->strings["network"] = "";
-$a->strings["RSS"] = "";
-$a->strings["Layout updated."] = "";
-$a->strings["Edit System Page Description"] = "";
-$a->strings["Layout not found."] = "";
-$a->strings["Module Name:"] = "";
-$a->strings["Layout Help"] = "";
-$a->strings["- select -"] = "";
-$a->strings["Your service plan only allows %d channels."] = "";
-$a->strings["Nothing to import."] = "";
-$a->strings["Unable to download data from old server"] = "";
-$a->strings["Imported file is empty."] = "";
-$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "";
-$a->strings["Unable to create a unique channel address. Import failed."] = "";
-$a->strings["Channel clone failed. Import failed."] = "";
-$a->strings["Cloned channel not found. Import failed."] = "";
-$a->strings["Import completed."] = "";
-$a->strings["You must be logged in to use this feature."] = "";
-$a->strings["Import Channel"] = "";
-$a->strings["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."] = "";
-$a->strings["File to Upload"] = "";
-$a->strings["Or provide the old server/hub details"] = "";
-$a->strings["Your old identity address (xyz@example.com)"] = "";
-$a->strings["Your old login email address"] = "";
-$a->strings["Your old login password"] = "";
-$a->strings["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."] = "";
-$a->strings["Make this hub my primary location"] = "";
-$a->strings["Import existing posts if possible"] = "";
-$a->strings["Item not found"] = "";
-$a->strings["Edit Layout"] = "";
-$a->strings["Delete layout?"] = "";
-$a->strings["Insert YouTube video"] = "";
-$a->strings["Insert Vorbis [.ogg] video"] = "";
-$a->strings["Insert Vorbis [.ogg] audio"] = "";
-$a->strings["Layout Description (Optional)"] = "";
-$a->strings["Layout Name"] = "";
-$a->strings["You must be logged in to see this page."] = "";
-$a->strings["Room not found"] = "";
-$a->strings["Leave Room"] = "";
-$a->strings["Delete This Room"] = "";
-$a->strings["I am away right now"] = "";
-$a->strings["I am online"] = "";
-$a->strings["Bookmark this room"] = "";
-$a->strings["New Chatroom"] = "";
-$a->strings["Chatroom Name"] = "";
-$a->strings["%1\$s's Chatrooms"] = "";
-$a->strings["Delete webpage?"] = "";
-$a->strings["Page link title"] = "";
-$a->strings["Edit Webpage"] = "";
-$a->strings["This directory server requires an access token"] = "";
-$a->strings["No valid account found."] = "";
-$a->strings["Password reset request issued. Check your email."] = "";
-$a->strings["Site Member (%s)"] = "";
-$a->strings["Password reset requested at %s"] = "";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "";
-$a->strings["Password Reset"] = "";
-$a->strings["Your password has been reset as requested."] = "";
-$a->strings["Your new password is"] = "";
-$a->strings["Save or copy your new password - and then"] = "";
-$a->strings["click here to login"] = "";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "";
-$a->strings["Your password has changed at %s"] = "";
-$a->strings["Forgot your Password?"] = "";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "";
-$a->strings["Email Address"] = "";
-$a->strings["Reset"] = "";
-$a->strings["Website:"] = "";
-$a->strings["Remote Channel [%s] (not yet known on this site)"] = "";
-$a->strings["Rating (this information is public)"] = "";
-$a->strings["Optionally explain your rating (this information is public)"] = "";
-$a->strings["Item is not editable"] = "";
-$a->strings["Delete item?"] = "";
-$a->strings["Total invitation limit exceeded."] = "";
-$a->strings["%s : Not a valid email address."] = "";
-$a->strings["Please join us on Red"] = "";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
-$a->strings["%s : Message delivery failed."] = "";
-$a->strings["%d message sent."] = array(
+App::$strings["show more"] = "";
+App::$strings["Visible to your default audience"] = "";
+App::$strings["Show"] = "";
+App::$strings["Don't show"] = "";
+App::$strings["Permissions"] = "";
+App::$strings["Item was not found."] = "";
+App::$strings["No source file."] = "";
+App::$strings["Cannot locate file to replace"] = "";
+App::$strings["Cannot locate file to revise/update"] = "";
+App::$strings["File exceeds size limit of %d"] = "";
+App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "";
+App::$strings["File upload failed. Possible system limit or action terminated."] = "";
+App::$strings["Stored file could not be verified. Upload failed."] = "";
+App::$strings["Path not available."] = "";
+App::$strings["Empty pathname"] = "";
+App::$strings["duplicate filename or path"] = "";
+App::$strings["Path not found."] = "";
+App::$strings["mkdir failed."] = "";
+App::$strings["database storage failed."] = "";
+App::$strings["Unable to obtain identity information from database"] = "";
+App::$strings["Empty name"] = "";
+App::$strings["Name too long"] = "";
+App::$strings["No account identifier"] = "";
+App::$strings["Nickname is required."] = "";
+App::$strings["Reserved nickname. Please choose another."] = "";
+App::$strings["Nickname has unsupported characters or is already being used on this site."] = "";
+App::$strings["Unable to retrieve created identity"] = "";
+App::$strings["Default Profile"] = "";
+App::$strings["Requested channel is not available."] = "";
+App::$strings["Requested profile is not available."] = "";
+App::$strings["Change profile photo"] = "";
+App::$strings["Profiles"] = "";
+App::$strings["Manage/edit profiles"] = "";
+App::$strings["Create New Profile"] = "";
+App::$strings["Profile Image"] = "";
+App::$strings["visible to everybody"] = "";
+App::$strings["Edit visibility"] = "";
+App::$strings["Gender:"] = "";
+App::$strings["Status:"] = "";
+App::$strings["Homepage:"] = "";
+App::$strings["Online Now"] = "";
+App::$strings["g A l F d"] = "";
+App::$strings["F d"] = "";
+App::$strings["[today]"] = "";
+App::$strings["Birthday Reminders"] = "";
+App::$strings["Birthdays this week:"] = "";
+App::$strings["[No description]"] = "";
+App::$strings["Event Reminders"] = "";
+App::$strings["Events this week:"] = "";
+App::$strings["Profile"] = "";
+App::$strings["Full Name:"] = "";
+App::$strings["Like this channel"] = "";
+App::$strings["j F, Y"] = "";
+App::$strings["j F"] = "";
+App::$strings["Birthday:"] = "";
+App::$strings["Age:"] = "";
+App::$strings["for %1\$d %2\$s"] = "";
+App::$strings["Sexual Preference:"] = "";
+App::$strings["Hometown:"] = "";
+App::$strings["Tags:"] = "";
+App::$strings["Political Views:"] = "";
+App::$strings["Religion:"] = "";
+App::$strings["About:"] = "";
+App::$strings["Hobbies/Interests:"] = "";
+App::$strings["Likes:"] = "";
+App::$strings["Dislikes:"] = "";
+App::$strings["Contact information and Social Networks:"] = "";
+App::$strings["My other channels:"] = "";
+App::$strings["Musical interests:"] = "";
+App::$strings["Books, literature:"] = "";
+App::$strings["Television:"] = "";
+App::$strings["Film/dance/culture/entertainment:"] = "";
+App::$strings["Love/Romance:"] = "";
+App::$strings["Work/employment:"] = "";
+App::$strings["School/education:"] = "";
+App::$strings["Like this thing"] = "";
+App::$strings["Male"] = "";
+App::$strings["Female"] = "";
+App::$strings["Currently Male"] = "";
+App::$strings["Currently Female"] = "";
+App::$strings["Mostly Male"] = "";
+App::$strings["Mostly Female"] = "";
+App::$strings["Transgender"] = "";
+App::$strings["Intersex"] = "";
+App::$strings["Transsexual"] = "";
+App::$strings["Hermaphrodite"] = "";
+App::$strings["Neuter"] = "";
+App::$strings["Non-specific"] = "";
+App::$strings["Undecided"] = "";
+App::$strings["Males"] = "";
+App::$strings["Females"] = "";
+App::$strings["Gay"] = "";
+App::$strings["Lesbian"] = "";
+App::$strings["No Preference"] = "";
+App::$strings["Bisexual"] = "";
+App::$strings["Autosexual"] = "";
+App::$strings["Abstinent"] = "";
+App::$strings["Virgin"] = "";
+App::$strings["Deviant"] = "";
+App::$strings["Fetish"] = "";
+App::$strings["Oodles"] = "";
+App::$strings["Nonsexual"] = "";
+App::$strings["Single"] = "";
+App::$strings["Lonely"] = "";
+App::$strings["Available"] = "";
+App::$strings["Unavailable"] = "";
+App::$strings["Has crush"] = "";
+App::$strings["Infatuated"] = "";
+App::$strings["Dating"] = "";
+App::$strings["Unfaithful"] = "";
+App::$strings["Sex Addict"] = "";
+App::$strings["Friends/Benefits"] = "";
+App::$strings["Casual"] = "";
+App::$strings["Engaged"] = "";
+App::$strings["Married"] = "";
+App::$strings["Imaginarily married"] = "";
+App::$strings["Partners"] = "";
+App::$strings["Cohabiting"] = "";
+App::$strings["Common law"] = "";
+App::$strings["Happy"] = "";
+App::$strings["Not looking"] = "";
+App::$strings["Swinger"] = "";
+App::$strings["Betrayed"] = "";
+App::$strings["Separated"] = "";
+App::$strings["Unstable"] = "";
+App::$strings["Divorced"] = "";
+App::$strings["Imaginarily divorced"] = "";
+App::$strings["Widowed"] = "";
+App::$strings["Uncertain"] = "";
+App::$strings["It's complicated"] = "";
+App::$strings["Don't care"] = "";
+App::$strings["Ask me"] = "";
+App::$strings["Site Admin"] = "";
+App::$strings["Address Book"] = "";
+App::$strings["Mood"] = "";
+App::$strings["Probe"] = "";
+App::$strings["Suggest"] = "";
+App::$strings["Random Channel"] = "";
+App::$strings["Invite"] = "";
+App::$strings["Features"] = "";
+App::$strings["Language"] = "";
+App::$strings["Post"] = "";
+App::$strings["Profile Photo"] = "";
+App::$strings["Update"] = "";
+App::$strings["Install"] = "";
+App::$strings["Purchase"] = "";
+App::$strings["Missing room name"] = "";
+App::$strings["Duplicate room name"] = "";
+App::$strings["Invalid room specifier."] = "";
+App::$strings["Room not found."] = "";
+App::$strings["Room is full"] = "";
+App::$strings["Please choose"] = "";
+App::$strings["Agree"] = "";
+App::$strings["Disagree"] = "";
+App::$strings["Abstain"] = "";
+App::$strings["projectname"] = "";
+App::$strings["Some blurb about what to do when you're new here"] = "";
+App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "";
+App::$strings["Create a new channel"] = "";
+App::$strings["Current Channel"] = "";
+App::$strings["Switch to one of your channels by selecting it."] = "";
+App::$strings["Default Channel"] = "";
+App::$strings["Make Default"] = "";
+App::$strings["%d new messages"] = "";
+App::$strings["%d new introductions"] = "";
+App::$strings["Delegated Channels"] = "";
+App::$strings["Name is required"] = "";
+App::$strings["Key and Secret are required"] = "";
+App::$strings["Diaspora Policy Settings updated."] = "";
+App::$strings["Passwords do not match. Password unchanged."] = "";
+App::$strings["Empty passwords are not allowed. Password unchanged."] = "";
+App::$strings["Password changed."] = "";
+App::$strings["Password update failed. Please try again."] = "";
+App::$strings["Not valid email."] = "";
+App::$strings["Protected email address. Cannot change to that email."] = "";
+App::$strings["System failure storing new email. Please try again."] = "";
+App::$strings["Settings updated."] = "";
+App::$strings["No"] = "";
+App::$strings["Yes"] = "";
+App::$strings["Add application"] = "";
+App::$strings["Name of application"] = "";
+App::$strings["Consumer Key"] = "";
+App::$strings["Automatically generated - change if desired. Max length 20"] = "";
+App::$strings["Consumer Secret"] = "";
+App::$strings["Redirect"] = "";
+App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "";
+App::$strings["Icon url"] = "";
+App::$strings["Optional"] = "";
+App::$strings["You can't edit this application."] = "";
+App::$strings["Connected Apps"] = "";
+App::$strings["Client key starts with"] = "";
+App::$strings["No name"] = "";
+App::$strings["Remove authorization"] = "";
+App::$strings["No feature settings configured"] = "";
+App::$strings["Feature/Addon Settings"] = "";
+App::$strings["Settings for the built-in Diaspora emulator"] = "";
+App::$strings["Allow any Diaspora member to comment on your public posts"] = "";
+App::$strings["Diaspora Policy Settings"] = "";
+App::$strings["Prevent your hashtags from being redirected to other sites"] = "";
+App::$strings["Account Settings"] = "";
+App::$strings["Enter New Password:"] = "";
+App::$strings["Confirm New Password:"] = "";
+App::$strings["Leave password fields blank unless changing"] = "";
+App::$strings["Email Address:"] = "";
+App::$strings["Remove Account"] = "";
+App::$strings["Remove this account including all its channels"] = "";
+App::$strings["Off"] = "";
+App::$strings["On"] = "";
+App::$strings["Additional Features"] = "";
+App::$strings["Connector Settings"] = "";
+App::$strings["No special theme for mobile devices"] = "";
+App::$strings["%s - (Experimental)"] = "";
+App::$strings["mobile"] = "";
+App::$strings["Display Settings"] = "";
+App::$strings["Display Theme:"] = "";
+App::$strings["Mobile Theme:"] = "";
+App::$strings["Enable user zoom on mobile devices"] = "";
+App::$strings["Update browser every xx seconds"] = "";
+App::$strings["Minimum of 10 seconds, no maximum"] = "";
+App::$strings["Maximum number of conversations to load at any time:"] = "";
+App::$strings["Maximum of 100 items"] = "";
+App::$strings["Show emoticons (smilies) as images"] = "";
+App::$strings["Link post titles to source"] = "";
+App::$strings["System Page Layout Editor - (advanced)"] = "";
+App::$strings["Use blog/list mode on channel page"] = "";
+App::$strings["(comments displayed separately)"] = "";
+App::$strings["Use blog/list mode on matrix page"] = "";
+App::$strings["Channel page max height of content (in pixels)"] = "";
+App::$strings["click to expand content exceeding this height"] = "";
+App::$strings["Matrix page max height of content (in pixels)"] = "";
+App::$strings["Nobody except yourself"] = "";
+App::$strings["Only those you specifically allow"] = "";
+App::$strings["Approved connections"] = "";
+App::$strings["Any connections"] = "";
+App::$strings["Anybody on this website"] = "";
+App::$strings["Anybody in this network"] = "";
+App::$strings["Anybody authenticated"] = "";
+App::$strings["Anybody on the internet"] = "";
+App::$strings["Publish your default profile in the network directory"] = "";
+App::$strings["Allow us to suggest you as a potential friend to new members?"] = "";
+App::$strings["or"] = "";
+App::$strings["Your channel address is"] = "";
+App::$strings["Channel Settings"] = "";
+App::$strings["Basic Settings"] = "";
+App::$strings["Your Timezone:"] = "";
+App::$strings["Default Post Location:"] = "";
+App::$strings["Geographical location to display on your posts"] = "";
+App::$strings["Use Browser Location:"] = "";
+App::$strings["Adult Content"] = "";
+App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "";
+App::$strings["Security and Privacy Settings"] = "";
+App::$strings["Your permissions are already configured. Click to view/adjust"] = "";
+App::$strings["Hide my online presence"] = "";
+App::$strings["Prevents displaying in your profile that you are online"] = "";
+App::$strings["Simple Privacy Settings:"] = "";
+App::$strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "";
+App::$strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "";
+App::$strings["Private - <em>default private, never open or public</em>"] = "";
+App::$strings["Blocked - <em>default blocked to/from everybody</em>"] = "";
+App::$strings["Allow others to tag your posts"] = "";
+App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "";
+App::$strings["Advanced Privacy Settings"] = "";
+App::$strings["Expire other channel content after this many days"] = "";
+App::$strings["0 or blank prevents expiration"] = "";
+App::$strings["Maximum Friend Requests/Day:"] = "";
+App::$strings["May reduce spam activity"] = "";
+App::$strings["Default Post Permissions"] = "";
+App::$strings["(click to open/close)"] = "";
+App::$strings["Channel permissions category:"] = "";
+App::$strings["Maximum private messages per day from unknown people:"] = "";
+App::$strings["Useful to reduce spamming"] = "";
+App::$strings["Notification Settings"] = "";
+App::$strings["By default post a status message when:"] = "";
+App::$strings["accepting a friend request"] = "";
+App::$strings["joining a forum/community"] = "";
+App::$strings["making an <em>interesting</em> profile change"] = "";
+App::$strings["Send a notification email when:"] = "";
+App::$strings["You receive a connection request"] = "";
+App::$strings["Your connections are confirmed"] = "";
+App::$strings["Someone writes on your profile wall"] = "";
+App::$strings["Someone writes a followup comment"] = "";
+App::$strings["You receive a private message"] = "";
+App::$strings["You receive a friend suggestion"] = "";
+App::$strings["You are tagged in a post"] = "";
+App::$strings["You are poked/prodded/etc. in a post"] = "";
+App::$strings["Show visual notifications including:"] = "";
+App::$strings["Unseen matrix activity"] = "";
+App::$strings["Unseen channel activity"] = "";
+App::$strings["Unseen private messages"] = "";
+App::$strings["Recommended"] = "";
+App::$strings["Upcoming events"] = "";
+App::$strings["Events today"] = "";
+App::$strings["Upcoming birthdays"] = "";
+App::$strings["Not available in all themes"] = "";
+App::$strings["System (personal) notifications"] = "";
+App::$strings["System info messages"] = "";
+App::$strings["System critical alerts"] = "";
+App::$strings["New connections"] = "";
+App::$strings["System Registrations"] = "";
+App::$strings["Also show new wall posts, private messages and connections under Notices"] = "";
+App::$strings["Notify me of events this many days in advance"] = "";
+App::$strings["Must be greater than 0"] = "";
+App::$strings["Advanced Account/Page Type Settings"] = "";
+App::$strings["Change the behaviour of this account for special situations"] = "";
+App::$strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "";
+App::$strings["Miscellaneous Settings"] = "";
+App::$strings["Personal menu to display in your channel pages"] = "";
+App::$strings["Remove Channel"] = "";
+App::$strings["Remove this channel."] = "";
+App::$strings["Xchan Lookup"] = "";
+App::$strings["Lookup xchan beginning with (or webbie): "] = "";
+App::$strings["Not found."] = "";
+App::$strings["Authorize application connection"] = "";
+App::$strings["Return to your app and insert this Securty Code:"] = "";
+App::$strings["Please login to continue."] = "";
+App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
+App::$strings["Page Title"] = "";
+App::$strings["Channel added."] = "";
+App::$strings["Tag removed"] = "";
+App::$strings["Remove Item Tag"] = "";
+App::$strings["Select a tag to remove: "] = "";
+App::$strings["Remove"] = "";
+App::$strings["Continue"] = "";
+App::$strings["Premium Channel Setup"] = "";
+App::$strings["Enable premium channel connection restrictions"] = "";
+App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "";
+App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "";
+App::$strings["Potential connections will then see the following text before proceeding:"] = "";
+App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "";
+App::$strings["(No specific instructions have been provided by the channel owner.)"] = "";
+App::$strings["Restricted or Premium Channel"] = "";
+App::$strings["Thing updated"] = "";
+App::$strings["Object store: failed"] = "";
+App::$strings["Thing added"] = "";
+App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "";
+App::$strings["Show Thing"] = "";
+App::$strings["item not found."] = "";
+App::$strings["Edit Thing"] = "";
+App::$strings["Select a profile"] = "";
+App::$strings["Post an activity"] = "";
+App::$strings["Only sends to viewers of the applicable profile"] = "";
+App::$strings["Name of thing e.g. something"] = "";
+App::$strings["URL of thing (optional)"] = "";
+App::$strings["URL for photo of thing (optional)"] = "";
+App::$strings["Add Thing to your Profile"] = "";
+App::$strings["Item not available."] = "";
+App::$strings["Fetching URL returns error: %1\$s"] = "";
+App::$strings["\$Projectname"] = "";
+App::$strings["Welcome to %s"] = "";
+App::$strings["Image uploaded but image cropping failed."] = "";
+App::$strings["Image resize failed."] = "";
+App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
+App::$strings["Image exceeds size limit of %d"] = "";
+App::$strings["Unable to process image."] = "";
+App::$strings["Photo not available."] = "";
+App::$strings["Upload File:"] = "";
+App::$strings["Select a profile:"] = "";
+App::$strings["Upload Profile Photo"] = "";
+App::$strings["skip this step"] = "";
+App::$strings["select a photo from your photo albums"] = "";
+App::$strings["Crop Image"] = "";
+App::$strings["Please adjust the image cropping for optimum viewing."] = "";
+App::$strings["Done Editing"] = "";
+App::$strings["Image uploaded successfully."] = "";
+App::$strings["Image upload failed."] = "";
+App::$strings["Image size reduction [%s] failed."] = "";
+App::$strings["Invalid item."] = "";
+App::$strings["Channel not found."] = "";
+App::$strings["Page not found."] = "";
+App::$strings["Like/Dislike"] = "";
+App::$strings["This action is restricted to members."] = "";
+App::$strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "";
+App::$strings["Invalid request."] = "";
+App::$strings["thing"] = "";
+App::$strings["Channel unavailable."] = "";
+App::$strings["Previous action reversed."] = "";
+App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "";
+App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "";
+App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "";
+App::$strings["%1\$s is attending %2\$s's %3\$s"] = "";
+App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "";
+App::$strings["%1\$s may attend %2\$s's %3\$s"] = "";
+App::$strings["Action completed."] = "";
+App::$strings["Thank you."] = "";
+App::$strings["Event can not end before it has started."] = "";
+App::$strings["Unable to generate preview."] = "";
+App::$strings["Event title and start time are required."] = "";
+App::$strings["Event not found."] = "";
+App::$strings["l, F j"] = "";
+App::$strings["Edit event"] = "";
+App::$strings["Delete event"] = "";
+App::$strings["Create New Event"] = "";
+App::$strings["Previous"] = "";
+App::$strings["Next"] = "";
+App::$strings["Export"] = "";
+App::$strings["Event removed"] = "";
+App::$strings["Failed to remove event"] = "";
+App::$strings["Event details"] = "";
+App::$strings["Starting date and Title are required."] = "";
+App::$strings["Categories (comma-separated list)"] = "";
+App::$strings["Event Starts:"] = "";
+App::$strings["Finish date/time is not known or not relevant"] = "";
+App::$strings["Event Finishes:"] = "";
+App::$strings["Adjust for viewer timezone"] = "";
+App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "";
+App::$strings["Description:"] = "";
+App::$strings["Title:"] = "";
+App::$strings["Share this event"] = "";
+App::$strings["%1\$s is following %2\$s's %3\$s"] = "";
+App::$strings["Public Sites"] = "";
+App::$strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "";
+App::$strings["Rate this hub"] = "";
+App::$strings["Site URL"] = "";
+App::$strings["Access Type"] = "";
+App::$strings["Registration Policy"] = "";
+App::$strings["Location"] = "";
+App::$strings["View hub ratings"] = "";
+App::$strings["Rate"] = "";
+App::$strings["View ratings"] = "";
+App::$strings["Edit post"] = "";
+App::$strings["\$Projectname channel"] = "";
+App::$strings["Collection created."] = "";
+App::$strings["Could not create collection."] = "";
+App::$strings["Collection updated."] = "";
+App::$strings["Create a collection of channels."] = "";
+App::$strings["Collection Name: "] = "";
+App::$strings["Members are visible to other channels"] = "";
+App::$strings["Collection removed."] = "";
+App::$strings["Unable to remove collection."] = "";
+App::$strings["Collection Editor"] = "";
+App::$strings["Members"] = "";
+App::$strings["All Connected Channels"] = "";
+App::$strings["Click on a channel to add or remove."] = "";
+App::$strings["Version %s"] = "";
+App::$strings["Installed plugins/addons/apps:"] = "";
+App::$strings["No installed plugins/addons/apps"] = "";
+App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "";
+App::$strings["Tag: "] = "";
+App::$strings["Last background fetch: "] = "";
+App::$strings["Running at web location"] = "";
+App::$strings["Please visit <a href=\"https://redmatrix.me\">redmatrix.me</a> to learn more about \$Projectname."] = "";
+App::$strings["Bug reports and issues: please visit"] = "";
+App::$strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = "";
+App::$strings["Site Administrators"] = "";
+App::$strings["Help:"] = "";
+App::$strings["Not Found"] = "";
+App::$strings["\$Projectname Server - Setup"] = "";
+App::$strings["Could not connect to database."] = "";
+App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "";
+App::$strings["Could not create table."] = "";
+App::$strings["Your site database has been installed."] = "";
+App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "";
+App::$strings["Please see the file \"install/INSTALL.txt\"."] = "";
+App::$strings["System check"] = "";
+App::$strings["Check again"] = "";
+App::$strings["Database connection"] = "";
+App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "";
+App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "";
+App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "";
+App::$strings["Database Server Name"] = "";
+App::$strings["Default is localhost"] = "";
+App::$strings["Database Port"] = "";
+App::$strings["Communication port number - use 0 for default"] = "";
+App::$strings["Database Login Name"] = "";
+App::$strings["Database Login Password"] = "";
+App::$strings["Database Name"] = "";
+App::$strings["Database Type"] = "";
+App::$strings["Site administrator email address"] = "";
+App::$strings["Your account email address must match this in order to use the web admin panel."] = "";
+App::$strings["Website URL"] = "";
+App::$strings["Please use SSL (https) URL if available."] = "";
+App::$strings["Please select a default timezone for your website"] = "";
+App::$strings["Site settings"] = "";
+App::$strings["Could not find a command line version of PHP in the web server PATH."] = "";
+App::$strings["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."] = "";
+App::$strings["PHP executable path"] = "";
+App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
+App::$strings["Command line PHP"] = "";
+App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "";
+App::$strings["This is required for message delivery to work."] = "";
+App::$strings["PHP register_argc_argv"] = "";
+App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
+App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "";
+App::$strings["Generate encryption keys"] = "";
+App::$strings["libCurl PHP module"] = "";
+App::$strings["GD graphics PHP module"] = "";
+App::$strings["OpenSSL PHP module"] = "";
+App::$strings["mysqli or postgres PHP module"] = "";
+App::$strings["mb_string PHP module"] = "";
+App::$strings["mcrypt PHP module"] = "";
+App::$strings["Apache mod_rewrite module"] = "";
+App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "";
+App::$strings["proc_open"] = "";
+App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "";
+App::$strings["Error: libCURL PHP module required but not installed."] = "";
+App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "";
+App::$strings["Error: openssl PHP module required but not installed."] = "";
+App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "";
+App::$strings["Error: mb_string PHP module required but not installed."] = "";
+App::$strings["Error: mcrypt PHP module required but not installed."] = "";
+App::$strings["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."] = "";
+App::$strings["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."] = "";
+App::$strings["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."] = "";
+App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "";
+App::$strings[".htconfig.php is writable"] = "";
+App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
+App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "";
+App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
+App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "";
+App::$strings["%s is writable"] = "";
+App::$strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "";
+App::$strings["store is writable"] = "";
+App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "";
+App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "";
+App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "";
+App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "";
+App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "";
+App::$strings["Providers are available that issue free certificates which are browser-valid."] = "";
+App::$strings["SSL certificate validation"] = "";
+App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "";
+App::$strings["Url rewrite is working"] = "";
+App::$strings["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."] = "";
+App::$strings["Errors encountered creating database tables."] = "";
+App::$strings["<h1>What next</h1>"] = "";
+App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
+App::$strings["No channel."] = "";
+App::$strings["Common connections"] = "";
+App::$strings["No connections in common."] = "";
+App::$strings["This site is not a directory server"] = "";
+App::$strings["Could not access contact record."] = "";
+App::$strings["Could not locate selected profile."] = "";
+App::$strings["Connection updated."] = "";
+App::$strings["Failed to update connection record."] = "";
+App::$strings["Blocked"] = "";
+App::$strings["Ignored"] = "";
+App::$strings["Hidden"] = "";
+App::$strings["Archived"] = "";
+App::$strings["Suggest new connections"] = "";
+App::$strings["New Connections"] = "";
+App::$strings["Show pending (new) connections"] = "";
+App::$strings["All Connections"] = "";
+App::$strings["Show all connections"] = "";
+App::$strings["Unblocked"] = "";
+App::$strings["Only show unblocked connections"] = "";
+App::$strings["Only show blocked connections"] = "";
+App::$strings["Only show ignored connections"] = "";
+App::$strings["Only show archived connections"] = "";
+App::$strings["Only show hidden connections"] = "";
+App::$strings["%1\$s [%2\$s]"] = "";
+App::$strings["Edit connection"] = "";
+App::$strings["Search your connections"] = "";
+App::$strings["Finding: "] = "";
+App::$strings["Block Name"] = "";
+App::$strings["Block Title"] = "";
+App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
+App::$strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "";
+App::$strings["Page owner information could not be retrieved."] = "";
+App::$strings["Album not found."] = "";
+App::$strings["Delete Album"] = "";
+App::$strings["Delete Photo"] = "";
+App::$strings["Public access denied."] = "";
+App::$strings["No photos selected"] = "";
+App::$strings["Access to this item is restricted."] = "";
+App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "";
+App::$strings["%1$.2f MB photo storage used."] = "";
+App::$strings["Upload Photos"] = "";
+App::$strings["Enter a new album name"] = "";
+App::$strings["or select an existing one (doubleclick)"] = "";
+App::$strings["Create a status post for this upload"] = "";
+App::$strings["Album name could not be decoded"] = "";
+App::$strings["Contact Photos"] = "";
+App::$strings["Show Newest First"] = "";
+App::$strings["Show Oldest First"] = "";
+App::$strings["View Photo"] = "";
+App::$strings["Edit Album"] = "";
+App::$strings["Permission denied. Access to this item may be restricted."] = "";
+App::$strings["Photo not available"] = "";
+App::$strings["Use as profile photo"] = "";
+App::$strings["Private Photo"] = "";
+App::$strings["View Full Size"] = "";
+App::$strings["Edit photo"] = "";
+App::$strings["Rotate CW (right)"] = "";
+App::$strings["Rotate CCW (left)"] = "";
+App::$strings["Caption"] = "";
+App::$strings["Add a Tag"] = "";
+App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "";
+App::$strings["Flag as adult in album view"] = "";
+App::$strings["In This Photo:"] = "";
+App::$strings["Map"] = "";
+App::$strings["View Album"] = "";
+App::$strings["Recent Photos"] = "";
+App::$strings["Profile Match"] = "";
+App::$strings["No keywords to match. Please add keywords to your default profile."] = "";
+App::$strings["is interested in:"] = "";
+App::$strings["No matches"] = "";
+App::$strings["Away"] = "";
+App::$strings["Online"] = "";
+App::$strings["Select a bookmark folder"] = "";
+App::$strings["Save Bookmark"] = "";
+App::$strings["URL of bookmark"] = "";
+App::$strings["Description"] = "";
+App::$strings["Or enter new bookmark folder name"] = "";
+App::$strings["No more system notifications."] = "";
+App::$strings["System Notifications"] = "";
+App::$strings["network"] = "";
+App::$strings["RSS"] = "";
+App::$strings["Layout updated."] = "";
+App::$strings["Edit System Page Description"] = "";
+App::$strings["Layout not found."] = "";
+App::$strings["Module Name:"] = "";
+App::$strings["Layout Help"] = "";
+App::$strings["- select -"] = "";
+App::$strings["Your service plan only allows %d channels."] = "";
+App::$strings["Nothing to import."] = "";
+App::$strings["Unable to download data from old server"] = "";
+App::$strings["Imported file is empty."] = "";
+App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "";
+App::$strings["Unable to create a unique channel address. Import failed."] = "";
+App::$strings["Channel clone failed. Import failed."] = "";
+App::$strings["Cloned channel not found. Import failed."] = "";
+App::$strings["Import completed."] = "";
+App::$strings["You must be logged in to use this feature."] = "";
+App::$strings["Import Channel"] = "";
+App::$strings["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."] = "";
+App::$strings["File to Upload"] = "";
+App::$strings["Or provide the old server/hub details"] = "";
+App::$strings["Your old identity address (xyz@example.com)"] = "";
+App::$strings["Your old login email address"] = "";
+App::$strings["Your old login password"] = "";
+App::$strings["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."] = "";
+App::$strings["Make this hub my primary location"] = "";
+App::$strings["Import existing posts if possible"] = "";
+App::$strings["Item not found"] = "";
+App::$strings["Edit Layout"] = "";
+App::$strings["Delete layout?"] = "";
+App::$strings["Insert YouTube video"] = "";
+App::$strings["Insert Vorbis [.ogg] video"] = "";
+App::$strings["Insert Vorbis [.ogg] audio"] = "";
+App::$strings["Layout Description (Optional)"] = "";
+App::$strings["Layout Name"] = "";
+App::$strings["You must be logged in to see this page."] = "";
+App::$strings["Room not found"] = "";
+App::$strings["Leave Room"] = "";
+App::$strings["Delete This Room"] = "";
+App::$strings["I am away right now"] = "";
+App::$strings["I am online"] = "";
+App::$strings["Bookmark this room"] = "";
+App::$strings["New Chatroom"] = "";
+App::$strings["Chatroom Name"] = "";
+App::$strings["%1\$s's Chatrooms"] = "";
+App::$strings["Delete webpage?"] = "";
+App::$strings["Page link title"] = "";
+App::$strings["Edit Webpage"] = "";
+App::$strings["This directory server requires an access token"] = "";
+App::$strings["No valid account found."] = "";
+App::$strings["Password reset request issued. Check your email."] = "";
+App::$strings["Site Member (%s)"] = "";
+App::$strings["Password reset requested at %s"] = "";
+App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "";
+App::$strings["Password Reset"] = "";
+App::$strings["Your password has been reset as requested."] = "";
+App::$strings["Your new password is"] = "";
+App::$strings["Save or copy your new password - and then"] = "";
+App::$strings["click here to login"] = "";
+App::$strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "";
+App::$strings["Your password has changed at %s"] = "";
+App::$strings["Forgot your Password?"] = "";
+App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "";
+App::$strings["Email Address"] = "";
+App::$strings["Reset"] = "";
+App::$strings["Website:"] = "";
+App::$strings["Remote Channel [%s] (not yet known on this site)"] = "";
+App::$strings["Rating (this information is public)"] = "";
+App::$strings["Optionally explain your rating (this information is public)"] = "";
+App::$strings["Item is not editable"] = "";
+App::$strings["Delete item?"] = "";
+App::$strings["Total invitation limit exceeded."] = "";
+App::$strings["%s : Not a valid email address."] = "";
+App::$strings["Please join us on Red"] = "";
+App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "";
+App::$strings["%s : Message delivery failed."] = "";
+App::$strings["%d message sent."] = array(
0 => "",
1 => "",
);
-$a->strings["You have no more invitations available"] = "";
-$a->strings["Send invitations"] = "";
-$a->strings["Enter email addresses, one per line:"] = "";
-$a->strings["Your message:"] = "";
-$a->strings["Please join my community on \$Projectname."] = "";
-$a->strings["You will need to supply this invitation code: "] = "";
-$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "";
-$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "";
-$a->strings["or visit "] = "";
-$a->strings["3. Click [Connect]"] = "";
-$a->strings["Location not found."] = "";
-$a->strings["Primary location cannot be removed."] = "";
-$a->strings["No locations found."] = "";
-$a->strings["Manage Channel Locations"] = "";
-$a->strings["Location (address)"] = "";
-$a->strings["Primary Location"] = "";
-$a->strings["Drop location"] = "";
-$a->strings["Failed to create source. No channel selected."] = "";
-$a->strings["Source created."] = "";
-$a->strings["Source updated."] = "";
-$a->strings["*"] = "";
-$a->strings["Manage remote sources of content for your channel."] = "";
-$a->strings["New Source"] = "";
-$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "";
-$a->strings["Only import content with these words (one per line)"] = "";
-$a->strings["Leave blank to import all public content"] = "";
-$a->strings["Channel Name"] = "";
-$a->strings["Source not found."] = "";
-$a->strings["Edit Source"] = "";
-$a->strings["Delete Source"] = "";
-$a->strings["Source removed"] = "";
-$a->strings["Unable to remove source."] = "";
-$a->strings["Unable to update menu."] = "";
-$a->strings["Unable to create menu."] = "";
-$a->strings["Menu Name"] = "";
-$a->strings["Unique name (not visible on webpage) - required"] = "";
-$a->strings["Menu Title"] = "";
-$a->strings["Visible on webpage - leave empty for no title"] = "";
-$a->strings["Allow Bookmarks"] = "";
-$a->strings["Menu may be used to store saved bookmarks"] = "";
-$a->strings["Submit and proceed"] = "";
-$a->strings["Drop"] = "";
-$a->strings["Bookmarks allowed"] = "";
-$a->strings["Delete this menu"] = "";
-$a->strings["Edit menu contents"] = "";
-$a->strings["Edit this menu"] = "";
-$a->strings["Menu could not be deleted."] = "";
-$a->strings["Menu not found."] = "";
-$a->strings["Edit Menu"] = "";
-$a->strings["Add or remove entries to this menu"] = "";
-$a->strings["Menu name"] = "";
-$a->strings["Must be unique, only seen by you"] = "";
-$a->strings["Menu title"] = "";
-$a->strings["Menu title as seen by others"] = "";
-$a->strings["Allow bookmarks"] = "";
-$a->strings["Modify"] = "";
-$a->strings["Permission Denied."] = "";
-$a->strings["File not found."] = "";
-$a->strings["Edit file permissions"] = "";
-$a->strings["Set/edit permissions"] = "";
-$a->strings["Include all files and sub folders"] = "";
-$a->strings["Return to file list"] = "";
-$a->strings["Copy/paste this code to attach file to a post"] = "";
-$a->strings["Copy/paste this URL to link file from a web page"] = "";
-$a->strings["Share this file"] = "";
-$a->strings["Show URL to this file"] = "";
-$a->strings["Notify your contacts about this file"] = "";
-$a->strings["Contact not found."] = "";
-$a->strings["Friend suggestion sent."] = "";
-$a->strings["Suggest Friends"] = "";
-$a->strings["Suggest a friend for %s"] = "";
-$a->strings["Hub not found."] = "";
-$a->strings["Poke/Prod"] = "";
-$a->strings["poke, prod or do other things to somebody"] = "";
-$a->strings["Recipient"] = "";
-$a->strings["Choose what you wish to do to recipient"] = "";
-$a->strings["Make this post private"] = "";
-$a->strings["Invalid profile identifier."] = "";
-$a->strings["Profile Visibility Editor"] = "";
-$a->strings["Click on a contact to add or remove."] = "";
-$a->strings["Visible To"] = "";
-$a->strings["webpage"] = "";
-$a->strings["block"] = "";
-$a->strings["layout"] = "";
-$a->strings["%s element installed"] = "";
-$a->strings["Profile not found."] = "";
-$a->strings["Profile deleted."] = "";
-$a->strings["Profile-"] = "";
-$a->strings["New profile created."] = "";
-$a->strings["Profile unavailable to clone."] = "";
-$a->strings["Profile unavailable to export."] = "";
-$a->strings["Profile Name is required."] = "";
-$a->strings["Marital Status"] = "";
-$a->strings["Romantic Partner"] = "";
-$a->strings["Likes"] = "";
-$a->strings["Dislikes"] = "";
-$a->strings["Work/Employment"] = "";
-$a->strings["Religion"] = "";
-$a->strings["Political Views"] = "";
-$a->strings["Gender"] = "";
-$a->strings["Sexual Preference"] = "";
-$a->strings["Homepage"] = "";
-$a->strings["Interests"] = "";
-$a->strings["Address"] = "";
-$a->strings["Profile updated."] = "";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "";
-$a->strings["Edit Profile Details"] = "";
-$a->strings["View this profile"] = "";
-$a->strings["Change Profile Photo"] = "";
-$a->strings["Create a new profile using these settings"] = "";
-$a->strings["Clone this profile"] = "";
-$a->strings["Delete this profile"] = "";
-$a->strings["Import profile from file"] = "";
-$a->strings["Export profile to file"] = "";
-$a->strings["Profile Name:"] = "";
-$a->strings["Your Full Name:"] = "";
-$a->strings["Title/Description:"] = "";
-$a->strings["Your Gender:"] = "";
-$a->strings["Birthday :"] = "";
-$a->strings["Street Address:"] = "";
-$a->strings["Locality/City:"] = "";
-$a->strings["Postal/Zip Code:"] = "";
-$a->strings["Country:"] = "";
-$a->strings["Region/State:"] = "";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "";
-$a->strings["Who: (if applicable)"] = "";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "";
-$a->strings["Since [date]:"] = "";
-$a->strings["Homepage URL:"] = "";
-$a->strings["Religious Views:"] = "";
-$a->strings["Keywords:"] = "";
-$a->strings["Example: fishing photography software"] = "";
-$a->strings["Used in directory listings"] = "";
-$a->strings["Tell us about yourself..."] = "";
-$a->strings["Hobbies/Interests"] = "";
-$a->strings["Contact information and Social Networks"] = "";
-$a->strings["My other channels"] = "";
-$a->strings["Musical interests"] = "";
-$a->strings["Books, literature"] = "";
-$a->strings["Television"] = "";
-$a->strings["Film/dance/culture/entertainment"] = "";
-$a->strings["Love/romance"] = "";
-$a->strings["Work/employment"] = "";
-$a->strings["School/education"] = "";
-$a->strings["This is your default profile."] = "";
-$a->strings["Age: "] = "";
-$a->strings["Edit/Manage Profiles"] = "";
-$a->strings["Add profile things"] = "";
-$a->strings["Include desirable objects in your profile"] = "";
-$a->strings["No ratings"] = "";
-$a->strings["Ratings"] = "";
-$a->strings["Rating: "] = "";
-$a->strings["Website: "] = "";
-$a->strings["Description: "] = "";
-$a->strings["Source of Item"] = "";
-$a->strings["OpenID protocol error. No ID returned."] = "";
-$a->strings["Welcome %s. Remote authentication successful."] = "";
-$a->strings["%d rating"] = array(
+App::$strings["You have no more invitations available"] = "";
+App::$strings["Send invitations"] = "";
+App::$strings["Enter email addresses, one per line:"] = "";
+App::$strings["Your message:"] = "";
+App::$strings["Please join my community on \$Projectname."] = "";
+App::$strings["You will need to supply this invitation code: "] = "";
+App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "";
+App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "";
+App::$strings["or visit "] = "";
+App::$strings["3. Click [Connect]"] = "";
+App::$strings["Location not found."] = "";
+App::$strings["Primary location cannot be removed."] = "";
+App::$strings["No locations found."] = "";
+App::$strings["Manage Channel Locations"] = "";
+App::$strings["Location (address)"] = "";
+App::$strings["Primary Location"] = "";
+App::$strings["Drop location"] = "";
+App::$strings["Failed to create source. No channel selected."] = "";
+App::$strings["Source created."] = "";
+App::$strings["Source updated."] = "";
+App::$strings["*"] = "";
+App::$strings["Manage remote sources of content for your channel."] = "";
+App::$strings["New Source"] = "";
+App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "";
+App::$strings["Only import content with these words (one per line)"] = "";
+App::$strings["Leave blank to import all public content"] = "";
+App::$strings["Channel Name"] = "";
+App::$strings["Source not found."] = "";
+App::$strings["Edit Source"] = "";
+App::$strings["Delete Source"] = "";
+App::$strings["Source removed"] = "";
+App::$strings["Unable to remove source."] = "";
+App::$strings["Unable to update menu."] = "";
+App::$strings["Unable to create menu."] = "";
+App::$strings["Menu Name"] = "";
+App::$strings["Unique name (not visible on webpage) - required"] = "";
+App::$strings["Menu Title"] = "";
+App::$strings["Visible on webpage - leave empty for no title"] = "";
+App::$strings["Allow Bookmarks"] = "";
+App::$strings["Menu may be used to store saved bookmarks"] = "";
+App::$strings["Submit and proceed"] = "";
+App::$strings["Drop"] = "";
+App::$strings["Bookmarks allowed"] = "";
+App::$strings["Delete this menu"] = "";
+App::$strings["Edit menu contents"] = "";
+App::$strings["Edit this menu"] = "";
+App::$strings["Menu could not be deleted."] = "";
+App::$strings["Menu not found."] = "";
+App::$strings["Edit Menu"] = "";
+App::$strings["Add or remove entries to this menu"] = "";
+App::$strings["Menu name"] = "";
+App::$strings["Must be unique, only seen by you"] = "";
+App::$strings["Menu title"] = "";
+App::$strings["Menu title as seen by others"] = "";
+App::$strings["Allow bookmarks"] = "";
+App::$strings["Modify"] = "";
+App::$strings["Permission Denied."] = "";
+App::$strings["File not found."] = "";
+App::$strings["Edit file permissions"] = "";
+App::$strings["Set/edit permissions"] = "";
+App::$strings["Include all files and sub folders"] = "";
+App::$strings["Return to file list"] = "";
+App::$strings["Copy/paste this code to attach file to a post"] = "";
+App::$strings["Copy/paste this URL to link file from a web page"] = "";
+App::$strings["Share this file"] = "";
+App::$strings["Show URL to this file"] = "";
+App::$strings["Notify your contacts about this file"] = "";
+App::$strings["Contact not found."] = "";
+App::$strings["Friend suggestion sent."] = "";
+App::$strings["Suggest Friends"] = "";
+App::$strings["Suggest a friend for %s"] = "";
+App::$strings["Hub not found."] = "";
+App::$strings["Poke/Prod"] = "";
+App::$strings["poke, prod or do other things to somebody"] = "";
+App::$strings["Recipient"] = "";
+App::$strings["Choose what you wish to do to recipient"] = "";
+App::$strings["Make this post private"] = "";
+App::$strings["Invalid profile identifier."] = "";
+App::$strings["Profile Visibility Editor"] = "";
+App::$strings["Click on a contact to add or remove."] = "";
+App::$strings["Visible To"] = "";
+App::$strings["webpage"] = "";
+App::$strings["block"] = "";
+App::$strings["layout"] = "";
+App::$strings["%s element installed"] = "";
+App::$strings["Profile not found."] = "";
+App::$strings["Profile deleted."] = "";
+App::$strings["Profile-"] = "";
+App::$strings["New profile created."] = "";
+App::$strings["Profile unavailable to clone."] = "";
+App::$strings["Profile unavailable to export."] = "";
+App::$strings["Profile Name is required."] = "";
+App::$strings["Marital Status"] = "";
+App::$strings["Romantic Partner"] = "";
+App::$strings["Likes"] = "";
+App::$strings["Dislikes"] = "";
+App::$strings["Work/Employment"] = "";
+App::$strings["Religion"] = "";
+App::$strings["Political Views"] = "";
+App::$strings["Gender"] = "";
+App::$strings["Sexual Preference"] = "";
+App::$strings["Homepage"] = "";
+App::$strings["Interests"] = "";
+App::$strings["Address"] = "";
+App::$strings["Profile updated."] = "";
+App::$strings["Hide your contact/friend list from viewers of this profile?"] = "";
+App::$strings["Edit Profile Details"] = "";
+App::$strings["View this profile"] = "";
+App::$strings["Change Profile Photo"] = "";
+App::$strings["Create a new profile using these settings"] = "";
+App::$strings["Clone this profile"] = "";
+App::$strings["Delete this profile"] = "";
+App::$strings["Import profile from file"] = "";
+App::$strings["Export profile to file"] = "";
+App::$strings["Profile Name:"] = "";
+App::$strings["Your Full Name:"] = "";
+App::$strings["Title/Description:"] = "";
+App::$strings["Your Gender:"] = "";
+App::$strings["Birthday :"] = "";
+App::$strings["Street Address:"] = "";
+App::$strings["Locality/City:"] = "";
+App::$strings["Postal/Zip Code:"] = "";
+App::$strings["Country:"] = "";
+App::$strings["Region/State:"] = "";
+App::$strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "";
+App::$strings["Who: (if applicable)"] = "";
+App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "";
+App::$strings["Since [date]:"] = "";
+App::$strings["Homepage URL:"] = "";
+App::$strings["Religious Views:"] = "";
+App::$strings["Keywords:"] = "";
+App::$strings["Example: fishing photography software"] = "";
+App::$strings["Used in directory listings"] = "";
+App::$strings["Tell us about yourself..."] = "";
+App::$strings["Hobbies/Interests"] = "";
+App::$strings["Contact information and Social Networks"] = "";
+App::$strings["My other channels"] = "";
+App::$strings["Musical interests"] = "";
+App::$strings["Books, literature"] = "";
+App::$strings["Television"] = "";
+App::$strings["Film/dance/culture/entertainment"] = "";
+App::$strings["Love/romance"] = "";
+App::$strings["Work/employment"] = "";
+App::$strings["School/education"] = "";
+App::$strings["This is your default profile."] = "";
+App::$strings["Age: "] = "";
+App::$strings["Edit/Manage Profiles"] = "";
+App::$strings["Add profile things"] = "";
+App::$strings["Include desirable objects in your profile"] = "";
+App::$strings["No ratings"] = "";
+App::$strings["Ratings"] = "";
+App::$strings["Rating: "] = "";
+App::$strings["Website: "] = "";
+App::$strings["Description: "] = "";
+App::$strings["Source of Item"] = "";
+App::$strings["OpenID protocol error. No ID returned."] = "";
+App::$strings["Welcome %s. Remote authentication successful."] = "";
+App::$strings["%d rating"] = array(
0 => "",
1 => "",
);
-$a->strings["Gender: "] = "";
-$a->strings["Status: "] = "";
-$a->strings["Homepage: "] = "";
-$a->strings["Hometown: "] = "";
-$a->strings["About: "] = "";
-$a->strings["Public Forum:"] = "";
-$a->strings["Keywords: "] = "";
-$a->strings["Common connections: %s"] = "";
-$a->strings["Finding:"] = "";
-$a->strings["next page"] = "";
-$a->strings["previous page"] = "";
-$a->strings["No entries (some entries may be hidden)."] = "";
-$a->strings["Export Channel"] = "";
-$a->strings["Export your basic channel information to a small file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new hub, but\tdoes not contain your content."] = "";
-$a->strings["Export Content"] = "";
-$a->strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "";
-$a->strings["No connections."] = "";
-$a->strings["Visit %s's profile [%s]"] = "";
-$a->strings["invalid target signature"] = "";
-$a->strings["Theme settings updated."] = "";
-$a->strings["Site"] = "";
-$a->strings["Accounts"] = "";
-$a->strings["Channels"] = "";
-$a->strings["Plugins"] = "";
-$a->strings["Themes"] = "";
-$a->strings["Inspect queue"] = "";
-$a->strings["Profile Config"] = "";
-$a->strings["DB updates"] = "";
-$a->strings["Logs"] = "";
-$a->strings["Plugin Features"] = "";
-$a->strings["User registrations waiting for confirmation"] = "";
-$a->strings["# Accounts"] = "";
-$a->strings["# blocked accounts"] = "";
-$a->strings["# expired accounts"] = "";
-$a->strings["# expiring accounts"] = "";
-$a->strings["# Channels"] = "";
-$a->strings["# primary"] = "";
-$a->strings["# clones"] = "";
-$a->strings["Message queues"] = "";
-$a->strings["Administration"] = "";
-$a->strings["Summary"] = "";
-$a->strings["Registered accounts"] = "";
-$a->strings["Pending registrations"] = "";
-$a->strings["Registered channels"] = "";
-$a->strings["Active plugins"] = "";
-$a->strings["Version"] = "";
-$a->strings["Site settings updated."] = "";
-$a->strings["experimental"] = "";
-$a->strings["unsupported"] = "";
-$a->strings["Yes - with approval"] = "";
-$a->strings["My site is not a public server"] = "";
-$a->strings["My site has paid access only"] = "";
-$a->strings["My site has free access only"] = "";
-$a->strings["My site offers free accounts with optional paid upgrades"] = "";
-$a->strings["Registration"] = "";
-$a->strings["File upload"] = "";
-$a->strings["Policies"] = "";
-$a->strings["Site name"] = "";
-$a->strings["Banner/Logo"] = "";
-$a->strings["Administrator Information"] = "";
-$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "";
-$a->strings["System language"] = "";
-$a->strings["System theme"] = "";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
-$a->strings["Mobile system theme"] = "";
-$a->strings["Theme for mobile devices"] = "";
-$a->strings["Enable Diaspora Protocol"] = "";
-$a->strings["Communicate with Diaspora and Friendica - experimental"] = "";
-$a->strings["Allow Feeds as Connections"] = "";
-$a->strings["(Heavy system resource usage)"] = "";
-$a->strings["Maximum image size"] = "";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
-$a->strings["Does this site allow new member registration?"] = "";
-$a->strings["Which best describes the types of account offered by this hub?"] = "";
-$a->strings["Register text"] = "";
-$a->strings["Will be displayed prominently on the registration page."] = "";
-$a->strings["Accounts abandoned after x days"] = "";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
-$a->strings["Allowed friend domains"] = "";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
-$a->strings["Allowed email domains"] = "";
-$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
-$a->strings["Not allowed email domains"] = "";
-$a->strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "";
-$a->strings["Block public"] = "";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
-$a->strings["Verify Email Addresses"] = "";
-$a->strings["Check to verify email addresses used in account registration (recommended)."] = "";
-$a->strings["Force publish"] = "";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
-$a->strings["Disable discovery tab"] = "";
-$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "";
-$a->strings["No login on Homepage"] = "";
-$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "";
-$a->strings["Proxy user"] = "";
-$a->strings["Proxy URL"] = "";
-$a->strings["Network timeout"] = "";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
-$a->strings["Delivery interval"] = "";
-$a->strings["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."] = "";
-$a->strings["Poll interval"] = "";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
-$a->strings["Maximum Load Average"] = "";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
-$a->strings["Expiration period in days for imported (matrix/network) content"] = "";
-$a->strings["0 for no expiration of imported content"] = "";
-$a->strings["No server found"] = "";
-$a->strings["ID"] = "";
-$a->strings["for channel"] = "";
-$a->strings["on server"] = "";
-$a->strings["Status"] = "";
-$a->strings["Server"] = "";
-$a->strings["Update has been marked successful"] = "";
-$a->strings["Executing %s failed. Check system logs."] = "";
-$a->strings["Update %s was successfully applied."] = "";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
-$a->strings["Update function %s could not be found."] = "";
-$a->strings["No failed updates."] = "";
-$a->strings["Failed Updates"] = "";
-$a->strings["Mark success (if update was manually applied)"] = "";
-$a->strings["Attempt to execute this update step automatically"] = "";
-$a->strings["Queue Statistics"] = "";
-$a->strings["Total Entries"] = "";
-$a->strings["Priority"] = "";
-$a->strings["Destination URL"] = "";
-$a->strings["Mark hub permanently offline"] = "";
-$a->strings["Empty queue for this hub"] = "";
-$a->strings["Last known contact"] = "";
-$a->strings["%s user blocked/unblocked"] = array(
+App::$strings["Gender: "] = "";
+App::$strings["Status: "] = "";
+App::$strings["Homepage: "] = "";
+App::$strings["Hometown: "] = "";
+App::$strings["About: "] = "";
+App::$strings["Public Forum:"] = "";
+App::$strings["Keywords: "] = "";
+App::$strings["Common connections: %s"] = "";
+App::$strings["Finding:"] = "";
+App::$strings["next page"] = "";
+App::$strings["previous page"] = "";
+App::$strings["No entries (some entries may be hidden)."] = "";
+App::$strings["Export Channel"] = "";
+App::$strings["Export your basic channel information to a small file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new hub, but\tdoes not contain your content."] = "";
+App::$strings["Export Content"] = "";
+App::$strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "";
+App::$strings["No connections."] = "";
+App::$strings["Visit %s's profile [%s]"] = "";
+App::$strings["invalid target signature"] = "";
+App::$strings["Theme settings updated."] = "";
+App::$strings["Site"] = "";
+App::$strings["Accounts"] = "";
+App::$strings["Channels"] = "";
+App::$strings["Plugins"] = "";
+App::$strings["Themes"] = "";
+App::$strings["Inspect queue"] = "";
+App::$strings["Profile Config"] = "";
+App::$strings["DB updates"] = "";
+App::$strings["Logs"] = "";
+App::$strings["Plugin Features"] = "";
+App::$strings["User registrations waiting for confirmation"] = "";
+App::$strings["# Accounts"] = "";
+App::$strings["# blocked accounts"] = "";
+App::$strings["# expired accounts"] = "";
+App::$strings["# expiring accounts"] = "";
+App::$strings["# Channels"] = "";
+App::$strings["# primary"] = "";
+App::$strings["# clones"] = "";
+App::$strings["Message queues"] = "";
+App::$strings["Administration"] = "";
+App::$strings["Summary"] = "";
+App::$strings["Registered accounts"] = "";
+App::$strings["Pending registrations"] = "";
+App::$strings["Registered channels"] = "";
+App::$strings["Active plugins"] = "";
+App::$strings["Version"] = "";
+App::$strings["Site settings updated."] = "";
+App::$strings["experimental"] = "";
+App::$strings["unsupported"] = "";
+App::$strings["Yes - with approval"] = "";
+App::$strings["My site is not a public server"] = "";
+App::$strings["My site has paid access only"] = "";
+App::$strings["My site has free access only"] = "";
+App::$strings["My site offers free accounts with optional paid upgrades"] = "";
+App::$strings["Registration"] = "";
+App::$strings["File upload"] = "";
+App::$strings["Policies"] = "";
+App::$strings["Site name"] = "";
+App::$strings["Banner/Logo"] = "";
+App::$strings["Administrator Information"] = "";
+App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "";
+App::$strings["System language"] = "";
+App::$strings["System theme"] = "";
+App::$strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
+App::$strings["Mobile system theme"] = "";
+App::$strings["Theme for mobile devices"] = "";
+App::$strings["Enable Diaspora Protocol"] = "";
+App::$strings["Communicate with Diaspora and Friendica - experimental"] = "";
+App::$strings["Allow Feeds as Connections"] = "";
+App::$strings["(Heavy system resource usage)"] = "";
+App::$strings["Maximum image size"] = "";
+App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
+App::$strings["Does this site allow new member registration?"] = "";
+App::$strings["Which best describes the types of account offered by this hub?"] = "";
+App::$strings["Register text"] = "";
+App::$strings["Will be displayed prominently on the registration page."] = "";
+App::$strings["Accounts abandoned after x days"] = "";
+App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
+App::$strings["Allowed friend domains"] = "";
+App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
+App::$strings["Allowed email domains"] = "";
+App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
+App::$strings["Not allowed email domains"] = "";
+App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "";
+App::$strings["Block public"] = "";
+App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
+App::$strings["Verify Email Addresses"] = "";
+App::$strings["Check to verify email addresses used in account registration (recommended)."] = "";
+App::$strings["Force publish"] = "";
+App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "";
+App::$strings["Disable discovery tab"] = "";
+App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "";
+App::$strings["No login on Homepage"] = "";
+App::$strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "";
+App::$strings["Proxy user"] = "";
+App::$strings["Proxy URL"] = "";
+App::$strings["Network timeout"] = "";
+App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
+App::$strings["Delivery interval"] = "";
+App::$strings["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."] = "";
+App::$strings["Poll interval"] = "";
+App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
+App::$strings["Maximum Load Average"] = "";
+App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
+App::$strings["Expiration period in days for imported (matrix/network) content"] = "";
+App::$strings["0 for no expiration of imported content"] = "";
+App::$strings["No server found"] = "";
+App::$strings["ID"] = "";
+App::$strings["for channel"] = "";
+App::$strings["on server"] = "";
+App::$strings["Status"] = "";
+App::$strings["Server"] = "";
+App::$strings["Update has been marked successful"] = "";
+App::$strings["Executing %s failed. Check system logs."] = "";
+App::$strings["Update %s was successfully applied."] = "";
+App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "";
+App::$strings["Update function %s could not be found."] = "";
+App::$strings["No failed updates."] = "";
+App::$strings["Failed Updates"] = "";
+App::$strings["Mark success (if update was manually applied)"] = "";
+App::$strings["Attempt to execute this update step automatically"] = "";
+App::$strings["Queue Statistics"] = "";
+App::$strings["Total Entries"] = "";
+App::$strings["Priority"] = "";
+App::$strings["Destination URL"] = "";
+App::$strings["Mark hub permanently offline"] = "";
+App::$strings["Empty queue for this hub"] = "";
+App::$strings["Last known contact"] = "";
+App::$strings["%s user blocked/unblocked"] = array(
0 => "",
1 => "",
);
-$a->strings["%s user deleted"] = array(
+App::$strings["%s user deleted"] = array(
0 => "",
1 => "",
);
-$a->strings["Account not found"] = "";
-$a->strings["User '%s' blocked"] = "";
-$a->strings["User '%s' unblocked"] = "";
-$a->strings["Users"] = "";
-$a->strings["select all"] = "";
-$a->strings["User registrations waiting for confirm"] = "";
-$a->strings["Request date"] = "";
-$a->strings["No registrations."] = "";
-$a->strings["Approve"] = "";
-$a->strings["Deny"] = "";
-$a->strings["Block"] = "";
-$a->strings["Unblock"] = "";
-$a->strings["Register date"] = "";
-$a->strings["Last login"] = "";
-$a->strings["Expires"] = "";
-$a->strings["Service Class"] = "";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
-$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
-$a->strings["%s channel censored/uncensored"] = array(
+App::$strings["Account not found"] = "";
+App::$strings["User '%s' blocked"] = "";
+App::$strings["User '%s' unblocked"] = "";
+App::$strings["Users"] = "";
+App::$strings["select all"] = "";
+App::$strings["User registrations waiting for confirm"] = "";
+App::$strings["Request date"] = "";
+App::$strings["No registrations."] = "";
+App::$strings["Approve"] = "";
+App::$strings["Deny"] = "";
+App::$strings["Block"] = "";
+App::$strings["Unblock"] = "";
+App::$strings["Register date"] = "";
+App::$strings["Last login"] = "";
+App::$strings["Expires"] = "";
+App::$strings["Service Class"] = "";
+App::$strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
+App::$strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
+App::$strings["%s channel censored/uncensored"] = array(
0 => "",
1 => "",
);
-$a->strings["%s channel deleted"] = array(
+App::$strings["%s channel deleted"] = array(
0 => "",
1 => "",
);
-$a->strings["Channel not found"] = "";
-$a->strings["Channel '%s' deleted"] = "";
-$a->strings["Channel '%s' uncensored"] = "";
-$a->strings["Channel '%s' censored"] = "";
-$a->strings["Censor"] = "";
-$a->strings["Uncensor"] = "";
-$a->strings["UID"] = "";
-$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
-$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
-$a->strings["Plugin %s disabled."] = "";
-$a->strings["Plugin %s enabled."] = "";
-$a->strings["Disable"] = "";
-$a->strings["Enable"] = "";
-$a->strings["Toggle"] = "";
-$a->strings["Author: "] = "";
-$a->strings["Maintainer: "] = "";
-$a->strings["No themes found."] = "";
-$a->strings["Screenshot"] = "";
-$a->strings["[Experimental]"] = "";
-$a->strings["[Unsupported]"] = "";
-$a->strings["Log settings updated."] = "";
-$a->strings["Clear"] = "";
-$a->strings["Debugging"] = "";
-$a->strings["Log file"] = "";
-$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "";
-$a->strings["Log level"] = "";
-$a->strings["New Profile Field"] = "";
-$a->strings["Field nickname"] = "";
-$a->strings["System name of field"] = "";
-$a->strings["Input type"] = "";
-$a->strings["Field Name"] = "";
-$a->strings["Label on profile pages"] = "";
-$a->strings["Help text"] = "";
-$a->strings["Additional info (optional)"] = "";
-$a->strings["Field definition not found"] = "";
-$a->strings["Edit Profile Field"] = "";
-$a->strings["Unable to find your hub."] = "";
-$a->strings["Post successful."] = "";
-$a->strings["Edit Block"] = "";
-$a->strings["Delete block?"] = "";
-$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "";
-$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "";
-$a->strings["Passwords do not match."] = "";
-$a->strings["Registration successful. Please check your email for validation instructions."] = "";
-$a->strings["Your registration is pending approval by the site owner."] = "";
-$a->strings["Your registration can not be processed."] = "";
-$a->strings["Registration on this site/hub is by approval only."] = "";
-$a->strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
-$a->strings["Terms of Service"] = "";
-$a->strings["I accept the %s for this website"] = "";
-$a->strings["I am over 13 years of age and accept the %s for this website"] = "";
-$a->strings["Membership on this site is by invitation only."] = "";
-$a->strings["Please enter your invitation code"] = "";
-$a->strings["Your email address"] = "";
-$a->strings["Choose a password"] = "";
-$a->strings["Please re-enter your password"] = "";
-$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "";
-$a->strings["Remove This Account"] = "";
-$a->strings["WARNING: "] = "";
-$a->strings["This account and all its channels will be completely removed from the network. "] = "";
-$a->strings["This action is permanent and can not be undone!"] = "";
-$a->strings["Please enter your password for verification:"] = "";
-$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "";
-$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "";
-$a->strings["Unable to locate original post."] = "";
-$a->strings["Empty post discarded."] = "";
-$a->strings["Executable content type not permitted to this channel."] = "";
-$a->strings["System error. Post not saved."] = "";
-$a->strings["Unable to obtain post information from database."] = "";
-$a->strings["You have reached your limit of %1$.0f top level posts."] = "";
-$a->strings["You have reached your limit of %1$.0f webpages."] = "";
-$a->strings["[Embedded content - reload page to view]"] = "";
-$a->strings["Remote privacy information not available."] = "";
-$a->strings["Visible to:"] = "";
-$a->strings["Comanche page description language help"] = "";
-$a->strings["Layout Description"] = "";
-$a->strings["Download PDL file"] = "";
-$a->strings["First Name"] = "";
-$a->strings["Last Name"] = "";
-$a->strings["Nickname"] = "";
-$a->strings["Full Name"] = "";
-$a->strings["Profile Photo 16px"] = "";
-$a->strings["Profile Photo 32px"] = "";
-$a->strings["Profile Photo 48px"] = "";
-$a->strings["Profile Photo 64px"] = "";
-$a->strings["Profile Photo 80px"] = "";
-$a->strings["Profile Photo 128px"] = "";
-$a->strings["Timezone"] = "";
-$a->strings["Homepage URL"] = "";
-$a->strings["Birth Year"] = "";
-$a->strings["Birth Month"] = "";
-$a->strings["Birth Day"] = "";
-$a->strings["Birthdate"] = "";
-$a->strings["Conversation removed."] = "";
-$a->strings["No messages."] = "";
-$a->strings["Delete conversation"] = "";
-$a->strings["D, d M Y - g:i A"] = "";
-$a->strings["Unable to create element."] = "";
-$a->strings["Unable to update menu element."] = "";
-$a->strings["Unable to add menu element."] = "";
-$a->strings["Menu Item Permissions"] = "";
-$a->strings["Link Name"] = "";
-$a->strings["Link or Submenu Target"] = "";
-$a->strings["Enter URL of the link or select a menu name to create a submenu"] = "";
-$a->strings["Use magic-auth if available"] = "";
-$a->strings["Open link in new window"] = "";
-$a->strings["Order in list"] = "";
-$a->strings["Higher numbers will sink to bottom of listing"] = "";
-$a->strings["Submit and finish"] = "";
-$a->strings["Submit and continue"] = "";
-$a->strings["Menu:"] = "";
-$a->strings["Link Target"] = "";
-$a->strings["Edit menu"] = "";
-$a->strings["Edit element"] = "";
-$a->strings["Drop element"] = "";
-$a->strings["New element"] = "";
-$a->strings["Edit this menu container"] = "";
-$a->strings["Add menu element"] = "";
-$a->strings["Delete this menu item"] = "";
-$a->strings["Edit this menu item"] = "";
-$a->strings["Menu item not found."] = "";
-$a->strings["Menu item deleted."] = "";
-$a->strings["Menu item could not be deleted."] = "";
-$a->strings["Edit Menu Element"] = "";
-$a->strings["Link text"] = "";
-$a->strings["Set your current mood and tell your friends"] = "";
-$a->strings["Total votes"] = "";
-$a->strings["Average Rating"] = "";
-$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "";
-$a->strings["Remove This Channel"] = "";
-$a->strings["This channel will be completely removed from the network. "] = "";
-$a->strings["Remove this channel and all its clones from the network"] = "";
-$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "";
-$a->strings["is now connected to"] = "";
-$a->strings["Could not access address book record."] = "";
-$a->strings["Refresh failed - channel is currently unavailable."] = "";
-$a->strings["Channel has been unblocked"] = "";
-$a->strings["Channel has been blocked"] = "";
-$a->strings["Unable to set address book parameters."] = "";
-$a->strings["Channel has been unignored"] = "";
-$a->strings["Channel has been ignored"] = "";
-$a->strings["Channel has been unarchived"] = "";
-$a->strings["Channel has been archived"] = "";
-$a->strings["Channel has been unhidden"] = "";
-$a->strings["Channel has been hidden"] = "";
-$a->strings["Channel has been approved"] = "";
-$a->strings["Channel has been unapproved"] = "";
-$a->strings["Connection has been removed."] = "";
-$a->strings["View %s's profile"] = "";
-$a->strings["Refresh Permissions"] = "";
-$a->strings["Fetch updated permissions"] = "";
-$a->strings["Recent Activity"] = "";
-$a->strings["View recent posts and comments"] = "";
-$a->strings["Block (or Unblock) all communications with this connection"] = "";
-$a->strings["Unignore"] = "";
-$a->strings["Ignore"] = "";
-$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "";
-$a->strings["Unarchive"] = "";
-$a->strings["Archive"] = "";
-$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "";
-$a->strings["Unhide"] = "";
-$a->strings["Hide"] = "";
-$a->strings["Hide or Unhide this connection from your other connections"] = "";
-$a->strings["Delete this connection"] = "";
-$a->strings["Approve this connection"] = "";
-$a->strings["Accept connection to allow communication"] = "";
-$a->strings["Connections: settings for %s"] = "";
-$a->strings["Apply these permissions automatically"] = "";
-$a->strings["Apply the permissions indicated on this page to all new connections."] = "";
-$a->strings["Slide to adjust your degree of friendship"] = "";
-$a->strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may <em>not</em> be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "";
-$a->strings["inherited"] = "";
-$a->strings["Connection has no individual permissions!"] = "";
-$a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "";
-$a->strings["Profile Visibility"] = "";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "";
-$a->strings["Contact Information / Notes"] = "";
-$a->strings["Edit contact notes"] = "";
-$a->strings["Their Settings"] = "";
-$a->strings["My Settings"] = "";
-$a->strings["Default permissions for this channel type have (just) been applied. They have <em>not</em> been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "";
-$a->strings["Clear/Disable Automatic Permissions"] = "";
-$a->strings["Forum Members"] = "";
-$a->strings["Soapbox"] = "";
-$a->strings["Full Sharing (typical social network permissions)"] = "";
-$a->strings["Cautious Sharing "] = "";
-$a->strings["Follow Only"] = "";
-$a->strings["Individual Permissions"] = "";
-$a->strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "";
-$a->strings["Advanced Permissions"] = "";
-$a->strings["Simple Permissions (select one and submit)"] = "";
-$a->strings["Visit %s's profile - %s"] = "";
-$a->strings["Block/Unblock contact"] = "";
-$a->strings["Ignore contact"] = "";
-$a->strings["Repair URL settings"] = "";
-$a->strings["View conversations"] = "";
-$a->strings["Delete contact"] = "";
-$a->strings["Last update:"] = "";
-$a->strings["Update public posts"] = "";
-$a->strings["Update now"] = "";
-$a->strings["Currently blocked"] = "";
-$a->strings["Currently ignored"] = "";
-$a->strings["Currently archived"] = "";
-$a->strings["Currently pending"] = "";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
-$a->strings["The error message was:"] = "";
-$a->strings["Authentication failed."] = "";
-$a->strings["Remote Authentication"] = "";
-$a->strings["Enter your channel address (e.g. channel@example.com)"] = "";
-$a->strings["Authenticate"] = "";
-$a->strings["Unable to lookup recipient."] = "";
-$a->strings["Unable to communicate with requested channel."] = "";
-$a->strings["Cannot verify requested channel."] = "";
-$a->strings["Selected channel has private message restrictions. Send failed."] = "";
-$a->strings["Message deleted."] = "";
-$a->strings["Message recalled."] = "";
-$a->strings["Send Private Message"] = "";
-$a->strings["To:"] = "";
-$a->strings["Subject:"] = "";
-$a->strings["Send"] = "";
-$a->strings["Message not found."] = "";
-$a->strings["Delete message"] = "";
-$a->strings["Recall message"] = "";
-$a->strings["Message has been recalled."] = "";
-$a->strings["Private Conversation"] = "";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
-$a->strings["Send Reply"] = "";
-$a->strings["Invalid request identifier."] = "";
-$a->strings["Discard"] = "";
-$a->strings["Please login."] = "";
-$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "";
-$a->strings["Add a Channel"] = "";
-$a->strings["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."] = "";
-$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "";
-$a->strings["Choose a short nickname"] = "";
-$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "";
-$a->strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "";
-$a->strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "";
-$a->strings["Channel Type"] = "";
-$a->strings["Read more about roles"] = "";
-$a->strings["App installed."] = "";
-$a->strings["Malformed app."] = "";
-$a->strings["Embed code"] = "";
-$a->strings["Edit App"] = "";
-$a->strings["Create App"] = "";
-$a->strings["Name of app"] = "";
-$a->strings["Location (URL) of app"] = "";
-$a->strings["Photo icon URL"] = "";
-$a->strings["80 x 80 pixels - optional"] = "";
-$a->strings["Version ID"] = "";
-$a->strings["Price of app"] = "";
-$a->strings["Location (URL) to purchase app"] = "";
-$a->strings["sent you a private message"] = "";
-$a->strings["added your channel"] = "";
-$a->strings["posted an event"] = "";
-$a->strings["No such group"] = "";
-$a->strings["No such channel"] = "";
-$a->strings["Search Results For:"] = "";
-$a->strings["Collection is empty"] = "";
-$a->strings["Collection: "] = "";
-$a->strings["Connection: "] = "";
-$a->strings["Invalid connection."] = "";
-$a->strings["Ipsum Lorem"] = "";
-$a->strings["Bookmark added"] = "";
-$a->strings["My Bookmarks"] = "";
-$a->strings["My Connections Bookmarks"] = "";
-$a->strings["Insufficient permissions. Request redirected to profile page."] = "";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
-$a->strings["Poll"] = "";
-$a->strings["View Results"] = "";
-$a->strings["No service class restrictions found."] = "";
-$a->strings["Files: shared with me"] = "";
-$a->strings["NEW"] = "";
-$a->strings["Remove all files"] = "";
-$a->strings["Remove this file"] = "";
-$a->strings["Schema Default"] = "";
-$a->strings["Sans-Serif"] = "";
-$a->strings["Monospace"] = "";
-$a->strings["Theme settings"] = "";
-$a->strings["Set scheme"] = "";
-$a->strings["Set font-size for posts and comments"] = "";
-$a->strings["Set font face"] = "";
-$a->strings["Set iconset"] = "";
-$a->strings["Set big shadow size, default 15px 15px 15px"] = "";
-$a->strings["Set small shadow size, default 5px 5px 5px"] = "";
-$a->strings["Set shadow color, default #000"] = "";
-$a->strings["Set radius size, default 5px"] = "";
-$a->strings["Set line-height for posts and comments"] = "";
-$a->strings["Set background image"] = "";
-$a->strings["Set background attachment"] = "";
-$a->strings["Set background color"] = "";
-$a->strings["Set section background image"] = "";
-$a->strings["Set section background color"] = "";
-$a->strings["Set color of items - use hex"] = "";
-$a->strings["Set color of links - use hex"] = "";
-$a->strings["Set max-width for items. Default 400px"] = "";
-$a->strings["Set min-width for items. Default 240px"] = "";
-$a->strings["Set the generic content wrapper width. Default 48%"] = "";
-$a->strings["Set color of fonts - use hex"] = "";
-$a->strings["Set background-size element"] = "";
-$a->strings["Item opacity"] = "";
-$a->strings["Display post previews only"] = "";
-$a->strings["Display side bar on channel page"] = "";
-$a->strings["Colour of the navigation bar"] = "";
-$a->strings["Item float"] = "";
-$a->strings["Left offset of the section element"] = "";
-$a->strings["Right offset of the section element"] = "";
-$a->strings["Section width"] = "";
-$a->strings["Left offset of the aside"] = "";
-$a->strings["Right offset of the aside element"] = "";
-$a->strings["Light (Hubzilla default)"] = "";
-$a->strings["Select scheme"] = "";
-$a->strings["Narrow navbar"] = "";
-$a->strings["Navigation bar background color"] = "";
-$a->strings["Navigation bar gradient top color"] = "";
-$a->strings["Navigation bar gradient bottom color"] = "";
-$a->strings["Navigation active button gradient top color"] = "";
-$a->strings["Navigation active button gradient bottom color"] = "";
-$a->strings["Navigation bar border color "] = "";
-$a->strings["Navigation bar icon color "] = "";
-$a->strings["Navigation bar active icon color "] = "";
-$a->strings["link color"] = "";
-$a->strings["Set font-color for banner"] = "";
-$a->strings["Set the background color"] = "";
-$a->strings["Set the background image"] = "";
-$a->strings["Set the background color of items"] = "";
-$a->strings["Set the background color of comments"] = "";
-$a->strings["Set the border color of comments"] = "";
-$a->strings["Set the indent for comments"] = "";
-$a->strings["Set the basic color for item icons"] = "";
-$a->strings["Set the hover color for item icons"] = "";
-$a->strings["Set font-size for the entire application"] = "";
-$a->strings["Example: 14px"] = "";
-$a->strings["Set font-color for posts and comments"] = "";
-$a->strings["Set radius of corners"] = "";
-$a->strings["Set shadow depth of photos"] = "";
-$a->strings["Set maximum width of content region in pixel"] = "";
-$a->strings["Leave empty for default width"] = "";
-$a->strings["Center page content"] = "";
-$a->strings["Set minimum opacity of nav bar - to hide it"] = "";
-$a->strings["Set size of conversation author photo"] = "";
-$a->strings["Set size of followup author photos"] = "";
-$a->strings["Update %s failed. See error logs."] = "";
-$a->strings["Update Error at %s"] = "";
-$a->strings["Create an account to access services and applications within the Hubzilla"] = "";
-$a->strings["Password"] = "";
-$a->strings["Remember me"] = "";
-$a->strings["Forgot your password?"] = "";
-$a->strings["toggle mobile"] = "";
-$a->strings["Website SSL certificate is not valid. Please correct."] = "";
-$a->strings["[red] Website SSL error for %s"] = "";
-$a->strings["Cron/Scheduled tasks not running."] = "";
-$a->strings["[red] Cron tasks not running on %s"] = "";
+App::$strings["Channel not found"] = "";
+App::$strings["Channel '%s' deleted"] = "";
+App::$strings["Channel '%s' uncensored"] = "";
+App::$strings["Channel '%s' censored"] = "";
+App::$strings["Censor"] = "";
+App::$strings["Uncensor"] = "";
+App::$strings["UID"] = "";
+App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
+App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
+App::$strings["Plugin %s disabled."] = "";
+App::$strings["Plugin %s enabled."] = "";
+App::$strings["Disable"] = "";
+App::$strings["Enable"] = "";
+App::$strings["Toggle"] = "";
+App::$strings["Author: "] = "";
+App::$strings["Maintainer: "] = "";
+App::$strings["No themes found."] = "";
+App::$strings["Screenshot"] = "";
+App::$strings["[Experimental]"] = "";
+App::$strings["[Unsupported]"] = "";
+App::$strings["Log settings updated."] = "";
+App::$strings["Clear"] = "";
+App::$strings["Debugging"] = "";
+App::$strings["Log file"] = "";
+App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "";
+App::$strings["Log level"] = "";
+App::$strings["New Profile Field"] = "";
+App::$strings["Field nickname"] = "";
+App::$strings["System name of field"] = "";
+App::$strings["Input type"] = "";
+App::$strings["Field Name"] = "";
+App::$strings["Label on profile pages"] = "";
+App::$strings["Help text"] = "";
+App::$strings["Additional info (optional)"] = "";
+App::$strings["Field definition not found"] = "";
+App::$strings["Edit Profile Field"] = "";
+App::$strings["Unable to find your hub."] = "";
+App::$strings["Post successful."] = "";
+App::$strings["Edit Block"] = "";
+App::$strings["Delete block?"] = "";
+App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "";
+App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "";
+App::$strings["Passwords do not match."] = "";
+App::$strings["Registration successful. Please check your email for validation instructions."] = "";
+App::$strings["Your registration is pending approval by the site owner."] = "";
+App::$strings["Your registration can not be processed."] = "";
+App::$strings["Registration on this site/hub is by approval only."] = "";
+App::$strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "";
+App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
+App::$strings["Terms of Service"] = "";
+App::$strings["I accept the %s for this website"] = "";
+App::$strings["I am over 13 years of age and accept the %s for this website"] = "";
+App::$strings["Membership on this site is by invitation only."] = "";
+App::$strings["Please enter your invitation code"] = "";
+App::$strings["Your email address"] = "";
+App::$strings["Choose a password"] = "";
+App::$strings["Please re-enter your password"] = "";
+App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "";
+App::$strings["Remove This Account"] = "";
+App::$strings["WARNING: "] = "";
+App::$strings["This account and all its channels will be completely removed from the network. "] = "";
+App::$strings["This action is permanent and can not be undone!"] = "";
+App::$strings["Please enter your password for verification:"] = "";
+App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "";
+App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "";
+App::$strings["Unable to locate original post."] = "";
+App::$strings["Empty post discarded."] = "";
+App::$strings["Executable content type not permitted to this channel."] = "";
+App::$strings["System error. Post not saved."] = "";
+App::$strings["Unable to obtain post information from database."] = "";
+App::$strings["You have reached your limit of %1$.0f top level posts."] = "";
+App::$strings["You have reached your limit of %1$.0f webpages."] = "";
+App::$strings["[Embedded content - reload page to view]"] = "";
+App::$strings["Remote privacy information not available."] = "";
+App::$strings["Visible to:"] = "";
+App::$strings["Comanche page description language help"] = "";
+App::$strings["Layout Description"] = "";
+App::$strings["Download PDL file"] = "";
+App::$strings["First Name"] = "";
+App::$strings["Last Name"] = "";
+App::$strings["Nickname"] = "";
+App::$strings["Full Name"] = "";
+App::$strings["Profile Photo 16px"] = "";
+App::$strings["Profile Photo 32px"] = "";
+App::$strings["Profile Photo 48px"] = "";
+App::$strings["Profile Photo 64px"] = "";
+App::$strings["Profile Photo 80px"] = "";
+App::$strings["Profile Photo 128px"] = "";
+App::$strings["Timezone"] = "";
+App::$strings["Homepage URL"] = "";
+App::$strings["Birth Year"] = "";
+App::$strings["Birth Month"] = "";
+App::$strings["Birth Day"] = "";
+App::$strings["Birthdate"] = "";
+App::$strings["Conversation removed."] = "";
+App::$strings["No messages."] = "";
+App::$strings["Delete conversation"] = "";
+App::$strings["D, d M Y - g:i A"] = "";
+App::$strings["Unable to create element."] = "";
+App::$strings["Unable to update menu element."] = "";
+App::$strings["Unable to add menu element."] = "";
+App::$strings["Menu Item Permissions"] = "";
+App::$strings["Link Name"] = "";
+App::$strings["Link or Submenu Target"] = "";
+App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "";
+App::$strings["Use magic-auth if available"] = "";
+App::$strings["Open link in new window"] = "";
+App::$strings["Order in list"] = "";
+App::$strings["Higher numbers will sink to bottom of listing"] = "";
+App::$strings["Submit and finish"] = "";
+App::$strings["Submit and continue"] = "";
+App::$strings["Menu:"] = "";
+App::$strings["Link Target"] = "";
+App::$strings["Edit menu"] = "";
+App::$strings["Edit element"] = "";
+App::$strings["Drop element"] = "";
+App::$strings["New element"] = "";
+App::$strings["Edit this menu container"] = "";
+App::$strings["Add menu element"] = "";
+App::$strings["Delete this menu item"] = "";
+App::$strings["Edit this menu item"] = "";
+App::$strings["Menu item not found."] = "";
+App::$strings["Menu item deleted."] = "";
+App::$strings["Menu item could not be deleted."] = "";
+App::$strings["Edit Menu Element"] = "";
+App::$strings["Link text"] = "";
+App::$strings["Set your current mood and tell your friends"] = "";
+App::$strings["Total votes"] = "";
+App::$strings["Average Rating"] = "";
+App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "";
+App::$strings["Remove This Channel"] = "";
+App::$strings["This channel will be completely removed from the network. "] = "";
+App::$strings["Remove this channel and all its clones from the network"] = "";
+App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "";
+App::$strings["is now connected to"] = "";
+App::$strings["Could not access address book record."] = "";
+App::$strings["Refresh failed - channel is currently unavailable."] = "";
+App::$strings["Channel has been unblocked"] = "";
+App::$strings["Channel has been blocked"] = "";
+App::$strings["Unable to set address book parameters."] = "";
+App::$strings["Channel has been unignored"] = "";
+App::$strings["Channel has been ignored"] = "";
+App::$strings["Channel has been unarchived"] = "";
+App::$strings["Channel has been archived"] = "";
+App::$strings["Channel has been unhidden"] = "";
+App::$strings["Channel has been hidden"] = "";
+App::$strings["Channel has been approved"] = "";
+App::$strings["Channel has been unapproved"] = "";
+App::$strings["Connection has been removed."] = "";
+App::$strings["View %s's profile"] = "";
+App::$strings["Refresh Permissions"] = "";
+App::$strings["Fetch updated permissions"] = "";
+App::$strings["Recent Activity"] = "";
+App::$strings["View recent posts and comments"] = "";
+App::$strings["Block (or Unblock) all communications with this connection"] = "";
+App::$strings["Unignore"] = "";
+App::$strings["Ignore"] = "";
+App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "";
+App::$strings["Unarchive"] = "";
+App::$strings["Archive"] = "";
+App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "";
+App::$strings["Unhide"] = "";
+App::$strings["Hide"] = "";
+App::$strings["Hide or Unhide this connection from your other connections"] = "";
+App::$strings["Delete this connection"] = "";
+App::$strings["Approve this connection"] = "";
+App::$strings["Accept connection to allow communication"] = "";
+App::$strings["Connections: settings for %s"] = "";
+App::$strings["Apply these permissions automatically"] = "";
+App::$strings["Apply the permissions indicated on this page to all new connections."] = "";
+App::$strings["Slide to adjust your degree of friendship"] = "";
+App::$strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may <em>not</em> be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "";
+App::$strings["inherited"] = "";
+App::$strings["Connection has no individual permissions!"] = "";
+App::$strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "";
+App::$strings["Profile Visibility"] = "";
+App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "";
+App::$strings["Contact Information / Notes"] = "";
+App::$strings["Edit contact notes"] = "";
+App::$strings["Their Settings"] = "";
+App::$strings["My Settings"] = "";
+App::$strings["Default permissions for this channel type have (just) been applied. They have <em>not</em> been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "";
+App::$strings["Clear/Disable Automatic Permissions"] = "";
+App::$strings["Forum Members"] = "";
+App::$strings["Soapbox"] = "";
+App::$strings["Full Sharing (typical social network permissions)"] = "";
+App::$strings["Cautious Sharing "] = "";
+App::$strings["Follow Only"] = "";
+App::$strings["Individual Permissions"] = "";
+App::$strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "";
+App::$strings["Advanced Permissions"] = "";
+App::$strings["Simple Permissions (select one and submit)"] = "";
+App::$strings["Visit %s's profile - %s"] = "";
+App::$strings["Block/Unblock contact"] = "";
+App::$strings["Ignore contact"] = "";
+App::$strings["Repair URL settings"] = "";
+App::$strings["View conversations"] = "";
+App::$strings["Delete contact"] = "";
+App::$strings["Last update:"] = "";
+App::$strings["Update public posts"] = "";
+App::$strings["Update now"] = "";
+App::$strings["Currently blocked"] = "";
+App::$strings["Currently ignored"] = "";
+App::$strings["Currently archived"] = "";
+App::$strings["Currently pending"] = "";
+App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
+App::$strings["The error message was:"] = "";
+App::$strings["Authentication failed."] = "";
+App::$strings["Remote Authentication"] = "";
+App::$strings["Enter your channel address (e.g. channel@example.com)"] = "";
+App::$strings["Authenticate"] = "";
+App::$strings["Unable to lookup recipient."] = "";
+App::$strings["Unable to communicate with requested channel."] = "";
+App::$strings["Cannot verify requested channel."] = "";
+App::$strings["Selected channel has private message restrictions. Send failed."] = "";
+App::$strings["Message deleted."] = "";
+App::$strings["Message recalled."] = "";
+App::$strings["Send Private Message"] = "";
+App::$strings["To:"] = "";
+App::$strings["Subject:"] = "";
+App::$strings["Send"] = "";
+App::$strings["Message not found."] = "";
+App::$strings["Delete message"] = "";
+App::$strings["Recall message"] = "";
+App::$strings["Message has been recalled."] = "";
+App::$strings["Private Conversation"] = "";
+App::$strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
+App::$strings["Send Reply"] = "";
+App::$strings["Invalid request identifier."] = "";
+App::$strings["Discard"] = "";
+App::$strings["Please login."] = "";
+App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "";
+App::$strings["Add a Channel"] = "";
+App::$strings["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."] = "";
+App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "";
+App::$strings["Choose a short nickname"] = "";
+App::$strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "";
+App::$strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "";
+App::$strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "";
+App::$strings["Channel Type"] = "";
+App::$strings["Read more about roles"] = "";
+App::$strings["App installed."] = "";
+App::$strings["Malformed app."] = "";
+App::$strings["Embed code"] = "";
+App::$strings["Edit App"] = "";
+App::$strings["Create App"] = "";
+App::$strings["Name of app"] = "";
+App::$strings["Location (URL) of app"] = "";
+App::$strings["Photo icon URL"] = "";
+App::$strings["80 x 80 pixels - optional"] = "";
+App::$strings["Version ID"] = "";
+App::$strings["Price of app"] = "";
+App::$strings["Location (URL) to purchase app"] = "";
+App::$strings["sent you a private message"] = "";
+App::$strings["added your channel"] = "";
+App::$strings["posted an event"] = "";
+App::$strings["No such group"] = "";
+App::$strings["No such channel"] = "";
+App::$strings["Search Results For:"] = "";
+App::$strings["Collection is empty"] = "";
+App::$strings["Collection: "] = "";
+App::$strings["Connection: "] = "";
+App::$strings["Invalid connection."] = "";
+App::$strings["Ipsum Lorem"] = "";
+App::$strings["Bookmark added"] = "";
+App::$strings["My Bookmarks"] = "";
+App::$strings["My Connections Bookmarks"] = "";
+App::$strings["Insufficient permissions. Request redirected to profile page."] = "";
+App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
+App::$strings["Poll"] = "";
+App::$strings["View Results"] = "";
+App::$strings["No service class restrictions found."] = "";
+App::$strings["Files: shared with me"] = "";
+App::$strings["NEW"] = "";
+App::$strings["Remove all files"] = "";
+App::$strings["Remove this file"] = "";
+App::$strings["Schema Default"] = "";
+App::$strings["Sans-Serif"] = "";
+App::$strings["Monospace"] = "";
+App::$strings["Theme settings"] = "";
+App::$strings["Set scheme"] = "";
+App::$strings["Set font-size for posts and comments"] = "";
+App::$strings["Set font face"] = "";
+App::$strings["Set iconset"] = "";
+App::$strings["Set big shadow size, default 15px 15px 15px"] = "";
+App::$strings["Set small shadow size, default 5px 5px 5px"] = "";
+App::$strings["Set shadow color, default #000"] = "";
+App::$strings["Set radius size, default 5px"] = "";
+App::$strings["Set line-height for posts and comments"] = "";
+App::$strings["Set background image"] = "";
+App::$strings["Set background attachment"] = "";
+App::$strings["Set background color"] = "";
+App::$strings["Set section background image"] = "";
+App::$strings["Set section background color"] = "";
+App::$strings["Set color of items - use hex"] = "";
+App::$strings["Set color of links - use hex"] = "";
+App::$strings["Set max-width for items. Default 400px"] = "";
+App::$strings["Set min-width for items. Default 240px"] = "";
+App::$strings["Set the generic content wrapper width. Default 48%"] = "";
+App::$strings["Set color of fonts - use hex"] = "";
+App::$strings["Set background-size element"] = "";
+App::$strings["Item opacity"] = "";
+App::$strings["Display post previews only"] = "";
+App::$strings["Display side bar on channel page"] = "";
+App::$strings["Colour of the navigation bar"] = "";
+App::$strings["Item float"] = "";
+App::$strings["Left offset of the section element"] = "";
+App::$strings["Right offset of the section element"] = "";
+App::$strings["Section width"] = "";
+App::$strings["Left offset of the aside"] = "";
+App::$strings["Right offset of the aside element"] = "";
+App::$strings["Light (Hubzilla default)"] = "";
+App::$strings["Select scheme"] = "";
+App::$strings["Narrow navbar"] = "";
+App::$strings["Navigation bar background color"] = "";
+App::$strings["Navigation bar gradient top color"] = "";
+App::$strings["Navigation bar gradient bottom color"] = "";
+App::$strings["Navigation active button gradient top color"] = "";
+App::$strings["Navigation active button gradient bottom color"] = "";
+App::$strings["Navigation bar border color "] = "";
+App::$strings["Navigation bar icon color "] = "";
+App::$strings["Navigation bar active icon color "] = "";
+App::$strings["link color"] = "";
+App::$strings["Set font-color for banner"] = "";
+App::$strings["Set the background color"] = "";
+App::$strings["Set the background image"] = "";
+App::$strings["Set the background color of items"] = "";
+App::$strings["Set the background color of comments"] = "";
+App::$strings["Set the border color of comments"] = "";
+App::$strings["Set the indent for comments"] = "";
+App::$strings["Set the basic color for item icons"] = "";
+App::$strings["Set the hover color for item icons"] = "";
+App::$strings["Set font-size for the entire application"] = "";
+App::$strings["Example: 14px"] = "";
+App::$strings["Set font-color for posts and comments"] = "";
+App::$strings["Set radius of corners"] = "";
+App::$strings["Set shadow depth of photos"] = "";
+App::$strings["Set maximum width of content region in pixel"] = "";
+App::$strings["Leave empty for default width"] = "";
+App::$strings["Center page content"] = "";
+App::$strings["Set minimum opacity of nav bar - to hide it"] = "";
+App::$strings["Set size of conversation author photo"] = "";
+App::$strings["Set size of followup author photos"] = "";
+App::$strings["Update %s failed. See error logs."] = "";
+App::$strings["Update Error at %s"] = "";
+App::$strings["Create an account to access services and applications within the Hubzilla"] = "";
+App::$strings["Password"] = "";
+App::$strings["Remember me"] = "";
+App::$strings["Forgot your password?"] = "";
+App::$strings["toggle mobile"] = "";
+App::$strings["Website SSL certificate is not valid. Please correct."] = "";
+App::$strings["[red] Website SSL error for %s"] = "";
+App::$strings["Cron/Scheduled tasks not running."] = "";
+App::$strings["[red] Cron tasks not running on %s"] = "";
diff --git a/util/typo.php b/util/typo.php
index 2e25c8306..0f7249f5c 100644
--- a/util/typo.php
+++ b/util/typo.php
@@ -10,7 +10,9 @@
include 'boot.php';
- $a = new App();
+ App::init();
+
+// $a = new App();
echo "Directory: include\n";
$files = glob('include/*.php');
@@ -67,8 +69,8 @@
}
}
- if(x($a->config,'system') && x($a->config['system'],'php_path'))
- $phpath = $a->config['system']['php_path'];
+ if(x(App::$config,'system') && x(App::$config['system'],'php_path'))
+ $phpath = App::$config['system']['php_path'];
else
$phpath = 'php';
@@ -76,7 +78,7 @@
echo 'util/hstrings.php' . "\n";
include_once('util/hstrings.php');
- echo count($a->strings) . ' strings' . "\n";
+ echo count(App::$strings) . ' strings' . "\n";
$files = glob('view/*/hstrings.php');
diff --git a/util/typohelper.php b/util/typohelper.php
index 589702a02..52c144ab7 100644
--- a/util/typohelper.php
+++ b/util/typohelper.php
@@ -1,5 +1,8 @@
<?php
+ require_once('boot.php');
+ App::init();
+
$str = <<< EOT
error_reporting(E_ERROR | E_WARNING | E_PARSE );
ini_set('display_errors', '1');
diff --git a/util/udall b/util/udall
new file mode 100755
index 000000000..d1ff1c482
--- /dev/null
+++ b/util/udall
@@ -0,0 +1,17 @@
+#!/bin/bash
+if [ ! -d .git ]; then
+ echo Unable to update `pwd`
+ exit
+fi
+git pull
+
+if [ -d extend ] ; then
+ for a in theme addon widget ; do
+ if [ -d $a ]; then
+ for b in `ls extend/$a` ; do
+ echo Updating $b
+ 'util/update_'$a'_repo' $b
+ done
+ fi
+ done
+fi