aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/frphotohelper.php75
-rw-r--r--util/messages.po3461
-rwxr-xr-xutil/shredder/shredder24
-rw-r--r--util/strings.php2238
-rw-r--r--util/wp/post_to_red/post_to_red.php132
5 files changed, 3139 insertions, 2791 deletions
diff --git a/util/frphotohelper.php b/util/frphotohelper.php
new file mode 100644
index 000000000..484e7fcaf
--- /dev/null
+++ b/util/frphotohelper.php
@@ -0,0 +1,75 @@
+<?php
+
+require_once('include/cli_startup.php');
+
+cli_startup();
+
+$a = get_app();
+
+
+$photo_id = $argv[1];
+$channel_address = $argv[2];
+$fr_server = urldecode($argv[3]);
+require_once('include/photos.php');
+
+$cookies = 'store/[data]/frphoto_cookie_' . $channel_address;
+
+ $c = q("select * from channel left join xchan on channel_hash = xchan_hash where channel_address = '%s' limit 1",
+ dbesc($channel_address)
+ );
+ if(! $c) {
+ logger('frphotohelper: channel not found');
+ killme();
+ }
+ $channel = $c[0];
+
+
+ $ch = curl_init($fr_server . '/api/friendica/photo?f=&photo_id=' . $photo_id);
+
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
+ curl_setopt ($ch, CURLOPT_COOKIEFILE, $cookies);
+ curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookies);
+ curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
+ curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
+ curl_setopt($ch, CURLOPT_USERAGENT, 'RedMatrix');
+
+ $output = curl_exec($ch);
+ curl_close($ch);
+
+ $j = json_decode($output,true);
+
+// logger('frphotohelper: ' . print_r($j,true));
+
+ $args = array();
+ $args['data'] = base64_decode($j['data']);
+ $args['filename'] = $j['filename'];
+ $args['resource_id'] = $j['resource-id'];
+ $args['scale'] = $j['scale'];
+ $args['album'] = $j['album'];
+ $args['not_visible'] = 1;
+ $args['created'] = $j['created'];
+ $args['edited'] = $j['edited'];
+ $args['title'] = $j['title'];
+ $args['description'] = $j['desc'];
+
+ if($j['allow_cid'] || $j['allow_gid'] || $j['deny_cid'] || $j['deny_gid'])
+ $args['contact_allow'] = $channel['channel_hash'];
+
+ $args['type'] = $j['type'];
+
+
+
+ $r = q("select * from photo where resource_id = '%s' and uid = %d limit 1",
+ dbesc($args['resource_id']),
+ intval($channel['channel_id'])
+ );
+ if($r) {
+ killme();
+ }
+
+
+ $ret = photo_upload($channel,$channel,$args);
+ logger('photo_import: ' . print_r($ret,true));
+
+ killme();
+
diff --git a/util/messages.po b/util/messages.po
index 013a2e788..86a39787e 100644
--- a/util/messages.po
+++ b/util/messages.po
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: 2014-07-11.733\n"
+"Project-Id-Version: 2014-08-15.768\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-11 00:03-0700\n"
+"POT-Creation-Date: 2014-08-15 00:03-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,18 +22,49 @@ msgstr ""
msgid "Cannot locate DNS info for database server '%s'"
msgstr ""
-#: ../../include/photo/photo_driver.php:643 ../../include/photos.php:51
+#: ../../include/photo/photo_driver.php:653 ../../include/photos.php:51
#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301
#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91
-#: ../../mod/photos.php:653 ../../mod/photos.php:675
+#: ../../mod/photos.php:659 ../../mod/photos.php:681
msgid "Profile Photos"
msgstr ""
-#: ../../include/oembed.php:171
+#: ../../include/diaspora.php:610
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr ""
+
+#: ../../include/diaspora.php:693
+msgid "Sharing notification from Diaspora network"
+msgstr ""
+
+#: ../../include/diaspora.php:1910 ../../include/text.php:1732
+#: ../../include/conversation.php:120 ../../mod/subthread.php:72
+#: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:294
+msgid "photo"
+msgstr ""
+
+#: ../../include/diaspora.php:1910 ../../include/text.php:1738
+#: ../../include/conversation.php:148 ../../mod/subthread.php:72
+#: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:294
+msgid "status"
+msgstr ""
+
+#: ../../include/diaspora.php:1926 ../../include/conversation.php:164
+#: ../../mod/like.php:331
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr ""
+
+#: ../../include/diaspora.php:2303
+msgid "Attachments:"
+msgstr ""
+
+#: ../../include/oembed.php:163
msgid "Embedded content"
msgstr ""
-#: ../../include/oembed.php:180
+#: ../../include/oembed.php:172
msgid "Embedding disabled"
msgstr ""
@@ -46,521 +77,497 @@ msgstr ""
msgid "commented on %s's post"
msgstr ""
-#: ../../include/conversation.php:120 ../../include/text.php:1730
-#: ../../mod/subthread.php:72 ../../mod/subthread.php:174
-#: ../../mod/tagger.php:45 ../../mod/like.php:254
-msgid "photo"
+#: ../../include/apps.php:123
+msgid "Site Admin"
msgstr ""
-#: ../../include/conversation.php:123 ../../include/text.php:1733
-#: ../../mod/tagger.php:49
-msgid "event"
+#: ../../include/apps.php:124 ../../include/nav.php:100
+#: ../../include/conversation.php:1543
+msgid "Bookmarks"
msgstr ""
-#: ../../include/conversation.php:126 ../../mod/like.php:72
-msgid "channel"
+#: ../../include/apps.php:125
+msgid "Address Book"
msgstr ""
-#: ../../include/conversation.php:148 ../../include/text.php:1736
-#: ../../mod/subthread.php:72 ../../mod/subthread.php:174
-#: ../../mod/tagger.php:53 ../../mod/like.php:254
-msgid "status"
+#: ../../include/apps.php:126 ../../include/nav.php:106 ../../boot.php:1498
+msgid "Login"
msgstr ""
-#: ../../include/conversation.php:150 ../../include/text.php:1738
-#: ../../mod/tagger.php:55
-msgid "comment"
+#: ../../include/apps.php:127 ../../include/nav.php:196
+msgid "Channel Select"
msgstr ""
-#: ../../include/conversation.php:164 ../../mod/like.php:291
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
+#: ../../include/apps.php:128 ../../include/nav.php:170
+msgid "Matrix"
msgstr ""
-#: ../../include/conversation.php:167 ../../mod/like.php:293
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
+#: ../../include/apps.php:129 ../../include/nav.php:198
+#: ../../include/widgets.php:514 ../../mod/admin.php:987
+#: ../../mod/admin.php:1192
+msgid "Settings"
msgstr ""
-#: ../../include/conversation.php:204
-#, php-format
-msgid "%1$s is now connected with %2$s"
+#: ../../include/apps.php:130 ../../include/nav.php:92
+#: ../../include/reddav.php:1280 ../../include/conversation.php:1521
+#: ../../mod/fbrowser.php:114
+msgid "Files"
msgstr ""
-#: ../../include/conversation.php:239
-#, php-format
-msgid "%1$s poked %2$s"
+#: ../../include/apps.php:131 ../../include/nav.php:102
+#: ../../include/conversation.php:1554 ../../mod/webpages.php:79
+msgid "Webpages"
msgstr ""
-#: ../../include/conversation.php:243 ../../include/text.php:895
-msgid "poked"
+#: ../../include/apps.php:132 ../../include/nav.php:173
+msgid "Channel Home"
msgstr ""
-#: ../../include/conversation.php:261 ../../mod/mood.php:63
-#, php-format
-msgctxt "mood"
-msgid "%1$s is %2$s"
+#: ../../include/apps.php:133 ../../include/identity.php:973
+#: ../../include/identity.php:1091 ../../mod/profperm.php:112
+msgid "Profile"
msgstr ""
-#: ../../include/conversation.php:634 ../../include/ItemObject.php:114
-msgid "Select"
+#: ../../include/apps.php:134 ../../include/nav.php:91
+#: ../../include/conversation.php:1512 ../../mod/fbrowser.php:25
+msgid "Photos"
msgstr ""
-#: ../../include/conversation.php:635 ../../include/reddav.php:1290
-#: ../../include/apps.php:241 ../../include/ItemObject.php:108
-#: ../../mod/settings.php:578 ../../mod/connedit.php:398
-#: ../../mod/photos.php:1046 ../../mod/group.php:176 ../../mod/admin.php:758
-#: ../../mod/admin.php:888 ../../mod/thing.php:236
-msgid "Delete"
+#: ../../include/apps.php:135 ../../include/nav.php:192
+#: ../../mod/events.php:396
+msgid "Events"
msgstr ""
-#: ../../include/conversation.php:642 ../../include/ItemObject.php:89
-#: ../../mod/photos.php:844
-msgid "Private Message"
+#: ../../include/apps.php:136 ../../include/nav.php:159
+#: ../../mod/directory.php:226
+msgid "Directory"
msgstr ""
-#: ../../include/conversation.php:649 ../../include/ItemObject.php:182
-msgid "Message is verified"
+#: ../../include/apps.php:137 ../../include/nav.php:151 ../../mod/help.php:60
+#: ../../mod/help.php:65
+msgid "Help"
msgstr ""
-#: ../../include/conversation.php:669
-#, php-format
-msgid "View %s's profile @ %s"
+#: ../../include/apps.php:138 ../../include/nav.php:184
+msgid "Mail"
msgstr ""
-#: ../../include/conversation.php:683
-msgid "Categories:"
+#: ../../include/apps.php:139 ../../mod/mood.php:131
+msgid "Mood"
msgstr ""
-#: ../../include/conversation.php:684
-msgid "Filed under:"
+#: ../../include/apps.php:140 ../../include/conversation.php:945
+msgid "Poke"
msgstr ""
-#: ../../include/conversation.php:693 ../../include/ItemObject.php:250
-#, php-format
-msgid " from %s"
+#: ../../include/apps.php:141 ../../include/nav.php:97
+msgid "Chat"
msgstr ""
-#: ../../include/conversation.php:696 ../../include/ItemObject.php:253
-#, php-format
-msgid "last edited: %s"
+#: ../../include/apps.php:142 ../../include/text.php:815
+#: ../../include/text.php:829 ../../include/nav.php:156
+#: ../../mod/search.php:30
+msgid "Search"
msgstr ""
-#: ../../include/conversation.php:697 ../../include/ItemObject.php:254
-#, php-format
-msgid "Expires: %s"
+#: ../../include/apps.php:143
+msgid "Probe"
msgstr ""
-#: ../../include/conversation.php:712
-msgid "View in context"
+#: ../../include/apps.php:144
+msgid "Suggest"
msgstr ""
-#: ../../include/conversation.php:714 ../../include/conversation.php:1130
-#: ../../include/ItemObject.php:294 ../../mod/editblock.php:120
-#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121
-#: ../../mod/editwebpage.php:152 ../../mod/photos.php:977
-#: ../../mod/mail.php:218 ../../mod/mail.php:333
-msgid "Please wait"
+#: ../../include/apps.php:145
+msgid "Random Channel"
msgstr ""
-#: ../../include/conversation.php:841
-msgid "remove"
+#: ../../include/apps.php:146
+msgid "Invite"
msgstr ""
-#: ../../include/conversation.php:845
-msgid "Loading..."
+#: ../../include/apps.php:147
+msgid "Features"
msgstr ""
-#: ../../include/conversation.php:846
-msgid "Delete Selected Items"
+#: ../../include/apps.php:148
+msgid "Language"
msgstr ""
-#: ../../include/conversation.php:937
-msgid "View Source"
+#: ../../include/apps.php:149
+msgid "Post"
msgstr ""
-#: ../../include/conversation.php:938
-msgid "Follow Thread"
+#: ../../include/apps.php:150
+msgid "Profile Photo"
msgstr ""
-#: ../../include/conversation.php:939
-msgid "View Status"
+#: ../../include/apps.php:239 ../../mod/settings.php:79
+#: ../../mod/settings.php:543
+msgid "Update"
msgstr ""
-#: ../../include/conversation.php:940 ../../include/nav.php:81
-#: ../../mod/connedit.php:351 ../../mod/connedit.php:465
-msgid "View Profile"
+#: ../../include/apps.php:239
+msgid "Install"
msgstr ""
-#: ../../include/conversation.php:941
-msgid "View Photos"
+#: ../../include/apps.php:244
+msgid "Purchase"
msgstr ""
-#: ../../include/conversation.php:942
-msgid "Matrix Activity"
+#: ../../include/apps.php:246 ../../include/page_widgets.php:8
+#: ../../include/page_widgets.php:36 ../../include/reddav.php:1289
+#: ../../include/menu.php:42 ../../include/ItemObject.php:96
+#: ../../mod/settings.php:579 ../../mod/blocks.php:94
+#: ../../mod/connections.php:393 ../../mod/editblock.php:111
+#: ../../mod/editlayout.php:106 ../../mod/editpost.php:112
+#: ../../mod/editwebpage.php:143 ../../mod/thing.php:235
+#: ../../mod/layouts.php:112 ../../mod/menu.php:59 ../../mod/webpages.php:120
+msgid "Edit"
msgstr ""
-#: ../../include/conversation.php:943
-msgid "Edit Contact"
+#: ../../include/apps.php:247 ../../include/reddav.php:1290
+#: ../../include/conversation.php:635 ../../include/ItemObject.php:108
+#: ../../mod/settings.php:580 ../../mod/connedit.php:440
+#: ../../mod/photos.php:1052 ../../mod/group.php:176 ../../mod/admin.php:767
+#: ../../mod/admin.php:897 ../../mod/thing.php:236
+msgid "Delete"
msgstr ""
-#: ../../include/conversation.php:944
-msgid "Send PM"
+#: ../../include/apps.php:328 ../../include/apps.php:379
+#: ../../include/reddav.php:1202 ../../mod/connedit.php:476
+msgid "Unknown"
msgstr ""
-#: ../../include/conversation.php:945 ../../include/apps.php:140
-msgid "Poke"
+#: ../../include/text.php:321
+msgid "prev"
msgstr ""
-#: ../../include/conversation.php:1001
-#, php-format
-msgid "%s likes this."
+#: ../../include/text.php:323
+msgid "first"
msgstr ""
-#: ../../include/conversation.php:1001
-#, php-format
-msgid "%s doesn't like this."
+#: ../../include/text.php:352
+msgid "last"
msgstr ""
-#: ../../include/conversation.php:1005
-#, 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/text.php:355
+msgid "next"
+msgstr ""
-#: ../../include/conversation.php:1007
-#, 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/text.php:367
+msgid "older"
+msgstr ""
-#: ../../include/conversation.php:1013
-msgid "and"
+#: ../../include/text.php:369
+msgid "newer"
msgstr ""
-#: ../../include/conversation.php:1016
+#: ../../include/text.php:730
+msgid "No connections"
+msgstr ""
+
+#: ../../include/text.php:743
#, php-format
-msgid ", and %d other people"
-msgid_plural ", and %d other people"
+msgid "%d Connection"
+msgid_plural "%d Connections"
msgstr[0] ""
msgstr[1] ""
-#: ../../include/conversation.php:1017
-#, php-format
-msgid "%s like this."
+#: ../../include/text.php:756
+msgid "View Connections"
msgstr ""
-#: ../../include/conversation.php:1017
-#, php-format
-msgid "%s don't like this."
+#: ../../include/text.php:817 ../../include/text.php:831
+#: ../../include/widgets.php:186 ../../mod/rbmark.php:28
+#: ../../mod/rbmark.php:98 ../../mod/filer.php:50
+msgid "Save"
msgstr ""
-#: ../../include/conversation.php:1074
-msgid "Visible to <strong>everybody</strong>"
+#: ../../include/text.php:897
+msgid "poke"
msgstr ""
-#: ../../include/conversation.php:1075 ../../mod/mail.php:167
-#: ../../mod/mail.php:266
-msgid "Please enter a link URL:"
+#: ../../include/text.php:897 ../../include/conversation.php:243
+msgid "poked"
msgstr ""
-#: ../../include/conversation.php:1076
-msgid "Please enter a video link/URL:"
+#: ../../include/text.php:898
+msgid "ping"
msgstr ""
-#: ../../include/conversation.php:1077
-msgid "Please enter an audio link/URL:"
+#: ../../include/text.php:898
+msgid "pinged"
msgstr ""
-#: ../../include/conversation.php:1078
-msgid "Tag term:"
+#: ../../include/text.php:899
+msgid "prod"
msgstr ""
-#: ../../include/conversation.php:1079 ../../mod/filer.php:49
-msgid "Save to Folder:"
+#: ../../include/text.php:899
+msgid "prodded"
msgstr ""
-#: ../../include/conversation.php:1080
-msgid "Where are you right now?"
+#: ../../include/text.php:900
+msgid "slap"
msgstr ""
-#: ../../include/conversation.php:1081 ../../mod/editpost.php:52
-#: ../../mod/mail.php:168 ../../mod/mail.php:267
-msgid "Expires YYYY-MM-DD HH:MM"
+#: ../../include/text.php:900
+msgid "slapped"
msgstr ""
-#: ../../include/conversation.php:1091 ../../include/page_widgets.php:40
-#: ../../include/ItemObject.php:592 ../../mod/editblock.php:141
-#: ../../mod/editlayout.php:135 ../../mod/editpost.php:140
-#: ../../mod/editwebpage.php:174 ../../mod/photos.php:997
-#: ../../mod/webpages.php:124
-msgid "Preview"
+#: ../../include/text.php:901
+msgid "finger"
msgstr ""
-#: ../../include/conversation.php:1105 ../../mod/photos.php:976
-#: ../../mod/layouts.php:113
-msgid "Share"
+#: ../../include/text.php:901
+msgid "fingered"
msgstr ""
-#: ../../include/conversation.php:1107 ../../mod/editwebpage.php:139
-msgid "Page link title"
+#: ../../include/text.php:902
+msgid "rebuff"
msgstr ""
-#: ../../include/conversation.php:1110
-msgid "Post as"
+#: ../../include/text.php:902
+msgid "rebuffed"
msgstr ""
-#: ../../include/conversation.php:1111 ../../mod/editblock.php:112
-#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113
-#: ../../mod/editwebpage.php:144 ../../mod/mail.php:215 ../../mod/mail.php:329
-msgid "Upload photo"
+#: ../../include/text.php:911
+msgid "happy"
msgstr ""
-#: ../../include/conversation.php:1112
-msgid "upload photo"
+#: ../../include/text.php:912
+msgid "sad"
msgstr ""
-#: ../../include/conversation.php:1113 ../../mod/editblock.php:113
-#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114
-#: ../../mod/editwebpage.php:145 ../../mod/mail.php:216 ../../mod/mail.php:330
-msgid "Attach file"
+#: ../../include/text.php:913
+msgid "mellow"
msgstr ""
-#: ../../include/conversation.php:1114
-msgid "attach file"
+#: ../../include/text.php:914
+msgid "tired"
msgstr ""
-#: ../../include/conversation.php:1115 ../../mod/editblock.php:114
-#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115
-#: ../../mod/editwebpage.php:146 ../../mod/mail.php:217 ../../mod/mail.php:331
-msgid "Insert web link"
+#: ../../include/text.php:915
+msgid "perky"
msgstr ""
-#: ../../include/conversation.php:1116
-msgid "web link"
+#: ../../include/text.php:916
+msgid "angry"
msgstr ""
-#: ../../include/conversation.php:1117
-msgid "Insert video link"
+#: ../../include/text.php:917
+msgid "stupified"
msgstr ""
-#: ../../include/conversation.php:1118
-msgid "video link"
+#: ../../include/text.php:918
+msgid "puzzled"
msgstr ""
-#: ../../include/conversation.php:1119
-msgid "Insert audio link"
+#: ../../include/text.php:919
+msgid "interested"
msgstr ""
-#: ../../include/conversation.php:1120
-msgid "audio link"
+#: ../../include/text.php:920
+msgid "bitter"
msgstr ""
-#: ../../include/conversation.php:1121 ../../mod/editblock.php:118
-#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119
-#: ../../mod/editwebpage.php:150
-msgid "Set your location"
+#: ../../include/text.php:921
+msgid "cheerful"
msgstr ""
-#: ../../include/conversation.php:1122
-msgid "set location"
+#: ../../include/text.php:922
+msgid "alive"
msgstr ""
-#: ../../include/conversation.php:1123 ../../mod/editblock.php:119
-#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120
-#: ../../mod/editwebpage.php:151
-msgid "Clear browser location"
+#: ../../include/text.php:923
+msgid "annoyed"
msgstr ""
-#: ../../include/conversation.php:1124
-msgid "clear location"
+#: ../../include/text.php:924
+msgid "anxious"
msgstr ""
-#: ../../include/conversation.php:1126 ../../mod/editblock.php:132
-#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132
-#: ../../mod/editwebpage.php:167
-msgid "Set title"
+#: ../../include/text.php:925
+msgid "cranky"
msgstr ""
-#: ../../include/conversation.php:1129 ../../mod/editblock.php:135
-#: ../../mod/editlayout.php:129 ../../mod/editpost.php:134
-#: ../../mod/editwebpage.php:169
-msgid "Categories (comma-separated list)"
+#: ../../include/text.php:926
+msgid "disturbed"
msgstr ""
-#: ../../include/conversation.php:1131 ../../mod/editblock.php:121
-#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122
-#: ../../mod/editwebpage.php:153
-msgid "Permission settings"
+#: ../../include/text.php:927
+msgid "frustrated"
msgstr ""
-#: ../../include/conversation.php:1132
-msgid "permissions"
+#: ../../include/text.php:928
+msgid "depressed"
msgstr ""
-#: ../../include/conversation.php:1139 ../../mod/editblock.php:129
-#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129
-#: ../../mod/editwebpage.php:162
-msgid "Public post"
+#: ../../include/text.php:929
+msgid "motivated"
msgstr ""
-#: ../../include/conversation.php:1141 ../../mod/editblock.php:136
-#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135
-#: ../../mod/editwebpage.php:170
-msgid "Example: bob@example.com, mary@example.com"
+#: ../../include/text.php:930
+msgid "relaxed"
msgstr ""
-#: ../../include/conversation.php:1154 ../../mod/editblock.php:146
-#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146
-#: ../../mod/editwebpage.php:179 ../../mod/mail.php:222 ../../mod/mail.php:336
-msgid "Set expiration date"
+#: ../../include/text.php:931
+msgid "surprised"
msgstr ""
-#: ../../include/conversation.php:1156 ../../include/ItemObject.php:595
-#: ../../mod/editpost.php:148 ../../mod/mail.php:224 ../../mod/mail.php:338
-msgid "Encrypt text"
+#: ../../include/text.php:1092
+msgid "Monday"
msgstr ""
-#: ../../include/conversation.php:1158 ../../mod/editpost.php:150
-msgid "OK"
+#: ../../include/text.php:1092
+msgid "Tuesday"
msgstr ""
-#: ../../include/conversation.php:1159 ../../mod/settings.php:516
-#: ../../mod/settings.php:542 ../../mod/editpost.php:151
-#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11
-#: ../../mod/tagrm.php:94
-msgid "Cancel"
+#: ../../include/text.php:1092
+msgid "Wednesday"
msgstr ""
-#: ../../include/conversation.php:1401
-msgid "Discover"
+#: ../../include/text.php:1092
+msgid "Thursday"
msgstr ""
-#: ../../include/conversation.php:1404
-msgid "Imported public streams"
+#: ../../include/text.php:1092
+msgid "Friday"
msgstr ""
-#: ../../include/conversation.php:1409
-msgid "Commented Order"
+#: ../../include/text.php:1092
+msgid "Saturday"
msgstr ""
-#: ../../include/conversation.php:1412
-msgid "Sort by Comment Date"
+#: ../../include/text.php:1092
+msgid "Sunday"
msgstr ""
-#: ../../include/conversation.php:1416
-msgid "Posted Order"
+#: ../../include/text.php:1096
+msgid "January"
msgstr ""
-#: ../../include/conversation.php:1419
-msgid "Sort by Post Date"
+#: ../../include/text.php:1096
+msgid "February"
msgstr ""
-#: ../../include/conversation.php:1424 ../../include/widgets.php:82
-msgid "Personal"
+#: ../../include/text.php:1096
+msgid "March"
msgstr ""
-#: ../../include/conversation.php:1427
-msgid "Posts that mention or involve you"
+#: ../../include/text.php:1096
+msgid "April"
msgstr ""
-#: ../../include/conversation.php:1433 ../../mod/connections.php:211
-#: ../../mod/connections.php:224 ../../mod/menu.php:61
-msgid "New"
+#: ../../include/text.php:1096
+msgid "May"
msgstr ""
-#: ../../include/conversation.php:1436
-msgid "Activity Stream - by date"
+#: ../../include/text.php:1096
+msgid "June"
msgstr ""
-#: ../../include/conversation.php:1442
-msgid "Starred"
+#: ../../include/text.php:1096
+msgid "July"
msgstr ""
-#: ../../include/conversation.php:1445
-msgid "Favourite Posts"
+#: ../../include/text.php:1096
+msgid "August"
msgstr ""
-#: ../../include/conversation.php:1452
-msgid "Spam"
+#: ../../include/text.php:1096
+msgid "September"
msgstr ""
-#: ../../include/conversation.php:1455
-msgid "Posts flagged as SPAM"
+#: ../../include/text.php:1096
+msgid "October"
msgstr ""
-#: ../../include/conversation.php:1488 ../../mod/admin.php:892
-msgid "Channel"
+#: ../../include/text.php:1096
+msgid "November"
msgstr ""
-#: ../../include/conversation.php:1491
-msgid "Status Messages and Posts"
+#: ../../include/text.php:1096
+msgid "December"
msgstr ""
-#: ../../include/conversation.php:1500
-msgid "About"
+#: ../../include/text.php:1174
+msgid "unknown.???"
msgstr ""
-#: ../../include/conversation.php:1503
-msgid "Profile Details"
+#: ../../include/text.php:1175
+msgid "bytes"
msgstr ""
-#: ../../include/conversation.php:1509 ../../include/nav.php:84
-#: ../../include/apps.php:134 ../../mod/fbrowser.php:25
-msgid "Photos"
+#: ../../include/text.php:1210
+msgid "remove category"
msgstr ""
-#: ../../include/conversation.php:1512 ../../include/photos.php:313
-msgid "Photo Albums"
+#: ../../include/text.php:1280
+msgid "remove from file"
msgstr ""
-#: ../../include/conversation.php:1518 ../../include/nav.php:85
-#: ../../include/reddav.php:1280 ../../include/apps.php:130
-#: ../../mod/fbrowser.php:114
-msgid "Files"
+#: ../../include/text.php:1345 ../../include/text.php:1357
+msgid "Click to open/close"
msgstr ""
-#: ../../include/conversation.php:1521
-msgid "Files and Storage"
+#: ../../include/text.php:1512 ../../mod/events.php:374
+msgid "Link to Source"
msgstr ""
-#: ../../include/conversation.php:1530 ../../include/conversation.php:1533
-msgid "Chatrooms"
+#: ../../include/text.php:1531
+msgid "Select a page layout: "
msgstr ""
-#: ../../include/conversation.php:1540 ../../include/nav.php:93
-#: ../../include/apps.php:124
-msgid "Bookmarks"
+#: ../../include/text.php:1534 ../../include/text.php:1599
+msgid "default"
msgstr ""
-#: ../../include/conversation.php:1543
-msgid "Saved Bookmarks"
+#: ../../include/text.php:1570
+msgid "Page content type: "
msgstr ""
-#: ../../include/conversation.php:1551 ../../include/nav.php:95
-#: ../../include/apps.php:131 ../../mod/webpages.php:79
-msgid "Webpages"
+#: ../../include/text.php:1611
+msgid "Select an alternate language"
msgstr ""
-#: ../../include/conversation.php:1554
-msgid "Manage Webpages"
+#: ../../include/text.php:1735 ../../include/conversation.php:123
+#: ../../mod/tagger.php:49
+msgid "event"
msgstr ""
-#: ../../include/page_widgets.php:6
-msgid "New Page"
+#: ../../include/text.php:1740 ../../include/conversation.php:150
+#: ../../mod/tagger.php:55
+msgid "comment"
msgstr ""
-#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36
-#: ../../include/reddav.php:1289 ../../include/apps.php:240
-#: ../../include/menu.php:42 ../../include/ItemObject.php:96
-#: ../../mod/settings.php:577 ../../mod/blocks.php:94
-#: ../../mod/connections.php:393 ../../mod/editblock.php:111
-#: ../../mod/editlayout.php:106 ../../mod/editpost.php:112
-#: ../../mod/editwebpage.php:143 ../../mod/thing.php:235
-#: ../../mod/layouts.php:112 ../../mod/menu.php:59 ../../mod/webpages.php:120
-msgid "Edit"
+#: ../../include/text.php:1745
+msgid "activity"
+msgstr ""
+
+#: ../../include/text.php:2004
+msgid "Design"
+msgstr ""
+
+#: ../../include/text.php:2006
+msgid "Blocks"
+msgstr ""
+
+#: ../../include/text.php:2007
+msgid "Menus"
+msgstr ""
+
+#: ../../include/text.php:2008
+msgid "Layouts"
+msgstr ""
+
+#: ../../include/text.php:2009
+msgid "Pages"
+msgstr ""
+
+#: ../../include/page_widgets.php:6
+msgid "New Page"
msgstr ""
#: ../../include/page_widgets.php:39 ../../mod/blocks.php:97
@@ -568,6 +575,14 @@ msgstr ""
msgid "View"
msgstr ""
+#: ../../include/page_widgets.php:40 ../../include/conversation.php:1091
+#: ../../include/ItemObject.php:592 ../../mod/editblock.php:141
+#: ../../mod/editlayout.php:135 ../../mod/editpost.php:140
+#: ../../mod/editwebpage.php:174 ../../mod/photos.php:1003
+#: ../../mod/webpages.php:124
+msgid "Preview"
+msgstr ""
+
#: ../../include/page_widgets.php:41 ../../mod/webpages.php:125
msgid "Actions"
msgstr ""
@@ -664,19 +679,19 @@ msgstr ""
#: ../../include/attach.php:243 ../../include/attach.php:283
#: ../../include/attach.php:297 ../../include/attach.php:322
#: ../../include/attach.php:513 ../../include/attach.php:585
-#: ../../include/chat.php:116 ../../include/items.php:3676
+#: ../../include/chat.php:116 ../../include/items.php:3711
#: ../../mod/mood.php:112 ../../mod/mitem.php:73 ../../mod/achievements.php:27
-#: ../../mod/settings.php:492 ../../mod/poke.php:128 ../../mod/api.php:26
+#: ../../mod/settings.php:494 ../../mod/poke.php:128 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/authtest.php:13 ../../mod/profile.php:64
#: ../../mod/profile.php:72 ../../mod/block.php:22 ../../mod/block.php:72
#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276
-#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/profiles.php:152
-#: ../../mod/profiles.php:462 ../../mod/bookmarks.php:46
+#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/profiles.php:179
+#: ../../mod/profiles.php:524 ../../mod/bookmarks.php:46
#: ../../mod/channel.php:89 ../../mod/channel.php:193
#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95
#: ../../mod/register.php:71 ../../mod/regmod.php:18 ../../mod/common.php:35
#: ../../mod/network.php:12 ../../mod/connections.php:169
-#: ../../mod/connedit.php:221 ../../mod/delegate.php:6 ../../mod/page.php:30
+#: ../../mod/connedit.php:254 ../../mod/delegate.php:6 ../../mod/page.php:30
#: ../../mod/page.php:80 ../../mod/setup.php:203 ../../mod/editblock.php:34
#: ../../mod/pdledit.php:21 ../../mod/editlayout.php:48
#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:44
@@ -686,42 +701,46 @@ msgstr ""
#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98
#: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9
#: ../../mod/thing.php:249 ../../mod/thing.php:266 ../../mod/thing.php:301
-#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:179
-#: ../../mod/item.php:187 ../../mod/item.php:908 ../../mod/layouts.php:27
-#: ../../mod/layouts.php:39 ../../mod/viewconnections.php:22
-#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:12
-#: ../../mod/mail.php:108 ../../mod/manage.php:6 ../../mod/menu.php:44
-#: ../../mod/webpages.php:40 ../../mod/message.php:16
+#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:178
+#: ../../mod/item.php:186 ../../mod/item.php:916 ../../mod/layouts.php:27
+#: ../../mod/layouts.php:39 ../../mod/like.php:154
+#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
+#: ../../mod/viewsrc.php:12 ../../mod/mail.php:108 ../../mod/manage.php:6
+#: ../../mod/menu.php:44 ../../mod/webpages.php:40 ../../mod/message.php:16
#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
#: ../../mod/notifications.php:66 ../../mod/appman.php:66 ../../index.php:186
#: ../../index.php:361
msgid "Permission denied."
msgstr ""
-#: ../../include/photos.php:89
+#: ../../include/photos.php:104
#, php-format
msgid "Image exceeds website size limit of %lu bytes"
msgstr ""
-#: ../../include/photos.php:96
+#: ../../include/photos.php:111
msgid "Image file is empty."
msgstr ""
-#: ../../include/photos.php:123 ../../mod/profile_photo.php:216
+#: ../../include/photos.php:140 ../../mod/profile_photo.php:216
msgid "Unable to process image"
msgstr ""
-#: ../../include/photos.php:186
+#: ../../include/photos.php:212
msgid "Photo storage failed."
msgstr ""
-#: ../../include/photos.php:317 ../../mod/photos.php:691
-#: ../../mod/photos.php:1193
+#: ../../include/photos.php:339 ../../include/conversation.php:1515
+msgid "Photo Albums"
+msgstr ""
+
+#: ../../include/photos.php:343 ../../mod/photos.php:697
+#: ../../mod/photos.php:1199
msgid "Upload New Photos"
msgstr ""
#: ../../include/acl_selectors.php:240
-msgid "Visible to everybody"
+msgid "Visible to your default audience"
msgstr ""
#: ../../include/acl_selectors.php:241
@@ -733,7 +752,7 @@ msgid "Don't show"
msgstr ""
#: ../../include/acl_selectors.php:248 ../../mod/chat.php:209
-#: ../../mod/photos.php:604 ../../mod/photos.php:952
+#: ../../mod/photos.php:604 ../../mod/photos.php:958
#: ../../mod/filestorage.php:128
msgid "Permissions"
msgstr ""
@@ -765,7 +784,7 @@ msgstr ""
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
-#: ../../include/api.php:1016
+#: ../../include/api.php:1036
msgid "Public Timeline"
msgstr ""
@@ -827,302 +846,244 @@ msgstr ""
msgid "database storage failed."
msgstr ""
-#: ../../include/plugin.php:502 ../../include/plugin.php:504
+#: ../../include/plugin.php:504 ../../include/plugin.php:506
msgid "Click here to upgrade."
msgstr ""
-#: ../../include/plugin.php:510
+#: ../../include/plugin.php:512
msgid "This action exceeds the limits set by your subscription plan."
msgstr ""
-#: ../../include/plugin.php:515
+#: ../../include/plugin.php:517
msgid "This action is not available under your subscription plan."
msgstr ""
-#: ../../include/bb2diaspora.php:446 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:463 ../../include/event.php:11
msgid "l F d, Y \\@ g:i A"
msgstr ""
-#: ../../include/bb2diaspora.php:452 ../../include/event.php:20
+#: ../../include/bb2diaspora.php:469 ../../include/event.php:20
msgid "Starts:"
msgstr ""
-#: ../../include/bb2diaspora.php:460 ../../include/event.php:30
+#: ../../include/bb2diaspora.php:477 ../../include/event.php:30
msgid "Finishes:"
msgstr ""
-#: ../../include/bb2diaspora.php:468 ../../include/event.php:40
-#: ../../include/identity.php:726 ../../mod/directory.php:156
+#: ../../include/bb2diaspora.php:485 ../../include/event.php:40
+#: ../../include/identity.php:757 ../../mod/directory.php:156
#: ../../mod/dirprofile.php:105 ../../mod/events.php:504
msgid "Location:"
msgstr ""
-#: ../../include/nav.php:77 ../../include/nav.php:101 ../../boot.php:1468
+#: ../../include/nav.php:81 ../../include/nav.php:108 ../../boot.php:1497
msgid "Logout"
msgstr ""
-#: ../../include/nav.php:77 ../../include/nav.php:101
+#: ../../include/nav.php:81 ../../include/nav.php:108
msgid "End this session"
msgstr ""
-#: ../../include/nav.php:80 ../../include/nav.php:135
+#: ../../include/nav.php:84 ../../include/nav.php:142
msgid "Home"
msgstr ""
-#: ../../include/nav.php:80
+#: ../../include/nav.php:84
msgid "Your posts and conversations"
msgstr ""
-#: ../../include/nav.php:81
+#: ../../include/nav.php:85 ../../include/conversation.php:940
+#: ../../mod/connedit.php:393 ../../mod/connedit.php:507
+msgid "View Profile"
+msgstr ""
+
+#: ../../include/nav.php:85
msgid "Your profile page"
msgstr ""
-#: ../../include/nav.php:83
+#: ../../include/nav.php:87
msgid "Edit Profiles"
msgstr ""
-#: ../../include/nav.php:83
+#: ../../include/nav.php:87
msgid "Manage/Edit profiles"
msgstr ""
-#: ../../include/nav.php:84
-msgid "Your photos"
+#: ../../include/nav.php:89 ../../include/identity.php:730
+msgid "Edit Profile"
msgstr ""
-#: ../../include/nav.php:85
-msgid "Your files"
+#: ../../include/nav.php:89
+msgid "Edit your profile"
msgstr ""
-#: ../../include/nav.php:90 ../../include/apps.php:141
-msgid "Chat"
+#: ../../include/nav.php:91
+msgid "Your photos"
+msgstr ""
+
+#: ../../include/nav.php:92
+msgid "Your files"
msgstr ""
-#: ../../include/nav.php:90
+#: ../../include/nav.php:97
msgid "Your chatrooms"
msgstr ""
-#: ../../include/nav.php:93
+#: ../../include/nav.php:100
msgid "Your bookmarks"
msgstr ""
-#: ../../include/nav.php:95
+#: ../../include/nav.php:102
msgid "Your webpages"
msgstr ""
-#: ../../include/nav.php:99 ../../include/apps.php:126 ../../boot.php:1469
-msgid "Login"
-msgstr ""
-
-#: ../../include/nav.php:99
+#: ../../include/nav.php:106
msgid "Sign in"
msgstr ""
-#: ../../include/nav.php:116
+#: ../../include/nav.php:123
#, php-format
msgid "%s - click to logout"
msgstr ""
-#: ../../include/nav.php:121
+#: ../../include/nav.php:128
msgid "Click to authenticate to your home hub"
msgstr ""
-#: ../../include/nav.php:135
+#: ../../include/nav.php:142
msgid "Home Page"
msgstr ""
-#: ../../include/nav.php:139 ../../mod/register.php:221 ../../boot.php:1445
+#: ../../include/nav.php:146 ../../mod/register.php:221 ../../boot.php:1474
msgid "Register"
msgstr ""
-#: ../../include/nav.php:139
+#: ../../include/nav.php:146
msgid "Create an account"
msgstr ""
-#: ../../include/nav.php:144 ../../include/apps.php:137 ../../mod/help.php:60
-#: ../../mod/help.php:65
-msgid "Help"
-msgstr ""
-
-#: ../../include/nav.php:144
+#: ../../include/nav.php:151
msgid "Help and documentation"
msgstr ""
-#: ../../include/nav.php:147 ../../include/widgets.php:79
+#: ../../include/nav.php:154 ../../include/widgets.php:79
#: ../../mod/apps.php:33
msgid "Apps"
msgstr ""
-#: ../../include/nav.php:147
+#: ../../include/nav.php:154
msgid "Applications, utilities, links, games"
msgstr ""
-#: ../../include/nav.php:149 ../../include/text.php:813
-#: ../../include/text.php:827 ../../include/apps.php:142
-#: ../../mod/search.php:29
-msgid "Search"
-msgstr ""
-
-#: ../../include/nav.php:149
+#: ../../include/nav.php:156
msgid "Search site content"
msgstr ""
-#: ../../include/nav.php:152 ../../include/apps.php:136
-#: ../../mod/directory.php:210
-msgid "Directory"
-msgstr ""
-
-#: ../../include/nav.php:152
+#: ../../include/nav.php:159
msgid "Channel Locator"
msgstr ""
-#: ../../include/nav.php:163 ../../include/apps.php:128
-msgid "Matrix"
-msgstr ""
-
-#: ../../include/nav.php:163
+#: ../../include/nav.php:170
msgid "Your matrix"
msgstr ""
-#: ../../include/nav.php:164
+#: ../../include/nav.php:171
msgid "Mark all matrix notifications seen"
msgstr ""
-#: ../../include/nav.php:166 ../../include/apps.php:132
-msgid "Channel Home"
-msgstr ""
-
-#: ../../include/nav.php:166
+#: ../../include/nav.php:173
msgid "Channel home"
msgstr ""
-#: ../../include/nav.php:167
+#: ../../include/nav.php:174
msgid "Mark all channel notifications seen"
msgstr ""
-#: ../../include/nav.php:170 ../../mod/connections.php:386
+#: ../../include/nav.php:177 ../../mod/connections.php:386
msgid "Connections"
msgstr ""
-#: ../../include/nav.php:173
+#: ../../include/nav.php:180
msgid "Notices"
msgstr ""
-#: ../../include/nav.php:173
+#: ../../include/nav.php:180
msgid "Notifications"
msgstr ""
-#: ../../include/nav.php:174
+#: ../../include/nav.php:181
msgid "See all notifications"
msgstr ""
-#: ../../include/nav.php:175 ../../mod/notifications.php:99
+#: ../../include/nav.php:182 ../../mod/notifications.php:99
msgid "Mark all system notifications seen"
msgstr ""
-#: ../../include/nav.php:177 ../../include/apps.php:138
-msgid "Mail"
-msgstr ""
-
-#: ../../include/nav.php:177
+#: ../../include/nav.php:184
msgid "Private mail"
msgstr ""
-#: ../../include/nav.php:178
+#: ../../include/nav.php:185
msgid "See all private messages"
msgstr ""
-#: ../../include/nav.php:179
+#: ../../include/nav.php:186
msgid "Mark all private messages seen"
msgstr ""
-#: ../../include/nav.php:180
+#: ../../include/nav.php:187
msgid "Inbox"
msgstr ""
-#: ../../include/nav.php:181
+#: ../../include/nav.php:188
msgid "Outbox"
msgstr ""
-#: ../../include/nav.php:182 ../../include/widgets.php:536
+#: ../../include/nav.php:189 ../../include/widgets.php:536
msgid "New Message"
msgstr ""
-#: ../../include/nav.php:185 ../../include/apps.php:135
-#: ../../mod/events.php:396
-msgid "Events"
-msgstr ""
-
-#: ../../include/nav.php:185
+#: ../../include/nav.php:192
msgid "Event Calendar"
msgstr ""
-#: ../../include/nav.php:186
+#: ../../include/nav.php:193
msgid "See all events"
msgstr ""
-#: ../../include/nav.php:187
+#: ../../include/nav.php:194
msgid "Mark all events seen"
msgstr ""
-#: ../../include/nav.php:189 ../../include/apps.php:127
-msgid "Channel Select"
-msgstr ""
-
-#: ../../include/nav.php:189
+#: ../../include/nav.php:196
msgid "Manage Your Channels"
msgstr ""
-#: ../../include/nav.php:191 ../../include/apps.php:129
-#: ../../include/widgets.php:514 ../../mod/admin.php:978
-#: ../../mod/admin.php:1183
-msgid "Settings"
-msgstr ""
-
-#: ../../include/nav.php:191
+#: ../../include/nav.php:198
msgid "Account/Channel Settings"
msgstr ""
-#: ../../include/nav.php:199 ../../mod/admin.php:117
+#: ../../include/nav.php:206 ../../mod/admin.php:123
msgid "Admin"
msgstr ""
-#: ../../include/nav.php:199
+#: ../../include/nav.php:206
msgid "Site Setup and Configuration"
msgstr ""
-#: ../../include/nav.php:224
+#: ../../include/nav.php:231
msgid "Nothing new here"
msgstr ""
-#: ../../include/nav.php:228
+#: ../../include/nav.php:235
msgid "Please wait..."
msgstr ""
-#: ../../include/bookmarks.php:42
+#: ../../include/bookmarks.php:35
#, php-format
msgid "%1$s's bookmarks"
msgstr ""
-#: ../../include/chat.php:10
-msgid "Missing room name"
-msgstr ""
-
-#: ../../include/chat.php:19
-msgid "Duplicate room name"
-msgstr ""
-
-#: ../../include/chat.php:68 ../../include/chat.php:76
-msgid "Invalid room specifier."
-msgstr ""
-
-#: ../../include/chat.php:105
-msgid "Room not found."
-msgstr ""
-
-#: ../../include/chat.php:126
-msgid "Room is full"
-msgstr ""
-
#: ../../include/taxonomy.php:210
msgid "Tags"
msgstr ""
@@ -1163,7 +1124,7 @@ msgstr ""
msgid "dislikes"
msgstr ""
-#: ../../include/taxonomy.php:338 ../../include/identity.php:968
+#: ../../include/taxonomy.php:338 ../../include/identity.php:999
#: ../../include/ItemObject.php:134
msgctxt "noun"
msgid "Like"
@@ -1175,92 +1136,68 @@ msgstr[1] ""
msgid "Default"
msgstr ""
-#: ../../include/contact_selectors.php:30
-msgid "Unknown | Not categorised"
-msgstr ""
-
-#: ../../include/contact_selectors.php:31
-msgid "Block immediately"
-msgstr ""
-
-#: ../../include/contact_selectors.php:32
-msgid "Shady, spammer, self-marketer"
-msgstr ""
-
-#: ../../include/contact_selectors.php:33
-msgid "Known to me, but no opinion"
-msgstr ""
-
-#: ../../include/contact_selectors.php:34
-msgid "OK, probably harmless"
-msgstr ""
-
-#: ../../include/contact_selectors.php:35
-msgid "Reputable, has my trust"
-msgstr ""
-
-#: ../../include/contact_selectors.php:54
+#: ../../include/contact_selectors.php:56
msgid "Frequently"
msgstr ""
-#: ../../include/contact_selectors.php:55
+#: ../../include/contact_selectors.php:57
msgid "Hourly"
msgstr ""
-#: ../../include/contact_selectors.php:56
+#: ../../include/contact_selectors.php:58
msgid "Twice daily"
msgstr ""
-#: ../../include/contact_selectors.php:57
+#: ../../include/contact_selectors.php:59
msgid "Daily"
msgstr ""
-#: ../../include/contact_selectors.php:58
+#: ../../include/contact_selectors.php:60
msgid "Weekly"
msgstr ""
-#: ../../include/contact_selectors.php:59
+#: ../../include/contact_selectors.php:61
msgid "Monthly"
msgstr ""
-#: ../../include/contact_selectors.php:74
+#: ../../include/contact_selectors.php:76
msgid "Friendica"
msgstr ""
-#: ../../include/contact_selectors.php:75
+#: ../../include/contact_selectors.php:77
msgid "OStatus"
msgstr ""
-#: ../../include/contact_selectors.php:76
+#: ../../include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr ""
-#: ../../include/contact_selectors.php:77 ../../mod/admin.php:754
-#: ../../mod/admin.php:763 ../../boot.php:1471
+#: ../../include/contact_selectors.php:79 ../../mod/admin.php:763
+#: ../../mod/admin.php:772 ../../boot.php:1500
msgid "Email"
msgstr ""
-#: ../../include/contact_selectors.php:78
+#: ../../include/contact_selectors.php:80
msgid "Diaspora"
msgstr ""
-#: ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:81
msgid "Facebook"
msgstr ""
-#: ../../include/contact_selectors.php:80
+#: ../../include/contact_selectors.php:82
msgid "Zot!"
msgstr ""
-#: ../../include/contact_selectors.php:81
+#: ../../include/contact_selectors.php:83
msgid "LinkedIn"
msgstr ""
-#: ../../include/contact_selectors.php:82
+#: ../../include/contact_selectors.php:84
msgid "XMPP/IM"
msgstr ""
-#: ../../include/contact_selectors.php:83
+#: ../../include/contact_selectors.php:85
msgid "MySpace"
msgstr ""
@@ -1271,7 +1208,7 @@ msgid_plural "%d invitations available"
msgstr[0] ""
msgstr[1] ""
-#: ../../include/contact_widgets.php:19 ../../mod/admin.php:446
+#: ../../include/contact_widgets.php:19 ../../mod/admin.php:455
msgid "Advanced"
msgstr ""
@@ -1292,7 +1229,7 @@ msgid "Examples: Robert Morgenstein, Fishing"
msgstr ""
#: ../../include/contact_widgets.php:26 ../../mod/connections.php:392
-#: ../../mod/directory.php:206 ../../mod/directory.php:211
+#: ../../mod/directory.php:222 ../../mod/directory.php:227
msgid "Find"
msgstr ""
@@ -1316,28 +1253,28 @@ msgstr ""
msgid "Advanced Find"
msgstr ""
-#: ../../include/contact_widgets.php:58 ../../include/features.php:67
+#: ../../include/contact_widgets.php:58 ../../include/features.php:69
#: ../../include/widgets.php:296
msgid "Saved Folders"
msgstr ""
-#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:95
+#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:96
#: ../../include/widgets.php:299
msgid "Everything"
msgstr ""
-#: ../../include/contact_widgets.php:92 ../../include/widgets.php:29
+#: ../../include/contact_widgets.php:93 ../../include/widgets.php:29
msgid "Categories"
msgstr ""
-#: ../../include/contact_widgets.php:125
+#: ../../include/contact_widgets.php:126
#, php-format
msgid "%d connection in common"
msgid_plural "%d connections in common"
msgstr[0] ""
msgstr[1] ""
-#: ../../include/contact_widgets.php:130
+#: ../../include/contact_widgets.php:131
msgid "show more"
msgstr ""
@@ -1345,15 +1282,15 @@ msgstr ""
msgid "This event has been added to your calendar."
msgstr ""
-#: ../../include/zot.php:610
+#: ../../include/zot.php:624
msgid "Invalid data packet"
msgstr ""
-#: ../../include/zot.php:620
+#: ../../include/zot.php:638
msgid "Unable to verify channel signature"
msgstr ""
-#: ../../include/zot.php:817
+#: ../../include/zot.php:835
#, php-format
msgid "Unable to verify site signature for %s"
msgstr ""
@@ -1660,6 +1597,10 @@ msgstr ""
msgid "Please visit %s to approve or reject the suggestion."
msgstr ""
+#: ../../include/enotify.php:474
+msgid "[Red:Notify]"
+msgstr ""
+
#: ../../include/reddav.php:1145 ../../include/reddav.php:1288
msgid "parent"
msgstr ""
@@ -1688,11 +1629,6 @@ msgstr ""
msgid "Schedule Outbox"
msgstr ""
-#: ../../include/reddav.php:1202 ../../include/apps.php:322
-#: ../../include/apps.php:373 ../../mod/connedit.php:434
-msgid "Unknown"
-msgstr ""
-
#: ../../include/reddav.php:1262
#, php-format
msgid "%1$s used"
@@ -1703,8 +1639,8 @@ msgstr ""
msgid "%1$s used of %2$s (%3$s&#37;)"
msgstr ""
-#: ../../include/reddav.php:1284 ../../mod/settings.php:517
-#: ../../mod/settings.php:543 ../../mod/admin.php:893
+#: ../../include/reddav.php:1284 ../../mod/settings.php:519
+#: ../../mod/settings.php:545 ../../mod/admin.php:902
msgid "Name"
msgstr ""
@@ -1741,6 +1677,427 @@ msgstr ""
msgid "Upload"
msgstr ""
+#: ../../include/conversation.php:126 ../../mod/like.php:89
+msgid "channel"
+msgstr ""
+
+#: ../../include/conversation.php:167 ../../mod/like.php:333
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr ""
+
+#: ../../include/conversation.php:204
+#, php-format
+msgid "%1$s is now connected with %2$s"
+msgstr ""
+
+#: ../../include/conversation.php:239
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr ""
+
+#: ../../include/conversation.php:261 ../../mod/mood.php:63
+#, php-format
+msgctxt "mood"
+msgid "%1$s is %2$s"
+msgstr ""
+
+#: ../../include/conversation.php:634 ../../include/ItemObject.php:114
+msgid "Select"
+msgstr ""
+
+#: ../../include/conversation.php:642 ../../include/ItemObject.php:89
+#: ../../mod/photos.php:850
+msgid "Private Message"
+msgstr ""
+
+#: ../../include/conversation.php:649 ../../include/ItemObject.php:182
+msgid "Message is verified"
+msgstr ""
+
+#: ../../include/conversation.php:669
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr ""
+
+#: ../../include/conversation.php:683
+msgid "Categories:"
+msgstr ""
+
+#: ../../include/conversation.php:684
+msgid "Filed under:"
+msgstr ""
+
+#: ../../include/conversation.php:693 ../../include/ItemObject.php:250
+#, php-format
+msgid " from %s"
+msgstr ""
+
+#: ../../include/conversation.php:696 ../../include/ItemObject.php:253
+#, php-format
+msgid "last edited: %s"
+msgstr ""
+
+#: ../../include/conversation.php:697 ../../include/ItemObject.php:254
+#, php-format
+msgid "Expires: %s"
+msgstr ""
+
+#: ../../include/conversation.php:712
+msgid "View in context"
+msgstr ""
+
+#: ../../include/conversation.php:714 ../../include/conversation.php:1130
+#: ../../include/ItemObject.php:294 ../../mod/editblock.php:120
+#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121
+#: ../../mod/editwebpage.php:152 ../../mod/photos.php:983
+#: ../../mod/mail.php:231 ../../mod/mail.php:346
+msgid "Please wait"
+msgstr ""
+
+#: ../../include/conversation.php:841
+msgid "remove"
+msgstr ""
+
+#: ../../include/conversation.php:845
+msgid "Loading..."
+msgstr ""
+
+#: ../../include/conversation.php:846
+msgid "Delete Selected Items"
+msgstr ""
+
+#: ../../include/conversation.php:937
+msgid "View Source"
+msgstr ""
+
+#: ../../include/conversation.php:938
+msgid "Follow Thread"
+msgstr ""
+
+#: ../../include/conversation.php:939
+msgid "View Status"
+msgstr ""
+
+#: ../../include/conversation.php:941
+msgid "View Photos"
+msgstr ""
+
+#: ../../include/conversation.php:942
+msgid "Matrix Activity"
+msgstr ""
+
+#: ../../include/conversation.php:943
+msgid "Edit Contact"
+msgstr ""
+
+#: ../../include/conversation.php:944
+msgid "Send PM"
+msgstr ""
+
+#: ../../include/conversation.php:1001
+#, php-format
+msgid "%s likes this."
+msgstr ""
+
+#: ../../include/conversation.php:1001
+#, php-format
+msgid "%s doesn't like this."
+msgstr ""
+
+#: ../../include/conversation.php:1005
+#, 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:1007
+#, 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:1013
+msgid "and"
+msgstr ""
+
+#: ../../include/conversation.php:1016
+#, php-format
+msgid ", and %d other people"
+msgid_plural ", and %d other people"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/conversation.php:1017
+#, php-format
+msgid "%s like this."
+msgstr ""
+
+#: ../../include/conversation.php:1017
+#, php-format
+msgid "%s don't like this."
+msgstr ""
+
+#: ../../include/conversation.php:1074
+msgid "Visible to <strong>everybody</strong>"
+msgstr ""
+
+#: ../../include/conversation.php:1075 ../../mod/mail.php:167
+#: ../../mod/mail.php:279
+msgid "Please enter a link URL:"
+msgstr ""
+
+#: ../../include/conversation.php:1076
+msgid "Please enter a video link/URL:"
+msgstr ""
+
+#: ../../include/conversation.php:1077
+msgid "Please enter an audio link/URL:"
+msgstr ""
+
+#: ../../include/conversation.php:1078
+msgid "Tag term:"
+msgstr ""
+
+#: ../../include/conversation.php:1079 ../../mod/filer.php:49
+msgid "Save to Folder:"
+msgstr ""
+
+#: ../../include/conversation.php:1080
+msgid "Where are you right now?"
+msgstr ""
+
+#: ../../include/conversation.php:1081 ../../mod/editpost.php:52
+#: ../../mod/mail.php:168 ../../mod/mail.php:280
+msgid "Expires YYYY-MM-DD HH:MM"
+msgstr ""
+
+#: ../../include/conversation.php:1105 ../../mod/photos.php:982
+#: ../../mod/layouts.php:113
+msgid "Share"
+msgstr ""
+
+#: ../../include/conversation.php:1107 ../../mod/editwebpage.php:139
+msgid "Page link title"
+msgstr ""
+
+#: ../../include/conversation.php:1110
+msgid "Post as"
+msgstr ""
+
+#: ../../include/conversation.php:1111 ../../mod/editblock.php:112
+#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113
+#: ../../mod/editwebpage.php:144 ../../mod/mail.php:228 ../../mod/mail.php:342
+msgid "Upload photo"
+msgstr ""
+
+#: ../../include/conversation.php:1112
+msgid "upload photo"
+msgstr ""
+
+#: ../../include/conversation.php:1113 ../../mod/editblock.php:113
+#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114
+#: ../../mod/editwebpage.php:145 ../../mod/mail.php:229 ../../mod/mail.php:343
+msgid "Attach file"
+msgstr ""
+
+#: ../../include/conversation.php:1114
+msgid "attach file"
+msgstr ""
+
+#: ../../include/conversation.php:1115 ../../mod/editblock.php:114
+#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115
+#: ../../mod/editwebpage.php:146 ../../mod/mail.php:230 ../../mod/mail.php:344
+msgid "Insert web link"
+msgstr ""
+
+#: ../../include/conversation.php:1116
+msgid "web link"
+msgstr ""
+
+#: ../../include/conversation.php:1117
+msgid "Insert video link"
+msgstr ""
+
+#: ../../include/conversation.php:1118
+msgid "video link"
+msgstr ""
+
+#: ../../include/conversation.php:1119
+msgid "Insert audio link"
+msgstr ""
+
+#: ../../include/conversation.php:1120
+msgid "audio link"
+msgstr ""
+
+#: ../../include/conversation.php:1121 ../../mod/editblock.php:118
+#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119
+#: ../../mod/editwebpage.php:150
+msgid "Set your location"
+msgstr ""
+
+#: ../../include/conversation.php:1122
+msgid "set location"
+msgstr ""
+
+#: ../../include/conversation.php:1123 ../../mod/editblock.php:119
+#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120
+#: ../../mod/editwebpage.php:151
+msgid "Clear browser location"
+msgstr ""
+
+#: ../../include/conversation.php:1124
+msgid "clear location"
+msgstr ""
+
+#: ../../include/conversation.php:1126 ../../mod/editblock.php:132
+#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132
+#: ../../mod/editwebpage.php:167
+msgid "Set title"
+msgstr ""
+
+#: ../../include/conversation.php:1129 ../../mod/editblock.php:135
+#: ../../mod/editlayout.php:129 ../../mod/editpost.php:134
+#: ../../mod/editwebpage.php:169
+msgid "Categories (comma-separated list)"
+msgstr ""
+
+#: ../../include/conversation.php:1131 ../../mod/editblock.php:121
+#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122
+#: ../../mod/editwebpage.php:153
+msgid "Permission settings"
+msgstr ""
+
+#: ../../include/conversation.php:1132
+msgid "permissions"
+msgstr ""
+
+#: ../../include/conversation.php:1139 ../../mod/editblock.php:129
+#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129
+#: ../../mod/editwebpage.php:162
+msgid "Public post"
+msgstr ""
+
+#: ../../include/conversation.php:1141 ../../mod/editblock.php:136
+#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135
+#: ../../mod/editwebpage.php:170
+msgid "Example: bob@example.com, mary@example.com"
+msgstr ""
+
+#: ../../include/conversation.php:1154 ../../mod/editblock.php:146
+#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146
+#: ../../mod/editwebpage.php:179 ../../mod/mail.php:235 ../../mod/mail.php:349
+msgid "Set expiration date"
+msgstr ""
+
+#: ../../include/conversation.php:1156 ../../include/ItemObject.php:595
+#: ../../mod/editpost.php:148 ../../mod/mail.php:237 ../../mod/mail.php:351
+msgid "Encrypt text"
+msgstr ""
+
+#: ../../include/conversation.php:1158 ../../mod/editpost.php:150
+msgid "OK"
+msgstr ""
+
+#: ../../include/conversation.php:1159 ../../mod/settings.php:518
+#: ../../mod/settings.php:544 ../../mod/editpost.php:151
+#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94
+msgid "Cancel"
+msgstr ""
+
+#: ../../include/conversation.php:1401
+msgid "Discover"
+msgstr ""
+
+#: ../../include/conversation.php:1404
+msgid "Imported public streams"
+msgstr ""
+
+#: ../../include/conversation.php:1409
+msgid "Commented Order"
+msgstr ""
+
+#: ../../include/conversation.php:1412
+msgid "Sort by Comment Date"
+msgstr ""
+
+#: ../../include/conversation.php:1416
+msgid "Posted Order"
+msgstr ""
+
+#: ../../include/conversation.php:1419
+msgid "Sort by Post Date"
+msgstr ""
+
+#: ../../include/conversation.php:1424 ../../include/widgets.php:82
+msgid "Personal"
+msgstr ""
+
+#: ../../include/conversation.php:1427
+msgid "Posts that mention or involve you"
+msgstr ""
+
+#: ../../include/conversation.php:1433 ../../mod/connections.php:211
+#: ../../mod/connections.php:224 ../../mod/menu.php:61
+msgid "New"
+msgstr ""
+
+#: ../../include/conversation.php:1436
+msgid "Activity Stream - by date"
+msgstr ""
+
+#: ../../include/conversation.php:1442
+msgid "Starred"
+msgstr ""
+
+#: ../../include/conversation.php:1445
+msgid "Favourite Posts"
+msgstr ""
+
+#: ../../include/conversation.php:1452
+msgid "Spam"
+msgstr ""
+
+#: ../../include/conversation.php:1455
+msgid "Posts flagged as SPAM"
+msgstr ""
+
+#: ../../include/conversation.php:1491 ../../mod/admin.php:901
+msgid "Channel"
+msgstr ""
+
+#: ../../include/conversation.php:1494
+msgid "Status Messages and Posts"
+msgstr ""
+
+#: ../../include/conversation.php:1503
+msgid "About"
+msgstr ""
+
+#: ../../include/conversation.php:1506
+msgid "Profile Details"
+msgstr ""
+
+#: ../../include/conversation.php:1524
+msgid "Files and Storage"
+msgstr ""
+
+#: ../../include/conversation.php:1533 ../../include/conversation.php:1536
+msgid "Chatrooms"
+msgstr ""
+
+#: ../../include/conversation.php:1546
+msgid "Saved Bookmarks"
+msgstr ""
+
+#: ../../include/conversation.php:1557
+msgid "Manage Webpages"
+msgstr ""
+
#: ../../include/features.php:23
msgid "General Features"
msgstr ""
@@ -1762,200 +2119,216 @@ msgid "Ability to create multiple profiles"
msgstr ""
#: ../../include/features.php:27
-msgid "Web Pages"
+msgid "Advanced Profiles"
msgstr ""
#: ../../include/features.php:27
-msgid "Provide managed web pages on your channel"
+msgid "Additional profile sections and selections"
msgstr ""
#: ../../include/features.php:28
-msgid "Private Notes"
+msgid "Profile Import/Export"
msgstr ""
#: ../../include/features.php:28
+msgid "Save and load profile details across sites/channels"
+msgstr ""
+
+#: ../../include/features.php:29
+msgid "Web Pages"
+msgstr ""
+
+#: ../../include/features.php:29
+msgid "Provide managed web pages on your channel"
+msgstr ""
+
+#: ../../include/features.php:30
+msgid "Private Notes"
+msgstr ""
+
+#: ../../include/features.php:30
msgid "Enables a tool to store notes and reminders"
msgstr ""
-#: ../../include/features.php:33
+#: ../../include/features.php:35
msgid "Extended Identity Sharing"
msgstr ""
-#: ../../include/features.php:33
+#: ../../include/features.php:35
msgid ""
"Share your identity with all websites on the internet. When disabled, "
"identity is only shared with sites in the matrix."
msgstr ""
-#: ../../include/features.php:34
+#: ../../include/features.php:36
msgid "Expert Mode"
msgstr ""
-#: ../../include/features.php:34
+#: ../../include/features.php:36
msgid "Enable Expert Mode to provide advanced configuration options"
msgstr ""
-#: ../../include/features.php:35
+#: ../../include/features.php:37
msgid "Premium Channel"
msgstr ""
-#: ../../include/features.php:35
+#: ../../include/features.php:37
msgid ""
"Allows you to set restrictions and terms on those that connect with your "
"channel"
msgstr ""
-#: ../../include/features.php:40
+#: ../../include/features.php:42
msgid "Post Composition Features"
msgstr ""
-#: ../../include/features.php:42
+#: ../../include/features.php:44
msgid "Use Markdown"
msgstr ""
-#: ../../include/features.php:42
+#: ../../include/features.php:44
msgid "Allow use of \"Markdown\" to format posts"
msgstr ""
-#: ../../include/features.php:43
+#: ../../include/features.php:45
msgid "Post Preview"
msgstr ""
-#: ../../include/features.php:43
+#: ../../include/features.php:45
msgid "Allow previewing posts and comments before publishing them"
msgstr ""
-#: ../../include/features.php:44 ../../include/widgets.php:503
+#: ../../include/features.php:46 ../../include/widgets.php:503
#: ../../mod/sources.php:88
msgid "Channel Sources"
msgstr ""
-#: ../../include/features.php:44
+#: ../../include/features.php:46
msgid "Automatically import channel content from other channels or feeds"
msgstr ""
-#: ../../include/features.php:45
+#: ../../include/features.php:47
msgid "Even More Encryption"
msgstr ""
-#: ../../include/features.php:45
+#: ../../include/features.php:47
msgid ""
"Allow optional encryption of content end-to-end with a shared secret key"
msgstr ""
-#: ../../include/features.php:50
+#: ../../include/features.php:52
msgid "Network and Stream Filtering"
msgstr ""
-#: ../../include/features.php:51
+#: ../../include/features.php:53
msgid "Search by Date"
msgstr ""
-#: ../../include/features.php:51
+#: ../../include/features.php:53
msgid "Ability to select posts by date ranges"
msgstr ""
-#: ../../include/features.php:52
+#: ../../include/features.php:54
msgid "Collections Filter"
msgstr ""
-#: ../../include/features.php:52
+#: ../../include/features.php:54
msgid "Enable widget to display Network posts only from selected collections"
msgstr ""
-#: ../../include/features.php:53 ../../include/widgets.php:265
+#: ../../include/features.php:55 ../../include/widgets.php:265
msgid "Saved Searches"
msgstr ""
-#: ../../include/features.php:53
+#: ../../include/features.php:55
msgid "Save search terms for re-use"
msgstr ""
-#: ../../include/features.php:54
+#: ../../include/features.php:56
msgid "Network Personal Tab"
msgstr ""
-#: ../../include/features.php:54
+#: ../../include/features.php:56
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr ""
-#: ../../include/features.php:55
+#: ../../include/features.php:57
msgid "Network New Tab"
msgstr ""
-#: ../../include/features.php:55
+#: ../../include/features.php:57
msgid "Enable tab to display all new Network activity"
msgstr ""
-#: ../../include/features.php:56
+#: ../../include/features.php:58
msgid "Affinity Tool"
msgstr ""
-#: ../../include/features.php:56
+#: ../../include/features.php:58
msgid "Filter stream activity by depth of relationships"
msgstr ""
-#: ../../include/features.php:57
+#: ../../include/features.php:59
msgid "Suggest Channels"
msgstr ""
-#: ../../include/features.php:57
+#: ../../include/features.php:59
msgid "Show channel suggestions"
msgstr ""
-#: ../../include/features.php:62
+#: ../../include/features.php:64
msgid "Post/Comment Tools"
msgstr ""
-#: ../../include/features.php:64
+#: ../../include/features.php:66
msgid "Edit Sent Posts"
msgstr ""
-#: ../../include/features.php:64
+#: ../../include/features.php:66
msgid "Edit and correct posts and comments after sending"
msgstr ""
-#: ../../include/features.php:65
+#: ../../include/features.php:67
msgid "Tagging"
msgstr ""
-#: ../../include/features.php:65
+#: ../../include/features.php:67
msgid "Ability to tag existing posts"
msgstr ""
-#: ../../include/features.php:66
+#: ../../include/features.php:68
msgid "Post Categories"
msgstr ""
-#: ../../include/features.php:66
+#: ../../include/features.php:68
msgid "Add categories to your posts"
msgstr ""
-#: ../../include/features.php:67
+#: ../../include/features.php:69
msgid "Ability to file posts under folders"
msgstr ""
-#: ../../include/features.php:68
+#: ../../include/features.php:70
msgid "Dislike Posts"
msgstr ""
-#: ../../include/features.php:68
+#: ../../include/features.php:70
msgid "Ability to dislike posts/comments"
msgstr ""
-#: ../../include/features.php:69
+#: ../../include/features.php:71
msgid "Star Posts"
msgstr ""
-#: ../../include/features.php:69
+#: ../../include/features.php:71
msgid "Ability to mark special posts with a star indicator"
msgstr ""
-#: ../../include/features.php:70
+#: ../../include/features.php:72
msgid "Tag Cloud"
msgstr ""
-#: ../../include/features.php:70
+#: ../../include/features.php:72
msgid "Provide a personal tag cloud on your channel page"
msgstr ""
@@ -1987,6 +2360,94 @@ msgstr ""
msgid "Cannot connect to yourself."
msgstr ""
+#: ../../include/chat.php:10
+msgid "Missing room name"
+msgstr ""
+
+#: ../../include/chat.php:19
+msgid "Duplicate room name"
+msgstr ""
+
+#: ../../include/chat.php:68 ../../include/chat.php:76
+msgid "Invalid room specifier."
+msgstr ""
+
+#: ../../include/chat.php:105
+msgid "Room not found."
+msgstr ""
+
+#: ../../include/chat.php:126
+msgid "Room is full"
+msgstr ""
+
+#: ../../include/items.php:295 ../../mod/profperm.php:23
+#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:242
+#: ../../mod/frphotos.php:69 ../../index.php:360
+msgid "Permission denied"
+msgstr ""
+
+#: ../../include/items.php:830
+msgid "(Unknown)"
+msgstr ""
+
+#: ../../include/items.php:959
+msgid "Visible to anybody on the internet."
+msgstr ""
+
+#: ../../include/items.php:961
+msgid "Visible to you only."
+msgstr ""
+
+#: ../../include/items.php:963
+msgid "Visible to anybody in this network."
+msgstr ""
+
+#: ../../include/items.php:965
+msgid "Visible to anybody authenticated."
+msgstr ""
+
+#: ../../include/items.php:967
+#, php-format
+msgid "Visible to anybody on %s."
+msgstr ""
+
+#: ../../include/items.php:969
+msgid "Visible to all connections."
+msgstr ""
+
+#: ../../include/items.php:971
+msgid "Visible to approved connections."
+msgstr ""
+
+#: ../../include/items.php:3649 ../../mod/home.php:67 ../../mod/display.php:32
+#: ../../mod/filestorage.php:18 ../../mod/admin.php:168
+#: ../../mod/admin.php:932 ../../mod/admin.php:1135 ../../mod/thing.php:78
+#: ../../mod/viewsrc.php:18
+msgid "Item not found."
+msgstr ""
+
+#: ../../include/items.php:4082 ../../mod/group.php:38 ../../mod/group.php:140
+msgid "Collection not found."
+msgstr ""
+
+#: ../../include/items.php:4097
+msgid "Collection is empty."
+msgstr ""
+
+#: ../../include/items.php:4104
+#, php-format
+msgid "Collection: %s"
+msgstr ""
+
+#: ../../include/items.php:4115
+#, php-format
+msgid "Connection: %s"
+msgstr ""
+
+#: ../../include/items.php:4118
+msgid "Connection not found."
+msgstr ""
+
#: ../../include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
@@ -1994,39 +2455,39 @@ msgid ""
"not what you intended, please create another group with a different name."
msgstr ""
-#: ../../include/group.php:223
+#: ../../include/group.php:234
msgid "Default privacy group for new contacts"
msgstr ""
-#: ../../include/group.php:242 ../../mod/admin.php:763
+#: ../../include/group.php:253 ../../mod/admin.php:772
msgid "All Channels"
msgstr ""
-#: ../../include/group.php:264
+#: ../../include/group.php:275
msgid "edit"
msgstr ""
-#: ../../include/group.php:285
+#: ../../include/group.php:296
msgid "Collections"
msgstr ""
-#: ../../include/group.php:286
+#: ../../include/group.php:297
msgid "Edit collection"
msgstr ""
-#: ../../include/group.php:287
+#: ../../include/group.php:298
msgid "Create a new collection"
msgstr ""
-#: ../../include/group.php:288
+#: ../../include/group.php:299
msgid "Channels not in any collection"
msgstr ""
-#: ../../include/group.php:290 ../../include/widgets.php:266
+#: ../../include/group.php:301 ../../include/widgets.php:266
msgid "add"
msgstr ""
-#: ../../include/identity.php:30 ../../mod/item.php:1280
+#: ../../include/identity.php:30 ../../mod/item.php:1297
msgid "Unable to obtain identity information from database"
msgstr ""
@@ -2064,7 +2525,7 @@ msgid "Default Profile"
msgstr ""
#: ../../include/identity.php:342 ../../include/widgets.php:400
-#: ../../include/profile_selectors.php:42 ../../mod/connedit.php:431
+#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:473
msgid "Friends"
msgstr ""
@@ -2075,209 +2536,201 @@ msgstr ""
#: ../../include/identity.php:557 ../../mod/achievements.php:8
#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13
#: ../../mod/filestorage.php:40 ../../mod/layouts.php:8
-#: ../../mod/webpages.php:8
+#: ../../mod/webpages.php:8 ../../mod/hcard.php:8
msgid "Requested profile is not available."
msgstr ""
-#: ../../include/identity.php:675 ../../include/widgets.php:128
+#: ../../include/identity.php:706 ../../include/widgets.php:128
#: ../../include/widgets.php:168 ../../include/Contact.php:107
#: ../../mod/directory.php:183 ../../mod/dirprofile.php:164
#: ../../mod/suggest.php:51 ../../mod/match.php:62
msgid "Connect"
msgstr ""
-#: ../../include/identity.php:689 ../../mod/profiles.php:612
+#: ../../include/identity.php:720 ../../mod/profiles.php:695
msgid "Change profile photo"
msgstr ""
-#: ../../include/identity.php:695
+#: ../../include/identity.php:726
msgid "Profiles"
msgstr ""
-#: ../../include/identity.php:695
+#: ../../include/identity.php:726
msgid "Manage/edit profiles"
msgstr ""
-#: ../../include/identity.php:696 ../../mod/profiles.php:613
+#: ../../include/identity.php:727 ../../mod/profiles.php:696
msgid "Create New Profile"
msgstr ""
-#: ../../include/identity.php:699
-msgid "Edit Profile"
-msgstr ""
-
-#: ../../include/identity.php:710 ../../mod/profiles.php:624
+#: ../../include/identity.php:741 ../../mod/profiles.php:707
msgid "Profile Image"
msgstr ""
-#: ../../include/identity.php:713 ../../mod/profiles.php:627
+#: ../../include/identity.php:744
msgid "visible to everybody"
msgstr ""
-#: ../../include/identity.php:714 ../../mod/profiles.php:628
+#: ../../include/identity.php:745 ../../mod/profiles.php:591
+#: ../../mod/profiles.php:711
msgid "Edit visibility"
msgstr ""
-#: ../../include/identity.php:728 ../../include/identity.php:952
+#: ../../include/identity.php:759 ../../include/identity.php:983
#: ../../mod/directory.php:158
msgid "Gender:"
msgstr ""
-#: ../../include/identity.php:729 ../../include/identity.php:996
+#: ../../include/identity.php:760 ../../include/identity.php:1027
#: ../../mod/directory.php:160
msgid "Status:"
msgstr ""
-#: ../../include/identity.php:730 ../../include/identity.php:1007
+#: ../../include/identity.php:761 ../../include/identity.php:1038
#: ../../mod/directory.php:162
msgid "Homepage:"
msgstr ""
-#: ../../include/identity.php:731 ../../mod/dirprofile.php:151
+#: ../../include/identity.php:762 ../../mod/dirprofile.php:151
msgid "Online Now"
msgstr ""
-#: ../../include/identity.php:796 ../../include/identity.php:876
+#: ../../include/identity.php:827 ../../include/identity.php:907
#: ../../mod/ping.php:298
msgid "g A l F d"
msgstr ""
-#: ../../include/identity.php:797 ../../include/identity.php:877
+#: ../../include/identity.php:828 ../../include/identity.php:908
msgid "F d"
msgstr ""
-#: ../../include/identity.php:842 ../../include/identity.php:917
+#: ../../include/identity.php:873 ../../include/identity.php:948
#: ../../mod/ping.php:320
msgid "[today]"
msgstr ""
-#: ../../include/identity.php:854
+#: ../../include/identity.php:885
msgid "Birthday Reminders"
msgstr ""
-#: ../../include/identity.php:855
+#: ../../include/identity.php:886
msgid "Birthdays this week:"
msgstr ""
-#: ../../include/identity.php:910
+#: ../../include/identity.php:941
msgid "[No description]"
msgstr ""
-#: ../../include/identity.php:928
+#: ../../include/identity.php:959
msgid "Event Reminders"
msgstr ""
-#: ../../include/identity.php:929
+#: ../../include/identity.php:960
msgid "Events this week:"
msgstr ""
-#: ../../include/identity.php:942 ../../include/identity.php:1050
-#: ../../include/apps.php:133 ../../mod/profperm.php:112
-msgid "Profile"
-msgstr ""
-
-#: ../../include/identity.php:950 ../../mod/settings.php:935
+#: ../../include/identity.php:981 ../../mod/settings.php:942
msgid "Full Name:"
msgstr ""
-#: ../../include/identity.php:957
+#: ../../include/identity.php:988
msgid "Like this channel"
msgstr ""
-#: ../../include/identity.php:981
+#: ../../include/identity.php:1012
msgid "j F, Y"
msgstr ""
-#: ../../include/identity.php:982
+#: ../../include/identity.php:1013
msgid "j F"
msgstr ""
-#: ../../include/identity.php:989
+#: ../../include/identity.php:1020
msgid "Birthday:"
msgstr ""
-#: ../../include/identity.php:993
+#: ../../include/identity.php:1024
msgid "Age:"
msgstr ""
-#: ../../include/identity.php:1002
+#: ../../include/identity.php:1033
#, php-format
msgid "for %1$d %2$s"
msgstr ""
-#: ../../include/identity.php:1005 ../../mod/profiles.php:535
+#: ../../include/identity.php:1036 ../../mod/profiles.php:613
msgid "Sexual Preference:"
msgstr ""
-#: ../../include/identity.php:1009 ../../mod/profiles.php:537
+#: ../../include/identity.php:1040 ../../mod/profiles.php:615
msgid "Hometown:"
msgstr ""
-#: ../../include/identity.php:1011
+#: ../../include/identity.php:1042
msgid "Tags:"
msgstr ""
-#: ../../include/identity.php:1013 ../../mod/profiles.php:538
+#: ../../include/identity.php:1044 ../../mod/profiles.php:616
msgid "Political Views:"
msgstr ""
-#: ../../include/identity.php:1015
+#: ../../include/identity.php:1046
msgid "Religion:"
msgstr ""
-#: ../../include/identity.php:1017 ../../mod/directory.php:164
+#: ../../include/identity.php:1048 ../../mod/directory.php:164
msgid "About:"
msgstr ""
-#: ../../include/identity.php:1019
+#: ../../include/identity.php:1050
msgid "Hobbies/Interests:"
msgstr ""
-#: ../../include/identity.php:1021 ../../mod/profiles.php:541
+#: ../../include/identity.php:1052 ../../mod/profiles.php:619
msgid "Likes:"
msgstr ""
-#: ../../include/identity.php:1023 ../../mod/profiles.php:542
+#: ../../include/identity.php:1054 ../../mod/profiles.php:620
msgid "Dislikes:"
msgstr ""
-#: ../../include/identity.php:1026
+#: ../../include/identity.php:1057
msgid "Contact information and Social Networks:"
msgstr ""
-#: ../../include/identity.php:1028
+#: ../../include/identity.php:1059
msgid "My other channels:"
msgstr ""
-#: ../../include/identity.php:1030
+#: ../../include/identity.php:1061
msgid "Musical interests:"
msgstr ""
-#: ../../include/identity.php:1032
+#: ../../include/identity.php:1063
msgid "Books, literature:"
msgstr ""
-#: ../../include/identity.php:1034
+#: ../../include/identity.php:1065
msgid "Television:"
msgstr ""
-#: ../../include/identity.php:1036
+#: ../../include/identity.php:1067
msgid "Film/dance/culture/entertainment:"
msgstr ""
-#: ../../include/identity.php:1038
+#: ../../include/identity.php:1069
msgid "Love/Romance:"
msgstr ""
-#: ../../include/identity.php:1040
+#: ../../include/identity.php:1071
msgid "Work/employment:"
msgstr ""
-#: ../../include/identity.php:1042
+#: ../../include/identity.php:1073
msgid "School/education:"
msgstr ""
-#: ../../include/identity.php:1052
+#: ../../include/identity.php:1093
msgid "Like this thing"
msgstr ""
@@ -2285,380 +2738,34 @@ msgstr ""
msgid "view full size"
msgstr ""
-#: ../../include/text.php:320
-msgid "prev"
-msgstr ""
-
-#: ../../include/text.php:322
-msgid "first"
-msgstr ""
-
-#: ../../include/text.php:351
-msgid "last"
-msgstr ""
-
-#: ../../include/text.php:354
-msgid "next"
-msgstr ""
-
-#: ../../include/text.php:366
-msgid "older"
-msgstr ""
-
-#: ../../include/text.php:368
-msgid "newer"
-msgstr ""
-
-#: ../../include/text.php:729
-msgid "No connections"
-msgstr ""
-
-#: ../../include/text.php:742
-#, php-format
-msgid "%d Connection"
-msgid_plural "%d Connections"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../include/text.php:754
-msgid "View Connections"
-msgstr ""
-
-#: ../../include/text.php:815 ../../include/text.php:829
-#: ../../include/widgets.php:186 ../../mod/rbmark.php:28
-#: ../../mod/rbmark.php:98 ../../mod/filer.php:50
-msgid "Save"
-msgstr ""
-
-#: ../../include/text.php:895
-msgid "poke"
-msgstr ""
-
-#: ../../include/text.php:896
-msgid "ping"
-msgstr ""
-
-#: ../../include/text.php:896
-msgid "pinged"
-msgstr ""
-
-#: ../../include/text.php:897
-msgid "prod"
-msgstr ""
-
-#: ../../include/text.php:897
-msgid "prodded"
-msgstr ""
-
-#: ../../include/text.php:898
-msgid "slap"
-msgstr ""
-
-#: ../../include/text.php:898
-msgid "slapped"
-msgstr ""
-
-#: ../../include/text.php:899
-msgid "finger"
-msgstr ""
-
-#: ../../include/text.php:899
-msgid "fingered"
-msgstr ""
-
-#: ../../include/text.php:900
-msgid "rebuff"
-msgstr ""
-
-#: ../../include/text.php:900
-msgid "rebuffed"
-msgstr ""
-
-#: ../../include/text.php:909
-msgid "happy"
-msgstr ""
-
-#: ../../include/text.php:910
-msgid "sad"
-msgstr ""
-
-#: ../../include/text.php:911
-msgid "mellow"
-msgstr ""
-
-#: ../../include/text.php:912
-msgid "tired"
-msgstr ""
-
-#: ../../include/text.php:913
-msgid "perky"
-msgstr ""
-
-#: ../../include/text.php:914
-msgid "angry"
-msgstr ""
-
-#: ../../include/text.php:915
-msgid "stupified"
-msgstr ""
-
-#: ../../include/text.php:916
-msgid "puzzled"
-msgstr ""
-
-#: ../../include/text.php:917
-msgid "interested"
-msgstr ""
-
-#: ../../include/text.php:918
-msgid "bitter"
-msgstr ""
-
-#: ../../include/text.php:919
-msgid "cheerful"
-msgstr ""
-
-#: ../../include/text.php:920
-msgid "alive"
-msgstr ""
-
-#: ../../include/text.php:921
-msgid "annoyed"
-msgstr ""
-
-#: ../../include/text.php:922
-msgid "anxious"
-msgstr ""
-
-#: ../../include/text.php:923
-msgid "cranky"
-msgstr ""
-
-#: ../../include/text.php:924
-msgid "disturbed"
-msgstr ""
-
-#: ../../include/text.php:925
-msgid "frustrated"
-msgstr ""
-
-#: ../../include/text.php:926
-msgid "depressed"
-msgstr ""
-
-#: ../../include/text.php:927
-msgid "motivated"
-msgstr ""
-
-#: ../../include/text.php:928
-msgid "relaxed"
-msgstr ""
-
-#: ../../include/text.php:929
-msgid "surprised"
-msgstr ""
-
-#: ../../include/text.php:1090
-msgid "Monday"
-msgstr ""
-
-#: ../../include/text.php:1090
-msgid "Tuesday"
-msgstr ""
-
-#: ../../include/text.php:1090
-msgid "Wednesday"
-msgstr ""
-
-#: ../../include/text.php:1090
-msgid "Thursday"
-msgstr ""
-
-#: ../../include/text.php:1090
-msgid "Friday"
-msgstr ""
-
-#: ../../include/text.php:1090
-msgid "Saturday"
-msgstr ""
-
-#: ../../include/text.php:1090
-msgid "Sunday"
-msgstr ""
-
-#: ../../include/text.php:1094
-msgid "January"
-msgstr ""
-
-#: ../../include/text.php:1094
-msgid "February"
-msgstr ""
-
-#: ../../include/text.php:1094
-msgid "March"
-msgstr ""
-
-#: ../../include/text.php:1094
-msgid "April"
-msgstr ""
-
-#: ../../include/text.php:1094
-msgid "May"
-msgstr ""
-
-#: ../../include/text.php:1094
-msgid "June"
-msgstr ""
-
-#: ../../include/text.php:1094
-msgid "July"
-msgstr ""
-
-#: ../../include/text.php:1094
-msgid "August"
-msgstr ""
-
-#: ../../include/text.php:1094
-msgid "September"
-msgstr ""
-
-#: ../../include/text.php:1094
-msgid "October"
-msgstr ""
-
-#: ../../include/text.php:1094
-msgid "November"
-msgstr ""
-
-#: ../../include/text.php:1094
-msgid "December"
-msgstr ""
-
-#: ../../include/text.php:1172
-msgid "unknown.???"
-msgstr ""
-
-#: ../../include/text.php:1173
-msgid "bytes"
-msgstr ""
-
-#: ../../include/text.php:1208
-msgid "remove category"
-msgstr ""
-
-#: ../../include/text.php:1278
-msgid "remove from file"
-msgstr ""
-
-#: ../../include/text.php:1343 ../../include/text.php:1355
-msgid "Click to open/close"
-msgstr ""
-
-#: ../../include/text.php:1510 ../../mod/events.php:374
-msgid "Link to Source"
-msgstr ""
-
-#: ../../include/text.php:1529
-msgid "Select a page layout: "
-msgstr ""
-
-#: ../../include/text.php:1532 ../../include/text.php:1597
-msgid "default"
-msgstr ""
-
-#: ../../include/text.php:1568
-msgid "Page content type: "
-msgstr ""
-
-#: ../../include/text.php:1609
-msgid "Select an alternate language"
-msgstr ""
-
-#: ../../include/text.php:1743
-msgid "activity"
-msgstr ""
-
-#: ../../include/text.php:2002
-msgid "Design"
-msgstr ""
-
-#: ../../include/text.php:2004
-msgid "Blocks"
-msgstr ""
-
-#: ../../include/text.php:2005
-msgid "Menus"
-msgstr ""
-
-#: ../../include/text.php:2006
-msgid "Layouts"
-msgstr ""
-
-#: ../../include/text.php:2007
-msgid "Pages"
-msgstr ""
-
-#: ../../include/apps.php:123
-msgid "Site Admin"
-msgstr ""
-
-#: ../../include/apps.php:125
-msgid "Address Book"
-msgstr ""
-
-#: ../../include/apps.php:139 ../../mod/mood.php:131
-msgid "Mood"
-msgstr ""
-
-#: ../../include/apps.php:143
-msgid "Probe"
-msgstr ""
-
-#: ../../include/apps.php:144
-msgid "Suggest"
-msgstr ""
-
-#: ../../include/apps.php:233 ../../mod/settings.php:79
-#: ../../mod/settings.php:541
-msgid "Update"
-msgstr ""
-
-#: ../../include/apps.php:233
-msgid "Install"
-msgstr ""
-
-#: ../../include/apps.php:238
-msgid "Purchase"
-msgstr ""
-
-#: ../../include/bbcode.php:128 ../../include/bbcode.php:654
-#: ../../include/bbcode.php:657 ../../include/bbcode.php:662
-#: ../../include/bbcode.php:665 ../../include/bbcode.php:668
-#: ../../include/bbcode.php:671 ../../include/bbcode.php:676
-#: ../../include/bbcode.php:679 ../../include/bbcode.php:684
-#: ../../include/bbcode.php:687 ../../include/bbcode.php:690
-#: ../../include/bbcode.php:693
+#: ../../include/bbcode.php:112 ../../include/bbcode.php:645
+#: ../../include/bbcode.php:648 ../../include/bbcode.php:653
+#: ../../include/bbcode.php:656 ../../include/bbcode.php:659
+#: ../../include/bbcode.php:662 ../../include/bbcode.php:667
+#: ../../include/bbcode.php:670 ../../include/bbcode.php:675
+#: ../../include/bbcode.php:678 ../../include/bbcode.php:681
+#: ../../include/bbcode.php:684
msgid "Image/photo"
msgstr ""
-#: ../../include/bbcode.php:163 ../../include/bbcode.php:704
+#: ../../include/bbcode.php:147 ../../include/bbcode.php:695
msgid "Encrypted content"
msgstr ""
-#: ../../include/bbcode.php:179
+#: ../../include/bbcode.php:163
msgid "QR code"
msgstr ""
-#: ../../include/bbcode.php:228
+#: ../../include/bbcode.php:212
#, php-format
msgid "%1$s wrote the following %2$s %3$s"
msgstr ""
-#: ../../include/bbcode.php:230
+#: ../../include/bbcode.php:214
msgid "post"
msgstr ""
-#: ../../include/bbcode.php:622 ../../include/bbcode.php:642
+#: ../../include/bbcode.php:613 ../../include/bbcode.php:633
msgid "$1 wrote:"
msgstr ""
@@ -2735,11 +2842,11 @@ msgstr ""
msgid "Refresh"
msgstr ""
-#: ../../include/widgets.php:398 ../../mod/connedit.php:428
+#: ../../include/widgets.php:398 ../../mod/connedit.php:470
msgid "Me"
msgstr ""
-#: ../../include/widgets.php:399 ../../mod/connedit.php:430
+#: ../../include/widgets.php:399 ../../mod/connedit.php:472
msgid "Best Friends"
msgstr ""
@@ -2747,11 +2854,11 @@ msgstr ""
msgid "Co-workers"
msgstr ""
-#: ../../include/widgets.php:402 ../../mod/connedit.php:432
+#: ../../include/widgets.php:402 ../../mod/connedit.php:474
msgid "Former Friends"
msgstr ""
-#: ../../include/widgets.php:403 ../../mod/connedit.php:433
+#: ../../include/widgets.php:403 ../../mod/connedit.php:475
msgid "Acquaintances"
msgstr ""
@@ -2846,11 +2953,11 @@ msgstr ""
msgid "Add Tag"
msgstr ""
-#: ../../include/ItemObject.php:208 ../../mod/photos.php:974
+#: ../../include/ItemObject.php:208 ../../mod/photos.php:980
msgid "I like this (toggle)"
msgstr ""
-#: ../../include/ItemObject.php:209 ../../mod/photos.php:975
+#: ../../include/ItemObject.php:209 ../../mod/photos.php:981
msgid "I don't like this (toggle)"
msgstr ""
@@ -2912,33 +3019,33 @@ msgstr[1] ""
msgid "[+] show all"
msgstr ""
-#: ../../include/ItemObject.php:580 ../../mod/photos.php:993
-#: ../../mod/photos.php:1080
+#: ../../include/ItemObject.php:580 ../../mod/photos.php:999
+#: ../../mod/photos.php:1086
msgid "This is you"
msgstr ""
#: ../../include/ItemObject.php:582 ../../include/js_strings.php:6
-#: ../../mod/photos.php:995 ../../mod/photos.php:1082
+#: ../../mod/photos.php:1001 ../../mod/photos.php:1088
msgid "Comment"
msgstr ""
#: ../../include/ItemObject.php:583 ../../mod/mood.php:135
-#: ../../mod/settings.php:515 ../../mod/settings.php:627
-#: ../../mod/settings.php:655 ../../mod/settings.php:679
-#: ../../mod/settings.php:749 ../../mod/settings.php:927
-#: ../../mod/poke.php:166 ../../mod/profiles.php:515 ../../mod/chat.php:177
-#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:476
+#: ../../mod/settings.php:517 ../../mod/settings.php:629
+#: ../../mod/settings.php:657 ../../mod/settings.php:681
+#: ../../mod/settings.php:754 ../../mod/settings.php:934
+#: ../../mod/poke.php:166 ../../mod/profiles.php:589 ../../mod/chat.php:177
+#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:518
#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58
-#: ../../mod/photos.php:563 ../../mod/photos.php:668 ../../mod/photos.php:956
-#: ../../mod/photos.php:996 ../../mod/photos.php:1083
+#: ../../mod/photos.php:563 ../../mod/photos.php:674 ../../mod/photos.php:962
+#: ../../mod/photos.php:1002 ../../mod/photos.php:1089
#: ../../mod/sources.php:104 ../../mod/sources.php:138
#: ../../mod/events.php:511 ../../mod/filestorage.php:137
-#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/admin.php:442
-#: ../../mod/admin.php:751 ../../mod/admin.php:886 ../../mod/admin.php:1019
-#: ../../mod/admin.php:1218 ../../mod/admin.php:1305 ../../mod/thing.php:286
-#: ../../mod/thing.php:329 ../../mod/import.php:393 ../../mod/invite.php:156
-#: ../../mod/mail.php:219 ../../mod/mail.php:332 ../../mod/appman.php:99
-#: ../../view/theme/apw/php/config.php:256
+#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/admin.php:451
+#: ../../mod/admin.php:760 ../../mod/admin.php:895 ../../mod/admin.php:1028
+#: ../../mod/admin.php:1227 ../../mod/admin.php:1314 ../../mod/thing.php:286
+#: ../../mod/thing.php:329 ../../mod/import.php:393 ../../mod/invite.php:142
+#: ../../mod/mail.php:345 ../../mod/appman.php:99 ../../mod/poll.php:68
+#: ../../mod/frphotos.php:84 ../../view/theme/apw/php/config.php:256
#: ../../view/theme/blogga/php/config.php:67
#: ../../view/theme/blogga/view/theme/blog/config.php:67
#: ../../view/theme/redbasic/php/config.php:99
@@ -3103,10 +3210,12 @@ msgid "Open the selected location in a different window or browser tab"
msgstr ""
#: ../../include/profile_selectors.php:6
+#: ../../include/profile_selectors.php:23
msgid "Male"
msgstr ""
#: ../../include/profile_selectors.php:6
+#: ../../include/profile_selectors.php:23
msgid "Female"
msgstr ""
@@ -3151,6 +3260,9 @@ msgid "Non-specific"
msgstr ""
#: ../../include/profile_selectors.php:6
+#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:61
+#: ../../include/profile_selectors.php:97
msgid "Other"
msgstr ""
@@ -3158,175 +3270,185 @@ msgstr ""
msgid "Undecided"
msgstr ""
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:61
msgid "Males"
msgstr ""
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:61
msgid "Females"
msgstr ""
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:42
msgid "Gay"
msgstr ""
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:42
msgid "Lesbian"
msgstr ""
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:42
msgid "No Preference"
msgstr ""
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:42
msgid "Bisexual"
msgstr ""
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:42
msgid "Autosexual"
msgstr ""
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:42
msgid "Abstinent"
msgstr ""
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:42
msgid "Virgin"
msgstr ""
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:42
msgid "Deviant"
msgstr ""
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:42
msgid "Fetish"
msgstr ""
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:42
msgid "Oodles"
msgstr ""
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:42
msgid "Nonsexual"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
msgid "Single"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Lonely"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Available"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Unavailable"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Has crush"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Infatuated"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
msgid "Dating"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Unfaithful"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Sex Addict"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Friends/Benefits"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Casual"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Engaged"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
msgid "Married"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Imaginarily married"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Partners"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
msgid "Cohabiting"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Common law"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Happy"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Not looking"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Swinger"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Betrayed"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
msgid "Separated"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Unstable"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
msgid "Divorced"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Imaginarily divorced"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
msgid "Widowed"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Uncertain"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
+#: ../../include/profile_selectors.php:97
msgid "It's complicated"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Don't care"
msgstr ""
-#: ../../include/profile_selectors.php:42
+#: ../../include/profile_selectors.php:80
msgid "Ask me"
msgstr ""
@@ -3334,75 +3456,36 @@ msgstr ""
msgid "Logged out."
msgstr ""
-#: ../../include/auth.php:209
+#: ../../include/auth.php:236
msgid "Failed authentication"
msgstr ""
-#: ../../include/auth.php:224 ../../mod/openid.php:188
+#: ../../include/auth.php:251 ../../mod/openid.php:188
msgid "Login failed."
msgstr ""
-#: ../../include/items.php:302 ../../mod/profperm.php:23
-#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:202
-#: ../../index.php:360
-msgid "Permission denied"
-msgstr ""
-
-#: ../../include/items.php:826
-msgid "(Unknown)"
-msgstr ""
-
-#: ../../include/items.php:3614 ../../mod/home.php:67 ../../mod/display.php:32
-#: ../../mod/filestorage.php:18 ../../mod/admin.php:159
-#: ../../mod/admin.php:923 ../../mod/admin.php:1126 ../../mod/thing.php:78
-#: ../../mod/viewsrc.php:18
-msgid "Item not found."
-msgstr ""
-
-#: ../../include/items.php:4047 ../../mod/group.php:38 ../../mod/group.php:140
-msgid "Collection not found."
-msgstr ""
-
-#: ../../include/items.php:4062
-msgid "Collection is empty."
-msgstr ""
-
-#: ../../include/items.php:4069
-#, php-format
-msgid "Collection: %s"
-msgstr ""
-
-#: ../../include/items.php:4080
-#, php-format
-msgid "Connection: %s"
-msgstr ""
-
-#: ../../include/items.php:4083
-msgid "Connection not found."
-msgstr ""
-
#: ../../include/permissions.php:13
-msgid "Can view my \"public\" stream and posts"
+msgid "Can view my normal stream and posts"
msgstr ""
#: ../../include/permissions.php:14
-msgid "Can view my \"public\" channel profile"
+msgid "Can view my default channel profile"
msgstr ""
#: ../../include/permissions.php:15
-msgid "Can view my \"public\" photo albums"
+msgid "Can view my photo albums"
msgstr ""
#: ../../include/permissions.php:16
-msgid "Can view my \"public\" address book"
+msgid "Can view my connections"
msgstr ""
#: ../../include/permissions.php:17
-msgid "Can view my \"public\" file storage"
+msgid "Can view my file storage"
msgstr ""
#: ../../include/permissions.php:18
-msgid "Can view my \"public\" pages"
+msgid "Can view my webpages"
msgstr ""
#: ../../include/permissions.php:21
@@ -3414,7 +3497,7 @@ msgid "Can post on my channel page (\"wall\")"
msgstr ""
#: ../../include/permissions.php:23
-msgid "Can comment on my posts"
+msgid "Can comment on or like my posts"
msgstr ""
#: ../../include/permissions.php:24
@@ -3426,38 +3509,46 @@ msgid "Can post photos to my photo albums"
msgstr ""
#: ../../include/permissions.php:26
-msgid "Can forward to all my channel contacts via post @mentions"
+msgid "Can like/dislike stuff"
msgstr ""
#: ../../include/permissions.php:26
-msgid "Advanced - useful for creating group forum channels"
+msgid "Profiles and things other than posts/comments"
msgstr ""
-#: ../../include/permissions.php:27
-msgid "Can chat with me (when available)"
+#: ../../include/permissions.php:28
+msgid "Can forward to all my channel contacts via post @mentions"
msgstr ""
#: ../../include/permissions.php:28
-msgid "Can write to my \"public\" file storage"
+msgid "Advanced - useful for creating group forum channels"
msgstr ""
#: ../../include/permissions.php:29
-msgid "Can edit my \"public\" pages"
+msgid "Can chat with me (when available)"
msgstr ""
-#: ../../include/permissions.php:31
-msgid "Can source my \"public\" posts in derived channels"
+#: ../../include/permissions.php:30
+msgid "Can write to my file storage"
msgstr ""
#: ../../include/permissions.php:31
-msgid "Somewhat advanced - very useful in open communities"
+msgid "Can edit my webpages"
msgstr ""
#: ../../include/permissions.php:33
-msgid "Can administer my channel resources"
+msgid "Can source my public posts in derived channels"
msgstr ""
#: ../../include/permissions.php:33
+msgid "Somewhat advanced - very useful in open communities"
+msgstr ""
+
+#: ../../include/permissions.php:35
+msgid "Can administer my channel resources"
+msgstr ""
+
+#: ../../include/permissions.php:35
msgid "Extremely advanced. Leave this alone unless you know what you are doing"
msgstr ""
@@ -3534,7 +3625,7 @@ msgstr ""
msgid "Menu Item Permissions"
msgstr ""
-#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:960
+#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:967
msgid "(click to open/close)"
msgstr ""
@@ -3606,446 +3697,450 @@ msgstr ""
msgid "Key and Secret are required"
msgstr ""
-#: ../../mod/settings.php:195
+#: ../../mod/settings.php:196
msgid "Passwords do not match. Password unchanged."
msgstr ""
-#: ../../mod/settings.php:199
+#: ../../mod/settings.php:200
msgid "Empty passwords are not allowed. Password unchanged."
msgstr ""
-#: ../../mod/settings.php:212
+#: ../../mod/settings.php:214
msgid "Password changed."
msgstr ""
-#: ../../mod/settings.php:214
+#: ../../mod/settings.php:216
msgid "Password update failed. Please try again."
msgstr ""
-#: ../../mod/settings.php:228
+#: ../../mod/settings.php:230
msgid "Not valid email."
msgstr ""
-#: ../../mod/settings.php:231
+#: ../../mod/settings.php:233
msgid "Protected email address. Cannot change to that email."
msgstr ""
-#: ../../mod/settings.php:240
+#: ../../mod/settings.php:242
msgid "System failure storing new email. Please try again."
msgstr ""
-#: ../../mod/settings.php:443
+#: ../../mod/settings.php:445
msgid "Settings updated."
msgstr ""
-#: ../../mod/settings.php:514 ../../mod/settings.php:540
-#: ../../mod/settings.php:576
+#: ../../mod/settings.php:516 ../../mod/settings.php:542
+#: ../../mod/settings.php:578
msgid "Add application"
msgstr ""
-#: ../../mod/settings.php:517
+#: ../../mod/settings.php:519
msgid "Name of application"
msgstr ""
-#: ../../mod/settings.php:518 ../../mod/settings.php:544
+#: ../../mod/settings.php:520 ../../mod/settings.php:546
msgid "Consumer Key"
msgstr ""
-#: ../../mod/settings.php:518 ../../mod/settings.php:519
+#: ../../mod/settings.php:520 ../../mod/settings.php:521
msgid "Automatically generated - change if desired. Max length 20"
msgstr ""
-#: ../../mod/settings.php:519 ../../mod/settings.php:545
+#: ../../mod/settings.php:521 ../../mod/settings.php:547
msgid "Consumer Secret"
msgstr ""
-#: ../../mod/settings.php:520 ../../mod/settings.php:546
+#: ../../mod/settings.php:522 ../../mod/settings.php:548
msgid "Redirect"
msgstr ""
-#: ../../mod/settings.php:520
+#: ../../mod/settings.php:522
msgid ""
"Redirect URI - leave blank unless your application specifically requires this"
msgstr ""
-#: ../../mod/settings.php:521 ../../mod/settings.php:547
+#: ../../mod/settings.php:523 ../../mod/settings.php:549
msgid "Icon url"
msgstr ""
-#: ../../mod/settings.php:521
+#: ../../mod/settings.php:523
msgid "Optional"
msgstr ""
-#: ../../mod/settings.php:532
+#: ../../mod/settings.php:534
msgid "You can't edit this application."
msgstr ""
-#: ../../mod/settings.php:575
+#: ../../mod/settings.php:577
msgid "Connected Apps"
msgstr ""
-#: ../../mod/settings.php:579
+#: ../../mod/settings.php:581
msgid "Client key starts with"
msgstr ""
-#: ../../mod/settings.php:580
+#: ../../mod/settings.php:582
msgid "No name"
msgstr ""
-#: ../../mod/settings.php:581
+#: ../../mod/settings.php:583
msgid "Remove authorization"
msgstr ""
-#: ../../mod/settings.php:592
+#: ../../mod/settings.php:594
msgid "No feature settings configured"
msgstr ""
-#: ../../mod/settings.php:600
+#: ../../mod/settings.php:602
msgid "Feature Settings"
msgstr ""
-#: ../../mod/settings.php:623
+#: ../../mod/settings.php:625
msgid "Account Settings"
msgstr ""
-#: ../../mod/settings.php:624
+#: ../../mod/settings.php:626
msgid "Password Settings"
msgstr ""
-#: ../../mod/settings.php:625
+#: ../../mod/settings.php:627
msgid "New Password:"
msgstr ""
-#: ../../mod/settings.php:626
+#: ../../mod/settings.php:628
msgid "Confirm:"
msgstr ""
-#: ../../mod/settings.php:626
+#: ../../mod/settings.php:628
msgid "Leave password fields blank unless changing"
msgstr ""
-#: ../../mod/settings.php:628 ../../mod/settings.php:936
+#: ../../mod/settings.php:630 ../../mod/settings.php:943
msgid "Email Address:"
msgstr ""
-#: ../../mod/settings.php:629
+#: ../../mod/settings.php:631 ../../mod/removeaccount.php:61
msgid "Remove Account"
msgstr ""
-#: ../../mod/settings.php:630 ../../mod/settings.php:999
+#: ../../mod/settings.php:632 ../../mod/settings.php:1006
msgid "Warning: This action is permanent and cannot be reversed."
msgstr ""
-#: ../../mod/settings.php:646
+#: ../../mod/settings.php:648
msgid "Off"
msgstr ""
-#: ../../mod/settings.php:646
+#: ../../mod/settings.php:648
msgid "On"
msgstr ""
-#: ../../mod/settings.php:653
+#: ../../mod/settings.php:655
msgid "Additional Features"
msgstr ""
-#: ../../mod/settings.php:678
+#: ../../mod/settings.php:680
msgid "Connector Settings"
msgstr ""
-#: ../../mod/settings.php:708 ../../mod/admin.php:390
+#: ../../mod/settings.php:710 ../../mod/admin.php:399
msgid "No special theme for mobile devices"
msgstr ""
-#: ../../mod/settings.php:717
+#: ../../mod/settings.php:719
#, php-format
msgid "%s - (Experimental)"
msgstr ""
-#: ../../mod/settings.php:747
+#: ../../mod/settings.php:752
msgid "Display Settings"
msgstr ""
-#: ../../mod/settings.php:753
+#: ../../mod/settings.php:758
msgid "Display Theme:"
msgstr ""
-#: ../../mod/settings.php:754
+#: ../../mod/settings.php:759
msgid "Mobile Theme:"
msgstr ""
-#: ../../mod/settings.php:755
+#: ../../mod/settings.php:760
+msgid "Enable user zoom on mobile devices"
+msgstr ""
+
+#: ../../mod/settings.php:761
msgid "Update browser every xx seconds"
msgstr ""
-#: ../../mod/settings.php:755
+#: ../../mod/settings.php:761
msgid "Minimum of 10 seconds, no maximum"
msgstr ""
-#: ../../mod/settings.php:756
+#: ../../mod/settings.php:762
msgid "Maximum number of conversations to load at any time:"
msgstr ""
-#: ../../mod/settings.php:756
+#: ../../mod/settings.php:762
msgid "Maximum of 100 items"
msgstr ""
-#: ../../mod/settings.php:757
+#: ../../mod/settings.php:763
msgid "Don't show emoticons"
msgstr ""
-#: ../../mod/settings.php:758
+#: ../../mod/settings.php:764
msgid "System Page Layout Editor - (advanced)"
msgstr ""
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:800
msgid "Nobody except yourself"
msgstr ""
-#: ../../mod/settings.php:794
+#: ../../mod/settings.php:801
msgid "Only those you specifically allow"
msgstr ""
-#: ../../mod/settings.php:795
+#: ../../mod/settings.php:802
msgid "Approved connections"
msgstr ""
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:803
msgid "Any connections"
msgstr ""
-#: ../../mod/settings.php:797
+#: ../../mod/settings.php:804
msgid "Anybody on this website"
msgstr ""
-#: ../../mod/settings.php:798
+#: ../../mod/settings.php:805
msgid "Anybody in this network"
msgstr ""
-#: ../../mod/settings.php:799
+#: ../../mod/settings.php:806
msgid "Anybody authenticated"
msgstr ""
-#: ../../mod/settings.php:800
+#: ../../mod/settings.php:807
msgid "Anybody on the internet"
msgstr ""
-#: ../../mod/settings.php:877
+#: ../../mod/settings.php:884
msgid "Publish your default profile in the network directory"
msgstr ""
-#: ../../mod/settings.php:877 ../../mod/settings.php:882
-#: ../../mod/settings.php:953 ../../mod/api.php:106 ../../mod/profiles.php:493
-#: ../../mod/admin.php:420
+#: ../../mod/settings.php:884 ../../mod/settings.php:889
+#: ../../mod/settings.php:960 ../../mod/api.php:106 ../../mod/profiles.php:566
+#: ../../mod/admin.php:429
msgid "No"
msgstr ""
-#: ../../mod/settings.php:877 ../../mod/settings.php:882
-#: ../../mod/settings.php:953 ../../mod/api.php:105 ../../mod/profiles.php:492
-#: ../../mod/admin.php:422
+#: ../../mod/settings.php:884 ../../mod/settings.php:889
+#: ../../mod/settings.php:960 ../../mod/api.php:105 ../../mod/profiles.php:565
+#: ../../mod/admin.php:431
msgid "Yes"
msgstr ""
-#: ../../mod/settings.php:882
+#: ../../mod/settings.php:889
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
-#: ../../mod/settings.php:886 ../../mod/profile_photo.php:365
+#: ../../mod/settings.php:893 ../../mod/profile_photo.php:365
msgid "or"
msgstr ""
-#: ../../mod/settings.php:891
+#: ../../mod/settings.php:898
msgid "Your channel address is"
msgstr ""
-#: ../../mod/settings.php:925
+#: ../../mod/settings.php:932
msgid "Channel Settings"
msgstr ""
-#: ../../mod/settings.php:934
+#: ../../mod/settings.php:941
msgid "Basic Settings"
msgstr ""
-#: ../../mod/settings.php:937
+#: ../../mod/settings.php:944
msgid "Your Timezone:"
msgstr ""
-#: ../../mod/settings.php:938
+#: ../../mod/settings.php:945
msgid "Default Post Location:"
msgstr ""
-#: ../../mod/settings.php:938
+#: ../../mod/settings.php:945
msgid "Geographical location to display on your posts"
msgstr ""
-#: ../../mod/settings.php:939
+#: ../../mod/settings.php:946
msgid "Use Browser Location:"
msgstr ""
-#: ../../mod/settings.php:941
+#: ../../mod/settings.php:948
msgid "Adult Content"
msgstr ""
-#: ../../mod/settings.php:941
+#: ../../mod/settings.php:948
msgid ""
"This channel frequently or regularly publishes adult content. (Please tag "
"any adult material and/or nudity with #NSFW)"
msgstr ""
-#: ../../mod/settings.php:943
+#: ../../mod/settings.php:950
msgid "Security and Privacy Settings"
msgstr ""
-#: ../../mod/settings.php:945
+#: ../../mod/settings.php:952
msgid "Hide my online presence"
msgstr ""
-#: ../../mod/settings.php:945
+#: ../../mod/settings.php:952
msgid "Prevents displaying in your profile that you are online"
msgstr ""
-#: ../../mod/settings.php:947
+#: ../../mod/settings.php:954
msgid "Simple Privacy Settings:"
msgstr ""
-#: ../../mod/settings.php:948
+#: ../../mod/settings.php:955
msgid ""
"Very Public - <em>extremely permissive (should be used with caution)</em>"
msgstr ""
-#: ../../mod/settings.php:949
+#: ../../mod/settings.php:956
msgid ""
"Typical - <em>default public, privacy when desired (similar to social "
"network permissions but with improved privacy)</em>"
msgstr ""
-#: ../../mod/settings.php:950
+#: ../../mod/settings.php:957
msgid "Private - <em>default private, never open or public</em>"
msgstr ""
-#: ../../mod/settings.php:951
+#: ../../mod/settings.php:958
msgid "Blocked - <em>default blocked to/from everybody</em>"
msgstr ""
-#: ../../mod/settings.php:953
+#: ../../mod/settings.php:960
msgid "Allow others to tag your posts"
msgstr ""
-#: ../../mod/settings.php:953
+#: ../../mod/settings.php:960
msgid ""
"Often used by the community to retro-actively flag inappropriate content"
msgstr ""
-#: ../../mod/settings.php:955
+#: ../../mod/settings.php:962
msgid "Advanced Privacy Settings"
msgstr ""
-#: ../../mod/settings.php:957
+#: ../../mod/settings.php:964
msgid "Expire other channel content after this many days"
msgstr ""
-#: ../../mod/settings.php:957
+#: ../../mod/settings.php:964
msgid "0 or blank prevents expiration"
msgstr ""
-#: ../../mod/settings.php:958
+#: ../../mod/settings.php:965
msgid "Maximum Friend Requests/Day:"
msgstr ""
-#: ../../mod/settings.php:958
+#: ../../mod/settings.php:965
msgid "May reduce spam activity"
msgstr ""
-#: ../../mod/settings.php:959
+#: ../../mod/settings.php:966
msgid "Default Post Permissions"
msgstr ""
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:978
msgid "Maximum private messages per day from unknown people:"
msgstr ""
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:978
msgid "Useful to reduce spamming"
msgstr ""
-#: ../../mod/settings.php:974
+#: ../../mod/settings.php:981
msgid "Notification Settings"
msgstr ""
-#: ../../mod/settings.php:975
+#: ../../mod/settings.php:982
msgid "By default post a status message when:"
msgstr ""
-#: ../../mod/settings.php:976
+#: ../../mod/settings.php:983
msgid "accepting a friend request"
msgstr ""
-#: ../../mod/settings.php:977
+#: ../../mod/settings.php:984
msgid "joining a forum/community"
msgstr ""
-#: ../../mod/settings.php:978
+#: ../../mod/settings.php:985
msgid "making an <em>interesting</em> profile change"
msgstr ""
-#: ../../mod/settings.php:979
+#: ../../mod/settings.php:986
msgid "Send a notification email when:"
msgstr ""
-#: ../../mod/settings.php:980
+#: ../../mod/settings.php:987
msgid "You receive a connection request"
msgstr ""
-#: ../../mod/settings.php:981
+#: ../../mod/settings.php:988
msgid "Your connections are confirmed"
msgstr ""
-#: ../../mod/settings.php:982
+#: ../../mod/settings.php:989
msgid "Someone writes on your profile wall"
msgstr ""
-#: ../../mod/settings.php:983
+#: ../../mod/settings.php:990
msgid "Someone writes a followup comment"
msgstr ""
-#: ../../mod/settings.php:984
+#: ../../mod/settings.php:991
msgid "You receive a private message"
msgstr ""
-#: ../../mod/settings.php:985
+#: ../../mod/settings.php:992
msgid "You receive a friend suggestion"
msgstr ""
-#: ../../mod/settings.php:986
+#: ../../mod/settings.php:993
msgid "You are tagged in a post"
msgstr ""
-#: ../../mod/settings.php:987
+#: ../../mod/settings.php:994
msgid "You are poked/prodded/etc. in a post"
msgstr ""
-#: ../../mod/settings.php:990
+#: ../../mod/settings.php:997
msgid "Advanced Account/Page Type Settings"
msgstr ""
-#: ../../mod/settings.php:991
+#: ../../mod/settings.php:998
msgid "Change the behaviour of this account for special situations"
msgstr ""
-#: ../../mod/settings.php:994
+#: ../../mod/settings.php:1001
msgid ""
"Please enable expert mode (in <a href=\"settings/features\">Settings > "
"Additional features</a>) to adjust!"
msgstr ""
-#: ../../mod/settings.php:995
+#: ../../mod/settings.php:1002
msgid "Miscellaneous Settings"
msgstr ""
-#: ../../mod/settings.php:997
+#: ../../mod/settings.php:1004
msgid "Personal menu to display in your channel pages"
msgstr ""
-#: ../../mod/settings.php:998
+#: ../../mod/settings.php:1005
msgid "Remove this channel"
msgstr ""
@@ -4197,8 +4292,8 @@ msgstr ""
msgid "Block Name"
msgstr ""
-#: ../../mod/profiles.php:18 ../../mod/profiles.php:138
-#: ../../mod/profiles.php:168 ../../mod/profiles.php:472
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:165
+#: ../../mod/profiles.php:222 ../../mod/profiles.php:539
msgid "Profile not found."
msgstr ""
@@ -4218,235 +4313,245 @@ msgstr ""
msgid "Profile unavailable to clone."
msgstr ""
-#: ../../mod/profiles.php:178
+#: ../../mod/profiles.php:136
+msgid "Profile unavailable to export."
+msgstr ""
+
+#: ../../mod/profiles.php:232
msgid "Profile Name is required."
msgstr ""
-#: ../../mod/profiles.php:294
+#: ../../mod/profiles.php:354
msgid "Marital Status"
msgstr ""
-#: ../../mod/profiles.php:298
+#: ../../mod/profiles.php:358
msgid "Romantic Partner"
msgstr ""
-#: ../../mod/profiles.php:302
+#: ../../mod/profiles.php:362
msgid "Likes"
msgstr ""
-#: ../../mod/profiles.php:306
+#: ../../mod/profiles.php:366
msgid "Dislikes"
msgstr ""
-#: ../../mod/profiles.php:310
+#: ../../mod/profiles.php:370
msgid "Work/Employment"
msgstr ""
-#: ../../mod/profiles.php:313
+#: ../../mod/profiles.php:373
msgid "Religion"
msgstr ""
-#: ../../mod/profiles.php:317
+#: ../../mod/profiles.php:377
msgid "Political Views"
msgstr ""
-#: ../../mod/profiles.php:321
+#: ../../mod/profiles.php:381
msgid "Gender"
msgstr ""
-#: ../../mod/profiles.php:325
+#: ../../mod/profiles.php:385
msgid "Sexual Preference"
msgstr ""
-#: ../../mod/profiles.php:329
+#: ../../mod/profiles.php:389
msgid "Homepage"
msgstr ""
-#: ../../mod/profiles.php:333
+#: ../../mod/profiles.php:393
msgid "Interests"
msgstr ""
-#: ../../mod/profiles.php:337 ../../mod/admin.php:893
+#: ../../mod/profiles.php:397 ../../mod/admin.php:902
msgid "Address"
msgstr ""
-#: ../../mod/profiles.php:344 ../../mod/pubsites.php:25
+#: ../../mod/profiles.php:404 ../../mod/pubsites.php:25
msgid "Location"
msgstr ""
-#: ../../mod/profiles.php:427
+#: ../../mod/profiles.php:487
msgid "Profile updated."
msgstr ""
-#: ../../mod/profiles.php:491
+#: ../../mod/profiles.php:564
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr ""
-#: ../../mod/profiles.php:514
+#: ../../mod/profiles.php:588
msgid "Edit Profile Details"
msgstr ""
-#: ../../mod/profiles.php:516
+#: ../../mod/profiles.php:590
msgid "View this profile"
msgstr ""
-#: ../../mod/profiles.php:517
+#: ../../mod/profiles.php:592
msgid "Change Profile Photo"
msgstr ""
-#: ../../mod/profiles.php:518
+#: ../../mod/profiles.php:593
msgid "Create a new profile using these settings"
msgstr ""
-#: ../../mod/profiles.php:519
+#: ../../mod/profiles.php:594
msgid "Clone this profile"
msgstr ""
-#: ../../mod/profiles.php:520
+#: ../../mod/profiles.php:595
msgid "Delete this profile"
msgstr ""
-#: ../../mod/profiles.php:521
+#: ../../mod/profiles.php:597
+msgid "Import profile from file"
+msgstr ""
+
+#: ../../mod/profiles.php:598
+msgid "Export profile to file"
+msgstr ""
+
+#: ../../mod/profiles.php:599
msgid "Profile Name:"
msgstr ""
-#: ../../mod/profiles.php:522
+#: ../../mod/profiles.php:600
msgid "Your Full Name:"
msgstr ""
-#: ../../mod/profiles.php:523
+#: ../../mod/profiles.php:601
msgid "Title/Description:"
msgstr ""
-#: ../../mod/profiles.php:524
+#: ../../mod/profiles.php:602
msgid "Your Gender:"
msgstr ""
-#: ../../mod/profiles.php:525
+#: ../../mod/profiles.php:603
#, php-format
msgid "Birthday (%s):"
msgstr ""
-#: ../../mod/profiles.php:526
+#: ../../mod/profiles.php:604
msgid "Street Address:"
msgstr ""
-#: ../../mod/profiles.php:527
+#: ../../mod/profiles.php:605
msgid "Locality/City:"
msgstr ""
-#: ../../mod/profiles.php:528
+#: ../../mod/profiles.php:606
msgid "Postal/Zip Code:"
msgstr ""
-#: ../../mod/profiles.php:529
+#: ../../mod/profiles.php:607
msgid "Country:"
msgstr ""
-#: ../../mod/profiles.php:530
+#: ../../mod/profiles.php:608
msgid "Region/State:"
msgstr ""
-#: ../../mod/profiles.php:531
+#: ../../mod/profiles.php:609
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr ""
-#: ../../mod/profiles.php:532
+#: ../../mod/profiles.php:610
msgid "Who: (if applicable)"
msgstr ""
-#: ../../mod/profiles.php:533
+#: ../../mod/profiles.php:611
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr ""
-#: ../../mod/profiles.php:534
+#: ../../mod/profiles.php:612
msgid "Since [date]:"
msgstr ""
-#: ../../mod/profiles.php:536
+#: ../../mod/profiles.php:614
msgid "Homepage URL:"
msgstr ""
-#: ../../mod/profiles.php:539
+#: ../../mod/profiles.php:617
msgid "Religious Views:"
msgstr ""
-#: ../../mod/profiles.php:540
+#: ../../mod/profiles.php:618
msgid "Keywords:"
msgstr ""
-#: ../../mod/profiles.php:543
+#: ../../mod/profiles.php:621
msgid "Example: fishing photography software"
msgstr ""
-#: ../../mod/profiles.php:544
+#: ../../mod/profiles.php:622
msgid "Used in directory listings"
msgstr ""
-#: ../../mod/profiles.php:545
+#: ../../mod/profiles.php:623
msgid "Tell us about yourself..."
msgstr ""
-#: ../../mod/profiles.php:546
+#: ../../mod/profiles.php:624
msgid "Hobbies/Interests"
msgstr ""
-#: ../../mod/profiles.php:547
+#: ../../mod/profiles.php:625
msgid "Contact information and Social Networks"
msgstr ""
-#: ../../mod/profiles.php:548
+#: ../../mod/profiles.php:626
msgid "My other channels"
msgstr ""
-#: ../../mod/profiles.php:549
+#: ../../mod/profiles.php:627
msgid "Musical interests"
msgstr ""
-#: ../../mod/profiles.php:550
+#: ../../mod/profiles.php:628
msgid "Books, literature"
msgstr ""
-#: ../../mod/profiles.php:551
+#: ../../mod/profiles.php:629
msgid "Television"
msgstr ""
-#: ../../mod/profiles.php:552
+#: ../../mod/profiles.php:630
msgid "Film/dance/culture/entertainment"
msgstr ""
-#: ../../mod/profiles.php:553
+#: ../../mod/profiles.php:631
msgid "Love/romance"
msgstr ""
-#: ../../mod/profiles.php:554
+#: ../../mod/profiles.php:632
msgid "Work/employment"
msgstr ""
-#: ../../mod/profiles.php:555
+#: ../../mod/profiles.php:633
msgid "School/education"
msgstr ""
-#: ../../mod/profiles.php:560
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
+#: ../../mod/profiles.php:639
+msgid "This is your default profile."
msgstr ""
-#: ../../mod/profiles.php:570 ../../mod/directory.php:143
+#: ../../mod/profiles.php:650 ../../mod/directory.php:143
#: ../../mod/dirprofile.php:92
msgid "Age: "
msgstr ""
-#: ../../mod/profiles.php:609
+#: ../../mod/profiles.php:692
msgid "Edit/Manage Profiles"
msgstr ""
-#: ../../mod/profiles.php:610
+#: ../../mod/profiles.php:693
msgid "Add profile things"
msgstr ""
-#: ../../mod/profiles.php:611
+#: ../../mod/profiles.php:694
msgid "Include desirable objects in your profile"
msgstr ""
@@ -4626,7 +4731,7 @@ msgstr ""
msgid "I am over 13 years of age and accept the %s for this website"
msgstr ""
-#: ../../mod/register.php:204 ../../mod/admin.php:443
+#: ../../mod/register.php:204 ../../mod/admin.php:452
msgid "Registration"
msgstr ""
@@ -4662,35 +4767,41 @@ msgstr ""
msgid "Please login."
msgstr ""
-#: ../../mod/cloud.php:115
+#: ../../mod/cloud.php:126
msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
msgstr ""
-#: ../../mod/removeme.php:49
+#: ../../mod/removeme.php:29
+msgid ""
+"Channel removals are not allowed within 48 hours of changing the account "
+"password."
+msgstr ""
+
+#: ../../mod/removeme.php:57
msgid "Remove This Channel"
msgstr ""
-#: ../../mod/removeme.php:50
+#: ../../mod/removeme.php:58
msgid ""
"This will completely remove this channel from the network. Once this has "
"been done it is not recoverable."
msgstr ""
-#: ../../mod/removeme.php:51
+#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59
msgid "Please enter your password for verification:"
msgstr ""
-#: ../../mod/removeme.php:52
+#: ../../mod/removeme.php:60
msgid "Remove this channel and all its clones from the network"
msgstr ""
-#: ../../mod/removeme.php:52
+#: ../../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/removeme.php:53
+#: ../../mod/removeme.php:61
msgid "Remove Channel"
msgstr ""
@@ -4720,15 +4831,15 @@ msgstr ""
msgid "Authentication failed."
msgstr ""
-#: ../../mod/rmagic.php:78
+#: ../../mod/rmagic.php:82
msgid "Remote Authentication"
msgstr ""
-#: ../../mod/rmagic.php:79
+#: ../../mod/rmagic.php:83
msgid "Enter your channel address (e.g. channel@example.com)"
msgstr ""
-#: ../../mod/rmagic.php:80
+#: ../../mod/rmagic.php:84
msgid "Authenticate"
msgstr ""
@@ -4807,11 +4918,11 @@ msgstr ""
msgid "Could not locate selected profile."
msgstr ""
-#: ../../mod/connections.php:94 ../../mod/connedit.php:131
+#: ../../mod/connections.php:94 ../../mod/connedit.php:132
msgid "Connection updated."
msgstr ""
-#: ../../mod/connections.php:96 ../../mod/connedit.php:133
+#: ../../mod/connections.php:96 ../../mod/connedit.php:134
msgid "Failed to update connection record."
msgstr ""
@@ -4835,10 +4946,6 @@ msgstr ""
msgid "All"
msgstr ""
-#: ../../mod/connections.php:240 ../../mod/connections.php:320
-msgid "Unconnected"
-msgstr ""
-
#: ../../mod/connections.php:270
msgid "Suggest new connections"
msgstr ""
@@ -4879,10 +4986,6 @@ msgstr ""
msgid "Only show hidden connections"
msgstr ""
-#: ../../mod/connections.php:323
-msgid "Only show one-way connections"
-msgstr ""
-
#: ../../mod/connections.php:368
#, php-format
msgid "%1$s [%2$s]"
@@ -4904,310 +5007,314 @@ msgstr ""
msgid "Edit post"
msgstr ""
-#: ../../mod/connedit.php:243
+#: ../../mod/connedit.php:181
+msgid "is now connected to"
+msgstr ""
+
+#: ../../mod/connedit.php:274
msgid "Could not access address book record."
msgstr ""
-#: ../../mod/connedit.php:257
+#: ../../mod/connedit.php:288
msgid "Refresh failed - channel is currently unavailable."
msgstr ""
-#: ../../mod/connedit.php:264
+#: ../../mod/connedit.php:295
msgid "Channel has been unblocked"
msgstr ""
-#: ../../mod/connedit.php:265
+#: ../../mod/connedit.php:296
msgid "Channel has been blocked"
msgstr ""
-#: ../../mod/connedit.php:269 ../../mod/connedit.php:281
-#: ../../mod/connedit.php:293 ../../mod/connedit.php:305
-#: ../../mod/connedit.php:320
+#: ../../mod/connedit.php:300 ../../mod/connedit.php:312
+#: ../../mod/connedit.php:324 ../../mod/connedit.php:336
+#: ../../mod/connedit.php:352
msgid "Unable to set address book parameters."
msgstr ""
-#: ../../mod/connedit.php:276
+#: ../../mod/connedit.php:307
msgid "Channel has been unignored"
msgstr ""
-#: ../../mod/connedit.php:277
+#: ../../mod/connedit.php:308
msgid "Channel has been ignored"
msgstr ""
-#: ../../mod/connedit.php:288
+#: ../../mod/connedit.php:319
msgid "Channel has been unarchived"
msgstr ""
-#: ../../mod/connedit.php:289
+#: ../../mod/connedit.php:320
msgid "Channel has been archived"
msgstr ""
-#: ../../mod/connedit.php:300
+#: ../../mod/connedit.php:331
msgid "Channel has been unhidden"
msgstr ""
-#: ../../mod/connedit.php:301
+#: ../../mod/connedit.php:332
msgid "Channel has been hidden"
msgstr ""
-#: ../../mod/connedit.php:315
+#: ../../mod/connedit.php:347
msgid "Channel has been approved"
msgstr ""
-#: ../../mod/connedit.php:316
+#: ../../mod/connedit.php:348
msgid "Channel has been unapproved"
msgstr ""
-#: ../../mod/connedit.php:334
+#: ../../mod/connedit.php:376
msgid "Connection has been removed."
msgstr ""
-#: ../../mod/connedit.php:354
+#: ../../mod/connedit.php:396
#, php-format
msgid "View %s's profile"
msgstr ""
-#: ../../mod/connedit.php:358
+#: ../../mod/connedit.php:400
msgid "Refresh Permissions"
msgstr ""
-#: ../../mod/connedit.php:361
+#: ../../mod/connedit.php:403
msgid "Fetch updated permissions"
msgstr ""
-#: ../../mod/connedit.php:365
+#: ../../mod/connedit.php:407
msgid "Recent Activity"
msgstr ""
-#: ../../mod/connedit.php:368
+#: ../../mod/connedit.php:410
msgid "View recent posts and comments"
msgstr ""
-#: ../../mod/connedit.php:372 ../../mod/connedit.php:515
-#: ../../mod/admin.php:760
+#: ../../mod/connedit.php:414 ../../mod/connedit.php:557
+#: ../../mod/admin.php:769
msgid "Unblock"
msgstr ""
-#: ../../mod/connedit.php:372 ../../mod/connedit.php:515
-#: ../../mod/admin.php:759
+#: ../../mod/connedit.php:414 ../../mod/connedit.php:557
+#: ../../mod/admin.php:768
msgid "Block"
msgstr ""
-#: ../../mod/connedit.php:375
+#: ../../mod/connedit.php:417
msgid "Block or Unblock this connection"
msgstr ""
-#: ../../mod/connedit.php:379 ../../mod/connedit.php:516
+#: ../../mod/connedit.php:421 ../../mod/connedit.php:558
msgid "Unignore"
msgstr ""
-#: ../../mod/connedit.php:379 ../../mod/connedit.php:516
+#: ../../mod/connedit.php:421 ../../mod/connedit.php:558
#: ../../mod/notifications.php:51
msgid "Ignore"
msgstr ""
-#: ../../mod/connedit.php:382
+#: ../../mod/connedit.php:424
msgid "Ignore or Unignore this connection"
msgstr ""
-#: ../../mod/connedit.php:385
+#: ../../mod/connedit.php:427
msgid "Unarchive"
msgstr ""
-#: ../../mod/connedit.php:385
+#: ../../mod/connedit.php:427
msgid "Archive"
msgstr ""
-#: ../../mod/connedit.php:388
+#: ../../mod/connedit.php:430
msgid "Archive or Unarchive this connection"
msgstr ""
-#: ../../mod/connedit.php:391
+#: ../../mod/connedit.php:433
msgid "Unhide"
msgstr ""
-#: ../../mod/connedit.php:391
+#: ../../mod/connedit.php:433
msgid "Hide"
msgstr ""
-#: ../../mod/connedit.php:394
+#: ../../mod/connedit.php:436
msgid "Hide or Unhide this connection"
msgstr ""
-#: ../../mod/connedit.php:401
+#: ../../mod/connedit.php:443
msgid "Delete this connection"
msgstr ""
-#: ../../mod/connedit.php:444 ../../mod/connedit.php:473
+#: ../../mod/connedit.php:486 ../../mod/connedit.php:515
msgid "Approve this connection"
msgstr ""
-#: ../../mod/connedit.php:444
+#: ../../mod/connedit.php:486
msgid "Accept connection to allow communication"
msgstr ""
-#: ../../mod/connedit.php:460
+#: ../../mod/connedit.php:502
msgid "Automatic Permissions Settings"
msgstr ""
-#: ../../mod/connedit.php:460
+#: ../../mod/connedit.php:502
#, php-format
msgid "Connections: settings for %s"
msgstr ""
-#: ../../mod/connedit.php:464
+#: ../../mod/connedit.php:506
msgid ""
"When receiving a channel introduction, any permissions provided here will be "
"applied to the new connection automatically and the introduction approved. "
"Leave this page if you do not wish to use this feature."
msgstr ""
-#: ../../mod/connedit.php:466
+#: ../../mod/connedit.php:508
msgid "Slide to adjust your degree of friendship"
msgstr ""
-#: ../../mod/connedit.php:472
+#: ../../mod/connedit.php:514
msgid "inherited"
msgstr ""
-#: ../../mod/connedit.php:474
+#: ../../mod/connedit.php:516
msgid "Connection has no individual permissions!"
msgstr ""
-#: ../../mod/connedit.php:475
+#: ../../mod/connedit.php:517
msgid ""
"This may be appropriate based on your <a href=\"settings\">privacy settings</"
"a>, though you may wish to review the \"Advanced Permissions\"."
msgstr ""
-#: ../../mod/connedit.php:477
+#: ../../mod/connedit.php:519
msgid "Profile Visibility"
msgstr ""
-#: ../../mod/connedit.php:478
+#: ../../mod/connedit.php:520
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr ""
-#: ../../mod/connedit.php:479
+#: ../../mod/connedit.php:521
msgid "Contact Information / Notes"
msgstr ""
-#: ../../mod/connedit.php:480
+#: ../../mod/connedit.php:522
msgid "Edit contact notes"
msgstr ""
-#: ../../mod/connedit.php:482
+#: ../../mod/connedit.php:524
msgid "Their Settings"
msgstr ""
-#: ../../mod/connedit.php:483
+#: ../../mod/connedit.php:525
msgid "My Settings"
msgstr ""
-#: ../../mod/connedit.php:485
+#: ../../mod/connedit.php:527
msgid "Clear/Disable Automatic Permissions"
msgstr ""
-#: ../../mod/connedit.php:486
+#: ../../mod/connedit.php:528
msgid "Forum Members"
msgstr ""
-#: ../../mod/connedit.php:487
+#: ../../mod/connedit.php:529
msgid "Soapbox"
msgstr ""
-#: ../../mod/connedit.php:488
+#: ../../mod/connedit.php:530
msgid "Full Sharing (typical social network permissions)"
msgstr ""
-#: ../../mod/connedit.php:489
+#: ../../mod/connedit.php:531
msgid "Cautious Sharing "
msgstr ""
-#: ../../mod/connedit.php:490
+#: ../../mod/connedit.php:532
msgid "Follow Only"
msgstr ""
-#: ../../mod/connedit.php:491
+#: ../../mod/connedit.php:533
msgid "Individual Permissions"
msgstr ""
-#: ../../mod/connedit.php:492
+#: ../../mod/connedit.php:534
msgid ""
"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."
msgstr ""
-#: ../../mod/connedit.php:493
+#: ../../mod/connedit.php:535
msgid "Advanced Permissions"
msgstr ""
-#: ../../mod/connedit.php:494
+#: ../../mod/connedit.php:536
msgid "Simple Permissions (select one and submit)"
msgstr ""
-#: ../../mod/connedit.php:498
+#: ../../mod/connedit.php:540
#, php-format
msgid "Visit %s's profile - %s"
msgstr ""
-#: ../../mod/connedit.php:499
+#: ../../mod/connedit.php:541
msgid "Block/Unblock contact"
msgstr ""
-#: ../../mod/connedit.php:500
+#: ../../mod/connedit.php:542
msgid "Ignore contact"
msgstr ""
-#: ../../mod/connedit.php:501
+#: ../../mod/connedit.php:543
msgid "Repair URL settings"
msgstr ""
-#: ../../mod/connedit.php:502
+#: ../../mod/connedit.php:544
msgid "View conversations"
msgstr ""
-#: ../../mod/connedit.php:504
+#: ../../mod/connedit.php:546
msgid "Delete contact"
msgstr ""
-#: ../../mod/connedit.php:507
+#: ../../mod/connedit.php:549
msgid "Last update:"
msgstr ""
-#: ../../mod/connedit.php:509
+#: ../../mod/connedit.php:551
msgid "Update public posts"
msgstr ""
-#: ../../mod/connedit.php:511
+#: ../../mod/connedit.php:553
msgid "Update now"
msgstr ""
-#: ../../mod/connedit.php:517
+#: ../../mod/connedit.php:559
msgid "Currently blocked"
msgstr ""
-#: ../../mod/connedit.php:518
+#: ../../mod/connedit.php:560
msgid "Currently ignored"
msgstr ""
-#: ../../mod/connedit.php:519
+#: ../../mod/connedit.php:561
msgid "Currently archived"
msgstr ""
-#: ../../mod/connedit.php:520
+#: ../../mod/connedit.php:562
msgid "Currently pending"
msgstr ""
-#: ../../mod/connedit.php:521
+#: ../../mod/connedit.php:563
msgid "Hide this contact from others"
msgstr ""
-#: ../../mod/connedit.php:521
+#: ../../mod/connedit.php:563
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr ""
@@ -5239,7 +5346,7 @@ msgstr ""
msgid "Potential Delegates"
msgstr ""
-#: ../../mod/delegate.php:130 ../../mod/photos.php:906 ../../mod/tagrm.php:93
+#: ../../mod/delegate.php:130 ../../mod/photos.php:912 ../../mod/tagrm.php:93
msgid "Remove"
msgstr ""
@@ -5261,19 +5368,11 @@ msgstr ""
msgid "Gender: "
msgstr ""
-#: ../../mod/directory.php:207
+#: ../../mod/directory.php:223
msgid "Finding:"
msgstr ""
-#: ../../mod/directory.php:215
-msgid "next page"
-msgstr ""
-
-#: ../../mod/directory.php:215
-msgid "previous page"
-msgstr ""
-
-#: ../../mod/directory.php:222
+#: ../../mod/directory.php:239
msgid "No entries (some entries may be hidden)."
msgstr ""
@@ -5646,7 +5745,7 @@ msgstr ""
#: ../../mod/setup.php:572
msgid ""
-"If your certificate is not recognised, members of other sites (who may "
+"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 ""
@@ -5800,7 +5899,7 @@ msgstr ""
#: ../../mod/siteinfo.php:98
msgid ""
"This is a hub of the Red Matrix - a global cooperative network of "
-"decentralised privacy enhanced websites."
+"decentralized privacy enhanced websites."
msgstr ""
#: ../../mod/siteinfo.php:101
@@ -5834,11 +5933,11 @@ msgstr ""
msgid "Album not found."
msgstr ""
-#: ../../mod/photos.php:119 ../../mod/photos.php:669
+#: ../../mod/photos.php:119 ../../mod/photos.php:675
msgid "Delete Album"
msgstr ""
-#: ../../mod/photos.php:159 ../../mod/photos.php:957
+#: ../../mod/photos.php:159 ../../mod/photos.php:963
msgid "Delete Photo"
msgstr ""
@@ -5864,7 +5963,7 @@ msgstr ""
msgid "Upload Photos"
msgstr ""
-#: ../../mod/photos.php:600 ../../mod/photos.php:664
+#: ../../mod/photos.php:600 ../../mod/photos.php:670
msgid "New album name: "
msgstr ""
@@ -5876,80 +5975,84 @@ msgstr ""
msgid "Do not show a status post for this upload"
msgstr ""
-#: ../../mod/photos.php:653 ../../mod/photos.php:675 ../../mod/photos.php:1129
-#: ../../mod/photos.php:1144
+#: ../../mod/photos.php:622
+msgid "Album name could not be decoded"
+msgstr ""
+
+#: ../../mod/photos.php:659 ../../mod/photos.php:681 ../../mod/photos.php:1135
+#: ../../mod/photos.php:1150
msgid "Contact Photos"
msgstr ""
-#: ../../mod/photos.php:679
+#: ../../mod/photos.php:685
msgid "Edit Album"
msgstr ""
-#: ../../mod/photos.php:685
+#: ../../mod/photos.php:691
msgid "Show Newest First"
msgstr ""
-#: ../../mod/photos.php:687
+#: ../../mod/photos.php:693
msgid "Show Oldest First"
msgstr ""
-#: ../../mod/photos.php:730 ../../mod/photos.php:1176
+#: ../../mod/photos.php:736 ../../mod/photos.php:1182
msgid "View Photo"
msgstr ""
-#: ../../mod/photos.php:776
+#: ../../mod/photos.php:782
msgid "Permission denied. Access to this item may be restricted."
msgstr ""
-#: ../../mod/photos.php:778
+#: ../../mod/photos.php:784
msgid "Photo not available"
msgstr ""
-#: ../../mod/photos.php:838
+#: ../../mod/photos.php:844
msgid "Use as profile photo"
msgstr ""
-#: ../../mod/photos.php:862
+#: ../../mod/photos.php:868
msgid "View Full Size"
msgstr ""
-#: ../../mod/photos.php:940
+#: ../../mod/photos.php:946
msgid "Edit photo"
msgstr ""
-#: ../../mod/photos.php:942
+#: ../../mod/photos.php:948
msgid "Rotate CW (right)"
msgstr ""
-#: ../../mod/photos.php:943
+#: ../../mod/photos.php:949
msgid "Rotate CCW (left)"
msgstr ""
-#: ../../mod/photos.php:946
+#: ../../mod/photos.php:952
msgid "New album name"
msgstr ""
-#: ../../mod/photos.php:949
+#: ../../mod/photos.php:955
msgid "Caption"
msgstr ""
-#: ../../mod/photos.php:951
+#: ../../mod/photos.php:957
msgid "Add a Tag"
msgstr ""
-#: ../../mod/photos.php:954
+#: ../../mod/photos.php:960
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr ""
-#: ../../mod/photos.php:1107
+#: ../../mod/photos.php:1113
msgid "In This Photo:"
msgstr ""
-#: ../../mod/photos.php:1182
+#: ../../mod/photos.php:1188
msgid "View Album"
msgstr ""
-#: ../../mod/photos.php:1191
+#: ../../mod/photos.php:1197
msgid "Recent Photos"
msgstr ""
@@ -6198,7 +6301,7 @@ msgstr ""
msgid "All Connected Channels"
msgstr ""
-#: ../../mod/group.php:231
+#: ../../mod/group.php:233
msgid "Click on a channel to add or remove."
msgstr ""
@@ -6231,587 +6334,591 @@ msgstr ""
msgid "Theme settings updated."
msgstr ""
-#: ../../mod/admin.php:92 ../../mod/admin.php:441
+#: ../../mod/admin.php:97 ../../mod/admin.php:450
msgid "Site"
msgstr ""
-#: ../../mod/admin.php:93
+#: ../../mod/admin.php:98
msgid "Accounts"
msgstr ""
-#: ../../mod/admin.php:94 ../../mod/admin.php:885
+#: ../../mod/admin.php:99 ../../mod/admin.php:894
msgid "Channels"
msgstr ""
-#: ../../mod/admin.php:95 ../../mod/admin.php:976 ../../mod/admin.php:1018
+#: ../../mod/admin.php:100 ../../mod/admin.php:985 ../../mod/admin.php:1027
msgid "Plugins"
msgstr ""
-#: ../../mod/admin.php:96 ../../mod/admin.php:1181 ../../mod/admin.php:1217
+#: ../../mod/admin.php:101 ../../mod/admin.php:1190 ../../mod/admin.php:1226
msgid "Themes"
msgstr ""
-#: ../../mod/admin.php:97 ../../mod/admin.php:541
+#: ../../mod/admin.php:102 ../../mod/admin.php:550
msgid "Server"
msgstr ""
-#: ../../mod/admin.php:98
+#: ../../mod/admin.php:103
+msgid "Profile Config"
+msgstr ""
+
+#: ../../mod/admin.php:104
msgid "DB updates"
msgstr ""
-#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1304
+#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1313
msgid "Logs"
msgstr ""
-#: ../../mod/admin.php:118
+#: ../../mod/admin.php:124
msgid "Plugin Features"
msgstr ""
-#: ../../mod/admin.php:120
+#: ../../mod/admin.php:126
msgid "User registrations waiting for confirmation"
msgstr ""
-#: ../../mod/admin.php:197
+#: ../../mod/admin.php:206
msgid "Message queues"
msgstr ""
-#: ../../mod/admin.php:202 ../../mod/admin.php:440 ../../mod/admin.php:540
-#: ../../mod/admin.php:749 ../../mod/admin.php:884 ../../mod/admin.php:975
-#: ../../mod/admin.php:1017 ../../mod/admin.php:1180 ../../mod/admin.php:1216
-#: ../../mod/admin.php:1303
+#: ../../mod/admin.php:211 ../../mod/admin.php:449 ../../mod/admin.php:549
+#: ../../mod/admin.php:758 ../../mod/admin.php:893 ../../mod/admin.php:984
+#: ../../mod/admin.php:1026 ../../mod/admin.php:1189 ../../mod/admin.php:1225
+#: ../../mod/admin.php:1312
msgid "Administration"
msgstr ""
-#: ../../mod/admin.php:203
+#: ../../mod/admin.php:212
msgid "Summary"
msgstr ""
-#: ../../mod/admin.php:205
+#: ../../mod/admin.php:214
msgid "Registered users"
msgstr ""
-#: ../../mod/admin.php:207 ../../mod/admin.php:544
+#: ../../mod/admin.php:216 ../../mod/admin.php:553
msgid "Pending registrations"
msgstr ""
-#: ../../mod/admin.php:208
+#: ../../mod/admin.php:217
msgid "Version"
msgstr ""
-#: ../../mod/admin.php:210 ../../mod/admin.php:545
+#: ../../mod/admin.php:219 ../../mod/admin.php:554
msgid "Active plugins"
msgstr ""
-#: ../../mod/admin.php:361
+#: ../../mod/admin.php:370
msgid "Site settings updated."
msgstr ""
-#: ../../mod/admin.php:392
+#: ../../mod/admin.php:401
msgid "No special theme for accessibility"
msgstr ""
-#: ../../mod/admin.php:421
+#: ../../mod/admin.php:430
msgid "Yes - with approval"
msgstr ""
-#: ../../mod/admin.php:427
+#: ../../mod/admin.php:436
msgid "My site is not a public server"
msgstr ""
-#: ../../mod/admin.php:428
+#: ../../mod/admin.php:437
msgid "My site has paid access only"
msgstr ""
-#: ../../mod/admin.php:429
+#: ../../mod/admin.php:438
msgid "My site has free access only"
msgstr ""
-#: ../../mod/admin.php:430
+#: ../../mod/admin.php:439
msgid "My site offers free accounts with optional paid upgrades"
msgstr ""
-#: ../../mod/admin.php:444
+#: ../../mod/admin.php:453
msgid "File upload"
msgstr ""
-#: ../../mod/admin.php:445
+#: ../../mod/admin.php:454
msgid "Policies"
msgstr ""
-#: ../../mod/admin.php:450
+#: ../../mod/admin.php:459
msgid "Site name"
msgstr ""
-#: ../../mod/admin.php:451
+#: ../../mod/admin.php:460
msgid "Banner/Logo"
msgstr ""
-#: ../../mod/admin.php:452
+#: ../../mod/admin.php:461
msgid "Administrator Information"
msgstr ""
-#: ../../mod/admin.php:452
+#: ../../mod/admin.php:461
msgid ""
"Contact information for site administrators. Displayed on siteinfo page. "
"BBCode can be used here"
msgstr ""
-#: ../../mod/admin.php:453
+#: ../../mod/admin.php:462
msgid "System language"
msgstr ""
-#: ../../mod/admin.php:454
+#: ../../mod/admin.php:463
msgid "System theme"
msgstr ""
-#: ../../mod/admin.php:454
+#: ../../mod/admin.php:463
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr ""
-#: ../../mod/admin.php:455
+#: ../../mod/admin.php:464
msgid "Mobile system theme"
msgstr ""
-#: ../../mod/admin.php:455
+#: ../../mod/admin.php:464
msgid "Theme for mobile devices"
msgstr ""
-#: ../../mod/admin.php:456
+#: ../../mod/admin.php:465
msgid "Accessibility system theme"
msgstr ""
-#: ../../mod/admin.php:456
+#: ../../mod/admin.php:465
msgid "Accessibility theme"
msgstr ""
-#: ../../mod/admin.php:457
+#: ../../mod/admin.php:466
msgid "Channel to use for this website's static pages"
msgstr ""
-#: ../../mod/admin.php:457
+#: ../../mod/admin.php:466
msgid "Site Channel"
msgstr ""
-#: ../../mod/admin.php:459
+#: ../../mod/admin.php:468
msgid "Maximum image size"
msgstr ""
-#: ../../mod/admin.php:459
+#: ../../mod/admin.php:468
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr ""
-#: ../../mod/admin.php:460
+#: ../../mod/admin.php:469
msgid "Does this site allow new member registration?"
msgstr ""
-#: ../../mod/admin.php:461
+#: ../../mod/admin.php:470
msgid "Which best describes the types of account offered by this hub?"
msgstr ""
-#: ../../mod/admin.php:462
+#: ../../mod/admin.php:471
msgid "Register text"
msgstr ""
-#: ../../mod/admin.php:462
+#: ../../mod/admin.php:471
msgid "Will be displayed prominently on the registration page."
msgstr ""
-#: ../../mod/admin.php:463
+#: ../../mod/admin.php:472
msgid "Accounts abandoned after x days"
msgstr ""
-#: ../../mod/admin.php:463
+#: ../../mod/admin.php:472
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr ""
-#: ../../mod/admin.php:464
+#: ../../mod/admin.php:473
msgid "Allowed friend domains"
msgstr ""
-#: ../../mod/admin.php:464
+#: ../../mod/admin.php:473
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:465
+#: ../../mod/admin.php:474
msgid "Allowed email domains"
msgstr ""
-#: ../../mod/admin.php:465
+#: ../../mod/admin.php:474
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:466
+#: ../../mod/admin.php:475
msgid "Block public"
msgstr ""
-#: ../../mod/admin.php:466
+#: ../../mod/admin.php:475
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:467
+#: ../../mod/admin.php:476
msgid "Force publish"
msgstr ""
-#: ../../mod/admin.php:467
+#: ../../mod/admin.php:476
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
-#: ../../mod/admin.php:468
+#: ../../mod/admin.php:477
msgid "Disable discovery tab"
msgstr ""
-#: ../../mod/admin.php:468
+#: ../../mod/admin.php:477
msgid ""
"Remove the tab in the network view with public content pulled from sources "
"chosen for this site."
msgstr ""
-#: ../../mod/admin.php:469
+#: ../../mod/admin.php:478
msgid "No login on Homepage"
msgstr ""
-#: ../../mod/admin.php:469
+#: ../../mod/admin.php:478
msgid ""
"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)."
msgstr ""
-#: ../../mod/admin.php:471
+#: ../../mod/admin.php:480
msgid "Proxy user"
msgstr ""
-#: ../../mod/admin.php:472
+#: ../../mod/admin.php:481
msgid "Proxy URL"
msgstr ""
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:482
msgid "Network timeout"
msgstr ""
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:482
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
-#: ../../mod/admin.php:474
+#: ../../mod/admin.php:483
msgid "Delivery interval"
msgstr ""
-#: ../../mod/admin.php:474
+#: ../../mod/admin.php:483
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:475
+#: ../../mod/admin.php:484
msgid "Poll interval"
msgstr ""
-#: ../../mod/admin.php:475
+#: ../../mod/admin.php:484
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr ""
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:485
msgid "Maximum Load Average"
msgstr ""
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:485
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
-#: ../../mod/admin.php:532
+#: ../../mod/admin.php:541
msgid "No server found"
msgstr ""
-#: ../../mod/admin.php:539 ../../mod/admin.php:763
+#: ../../mod/admin.php:548 ../../mod/admin.php:772
msgid "ID"
msgstr ""
-#: ../../mod/admin.php:539
+#: ../../mod/admin.php:548
msgid "for channel"
msgstr ""
-#: ../../mod/admin.php:539
+#: ../../mod/admin.php:548
msgid "on server"
msgstr ""
-#: ../../mod/admin.php:539
+#: ../../mod/admin.php:548
msgid "Status"
msgstr ""
-#: ../../mod/admin.php:560
+#: ../../mod/admin.php:569
msgid "Update has been marked successful"
msgstr ""
-#: ../../mod/admin.php:570
+#: ../../mod/admin.php:579
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr ""
-#: ../../mod/admin.php:573
+#: ../../mod/admin.php:582
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
-#: ../../mod/admin.php:577
+#: ../../mod/admin.php:586
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
-#: ../../mod/admin.php:580
+#: ../../mod/admin.php:589
#, php-format
msgid "Update function %s could not be found."
msgstr ""
-#: ../../mod/admin.php:595
+#: ../../mod/admin.php:604
msgid "No failed updates."
msgstr ""
-#: ../../mod/admin.php:599
+#: ../../mod/admin.php:608
msgid "Failed Updates"
msgstr ""
-#: ../../mod/admin.php:601
+#: ../../mod/admin.php:610
msgid "Mark success (if update was manually applied)"
msgstr ""
-#: ../../mod/admin.php:602
+#: ../../mod/admin.php:611
msgid "Attempt to execute this update step automatically"
msgstr ""
-#: ../../mod/admin.php:628
+#: ../../mod/admin.php:637
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
-#: ../../mod/admin.php:635
+#: ../../mod/admin.php:644
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] ""
msgstr[1] ""
-#: ../../mod/admin.php:666
+#: ../../mod/admin.php:675
msgid "Account not found"
msgstr ""
-#: ../../mod/admin.php:677
+#: ../../mod/admin.php:686
#, php-format
msgid "User '%s' deleted"
msgstr ""
-#: ../../mod/admin.php:686
+#: ../../mod/admin.php:695
#, php-format
msgid "User '%s' unblocked"
msgstr ""
-#: ../../mod/admin.php:686
+#: ../../mod/admin.php:695
#, php-format
msgid "User '%s' blocked"
msgstr ""
-#: ../../mod/admin.php:750 ../../mod/admin.php:762
+#: ../../mod/admin.php:759 ../../mod/admin.php:771
msgid "Users"
msgstr ""
-#: ../../mod/admin.php:752 ../../mod/admin.php:887
+#: ../../mod/admin.php:761 ../../mod/admin.php:896
msgid "select all"
msgstr ""
-#: ../../mod/admin.php:753
+#: ../../mod/admin.php:762
msgid "User registrations waiting for confirm"
msgstr ""
-#: ../../mod/admin.php:754
+#: ../../mod/admin.php:763
msgid "Request date"
msgstr ""
-#: ../../mod/admin.php:755
+#: ../../mod/admin.php:764
msgid "No registrations."
msgstr ""
-#: ../../mod/admin.php:756
+#: ../../mod/admin.php:765
msgid "Approve"
msgstr ""
-#: ../../mod/admin.php:757
+#: ../../mod/admin.php:766
msgid "Deny"
msgstr ""
-#: ../../mod/admin.php:763
+#: ../../mod/admin.php:772
msgid "Register date"
msgstr ""
-#: ../../mod/admin.php:763
+#: ../../mod/admin.php:772
msgid "Last login"
msgstr ""
-#: ../../mod/admin.php:763
+#: ../../mod/admin.php:772
msgid "Expires"
msgstr ""
-#: ../../mod/admin.php:763
+#: ../../mod/admin.php:772
msgid "Service Class"
msgstr ""
-#: ../../mod/admin.php:765
+#: ../../mod/admin.php:774
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
-#: ../../mod/admin.php:766
+#: ../../mod/admin.php:775
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
-#: ../../mod/admin.php:799
+#: ../../mod/admin.php:808
#, php-format
msgid "%s channel censored/uncensored"
msgid_plural "%s channelss censored/uncensored"
msgstr[0] ""
msgstr[1] ""
-#: ../../mod/admin.php:806
+#: ../../mod/admin.php:815
#, php-format
msgid "%s channel deleted"
msgid_plural "%s channels deleted"
msgstr[0] ""
msgstr[1] ""
-#: ../../mod/admin.php:825
+#: ../../mod/admin.php:834
msgid "Channel not found"
msgstr ""
-#: ../../mod/admin.php:836
+#: ../../mod/admin.php:845
#, php-format
msgid "Channel '%s' deleted"
msgstr ""
-#: ../../mod/admin.php:846
+#: ../../mod/admin.php:855
#, php-format
msgid "Channel '%s' uncensored"
msgstr ""
-#: ../../mod/admin.php:846
+#: ../../mod/admin.php:855
#, php-format
msgid "Channel '%s' censored"
msgstr ""
-#: ../../mod/admin.php:889
+#: ../../mod/admin.php:898
msgid "Censor"
msgstr ""
-#: ../../mod/admin.php:890
+#: ../../mod/admin.php:899
msgid "Uncensor"
msgstr ""
-#: ../../mod/admin.php:893
+#: ../../mod/admin.php:902
msgid "UID"
msgstr ""
-#: ../../mod/admin.php:895
+#: ../../mod/admin.php:904
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:896
+#: ../../mod/admin.php:905
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:935
+#: ../../mod/admin.php:944
#, php-format
msgid "Plugin %s disabled."
msgstr ""
-#: ../../mod/admin.php:939
+#: ../../mod/admin.php:948
#, php-format
msgid "Plugin %s enabled."
msgstr ""
-#: ../../mod/admin.php:949 ../../mod/admin.php:1151
+#: ../../mod/admin.php:958 ../../mod/admin.php:1160
msgid "Disable"
msgstr ""
-#: ../../mod/admin.php:951 ../../mod/admin.php:1153
+#: ../../mod/admin.php:960 ../../mod/admin.php:1162
msgid "Enable"
msgstr ""
-#: ../../mod/admin.php:977 ../../mod/admin.php:1182
+#: ../../mod/admin.php:986 ../../mod/admin.php:1191
msgid "Toggle"
msgstr ""
-#: ../../mod/admin.php:985 ../../mod/admin.php:1192
+#: ../../mod/admin.php:994 ../../mod/admin.php:1201
msgid "Author: "
msgstr ""
-#: ../../mod/admin.php:986 ../../mod/admin.php:1193
+#: ../../mod/admin.php:995 ../../mod/admin.php:1202
msgid "Maintainer: "
msgstr ""
-#: ../../mod/admin.php:1115
+#: ../../mod/admin.php:1124
msgid "No themes found."
msgstr ""
-#: ../../mod/admin.php:1174
+#: ../../mod/admin.php:1183
msgid "Screenshot"
msgstr ""
-#: ../../mod/admin.php:1222
+#: ../../mod/admin.php:1231
msgid "[Experimental]"
msgstr ""
-#: ../../mod/admin.php:1223
+#: ../../mod/admin.php:1232
msgid "[Unsupported]"
msgstr ""
-#: ../../mod/admin.php:1250
+#: ../../mod/admin.php:1259
msgid "Log settings updated."
msgstr ""
-#: ../../mod/admin.php:1306
+#: ../../mod/admin.php:1315
msgid "Clear"
msgstr ""
-#: ../../mod/admin.php:1312
+#: ../../mod/admin.php:1321
msgid "Debugging"
msgstr ""
-#: ../../mod/admin.php:1313
+#: ../../mod/admin.php:1322
msgid "Log file"
msgstr ""
-#: ../../mod/admin.php:1313
+#: ../../mod/admin.php:1322
msgid ""
"Must be writable by web server. Relative to your Red top-level directory."
msgstr ""
-#: ../../mod/admin.php:1314
+#: ../../mod/admin.php:1323
msgid "Log level"
msgstr ""
@@ -6982,72 +7089,64 @@ msgstr[1] ""
msgid "You have no more invitations available"
msgstr ""
-#: ../../mod/invite.php:141
+#: ../../mod/invite.php:129
msgid "Send invitations"
msgstr ""
-#: ../../mod/invite.php:142
+#: ../../mod/invite.php:130
msgid "Enter email addresses, one per line:"
msgstr ""
-#: ../../mod/invite.php:143 ../../mod/mail.php:212 ../../mod/mail.php:325
+#: ../../mod/invite.php:131 ../../mod/mail.php:225 ../../mod/mail.php:338
msgid "Your message:"
msgstr ""
-#: ../../mod/invite.php:144
-msgid ""
-"You are cordially invited to join me and some other close friends on the Red "
-"Matrix - a revolutionary new decentralised communication and information "
-"tool."
+#: ../../mod/invite.php:132
+msgid "Please join my community on RedMatrix."
msgstr ""
-#: ../../mod/invite.php:146
-msgid "You will need to supply this invitation code: $invite_code"
+#: ../../mod/invite.php:134
+msgid "You will need to supply this invitation code: "
msgstr ""
-#: ../../mod/invite.php:147
-msgid "Please visit my channel at"
+#: ../../mod/invite.php:135
+msgid "1. Register at any RedMatrix location (they are all inter-connected)"
msgstr ""
-#: ../../mod/invite.php:151
-msgid ""
-"Once you have registered (on ANY Red Matrix site - they are all inter-"
-"connected), please connect with my Red Matrix channel address:"
+#: ../../mod/invite.php:137
+msgid "2. Enter my RedMatrix network address into the site searchbar."
msgstr ""
-#: ../../mod/invite.php:153
-msgid "Click the [Register] link on the following page to join."
+#: ../../mod/invite.php:138
+msgid "or visit "
msgstr ""
-#: ../../mod/invite.php:155
-msgid ""
-"For more information about the Red Matrix Project and why it has the "
-"potential to change the internet as we know it, please visit http://getzot."
-"com"
+#: ../../mod/invite.php:140
+msgid "3. Click [Connect]"
msgstr ""
-#: ../../mod/item.php:147
+#: ../../mod/item.php:146
msgid "Unable to locate original post."
msgstr ""
-#: ../../mod/item.php:372
+#: ../../mod/item.php:379
msgid "Empty post discarded."
msgstr ""
-#: ../../mod/item.php:414
+#: ../../mod/item.php:421
msgid "Executable content type not permitted to this channel."
msgstr ""
-#: ../../mod/item.php:842
+#: ../../mod/item.php:850
msgid "System error. Post not saved."
msgstr ""
-#: ../../mod/item.php:1285
+#: ../../mod/item.php:1302
#, php-format
msgid "You have reached your limit of %1$.0f top level posts."
msgstr ""
-#: ../../mod/item.php:1291
+#: ../../mod/item.php:1308
#, php-format
msgid "You have reached your limit of %1$.0f webpages."
msgstr ""
@@ -7065,15 +7164,49 @@ msgstr ""
msgid "Layout Name"
msgstr ""
-#: ../../mod/like.php:97
+#: ../../mod/like.php:15
+msgid "Like/Dislike"
+msgstr ""
+
+#: ../../mod/like.php:20
+msgid "This action is restricted to members."
+msgstr ""
+
+#: ../../mod/like.php:21
+msgid ""
+"Please <a href=\"rmagic\">login with your RedMatrix ID</a> or <a href="
+"\"register\">register as a new RedMatrix member</a> to continue."
+msgstr ""
+
+#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142
+msgid "Invalid request."
+msgstr ""
+
+#: ../../mod/like.php:119
msgid "thing"
msgstr ""
-#: ../../mod/lockview.php:30 ../../mod/lockview.php:36
+#: ../../mod/like.php:165
+msgid "Channel unavailable."
+msgstr ""
+
+#: ../../mod/like.php:204
+msgid "Previous action reversed."
+msgstr ""
+
+#: ../../mod/like.php:417
+msgid "Action completed."
+msgstr ""
+
+#: ../../mod/like.php:418
+msgid "Thank you."
+msgstr ""
+
+#: ../../mod/lockview.php:35 ../../mod/lockview.php:41
msgid "Remote privacy information not available."
msgstr ""
-#: ../../mod/lockview.php:45
+#: ../../mod/lockview.php:50
msgid "Visible to:"
msgstr ""
@@ -7081,12 +7214,12 @@ msgstr ""
msgid "No connections."
msgstr ""
-#: ../../mod/viewconnections.php:70
+#: ../../mod/viewconnections.php:71
#, php-format
msgid "Visit %s's profile [%s]"
msgstr ""
-#: ../../mod/viewconnections.php:85
+#: ../../mod/viewconnections.php:86
msgid "View Connnections"
msgstr ""
@@ -7114,7 +7247,7 @@ msgid ""
"Password reset failed."
msgstr ""
-#: ../../mod/lostpass.php:85 ../../boot.php:1479
+#: ../../mod/lostpass.php:85 ../../boot.php:1508
msgid "Password Reset"
msgstr ""
@@ -7203,78 +7336,82 @@ msgstr ""
msgid "Message recalled."
msgstr ""
-#: ../../mod/mail.php:202
+#: ../../mod/mail.php:215
msgid "Send Private Message"
msgstr ""
-#: ../../mod/mail.php:203 ../../mod/mail.php:320
+#: ../../mod/mail.php:216 ../../mod/mail.php:333
msgid "To:"
msgstr ""
-#: ../../mod/mail.php:208 ../../mod/mail.php:322
+#: ../../mod/mail.php:221 ../../mod/mail.php:335
msgid "Subject:"
msgstr ""
-#: ../../mod/mail.php:246
+#: ../../mod/mail.php:232
+msgid "Send"
+msgstr ""
+
+#: ../../mod/mail.php:259
msgid "Message not found."
msgstr ""
-#: ../../mod/mail.php:289 ../../mod/message.php:72
+#: ../../mod/mail.php:302 ../../mod/message.php:72
msgid "Delete message"
msgstr ""
-#: ../../mod/mail.php:290
+#: ../../mod/mail.php:303
msgid "Recall message"
msgstr ""
-#: ../../mod/mail.php:292
+#: ../../mod/mail.php:305
msgid "Message has been recalled."
msgstr ""
-#: ../../mod/mail.php:309
+#: ../../mod/mail.php:322
msgid "Private Conversation"
msgstr ""
-#: ../../mod/mail.php:313
+#: ../../mod/mail.php:326
msgid "Delete conversation"
msgstr ""
-#: ../../mod/mail.php:315
+#: ../../mod/mail.php:328
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr ""
-#: ../../mod/mail.php:319
+#: ../../mod/mail.php:332
msgid "Send Reply"
msgstr ""
-#: ../../mod/manage.php:64
+#: ../../mod/manage.php:136
#, php-format
msgid "You have created %1$.0f of %2$.0f allowed channels."
msgstr ""
-#: ../../mod/manage.php:72
+#: ../../mod/manage.php:144
msgid "Create a new channel"
msgstr ""
-#: ../../mod/manage.php:77
+#: ../../mod/manage.php:148
msgid "Channel Manager"
msgstr ""
-#: ../../mod/manage.php:78
+#: ../../mod/manage.php:149
msgid "Current Channel"
msgstr ""
-#: ../../mod/manage.php:80
+#: ../../mod/manage.php:151
msgid "Attach to one of your channels by selecting it."
msgstr ""
-#: ../../mod/manage.php:81
+#: ../../mod/manage.php:152
msgid "Default Channel"
msgstr ""
-#: ../../mod/manage.php:82
+#: ../../mod/manage.php:153
msgid "Make Default"
msgstr ""
@@ -7507,6 +7644,62 @@ msgstr ""
msgid "Location (URL) to purchase app"
msgstr ""
+#: ../../mod/poll.php:64
+msgid "Poll"
+msgstr ""
+
+#: ../../mod/poll.php:69
+msgid "View Results"
+msgstr ""
+
+#: ../../mod/frphotos.php:79
+msgid "Friendica Photo Album Import"
+msgstr ""
+
+#: ../../mod/frphotos.php:80
+msgid "This will import all your Friendica photo albums to this Red channel."
+msgstr ""
+
+#: ../../mod/frphotos.php:81
+msgid "Friendica Server base URL"
+msgstr ""
+
+#: ../../mod/frphotos.php:82
+msgid "Friendica Login Username"
+msgstr ""
+
+#: ../../mod/frphotos.php:83
+msgid "Friendica Login Password"
+msgstr ""
+
+#: ../../mod/removeaccount.php:30
+msgid ""
+"Account removals are not allowed within 48 hours of changing the account "
+"password."
+msgstr ""
+
+#: ../../mod/removeaccount.php:57
+msgid "Remove This Account"
+msgstr ""
+
+#: ../../mod/removeaccount.php:58
+msgid ""
+"This will completely remove this account including all its channels from the "
+"network. Once this has been done it is not recoverable."
+msgstr ""
+
+#: ../../mod/removeaccount.php:60
+msgid ""
+"Remove this account, all its channels and all its channel clones from the "
+"network"
+msgstr ""
+
+#: ../../mod/removeaccount.php:60
+msgid ""
+"By default only the instances of the channels located on this hub will be "
+"removed from the network"
+msgstr ""
+
#: ../../view/theme/apw/php/config.php:202
#: ../../view/theme/apw/php/config.php:236
msgid "Schema Default"
@@ -7554,7 +7747,7 @@ msgid "Set small shadow size, default 5px 5px 5px"
msgstr ""
#: ../../view/theme/apw/php/config.php:266
-msgid "Set shadow colour, default #000"
+msgid "Set shadow color, default #000"
msgstr ""
#: ../../view/theme/apw/php/config.php:267
@@ -7574,7 +7767,7 @@ msgid "Set background attachment"
msgstr ""
#: ../../view/theme/apw/php/config.php:271
-msgid "Set background colour"
+msgid "Set background color"
msgstr ""
#: ../../view/theme/apw/php/config.php:272
@@ -7582,15 +7775,15 @@ msgid "Set section background image"
msgstr ""
#: ../../view/theme/apw/php/config.php:273
-msgid "Set section background colour"
+msgid "Set section background color"
msgstr ""
#: ../../view/theme/apw/php/config.php:274
-msgid "Set colour of items - use hex"
+msgid "Set color of items - use hex"
msgstr ""
#: ../../view/theme/apw/php/config.php:275
-msgid "Set colour of links - use hex"
+msgid "Set color of links - use hex"
msgstr ""
#: ../../view/theme/apw/php/config.php:276
@@ -7606,7 +7799,7 @@ msgid "Set the generic content wrapper width. Default 48%"
msgstr ""
#: ../../view/theme/apw/php/config.php:279
-msgid "Set colour of fonts - use hex"
+msgid "Set color of fonts - use hex"
msgstr ""
#: ../../view/theme/apw/php/config.php:280
@@ -7677,47 +7870,47 @@ msgid "Narrow navbar"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:105
-msgid "Navigation bar background colour"
+msgid "Navigation bar background color"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:106
-msgid "Navigation bar gradient top colour"
+msgid "Navigation bar gradient top color"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:107
-msgid "Navigation bar gradient bottom colour"
+msgid "Navigation bar gradient bottom color"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:108
-msgid "Navigation active button gradient top colour"
+msgid "Navigation active button gradient top color"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:109
-msgid "Navigation active button gradient bottom colour"
+msgid "Navigation active button gradient bottom color"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:110
-msgid "Navigation bar border colour "
+msgid "Navigation bar border color "
msgstr ""
#: ../../view/theme/redbasic/php/config.php:111
-msgid "Navigation bar icon colour "
+msgid "Navigation bar icon color "
msgstr ""
#: ../../view/theme/redbasic/php/config.php:112
-msgid "Navigation bar active icon colour "
+msgid "Navigation bar active icon color "
msgstr ""
#: ../../view/theme/redbasic/php/config.php:113
-msgid "link colour"
+msgid "link color"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:114
-msgid "Set font-colour for banner"
+msgid "Set font-color for banner"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:115
-msgid "Set the background colour"
+msgid "Set the background color"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:116
@@ -7725,15 +7918,15 @@ msgid "Set the background image"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:117
-msgid "Set the background colour of items"
+msgid "Set the background color of items"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:118
-msgid "Set the background colour of comments"
+msgid "Set the background color of comments"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:119
-msgid "Set the border colour of comments"
+msgid "Set the border color of comments"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:120
@@ -7741,11 +7934,11 @@ msgid "Set the indent for comments"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:121
-msgid "Set the basic colour for item icons"
+msgid "Set the basic color for item icons"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:122
-msgid "Set the hover colour for item icons"
+msgid "Set the hover color for item icons"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:123
@@ -7753,7 +7946,7 @@ msgid "Set font-size for the entire application"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:125
-msgid "Set font-colour for posts and comments"
+msgid "Set font-color for posts and comments"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:126
@@ -7792,41 +7985,41 @@ msgstr ""
msgid "Are you a clean desk or a messy desk person?"
msgstr ""
-#: ../../boot.php:1277
+#: ../../boot.php:1296
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
-#: ../../boot.php:1280
+#: ../../boot.php:1299
#, php-format
msgid "Update Error at %s"
msgstr ""
-#: ../../boot.php:1444
+#: ../../boot.php:1473
msgid ""
"Create an account to access services and applications within the Red Matrix"
msgstr ""
-#: ../../boot.php:1472
+#: ../../boot.php:1501
msgid "Password"
msgstr ""
-#: ../../boot.php:1473
+#: ../../boot.php:1502
msgid "Remember me"
msgstr ""
-#: ../../boot.php:1478
+#: ../../boot.php:1507
msgid "Forgot your password?"
msgstr ""
-#: ../../boot.php:1543
+#: ../../boot.php:1572
msgid "permission denied"
msgstr ""
-#: ../../boot.php:1544
+#: ../../boot.php:1573
msgid "Got Zot?"
msgstr ""
-#: ../../boot.php:1974
+#: ../../boot.php:2003
msgid "toggle mobile"
msgstr ""
diff --git a/util/shredder/shredder b/util/shredder/shredder
index 1586746e0..ac84f0541 100755
--- a/util/shredder/shredder
+++ b/util/shredder/shredder
@@ -203,18 +203,18 @@ main () {
return $FO_rval
;;
-# statuses_update)
-# [[ "$fcli_status" == "" ]] && show_statuses_update 1
-# FO_statuses_update 'json' "$fcli_status" "$fcli_in_reply_to_status_id"
-# JS_Parsed=$(echo "$FO_ret" | tokenize | parse)
-# echo "$JS_Parsed" | js "user" "name" ,
-# echo -n " - "
-# echo "$JS_Parsed" | js "created_at"
-# echo "$JS_Parsed" | js "text"
-# echo ""
-# echo "------------------------------------------------------------------------------"
-# return $FO_rval
-# ;;
+ statuses_update)
+ [[ "$fcli_status" == "" ]] && show_statuses_update 1
+ FO_statuses_update 'json' "$fcli_status" "$fcli_in_reply_to_status_id"
+ JS_Parsed=$(echo "$FO_ret" | tokenize | parse)
+ echo "$JS_Parsed" | js "user" "name" ,
+ echo -n " - "
+ echo "$JS_Parsed" | js "created_at"
+ echo "$JS_Parsed" | js "text"
+ echo ""
+ echo "------------------------------------------------------------------------------"
+ return $FO_rval
+ ;;
*)
diff --git a/util/strings.php b/util/strings.php
index ef15500f1..cfd6538e0 100644
--- a/util/strings.php
+++ b/util/strings.php
@@ -1,63 +1,162 @@
<?php
;
-$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["Channel discovery failed."] = "";
-$a->strings["local account not found."] = "";
-$a->strings["Cannot connect to yourself."] = "";
-$a->strings["Edit File properties"] = "";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "";
+$a->strings["Profile Photos"] = "";
+$a->strings["Embedded content"] = "";
+$a->strings["Embedding disabled"] = "";
+$a->strings["created a new post"] = "";
+$a->strings["commented on %s's post"] = "";
+$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(
+ 0 => "",
+ 1 => "",
+);
+$a->strings["View Connections"] = "";
+$a->strings["Search"] = "";
+$a->strings["Save"] = "";
+$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["Select a page layout: "] = "";
+$a->strings["default"] = "";
+$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"] = "";
+$a->strings["Blocks"] = "";
+$a->strings["Menus"] = "";
+$a->strings["Layouts"] = "";
+$a->strings["Pages"] = "";
+$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["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["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["Permission denied."] = "";
+$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["Photo Albums"] = "";
+$a->strings["Upload New Photos"] = "";
+$a->strings["Visible to everybody"] = "";
+$a->strings["Show"] = "";
+$a->strings["Don't show"] = "";
+$a->strings["Permissions"] = "";
+$a->strings["Close"] = "";
+$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["Public Timeline"] = "";
+$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["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["l F d, Y \\@ g:i A"] = "";
$a->strings["Starts:"] = "";
$a->strings["Finishes:"] = "";
$a->strings["Location:"] = "";
-$a->strings["Categories"] = "";
-$a->strings["App Category"] = "";
-$a->strings["System"] = "";
-$a->strings["Personal"] = "";
-$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["Saved Searches"] = "";
-$a->strings["add"] = "";
-$a->strings["Saved Folders"] = "";
-$a->strings["Everything"] = "";
-$a->strings["Archives"] = "";
-$a->strings["Refresh"] = "";
-$a->strings["Me"] = "";
-$a->strings["Best Friends"] = "";
-$a->strings["Friends"] = "";
-$a->strings["Co-workers"] = "";
-$a->strings["Former Friends"] = "";
-$a->strings["Acquaintances"] = "";
-$a->strings["Everybody"] = "";
-$a->strings["Account settings"] = "";
-$a->strings["Channel settings"] = "";
-$a->strings["Additional features"] = "";
-$a->strings["Feature settings"] = "";
-$a->strings["Display settings"] = "";
-$a->strings["Connected apps"] = "";
-$a->strings["Export channel"] = "";
-$a->strings["Automatic Permissions (Advanced)"] = "";
-$a->strings["Premium Channel Settings"] = "";
-$a->strings["Channel Sources"] = "";
-$a->strings["Settings"] = "";
-$a->strings["Check Mail"] = "";
-$a->strings["New Message"] = "";
-$a->strings["Chat Rooms"] = "";
-$a->strings["Bookmarked Chatrooms"] = "";
-$a->strings["Suggested Chatrooms"] = "";
-$a->strings["Public Timeline"] = "";
$a->strings["Logout"] = "";
$a->strings["End this session"] = "";
$a->strings["Home"] = "";
@@ -66,14 +165,14 @@ $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["Files"] = "";
$a->strings["Your files"] = "";
$a->strings["Chat"] = "";
$a->strings["Your chatrooms"] = "";
-$a->strings["Events"] = "";
-$a->strings["Your events"] = "";
$a->strings["Bookmarks"] = "";
$a->strings["Your bookmarks"] = "";
$a->strings["Webpages"] = "";
@@ -88,8 +187,7 @@ $a->strings["Create an account"] = "";
$a->strings["Help"] = "";
$a->strings["Help and documentation"] = "";
$a->strings["Apps"] = "";
-$a->strings["Addon applications, utilities, games"] = "";
-$a->strings["Search"] = "";
+$a->strings["Applications, utilities, links, games"] = "";
$a->strings["Search site content"] = "";
$a->strings["Directory"] = "";
$a->strings["Channel Locator"] = "";
@@ -110,46 +208,171 @@ $a->strings["See all private messages"] = "";
$a->strings["Mark all private messages seen"] = "";
$a->strings["Inbox"] = "";
$a->strings["Outbox"] = "";
+$a->strings["New Message"] = "";
+$a->strings["Events"] = "";
$a->strings["Event Calendar"] = "";
$a->strings["See all events"] = "";
$a->strings["Mark all events seen"] = "";
$a->strings["Channel Select"] = "";
$a->strings["Manage Your Channels"] = "";
+$a->strings["Settings"] = "";
$a->strings["Account/Channel Settings"] = "";
-$a->strings["Manage/Edit Friends and Connections"] = "";
$a->strings["Admin"] = "";
$a->strings["Site Setup and Configuration"] = "";
$a->strings["Nothing new here"] = "";
$a->strings["Please wait..."] = "";
-$a->strings["Embedded content"] = "";
-$a->strings["Embedding disabled"] = "";
-$a->strings["Image/photo"] = "";
-$a->strings["Encrypted content"] = "";
-$a->strings["QR code"] = "";
-$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "";
-$a->strings["post"] = "";
-$a->strings["$1 wrote:"] = "";
-$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["Create a new collection"] = "";
-$a->strings["Channels not in any collection"] = "";
-$a->strings["photo"] = "";
-$a->strings["event"] = "";
+$a->strings["%1\$s's bookmarks"] = "";
+$a->strings["Tags"] = "";
+$a->strings["Keywords"] = "";
+$a->strings["have"] = "";
+$a->strings["has"] = "";
+$a->strings["want"] = "";
+$a->strings["wants"] = "";
+$a->strings["like"] = "";
+$a->strings["likes"] = "";
+$a->strings["dislike"] = "";
+$a->strings["dislikes"] = "";
+$a->strings["__ctx:noun__ Like"] = array(
+ 0 => "",
+ 1 => "",
+);
+$a->strings["Default"] = "";
+$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["%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["Exammple: name=fred and country=iceland"] = "";
+$a->strings["Advanced Find"] = "";
+$a->strings["Saved Folders"] = "";
+$a->strings["Everything"] = "";
+$a->strings["Categories"] = "";
+$a->strings["%d connection in common"] = array(
+ 0 => "",
+ 1 => "",
+);
+$a->strings["show more"] = "";
+$a->strings["This event has been added to your calendar."] = "";
+$a->strings["Invalid data packet"] = "";
+$a->strings["Unable to verify channel signature"] = "";
+$a->strings["Unable to verify site signature for %s"] = "";
+$a->strings["Miscellaneous"] = "";
+$a->strings["year"] = "";
+$a->strings["month"] = "";
+$a->strings["day"] = "";
+$a->strings["never"] = "";
+$a->strings["less than a second ago"] = "";
+$a->strings["years"] = "";
+$a->strings["months"] = "";
+$a->strings["week"] = "";
+$a->strings["weeks"] = "";
+$a->strings["days"] = "";
+$a->strings["hour"] = "";
+$a->strings["hours"] = "";
+$a->strings["minute"] = "";
+$a->strings["minutes"] = "";
+$a->strings["second"] = "";
+$a->strings["seconds"] = "";
+$a->strings["%1\$d %2\$s ago"] = "";
+$a->strings["%1\$s's birthday"] = "";
+$a->strings["Happy Birthday %1\$s"] = "";
+$a->strings["Sort Options"] = "";
+$a->strings["Alphabetic"] = "";
+$a->strings["Reverse Alphabetic"] = "";
+$a->strings["Newest to Oldest"] = "";
+$a->strings["Enable Safe Search"] = "";
+$a->strings["Disable Safe Search"] = "";
+$a->strings["Safe Mode"] = "";
+$a->strings["Red Matrix Notification"] = "";
+$a->strings["redmatrix"] = "";
+$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["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["Name"] = "";
+$a->strings["Type"] = "";
+$a->strings["Size"] = "";
+$a->strings["Last Modified"] = "";
+$a->strings["Delete"] = "";
+$a->strings["Total"] = "";
+$a->strings["Create new folder"] = "";
+$a->strings["Create"] = "";
+$a->strings["Upload file"] = "";
+$a->strings["Upload"] = "";
$a->strings["channel"] = "";
-$a->strings["status"] = "";
-$a->strings["comment"] = "";
$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["poked"] = "";
-$a->strings["%1\$s is currently %2\$s"] = "";
+$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "";
$a->strings["Select"] = "";
-$a->strings["Delete"] = "";
$a->strings["Private Message"] = "";
$a->strings["Message is verified"] = "";
$a->strings["View %s's profile @ %s"] = "";
@@ -196,7 +419,6 @@ $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["Preview"] = "";
$a->strings["Share"] = "";
$a->strings["Page link title"] = "";
$a->strings["Post as"] = "";
@@ -230,6 +452,7 @@ $a->strings["Commented Order"] = "";
$a->strings["Sort by Comment Date"] = "";
$a->strings["Posted Order"] = "";
$a->strings["Sort by Post Date"] = "";
+$a->strings["Personal"] = "";
$a->strings["Posts that mention or involve you"] = "";
$a->strings["New"] = "";
$a->strings["Activity Stream - by date"] = "";
@@ -241,362 +464,19 @@ $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["Events and Calendar"] = "";
$a->strings["Saved Bookmarks"] = "";
$a->strings["Manage Webpages"] = "";
-$a->strings["Default"] = "";
-$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[" 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["view full size"] = "";
-$a->strings["%1\$s's bookmarks"] = "";
-$a->strings["Tags"] = "";
-$a->strings["Keywords"] = "";
-$a->strings["have"] = "";
-$a->strings["has"] = "";
-$a->strings["want"] = "";
-$a->strings["wants"] = "";
-$a->strings["like"] = "";
-$a->strings["likes"] = "";
-$a->strings["dislike"] = "";
-$a->strings["dislikes"] = "";
-$a->strings["Edit"] = "";
-$a->strings["save to folder"] = "";
-$a->strings["View all"] = "";
-$a->strings["__ctx:noun__ Like"] = array(
- 0 => "",
- 1 => "",
-);
-$a->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["add tag"] = "";
-$a->strings["I like this (toggle)"] = "";
-$a->strings["I don't like this (toggle)"] = "";
-$a->strings["Share this"] = "";
-$a->strings["share"] = "";
-$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["Bookmark Links"] = "";
-$a->strings["__ctx:noun__ Likes"] = "";
-$a->strings["__ctx:noun__ Dislikes"] = "";
-$a->strings["Close"] = "";
-$a->strings["%d comment"] = array(
- 0 => "",
- 1 => "",
-);
-$a->strings["show more"] = "";
-$a->strings["This is you"] = "";
-$a->strings["Comment"] = "";
-$a->strings["Submit"] = "";
-$a->strings["Bold"] = "";
-$a->strings["Italic"] = "";
-$a->strings["Underline"] = "";
-$a->strings["Quote"] = "";
-$a->strings["Code"] = "";
-$a->strings["Image"] = "";
-$a->strings["Link"] = "";
-$a->strings["Video"] = "";
-$a->strings["Permission denied"] = "";
-$a->strings["(Unknown)"] = "";
-$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["Sort Options"] = "";
-$a->strings["Alphabetic"] = "";
-$a->strings["Reverse Alphabetic"] = "";
-$a->strings["Newest to Oldest"] = "";
-$a->strings["Enable Safe Search"] = "";
-$a->strings["Disable Safe Search"] = "";
-$a->strings["Safe Mode"] = "";
-$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["Red Matrix Notification"] = "";
-$a->strings["redmatrix"] = "";
-$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["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["New Page"] = "";
-$a->strings["View"] = "";
-$a->strings["Actions"] = "";
-$a->strings["Page Link"] = "";
-$a->strings["Title"] = "";
-$a->strings["Created"] = "";
-$a->strings["Edited"] = "";
-$a->strings["Profile Photos"] = "";
-$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["Cannot locate DNS info for database server '%s'"] = "";
-$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["Other"] = "";
-$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["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["Visible to everybody"] = "";
-$a->strings["Show"] = "";
-$a->strings["Don't show"] = "";
-$a->strings["Permissions"] = "";
-$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 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["New window"] = "";
-$a->strings["Open the selected location in a different window or browser tab"] = "";
-$a->strings["Unknown | Not categorised"] = "";
-$a->strings["Block immediately"] = "";
-$a->strings["Shady, spammer, self-marketer"] = "";
-$a->strings["Known to me, but no opinion"] = "";
-$a->strings["OK, probably harmless"] = "";
-$a->strings["Reputable, has my trust"] = "";
-$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["Profile"] = "";
-$a->strings["Update"] = "";
-$a->strings["Install"] = "";
-$a->strings["Unknown"] = "";
-$a->strings["Logged out."] = "";
-$a->strings["Failed authentication"] = "";
-$a->strings["Login failed."] = "";
-$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(
- 0 => "",
- 1 => "",
-);
-$a->strings["View Connections"] = "";
-$a->strings["poke"] = "";
-$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["Select a page layout: "] = "";
-$a->strings["default"] = "";
-$a->strings["Page content type: "] = "";
-$a->strings["Select an alternate language"] = "";
-$a->strings["activity"] = "";
-$a->strings["Design"] = "";
-$a->strings["Blocks"] = "";
-$a->strings["Menus"] = "";
-$a->strings["Layouts"] = "";
-$a->strings["Pages"] = "";
-$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["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"] = "";
@@ -608,10 +488,11 @@ $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["Richtext Editor"] = "";
-$a->strings["Enable richtext editor"] = "";
+$a->strings["Use Markdown"] = "";
+$a->strings["Allow use of \"Markdown\" to format posts"] = "";
$a->strings["Post Preview"] = "";
$a->strings["Allow previewing posts and comments before publishing them"] = "";
+$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"] = "";
@@ -620,6 +501,7 @@ $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"] = "";
@@ -643,66 +525,27 @@ $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["Can view my \"public\" stream and posts"] = "";
-$a->strings["Can view my \"public\" channel profile"] = "";
-$a->strings["Can view my \"public\" photo albums"] = "";
-$a->strings["Can view my \"public\" address book"] = "";
-$a->strings["Can view my \"public\" file storage"] = "";
-$a->strings["Can view my \"public\" pages"] = "";
-$a->strings["Can send me their channel stream and posts"] = "";
-$a->strings["Can post on my channel page (\"wall\")"] = "";
-$a->strings["Can comment on my posts"] = "";
-$a->strings["Can send me private mail messages"] = "";
-$a->strings["Can post photos to my photo albums"] = "";
-$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 \"public\" file storage"] = "";
-$a->strings["Can edit my \"public\" pages"] = "";
-$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["Invalid data packet"] = "";
-$a->strings["Unable to verify channel signature"] = "";
-$a->strings["Unable to verify site signature for %s"] = "";
-$a->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["Exammple: name=fred and country=iceland"] = "";
-$a->strings["Advanced Find"] = "";
-$a->strings["%d connection in common"] = array(
- 0 => "",
- 1 => "",
-);
-$a->strings["Miscellaneous"] = "";
-$a->strings["year"] = "";
-$a->strings["month"] = "";
-$a->strings["day"] = "";
-$a->strings["never"] = "";
-$a->strings["less than a second ago"] = "";
-$a->strings["years"] = "";
-$a->strings["months"] = "";
-$a->strings["week"] = "";
-$a->strings["weeks"] = "";
-$a->strings["days"] = "";
-$a->strings["hour"] = "";
-$a->strings["hours"] = "";
-$a->strings["minute"] = "";
-$a->strings["minutes"] = "";
-$a->strings["second"] = "";
-$a->strings["seconds"] = "";
-$a->strings["%1\$d %2\$s ago"] = "";
+$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["Channel discovery failed."] = "";
+$a->strings["local account not found."] = "";
+$a->strings["Cannot connect to yourself."] = "";
+$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["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["Create a new collection"] = "";
+$a->strings["Channels not in any collection"] = "";
+$a->strings["add"] = "";
$a->strings["Unable to obtain identity information from database"] = "";
$a->strings["Empty name"] = "";
$a->strings["Name too long"] = "";
@@ -712,13 +555,14 @@ $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["Friends"] = "";
$a->strings["Requested channel is not available."] = "";
$a->strings["Requested profile is not available."] = "";
+$a->strings["Connect"] = "";
$a->strings["Change profile photo"] = "";
$a->strings["Profiles"] = "";
$a->strings["Manage/edit profiles"] = "";
$a->strings["Create New Profile"] = "";
-$a->strings["Edit Profile"] = "";
$a->strings["Profile Image"] = "";
$a->strings["visible to everybody"] = "";
$a->strings["Edit visibility"] = "";
@@ -734,7 +578,9 @@ $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:"] = "";
@@ -758,10 +604,103 @@ $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["view full size"] = "";
+$a->strings["Site Admin"] = "";
+$a->strings["Address Book"] = "";
+$a->strings["Mood"] = "";
+$a->strings["Probe"] = "";
+$a->strings["Suggest"] = "";
+$a->strings["Update"] = "";
+$a->strings["Install"] = "";
+$a->strings["Purchase"] = "";
+$a->strings["Image/photo"] = "";
+$a->strings["Encrypted content"] = "";
+$a->strings["QR code"] = "";
+$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "";
+$a->strings["post"] = "";
+$a->strings["$1 wrote:"] = "";
+$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["System"] = "";
+$a->strings["Create Personal App"] = "";
+$a->strings["Edit Personal App"] = "";
+$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["Remove term"] = "";
+$a->strings["Archives"] = "";
+$a->strings["Refresh"] = "";
+$a->strings["Me"] = "";
+$a->strings["Best Friends"] = "";
+$a->strings["Co-workers"] = "";
+$a->strings["Former Friends"] = "";
+$a->strings["Acquaintances"] = "";
+$a->strings["Everybody"] = "";
+$a->strings["Account settings"] = "";
+$a->strings["Channel settings"] = "";
+$a->strings["Additional features"] = "";
+$a->strings["Feature settings"] = "";
+$a->strings["Display settings"] = "";
+$a->strings["Connected apps"] = "";
+$a->strings["Export channel"] = "";
+$a->strings["Automatic Permissions (Advanced)"] = "";
+$a->strings["Premium Channel Settings"] = "";
+$a->strings["Check Mail"] = "";
+$a->strings["Chat Rooms"] = "";
+$a->strings["Bookmarked Chatrooms"] = "";
+$a->strings["Suggested Chatrooms"] = "";
+$a->strings["Save to Folder"] = "";
+$a->strings["View all"] = "";
+$a->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["Add Tag"] = "";
+$a->strings["I like this (toggle)"] = "";
+$a->strings["I don't like this (toggle)"] = "";
+$a->strings["Share This"] = "";
+$a->strings["share"] = "";
+$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["Save Bookmarks"] = "";
+$a->strings["Add to Calendar"] = "";
+$a->strings["__ctx:noun__ Likes"] = "";
+$a->strings["__ctx:noun__ Dislikes"] = "";
+$a->strings["%d comment"] = array(
+ 0 => "",
+ 1 => "",
+);
+$a->strings["[+] show all"] = "";
+$a->strings["This is you"] = "";
+$a->strings["Comment"] = "";
+$a->strings["Submit"] = "";
+$a->strings["Bold"] = "";
+$a->strings["Italic"] = "";
+$a->strings["Underline"] = "";
+$a->strings["Quote"] = "";
+$a->strings["Code"] = "";
+$a->strings["Image"] = "";
+$a->strings["Link"] = "";
+$a->strings["Video"] = "";
$a->strings["Delete this item?"] = "";
-$a->strings["show fewer"] = "";
-$a->strings["+ Show More"] = "";
-$a->strings["- Show Less"] = "";
+$a->strings["[-] show less"] = "";
+$a->strings["[+] expand"] = "";
+$a->strings["[-] collapse"] = "";
$a->strings["Password too short"] = "";
$a->strings["Passwords do not match"] = "";
$a->strings["everybody"] = "";
@@ -786,103 +725,104 @@ $a->strings["about a year"] = "";
$a->strings["%d years"] = "";
$a->strings[" "] = "";
$a->strings["timeago.numbers"] = "";
-$a->strings["Channel not found."] = "";
-$a->strings["Welcome to %s"] = "";
-$a->strings["Channel added."] = "";
-$a->strings["Public access denied."] = "";
-$a->strings["Age: "] = "";
-$a->strings["Gender: "] = "";
-$a->strings["Status: "] = "";
-$a->strings["Sexual Preference: "] = "";
-$a->strings["Homepage: "] = "";
-$a->strings["Hometown: "] = "";
-$a->strings["About: "] = "";
-$a->strings["Keywords: "] = "";
-$a->strings["Not found."] = "";
-$a->strings["network"] = "";
-$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["Yes"] = "";
-$a->strings["No"] = "";
-$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["Delete Layout"] = "";
-$a->strings["Hub not found."] = "";
-$a->strings["Fetching URL returns error: %1\$s"] = "";
-$a->strings["Tag removed"] = "";
-$a->strings["Remove Item Tag"] = "";
-$a->strings["Select a tag to remove: "] = "";
-$a->strings["Remove"] = "";
-$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["Channel Name"] = "";
-$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["Create"] = "";
-$a->strings["Public Sites"] = "";
-$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "";
-$a->strings["Site URL"] = "";
-$a->strings["Access Type"] = "";
-$a->strings["Registration Policy"] = "";
-$a->strings["Location"] = "";
-$a->strings["[Embedded content - reload page to view]"] = "";
-$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["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["Select a category of stuff. e.g. I ______ something"] = "";
-$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["Invalid request identifier."] = "";
-$a->strings["Discard"] = "";
-$a->strings["Ignore"] = "";
-$a->strings["No more system notifications."] = "";
-$a->strings["System Notifications"] = "";
-$a->strings["Invalid item."] = "";
-$a->strings["Page not found."] = "";
-$a->strings["Messages"] = "";
-$a->strings["Conversation removed."] = "";
-$a->strings["No messages."] = "";
-$a->strings["Delete message"] = "";
-$a->strings["D, d M Y - g:i A"] = "";
-$a->strings["Edit post"] = "";
-$a->strings["Finding:"] = "";
-$a->strings["next page"] = "";
-$a->strings["previous page"] = "";
-$a->strings["No entries (some entries may be hidden)."] = "";
+$a->strings["New window"] = "";
+$a->strings["Open the selected location in a different window or browser tab"] = "";
+$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["Other"] = "";
+$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["Logged out."] = "";
+$a->strings["Failed authentication"] = "";
+$a->strings["Login failed."] = "";
+$a->strings["Permission denied"] = "";
+$a->strings["(Unknown)"] = "";
+$a->strings["Item not found."] = "";
+$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 \"public\" stream and posts"] = "";
+$a->strings["Can view my \"public\" channel profile"] = "";
+$a->strings["Can view my \"public\" photo albums"] = "";
+$a->strings["Can view my \"public\" address book"] = "";
+$a->strings["Can view my \"public\" file storage"] = "";
+$a->strings["Can view my \"public\" pages"] = "";
+$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["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 \"public\" file storage"] = "";
+$a->strings["Can edit my \"public\" pages"] = "";
+$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["Set your current mood and tell your friends"] = "";
$a->strings["Menu not found."] = "";
$a->strings["Menu element updated."] = "";
$a->strings["Unable to update menu element."] = "";
$a->strings["Menu element added."] = "";
$a->strings["Unable to add menu element."] = "";
+$a->strings["Not found."] = "";
$a->strings["Manage Menu Elements"] = "";
$a->strings["Edit menu"] = "";
$a->strings["Edit element"] = "";
@@ -906,198 +846,10 @@ $a->strings["Menu item deleted."] = "";
$a->strings["Menu item could not be deleted."] = "";
$a->strings["Edit Menu Element"] = "";
$a->strings["Modify"] = "";
-$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["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["You have reached your limit of %1$.0f top level posts."] = "";
-$a->strings["You have reached your limit of %1$.0f webpages."] = "";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
-$a->strings["No such group"] = "";
-$a->strings["Search Results For:"] = "";
-$a->strings["Collection is empty"] = "";
-$a->strings["Collection: "] = "";
-$a->strings["Connection: "] = "";
-$a->strings["Invalid connection."] = "";
-$a->strings["Version %s"] = "";
-$a->strings["Installed plugins/addons/apps:"] = "";
-$a->strings["No installed plugins/addons/apps"] = "";
-$a->strings["Red"] = "";
-$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "";
-$a->strings["Running at web location"] = "";
-$a->strings["Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more about the Red Matrix."] = "";
-$a->strings["Bug reports and issues: please visit"] = "";
-$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "";
-$a->strings["Site Administrators"] = "";
-$a->strings["Bookmark added"] = "";
-$a->strings["My Bookmarks"] = "";
-$a->strings["My Connections Bookmarks"] = "";
-$a->strings["You must be logged in to see this page."] = "";
-$a->strings["Insufficient permissions. Request redirected to profile page."] = "";
-$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["Unable to find your hub."] = "";
-$a->strings["Post successful."] = "";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
-$a->strings["toggle full screen mode"] = "";
-$a->strings["invalid target signature"] = "";
-$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["Source not found."] = "";
-$a->strings["Edit Source"] = "";
-$a->strings["Delete Source"] = "";
-$a->strings["Source removed"] = "";
-$a->strings["Unable to remove source."] = "";
-$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["All Connections"] = "";
-$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["Upload"] = "";
-$a->strings["or"] = "";
-$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["Block Name"] = "";
-$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "";
-$a->strings["Welcome %s. Remote authentication successful."] = "";
-$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["Download"] = "";
-$a->strings["Used: "] = "";
-$a->strings["[directory]"] = "";
-$a->strings["Limit: "] = "";
-$a->strings["Remote privacy information not available."] = "";
-$a->strings["Visible to:"] = "";
-$a->strings["Contact not found."] = "";
-$a->strings["Friend suggestion sent."] = "";
-$a->strings["Suggest Friends"] = "";
-$a->strings["Suggest a friend for %s"] = "";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
-$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["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["Unblock"] = "";
-$a->strings["Block"] = "";
-$a->strings["Block or Unblock this connection"] = "";
-$a->strings["Unignore"] = "";
-$a->strings["Ignore or Unignore this connection"] = "";
-$a->strings["Unarchive"] = "";
-$a->strings["Archive"] = "";
-$a->strings["Archive or Unarchive this connection"] = "";
-$a->strings["Unhide"] = "";
-$a->strings["Hide"] = "";
-$a->strings["Hide or Unhide this connection"] = "";
-$a->strings["Delete this connection"] = "";
-$a->strings["Approve this connection"] = "";
-$a->strings["Accept connection to allow communication"] = "";
-$a->strings["Automatic Permissions Settings"] = "";
-$a->strings["Connections: settings for %s"] = "";
-$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "";
-$a->strings["Slide to adjust your degree of friendship"] = "";
-$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["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["Hide this contact from others"] = "";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
-$a->strings["This site is not a directory server"] = "";
-$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["Item not available."] = "";
-$a->strings["Item is not editable"] = "";
-$a->strings["Delete item?"] = "";
+$a->strings["sent you a private message"] = "";
+$a->strings["added your channel"] = "";
+$a->strings["posted an event"] = "";
+$a->strings["network"] = "";
$a->strings["Name is required"] = "";
$a->strings["Key and Secret are required"] = "";
$a->strings["Passwords do not match. Password unchanged."] = "";
@@ -1109,7 +861,6 @@ $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["Add application"] = "";
-$a->strings["Name"] = "";
$a->strings["Name of application"] = "";
$a->strings["Consumer Key"] = "";
$a->strings["Automatically generated - change if desired. Max length 20"] = "";
@@ -1138,6 +889,7 @@ $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["Display Settings"] = "";
$a->strings["Display Theme:"] = "";
$a->strings["Mobile Theme:"] = "";
@@ -1146,18 +898,20 @@ $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["Don't show emoticons"] = "";
-$a->strings["Do not view remote profiles in frames"] = "";
-$a->strings["By default open in a sub-window of your own site"] = "";
$a->strings["System Page Layout Editor - (advanced)"] = "";
$a->strings["Nobody except yourself"] = "";
$a->strings["Only those you specifically allow"] = "";
-$a->strings["Anybody in your address book"] = "";
+$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["No"] = "";
+$a->strings["Yes"] = "";
$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"] = "";
@@ -1204,6 +958,309 @@ $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 this channel"] = "";
+$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["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["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "";
+$a->strings["Welcome %s. Remote authentication successful."] = "";
+$a->strings["Item not available."] = "";
+$a->strings["Fetching URL returns error: %1\$s"] = "";
+$a->strings["Invalid item."] = "";
+$a->strings["Channel not found."] = "";
+$a->strings["Page not found."] = "";
+$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["Block Name"] = "";
+$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["Location"] = "";
+$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 (%s):"] = "";
+$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 <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "";
+$a->strings["Age: "] = "";
+$a->strings["Edit/Manage Profiles"] = "";
+$a->strings["Add profile things"] = "";
+$a->strings["Include desirable objects in your profile"] = "";
+$a->strings["Bookmark added"] = "";
+$a->strings["My Bookmarks"] = "";
+$a->strings["My Connections Bookmarks"] = "";
+$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["All Connections"] = "";
+$a->strings["Public Sites"] = "";
+$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "";
+$a->strings["Site URL"] = "";
+$a->strings["Access Type"] = "";
+$a->strings["Registration Policy"] = "";
+$a->strings["You must be logged in to see this page."] = "";
+$a->strings["Insufficient permissions. Request redirected to profile page."] = "";
+$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["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["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["Registration"] = "";
+$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["Away"] = "";
+$a->strings["Online"] = "";
+$a->strings["Please login."] = "";
+$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "";
+$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "";
+$a->strings["Remove This Channel"] = "";
+$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "";
+$a->strings["Please enter your password for verification:"] = "";
+$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["Remove Channel"] = "";
+$a->strings["No channel."] = "";
+$a->strings["Common connections"] = "";
+$a->strings["No connections in common."] = "";
+$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["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["No such group"] = "";
+$a->strings["Search Results For:"] = "";
+$a->strings["Collection is empty"] = "";
+$a->strings["Collection: "] = "";
+$a->strings["Connection: "] = "";
+$a->strings["Invalid connection."] = "";
+$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["All"] = "";
+$a->strings["Suggest new connections"] = "";
+$a->strings["New Connections"] = "";
+$a->strings["Show pending (new) 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 contact"] = "";
+$a->strings["Search your connections"] = "";
+$a->strings["Finding: "] = "";
+$a->strings["Edit post"] = "";
+$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["Unblock"] = "";
+$a->strings["Block"] = "";
+$a->strings["Block or Unblock this connection"] = "";
+$a->strings["Unignore"] = "";
+$a->strings["Ignore"] = "";
+$a->strings["Ignore or Unignore this connection"] = "";
+$a->strings["Unarchive"] = "";
+$a->strings["Archive"] = "";
+$a->strings["Archive or Unarchive this connection"] = "";
+$a->strings["Unhide"] = "";
+$a->strings["Hide"] = "";
+$a->strings["Hide or Unhide this connection"] = "";
+$a->strings["Delete this connection"] = "";
+$a->strings["Approve this connection"] = "";
+$a->strings["Accept connection to allow communication"] = "";
+$a->strings["Automatic Permissions Settings"] = "";
+$a->strings["Connections: settings for %s"] = "";
+$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "";
+$a->strings["Slide to adjust your degree of friendship"] = "";
+$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["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["Hide this contact from others"] = "";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
+$a->strings["No potential page delegates located."] = "";
+$a->strings["Delegate Page Management"] = "";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "";
+$a->strings["Existing Page Managers"] = "";
+$a->strings["Existing Page Delegates"] = "";
+$a->strings["Potential Delegates"] = "";
+$a->strings["Remove"] = "";
+$a->strings["Add"] = "";
+$a->strings["No entries."] = "";
+$a->strings["Public access denied."] = "";
+$a->strings["Gender: "] = "";
+$a->strings["Finding:"] = "";
+$a->strings["next page"] = "";
+$a->strings["previous page"] = "";
+$a->strings["No entries (some entries may be hidden)."] = "";
+$a->strings["Status: "] = "";
+$a->strings["Sexual Preference: "] = "";
+$a->strings["Homepage: "] = "";
+$a->strings["Hometown: "] = "";
+$a->strings["About: "] = "";
+$a->strings["Keywords: "] = "";
+$a->strings["This site is not a directory server"] = "";
+$a->strings["Red Matrix - &quot;The Network&quot;"] = "";
+$a->strings["Welcome to %s"] = "";
$a->strings["Red Matrix Server - Setup"] = "";
$a->strings["Could not connect to database."] = "";
$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "";
@@ -1264,16 +1321,16 @@ $a->strings["At the end of this procedure, we will give you a text to save in a
$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 view/tpl/smarty3/ under the Red top level folder."] = "";
+$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 view/tpl/smarty3/ only--not the template files (.tpl) that it contains."] = "";
-$a->strings["view/tpl/smarty3 is writable"] = "";
+$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 recognised, 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["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"] = "";
@@ -1283,22 +1340,36 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ
$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["Event title and start time are required."] = "";
-$a->strings["l, F j"] = "";
-$a->strings["Edit event"] = "";
-$a->strings["Create New Event"] = "";
-$a->strings["Previous"] = "";
-$a->strings["hour:minute"] = "";
-$a->strings["Event details"] = "";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "";
-$a->strings["Event Starts:"] = "";
-$a->strings["Required"] = "";
-$a->strings["Finish date/time is not known or not relevant"] = "";
-$a->strings["Event Finishes:"] = "";
-$a->strings["Adjust for viewer timezone"] = "";
-$a->strings["Description:"] = "";
-$a->strings["Title:"] = "";
-$a->strings["Share this event"] = "";
+$a->strings["Item not found"] = "";
+$a->strings["Edit Block"] = "";
+$a->strings["Delete block?"] = "";
+$a->strings["Insert YouTube video"] = "";
+$a->strings["Insert Vorbis [.ogg] video"] = "";
+$a->strings["Insert Vorbis [.ogg] audio"] = "";
+$a->strings["Delete Block"] = "";
+$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["Edit Layout"] = "";
+$a->strings["Delete layout?"] = "";
+$a->strings["Delete Layout"] = "";
+$a->strings["Item is not editable"] = "";
+$a->strings["Delete item?"] = "";
+$a->strings["Edit Webpage"] = "";
+$a->strings["Delete webpage?"] = "";
+$a->strings["Delete Webpage"] = "";
+$a->strings["Version %s"] = "";
+$a->strings["Installed plugins/addons/apps:"] = "";
+$a->strings["No installed plugins/addons/apps"] = "";
+$a->strings["Red"] = "";
+$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "";
+$a->strings["Running at web location"] = "";
+$a->strings["Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more about the Red Matrix."] = "";
+$a->strings["Bug reports and issues: please visit"] = "";
+$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "";
+$a->strings["Site Administrators"] = "";
$a->strings["Page owner information could not be retrieved."] = "";
$a->strings["Album not found."] = "";
$a->strings["Delete Album"] = "";
@@ -1330,224 +1401,72 @@ $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #cam
$a->strings["In This Photo:"] = "";
$a->strings["View Album"] = "";
$a->strings["Recent Photos"] = "";
+$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["- select -"] = "";
+$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["Create New Event"] = "";
+$a->strings["Previous"] = "";
+$a->strings["hour:minute"] = "";
+$a->strings["Event details"] = "";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "";
+$a->strings["Event Starts:"] = "";
+$a->strings["Required"] = "";
+$a->strings["Finish date/time is not known or not relevant"] = "";
+$a->strings["Event Finishes:"] = "";
+$a->strings["Adjust for viewer timezone"] = "";
+$a->strings["Description:"] = "";
+$a->strings["Title:"] = "";
+$a->strings["Share this event"] = "";
+$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["Channel added."] = "";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
+$a->strings["Contact not found."] = "";
+$a->strings["Friend suggestion sent."] = "";
+$a->strings["Suggest Friends"] = "";
+$a->strings["Suggest a friend for %s"] = "";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
+$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["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
$a->strings["Help:"] = "";
$a->strings["Not Found"] = "";
-$a->strings["sent you a private message"] = "";
-$a->strings["added your channel"] = "";
-$a->strings["posted an event"] = "";
-$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["Remove This Channel"] = "";
-$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "";
-$a->strings["Please enter your password for verification:"] = "";
-$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["Remove Channel"] = "";
-$a->strings["No potential page delegates located."] = "";
-$a->strings["Delegate Page Management"] = "";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "";
-$a->strings["Existing Page Managers"] = "";
-$a->strings["Existing Page Delegates"] = "";
-$a->strings["Potential Delegates"] = "";
-$a->strings["Add"] = "";
-$a->strings["No entries."] = "";
-$a->strings["Help with this feature"] = "";
-$a->strings["Layout Name"] = "";
-$a->strings["Blocked"] = "";
-$a->strings["Ignored"] = "";
-$a->strings["Hidden"] = "";
-$a->strings["Archived"] = "";
-$a->strings["All"] = "";
-$a->strings["Unconnected"] = "";
-$a->strings["Suggest new connections"] = "";
-$a->strings["New Connections"] = "";
-$a->strings["Show pending (new) 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["Only show one-way connections"] = "";
-$a->strings["%1\$s [%2\$s]"] = "";
-$a->strings["Edit contact"] = "";
-$a->strings["Search your connections"] = "";
-$a->strings["Finding: "] = "";
-$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["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["Mood"] = "";
-$a->strings["Set your current mood and tell your friends"] = "";
-$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["Edit Block"] = "";
-$a->strings["Delete block?"] = "";
-$a->strings["Delete Block"] = "";
-$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["Edit Webpage"] = "";
-$a->strings["Delete webpage?"] = "";
-$a->strings["Delete Webpage"] = "";
-$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 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["Profile Name:"] = "";
-$a->strings["Your Full Name:"] = "";
-$a->strings["Title/Description:"] = "";
-$a->strings["Your Gender:"] = "";
-$a->strings["Birthday (%s):"] = "";
-$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 <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "";
-$a->strings["Edit/Manage Profiles"] = "";
-$a->strings["Add profile things"] = "";
-$a->strings["Include desirable objects in your profile"] = "";
-$a->strings["Menu updated."] = "";
-$a->strings["Unable to update menu."] = "";
-$a->strings["Menu created."] = "";
-$a->strings["Unable to create menu."] = "";
-$a->strings["Manage Menus"] = "";
-$a->strings["Drop"] = "";
-$a->strings["Create a new menu"] = "";
-$a->strings["Delete this menu"] = "";
-$a->strings["Edit menu contents"] = "";
-$a->strings["Edit this menu"] = "";
-$a->strings["New 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["Menu may be used to store saved bookmarks"] = "";
-$a->strings["Menu deleted."] = "";
-$a->strings["Menu could not be deleted."] = "";
-$a->strings["Edit Menu"] = "";
-$a->strings["Add or remove entries to this menu"] = "";
-$a->strings["OpenID protocol error. No ID returned."] = "";
-$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "";
-$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["Your message:"] = "";
-$a->strings["Message not found."] = "";
-$a->strings["Recall message"] = "";
-$a->strings["Message has been recalled."] = "";
-$a->strings["Private Conversation"] = "";
-$a->strings["Delete 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["App installed."] = "";
-$a->strings["Malformed app."] = "";
-$a->strings["Embed code"] = "";
-$a->strings["Create App"] = "";
-$a->strings["Name of app"] = "";
-$a->strings["Location (URL) of app"] = "";
-$a->strings["Description"] = "";
-$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["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["No connections."] = "";
-$a->strings["Visit %s's profile [%s]"] = "";
-$a->strings["View Connnections"] = "";
+$a->strings["Tag removed"] = "";
+$a->strings["Remove Item Tag"] = "";
+$a->strings["Select a tag to remove: "] = "";
$a->strings["Theme settings updated."] = "";
$a->strings["Site"] = "";
$a->strings["Accounts"] = "";
@@ -1573,7 +1492,6 @@ $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"] = "";
@@ -1692,31 +1610,37 @@ $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["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["- select -"] = "";
-$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "";
-$a->strings["Create a new channel"] = "";
-$a->strings["Channel Manager"] = "";
-$a->strings["Current Channel"] = "";
-$a->strings["Attach to one of your channels by selecting it."] = "";
-$a->strings["Default Channel"] = "";
-$a->strings["Make Default"] = "";
+$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["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["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["Total invitation limit exceeded."] = "";
$a->strings["%s : Not a valid email address."] = "";
$a->strings["Please join us on Red"] = "";
@@ -1729,54 +1653,197 @@ $a->strings["%d message sent."] = array(
$a->strings["You have no more invitations available"] = "";
$a->strings["Send invitations"] = "";
$a->strings["Enter email addresses, one per line:"] = "";
-$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "";
+$a->strings["Your message:"] = "";
+$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralized communication and information tool."] = "";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "";
$a->strings["Please visit my channel at"] = "";
$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "";
$a->strings["Click the [Register] link on the following page to join."] = "";
$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "";
+$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["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["Help with this feature"] = "";
+$a->strings["Layout Name"] = "";
+$a->strings["Like/Dislike"] = "";
+$a->strings["This action is restricted to members."] = "";
+$a->strings["Please <a href=\"rmagic\">login with your RedMatrix ID</a> or <a href=\"register\">register as a new RedMatrix member</a> to continue."] = "";
+$a->strings["Invalid request."] = "";
+$a->strings["thing"] = "";
+$a->strings["Channel unavailable."] = "";
+$a->strings["Previous action reversed."] = "";
+$a->strings["Action completed."] = "";
+$a->strings["Thank you."] = "";
+$a->strings["Remote privacy information not available."] = "";
+$a->strings["Visible to:"] = "";
+$a->strings["No connections."] = "";
+$a->strings["Visit %s's profile [%s]"] = "";
+$a->strings["View Connnections"] = "";
+$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["Hub not found."] = "";
+$a->strings["Total votes"] = "";
+$a->strings["Average Rating"] = "";
+$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["Messages"] = "";
+$a->strings["Message deleted."] = "";
+$a->strings["Message recalled."] = "";
+$a->strings["Send Private Message"] = "";
+$a->strings["To:"] = "";
+$a->strings["Subject:"] = "";
+$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["Delete 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["You have created %1$.0f of %2$.0f allowed channels."] = "";
+$a->strings["Create a new channel"] = "";
+$a->strings["Channel Manager"] = "";
+$a->strings["Current Channel"] = "";
+$a->strings["Attach to one of your channels by selecting it."] = "";
+$a->strings["Default Channel"] = "";
+$a->strings["Make Default"] = "";
$a->strings["Wall Photos"] = "";
-$a->strings["No channel."] = "";
-$a->strings["Common connections"] = "";
-$a->strings["No connections in common."] = "";
-$a->strings["Please login."] = "";
-$a->strings["Select a bookmark folder"] = "";
-$a->strings["Save Bookmark"] = "";
-$a->strings["URL of bookmark"] = "";
-$a->strings["Or enter new bookmark folder name"] = "";
-$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 Red Matrix"] = "";
-$a->strings["Password"] = "";
-$a->strings["Remember me"] = "";
-$a->strings["Forgot your password?"] = "";
-$a->strings["permission denied"] = "";
-$a->strings["Got Zot?"] = "";
-$a->strings["toggle mobile"] = "";
+$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["Menu updated."] = "";
+$a->strings["Unable to update menu."] = "";
+$a->strings["Menu created."] = "";
+$a->strings["Unable to create menu."] = "";
+$a->strings["Manage Menus"] = "";
+$a->strings["Drop"] = "";
+$a->strings["Create a new menu"] = "";
+$a->strings["Delete this menu"] = "";
+$a->strings["Edit menu contents"] = "";
+$a->strings["Edit this menu"] = "";
+$a->strings["New 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["Menu may be used to store saved bookmarks"] = "";
+$a->strings["Menu deleted."] = "";
+$a->strings["Menu could not be deleted."] = "";
+$a->strings["Edit Menu"] = "";
+$a->strings["Add or remove entries to this menu"] = "";
+$a->strings["Conversation removed."] = "";
+$a->strings["No messages."] = "";
+$a->strings["D, d M Y - g:i A"] = "";
+$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["Invalid request identifier."] = "";
+$a->strings["Discard"] = "";
+$a->strings["No more system notifications."] = "";
+$a->strings["System Notifications"] = "";
+$a->strings["Unable to find your hub."] = "";
+$a->strings["Post successful."] = "";
+$a->strings["invalid target signature"] = "";
+$a->strings["OpenID protocol error. No ID returned."] = "";
+$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["Poll"] = "";
+$a->strings["View Results"] = "";
+$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["None"] = "";
+$a->strings["Header image"] = "";
+$a->strings["Header image only on profile pages"] = "";
+$a->strings["Light (Red Matrix default)"] = "";
$a->strings["Narrow navbar"] = "";
-$a->strings["Navigation bar background colour"] = "";
-$a->strings["Navigation bar gradient top colour"] = "";
-$a->strings["Navigation bar gradient bottom colour"] = "";
-$a->strings["Navigation active button gradient top colour"] = "";
-$a->strings["Navigation active button gradient bottom colour"] = "";
-$a->strings["Navigation bar border colour "] = "";
-$a->strings["Navigation bar icon colour "] = "";
-$a->strings["Navigation bar active icon colour "] = "";
-$a->strings["link colour"] = "";
-$a->strings["Set font-colour for banner"] = "";
-$a->strings["Set the background colour"] = "";
+$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 colour of items"] = "";
-$a->strings["Set the background colour of comments"] = "";
-$a->strings["Set the border colour of comments"] = "";
+$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 colour for item icons"] = "";
-$a->strings["Set the hover colour for item icons"] = "";
+$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["Set font-size for posts and comments"] = "";
-$a->strings["Set font-colour for posts and comments"] = "";
+$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 conversation regions"] = "";
@@ -1786,3 +1853,12 @@ $a->strings["Set size of conversation author photo"] = "";
$a->strings["Set size of followup author photos"] = "";
$a->strings["Sloppy photo albums"] = "";
$a->strings["Are you a clean desk or a messy desk person?"] = "";
+$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 Red Matrix"] = "";
+$a->strings["Password"] = "";
+$a->strings["Remember me"] = "";
+$a->strings["Forgot your password?"] = "";
+$a->strings["permission denied"] = "";
+$a->strings["Got Zot?"] = "";
+$a->strings["toggle mobile"] = "";
diff --git a/util/wp/post_to_red/post_to_red.php b/util/wp/post_to_red/post_to_red.php
index 5146b8be1..ea6026ae2 100644
--- a/util/wp/post_to_red/post_to_red.php
+++ b/util/wp/post_to_red/post_to_red.php
@@ -418,72 +418,76 @@ function post_to_red_get_avatar($avatar,$id_or_email,$size,$default,$alt) {
// from:
// http://www.docgate.com/tutorial/php/how-to-convert-html-to-bbcode-with-php-script.html
-function xpost_to_html2bbcode($text) {
- $htmltags = array(
- '/\<b\>(.*?)\<\/b\>/is',
- '/\<i\>(.*?)\<\/i\>/is',
- '/\<u\>(.*?)\<\/u\>/is',
- '/\<ul.*?\>(.*?)\<\/ul\>/is',
- '/\<li\>(.*?)\<\/li\>/is',
- '/\<img(.*?) src=\"(.*?)\" alt=\"(.*?)\" title=\"Smile(y?)\" \/\>/is', // some smiley
- '/\<img(.*?) src=\"http:\/\/(.*?)\" (.*?)\>/is',
- '/\<img(.*?) src=\"(.*?)\" alt=\":(.*?)\" .*? \/\>/is', // some smiley
- '/\<div class=\"quotecontent\"\>(.*?)\<\/div\>/is',
- '/\<div class=\"codecontent\"\>(.*?)\<\/div\>/is',
- '/\<div class=\"quotetitle\"\>(.*?)\<\/div\>/is',
- '/\<div class=\"codetitle\"\>(.*?)\<\/div\>/is',
- '/\<cite.*?\>(.*?)\<\/cite\>/is',
- '/\<blockquote.*?\>(.*?)\<\/blockquote\>/is',
- '/\<div\>(.*?)\<\/div\>/is',
- '/\<code\>(.*?)\<\/code\>/is',
- '/\<br(.*?)\>/is',
- '/\<strong\>(.*?)\<\/strong\>/is',
- '/\<em\>(.*?)\<\/em\>/is',
- '/\<a href=\"mailto:(.*?)\"(.*?)\>(.*?)\<\/a\>/is',
- '/\<a .*?href=\"(.*?)\"(.*?)\>http:\/\/(.*?)\<\/a\>/is',
- '/\<a .*?href=\"(.*?)\"(.*?)\>(.*?)\<\/a\>/is'
- );
-
- $bbtags = array(
- '[b]$1[/b]',
- '[i]$1[/i]',
- '[u]$1[/u]',
- '[list]$1[/list]',
- '[*]$1',
- '$3',
- '[img]http://$2[/img]' . "\n",
- ':$3',
- '[quote]$1[/quote]',
- '[code]$1[/code]',
- '',
- '',
- '',
- '[quote]$1[/quote]',
- '$1',
- '[code]$1[/code]',
- "\n",
- '[b]$1[/b]',
- '[i]$1[/i]',
- '[email=$1]$3[/email]',
- '[url]$1[/url]',
- '[url=$1]$3[/url]'
- );
-
- $text = str_replace ("\n", ' ', $text);
- $ntext = preg_replace ($htmltags, $bbtags, $text);
- $ntext = preg_replace ($htmltags, $bbtags, $ntext);
-
- // for too large text and cannot handle by str_replace
- if (!$ntext) {
- $ntext = str_replace(array('<br>', '<br />'), "\n", $text);
- $ntext = str_replace(array('<strong>', '</strong>'), array('[b]', '[/b]'), $ntext);
- $ntext = str_replace(array('<em>', '</em>'), array('[i]', '[/i]'), $ntext);
- }
- $ntext = strip_tags($ntext);
+//function exists also in post to friendica plugin; load only if not yet loaded by that plugin
+if(!function_exists('xpost_to_html2bbcode')) {
+ function xpost_to_html2bbcode($text) {
+ $htmltags = array(
+ '/\<b\>(.*?)\<\/b\>/is',
+ '/\<i\>(.*?)\<\/i\>/is',
+ '/\<u\>(.*?)\<\/u\>/is',
+ '/\<ul.*?\>(.*?)\<\/ul\>/is',
+ '/\<li\>(.*?)\<\/li\>/is',
+ '/\<img(.*?) src=\"(.*?)\" alt=\"(.*?)\" title=\"Smile(y?)\" \/\>/is', // some smiley
+ '/\<img(.*?) src=\"http:\/\/(.*?)\" (.*?)\>/is',
+ '/\<img(.*?) src=\"(.*?)\" alt=\":(.*?)\" .*? \/\>/is', // some smiley
+ '/\<div class=\"quotecontent\"\>(.*?)\<\/div\>/is',
+ '/\<div class=\"codecontent\"\>(.*?)\<\/div\>/is',
+ '/\<div class=\"quotetitle\"\>(.*?)\<\/div\>/is',
+ '/\<div class=\"codetitle\"\>(.*?)\<\/div\>/is',
+ '/\<cite.*?\>(.*?)\<\/cite\>/is',
+ '/\<blockquote.*?\>(.*?)\<\/blockquote\>/is',
+ '/\<div\>(.*?)\<\/div\>/is',
+ '/\<code\>(.*?)\<\/code\>/is',
+ '/\<br(.*?)\>/is',
+ '/\<strong\>(.*?)\<\/strong\>/is',
+ '/\<em\>(.*?)\<\/em\>/is',
+ '/\<a href=\"mailto:(.*?)\"(.*?)\>(.*?)\<\/a\>/is',
+ '/\<a .*?href=\"(.*?)\"(.*?)\>http:\/\/(.*?)\<\/a\>/is',
+ '/\<a .*?href=\"(.*?)\"(.*?)\>(.*?)\<\/a\>/is'
+ );
+
+ $bbtags = array(
+ '[b]$1[/b]',
+ '[i]$1[/i]',
+ '[u]$1[/u]',
+ '[list]$1[/list]',
+ '[*]$1',
+ '$3',
+ '[img]http://$2[/img]' . "\n",
+ ':$3',
+ '[quote]$1[/quote]',
+ '[code]$1[/code]',
+ '',
+ '',
+ '',
+ '[quote]$1[/quote]',
+ '$1',
+ '[code]$1[/code]',
+ "\n",
+ '[b]$1[/b]',
+ '[i]$1[/i]',
+ '[email=$1]$3[/email]',
+ '[url]$1[/url]',
+ '[url=$1]$3[/url]'
+ );
+
+ $text = str_replace ("\n", ' ', $text);
+ $ntext = preg_replace ($htmltags, $bbtags, $text);
+ $ntext = preg_replace ($htmltags, $bbtags, $ntext);
- $ntext = trim(html_entity_decode($ntext,ENT_QUOTES,'UTF-8'));
- return $ntext;
+ // for too large text and cannot handle by str_replace
+ if (!$ntext) {
+ $ntext = str_replace(array('<br>', '<br />'), "\n", $text);
+ $ntext = str_replace(array('<strong>', '</strong>'), array('[b]', '[/b]'), $ntext);
+ $ntext = str_replace(array('<em>', '</em>'), array('[i]', '[/i]'), $ntext);
+ }
+
+ $ntext = strip_tags($ntext);
+
+ $ntext = trim(html_entity_decode($ntext,ENT_QUOTES,'UTF-8'));
+ return $ntext;
+ }
}