aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandre Hannud Abdo <abdo@member.fsf.org>2014-05-21 05:32:46 -0300
committerAlexandre Hannud Abdo <abdo@member.fsf.org>2014-05-21 05:39:35 -0300
commitd15e3776f3ec5476b1614f0488e8e81e0f0ebb70 (patch)
treef49739dff5fdb2b64f4d48d6031487c64f9f865b
parentac8400ac0c0e6163b0a83283f78913a85b3c26e0 (diff)
downloadvolse-hubzilla-d15e3776f3ec5476b1614f0488e8e81e0f0ebb70.tar.gz
volse-hubzilla-d15e3776f3ec5476b1614f0488e8e81e0f0ebb70.tar.bz2
volse-hubzilla-d15e3776f3ec5476b1614f0488e8e81e0f0ebb70.zip
Allow translation context with plural. Use that in Likes/Dislikes.
-rw-r--r--include/ItemObject.php8
-rw-r--r--include/language.php7
-rw-r--r--util/messages.po6876
-rwxr-xr-xutil/run_xgettext.sh2
-rw-r--r--util/strings.php2311
5 files changed, 4699 insertions, 4505 deletions
diff --git a/include/ItemObject.php b/include/ItemObject.php
index cdb09ecf1..19283c317 100644
--- a/include/ItemObject.php
+++ b/include/ItemObject.php
@@ -131,12 +131,12 @@ class Item extends BaseObject {
} else {
$like_list_part = '';
}
- $like_button_label = ((x($alike,$item['mid'])) && ($alike[$item['mid']] < 2 ) ? t('Like') : t('Likes'));
+ $like_button_label = tt('Like','Likes',$like_count,'noun');
if (feature_enabled($conv->get_profile_owner(),'dislike')) {
$dislike_count = ((x($dlike,$item['mid'])) ? $dlike[$item['mid']] : '');
$dislike_list = ((x($dlike,$item['mid'])) ? $dlike[$item['mid'] . '-l'] : '');
- $dislike_button_label = ((x($dlike,$item['mid'])) && ($dlike[$item['mid']] < 2) ? t('Dislike') : t('Dislikes'));
+ $dislike_button_label = tt('Dislike','Dislikes',$dislike_count,'noun');
if (count($dislike_list) > MAX_LIKERS) {
$dislike_list_part = array_slice($dislike_list, 0, MAX_LIKERS);
array_push($dislike_list_part, '<a href="#" data-toggle="modal" data-target="#dislikeModal-' . $this->get_id() . '"><b>' . t('View all') . '</b></a>');
@@ -276,8 +276,8 @@ class Item extends BaseObject {
'like_list' => $like_list,
'like_list_part' => $like_list_part,
'like_button_label' => $like_button_label,
- 'like_modal_title' => t('Likes'),
- 'dislike_modal_title' => t('Dislikes'),
+ 'like_modal_title' => t('Likes','noun'),
+ 'dislike_modal_title' => t('Dislikes','noun'),
'dislike_count' => ((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_count : ''),
'dislike_list' => ((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_list : ''),
'dislike_list_part' => ((feature_enabled($conv->get_profile_owner(),'dislike')) ? $dislike_list_part : ''),
diff --git a/include/language.php b/include/language.php
index ba14c33be..780dfadba 100644
--- a/include/language.php
+++ b/include/language.php
@@ -162,11 +162,12 @@ function t($s,$ctx = '') {
}
-function tt($singular, $plural, $count){
+function tt($singular, $plural, $count, $ctx = ''){
$a = get_app();
- if(x($a->strings,$singular)) {
- $t = $a->strings[$singular];
+ $cs = $ctx?"__ctx:".$ctx."__ ".$singular:$singular;
+ if(x($a->strings,$cs)) {
+ $t = $a->strings[$cs];
$f = 'string_plural_select_' . str_replace('-', '_', $a->language);
if(! function_exists($f))
$f = 'string_plural_select_default';
diff --git a/util/messages.po b/util/messages.po
index 3b5fd6dc2..fd710f9fa 100644
--- a/util/messages.po
+++ b/util/messages.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 2014-05-20.681\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-05-20 20:21-0700\n"
+"POT-Creation-Date: 2014-05-21 05:30-0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,1306 +17,610 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../include/dba/dba_driver.php:50
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr ""
-
-#: ../../include/photo/photo_driver.php:643 ../../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:655 ../../mod/photos.php:677
-msgid "Profile Photos"
+#: ../../include/follow.php:23
+msgid "Channel is blocked on this site."
msgstr ""
-#: ../../include/apps.php:107 ../../include/nav.php:158
-msgid "Matrix"
+#: ../../include/follow.php:28
+msgid "Channel location missing."
msgstr ""
-#: ../../include/apps.php:108 ../../include/nav.php:161
-msgid "Channel Home"
+#: ../../include/follow.php:54
+msgid "Response from remote channel was incomplete."
msgstr ""
-#: ../../include/apps.php:109 ../../include/identity.php:942
-#: ../../include/identity.php:1031 ../../mod/profperm.php:112
-msgid "Profile"
+#: ../../include/follow.php:85
+msgid "Channel was deleted and no longer exists."
msgstr ""
-#: ../../include/apps.php:110 ../../include/conversation.php:1501
-#: ../../include/nav.php:84 ../../mod/fbrowser.php:25
-msgid "Photos"
+#: ../../include/follow.php:132
+msgid "Channel discovery failed."
msgstr ""
-#: ../../include/apps.php:111 ../../include/conversation.php:1532
-#: ../../include/nav.php:87 ../../include/nav.php:180 ../../mod/events.php:366
-msgid "Events"
+#: ../../include/follow.php:149
+msgid "local account not found."
msgstr ""
-#: ../../include/apps.php:112 ../../include/nav.php:147
-#: ../../mod/directory.php:210
-msgid "Directory"
+#: ../../include/follow.php:158
+msgid "Cannot connect to yourself."
msgstr ""
-#: ../../include/apps.php:113 ../../include/nav.php:139 ../../mod/help.php:60
-#: ../../mod/help.php:65
-msgid "Help"
+#: ../../include/reddav.php:1045
+msgid "Edit File properties"
msgstr ""
-#: ../../include/apps.php:146 ../../mod/settings.php:79
-#: ../../mod/settings.php:541
-msgid "Update"
+#: ../../include/event.php:11 ../../include/bb2diaspora.php:433
+msgid "l F d, Y \\@ g:i A"
msgstr ""
-#: ../../include/apps.php:146
-msgid "Install"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:439
+msgid "Starts:"
msgstr ""
-#: ../../include/apps.php:151 ../../include/ItemObject.php:108
-#: ../../include/conversation.php:632 ../../mod/admin.php:757
-#: ../../mod/admin.php:886 ../../mod/connedit.php:398
-#: ../../mod/settings.php:578 ../../mod/filestorage.php:175
-#: ../../mod/group.php:176 ../../mod/thing.php:236 ../../mod/photos.php:1043
-msgid "Delete"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:447
+msgid "Finishes:"
msgstr ""
-#: ../../include/apps.php:213 ../../include/apps.php:255
-#: ../../mod/connedit.php:434
-msgid "Unknown"
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:455
+#: ../../include/identity.php:726 ../../mod/dirprofile.php:105
+#: ../../mod/directory.php:156 ../../mod/events.php:474
+msgid "Location:"
msgstr ""
-#: ../../include/oembed.php:171
-msgid "Embedded content"
+#: ../../include/widgets.php:29 ../../include/contact_widgets.php:92
+msgid "Categories"
msgstr ""
-#: ../../include/oembed.php:180
-msgid "Embedding disabled"
+#: ../../include/widgets.php:79
+msgid "App Category"
msgstr ""
-#: ../../include/notify.php:23
-msgid "created a new post"
+#: ../../include/widgets.php:80
+msgid "System"
msgstr ""
-#: ../../include/notify.php:24
-#, php-format
-msgid "commented on %s's post"
+#: ../../include/widgets.php:81 ../../include/conversation.php:1415
+msgid "Personal"
msgstr ""
-#: ../../include/Contact.php:107 ../../include/identity.php:675
#: ../../include/widgets.php:127 ../../include/widgets.php:167
-#: ../../mod/directory.php:183 ../../mod/dirprofile.php:164
+#: ../../include/Contact.php:107 ../../include/identity.php:675
+#: ../../mod/dirprofile.php:164 ../../mod/directory.php:183
#: ../../mod/suggest.php:51 ../../mod/match.php:62
msgid "Connect"
msgstr ""
-#: ../../include/Contact.php:123
-msgid "New window"
-msgstr ""
-
-#: ../../include/Contact.php:124
-msgid "Open the selected location in a different window or browser tab"
-msgstr ""
-
-#: ../../include/page_widgets.php:6
-msgid "New Page"
-msgstr ""
-
-#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36
-#: ../../include/ItemObject.php:96 ../../include/menu.php:42
-#: ../../mod/blocks.php:94 ../../mod/connections.php:392
-#: ../../mod/settings.php:577 ../../mod/editblock.php:111
-#: ../../mod/editlayout.php:106 ../../mod/editpost.php:112
-#: ../../mod/editwebpage.php:143 ../../mod/filestorage.php:174
-#: ../../mod/thing.php:235 ../../mod/layouts.php:112 ../../mod/menu.php:59
-#: ../../mod/webpages.php:119
-msgid "Edit"
-msgstr ""
-
-#: ../../include/page_widgets.php:39 ../../mod/blocks.php:97
-#: ../../mod/layouts.php:116 ../../mod/webpages.php:122
-msgid "View"
-msgstr ""
-
-#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:588
-#: ../../include/conversation.php:1088 ../../mod/editblock.php:141
-#: ../../mod/editlayout.php:135 ../../mod/editpost.php:140
-#: ../../mod/editwebpage.php:175 ../../mod/webpages.php:123
-#: ../../mod/photos.php:994
-msgid "Preview"
-msgstr ""
-
-#: ../../include/page_widgets.php:41 ../../mod/webpages.php:124
-msgid "Actions"
-msgstr ""
-
-#: ../../include/page_widgets.php:42 ../../mod/webpages.php:125
-msgid "Page Link"
-msgstr ""
-
-#: ../../include/page_widgets.php:43 ../../mod/webpages.php:126
-msgid "Title"
-msgstr ""
-
-#: ../../include/page_widgets.php:44 ../../mod/webpages.php:127
-msgid "Created"
-msgstr ""
-
-#: ../../include/page_widgets.php:45 ../../mod/webpages.php:128
-msgid "Edited"
-msgstr ""
-
-#: ../../include/permissions.php:13
-msgid "Can view my \"public\" stream and posts"
-msgstr ""
-
-#: ../../include/permissions.php:14
-msgid "Can view my \"public\" channel profile"
-msgstr ""
-
-#: ../../include/permissions.php:15
-msgid "Can view my \"public\" photo albums"
-msgstr ""
-
-#: ../../include/permissions.php:16
-msgid "Can view my \"public\" address book"
-msgstr ""
-
-#: ../../include/permissions.php:17
-msgid "Can view my \"public\" file storage"
-msgstr ""
-
-#: ../../include/permissions.php:18
-msgid "Can view my \"public\" pages"
-msgstr ""
-
-#: ../../include/permissions.php:21
-msgid "Can send me their channel stream and posts"
-msgstr ""
-
-#: ../../include/permissions.php:22
-msgid "Can post on my channel page (\"wall\")"
-msgstr ""
-
-#: ../../include/permissions.php:23
-msgid "Can comment on my posts"
-msgstr ""
-
-#: ../../include/permissions.php:24
-msgid "Can send me private mail messages"
-msgstr ""
-
-#: ../../include/permissions.php:25
-msgid "Can post photos to my photo albums"
-msgstr ""
-
-#: ../../include/permissions.php:26
-msgid "Can forward to all my channel contacts via post @mentions"
+#: ../../include/widgets.php:129 ../../mod/suggest.php:53
+msgid "Ignore/Hide"
msgstr ""
-#: ../../include/permissions.php:26
-msgid "Advanced - useful for creating group forum channels"
+#: ../../include/widgets.php:135 ../../mod/connections.php:266
+msgid "Suggestions"
msgstr ""
-#: ../../include/permissions.php:27
-msgid "Can chat with me (when available)"
+#: ../../include/widgets.php:136
+msgid "See more..."
msgstr ""
-#: ../../include/permissions.php:28
-msgid "Can write to my \"public\" file storage"
+#: ../../include/widgets.php:158
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
msgstr ""
-#: ../../include/permissions.php:29
-msgid "Can edit my \"public\" pages"
+#: ../../include/widgets.php:164
+msgid "Add New Connection"
msgstr ""
-#: ../../include/permissions.php:31
-msgid "Can source my \"public\" posts in derived channels"
+#: ../../include/widgets.php:165
+msgid "Enter the channel address"
msgstr ""
-#: ../../include/permissions.php:31
-msgid "Somewhat advanced - very useful in open communities"
+#: ../../include/widgets.php:166
+msgid "Example: bob@example.com, http://example.com/barbara"
msgstr ""
-#: ../../include/permissions.php:33
-msgid "Can administer my channel resources"
+#: ../../include/widgets.php:183
+msgid "Notes"
msgstr ""
-#: ../../include/permissions.php:33
-msgid "Extremely advanced. Leave this alone unless you know what you are doing"
+#: ../../include/widgets.php:185 ../../include/text.php:815
+#: ../../include/text.php:829 ../../mod/filer.php:50 ../../mod/rbmark.php:28
+#: ../../mod/rbmark.php:98
+msgid "Save"
msgstr ""
-#: ../../include/account.php:23
-msgid "Not a valid email address"
+#: ../../include/widgets.php:255
+msgid "Remove term"
msgstr ""
-#: ../../include/account.php:25
-msgid "Your email domain is not among those allowed on this site"
+#: ../../include/widgets.php:264 ../../include/features.php:52
+msgid "Saved Searches"
msgstr ""
-#: ../../include/account.php:31
-msgid "Your email address is already registered at this site."
+#: ../../include/widgets.php:265 ../../include/group.php:290
+msgid "add"
msgstr ""
-#: ../../include/account.php:64
-msgid "An invitation is required."
+#: ../../include/widgets.php:295 ../../include/features.php:66
+#: ../../include/contact_widgets.php:58
+msgid "Saved Folders"
msgstr ""
-#: ../../include/account.php:68
-msgid "Invitation could not be verified."
+#: ../../include/widgets.php:298 ../../include/contact_widgets.php:61
+#: ../../include/contact_widgets.php:95
+msgid "Everything"
msgstr ""
-#: ../../include/account.php:119
-msgid "Please enter the required information."
+#: ../../include/widgets.php:334
+msgid "Archives"
msgstr ""
-#: ../../include/account.php:187
-msgid "Failed to store account information."
+#: ../../include/widgets.php:396
+msgid "Refresh"
msgstr ""
-#: ../../include/account.php:273
-#, php-format
-msgid "Registration request at %s"
+#: ../../include/widgets.php:397 ../../mod/connedit.php:428
+msgid "Me"
msgstr ""
-#: ../../include/account.php:275 ../../include/account.php:302
-#: ../../include/account.php:359
-msgid "Administrator"
+#: ../../include/widgets.php:398 ../../mod/connedit.php:430
+msgid "Best Friends"
msgstr ""
-#: ../../include/account.php:297
-msgid "your registration password"
+#: ../../include/widgets.php:399 ../../include/profile_selectors.php:42
+#: ../../include/identity.php:342 ../../mod/connedit.php:431
+msgid "Friends"
msgstr ""
-#: ../../include/account.php:300 ../../include/account.php:357
-#, php-format
-msgid "Registration details for %s"
+#: ../../include/widgets.php:400
+msgid "Co-workers"
msgstr ""
-#: ../../include/account.php:366
-msgid "Account approved."
+#: ../../include/widgets.php:401 ../../mod/connedit.php:432
+msgid "Former Friends"
msgstr ""
-#: ../../include/account.php:400
-#, php-format
-msgid "Registration revoked for %s"
+#: ../../include/widgets.php:402 ../../mod/connedit.php:433
+msgid "Acquaintances"
msgstr ""
-#: ../../include/photos.php:15 ../../include/attach.php:119
-#: ../../include/attach.php:166 ../../include/attach.php:229
-#: ../../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:3645
-#: ../../mod/mood.php:119 ../../mod/mitem.php:73 ../../mod/achievements.php:27
-#: ../../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:453 ../../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:68 ../../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/page.php:80 ../../mod/settings.php:492 ../../mod/setup.php:203
-#: ../../mod/editblock.php:34 ../../mod/pdledit.php:21
-#: ../../mod/editlayout.php:48 ../../mod/editpost.php:13
-#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83
-#: ../../mod/events.php:140 ../../mod/sources.php:66
-#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59
-#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98
-#: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9
-#: ../../mod/thing.php:247 ../../mod/thing.php:263 ../../mod/thing.php:298
-#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:179
-#: ../../mod/item.php:187 ../../mod/item.php:872 ../../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/new_channel.php:66 ../../mod/new_channel.php:97
-#: ../../mod/photos.php:68 ../../mod/photos.php:526
-#: ../../mod/notifications.php:66 ../../index.php:187 ../../index.php:362
-msgid "Permission denied."
+#: ../../include/widgets.php:403
+msgid "Everybody"
msgstr ""
-#: ../../include/photos.php:89
-#, php-format
-msgid "Image exceeds website size limit of %lu bytes"
+#: ../../include/widgets.php:435
+msgid "Account settings"
msgstr ""
-#: ../../include/photos.php:96
-msgid "Image file is empty."
+#: ../../include/widgets.php:441
+msgid "Channel settings"
msgstr ""
-#: ../../include/photos.php:123 ../../mod/profile_photo.php:216
-msgid "Unable to process image"
+#: ../../include/widgets.php:447
+msgid "Additional features"
msgstr ""
-#: ../../include/photos.php:186
-msgid "Photo storage failed."
+#: ../../include/widgets.php:453
+msgid "Feature settings"
msgstr ""
-#: ../../include/photos.php:311 ../../include/conversation.php:1504
-msgid "Photo Albums"
+#: ../../include/widgets.php:459
+msgid "Display settings"
msgstr ""
-#: ../../include/photos.php:315 ../../mod/photos.php:693
-#: ../../mod/photos.php:1190
-msgid "Upload New Photos"
+#: ../../include/widgets.php:465
+msgid "Connected apps"
msgstr ""
-#: ../../include/acl_selectors.php:238
-msgid "Visible to everybody"
+#: ../../include/widgets.php:471
+msgid "Export channel"
msgstr ""
-#: ../../include/acl_selectors.php:239
-msgid "Show"
+#: ../../include/widgets.php:483
+msgid "Automatic Permissions (Advanced)"
msgstr ""
-#: ../../include/acl_selectors.php:240
-msgid "Don't show"
+#: ../../include/widgets.php:493
+msgid "Premium Channel Settings"
msgstr ""
-#: ../../include/acl_selectors.php:246 ../../mod/chat.php:209
-#: ../../mod/filestorage.php:126 ../../mod/photos.php:606
-#: ../../mod/photos.php:949
-msgid "Permissions"
+#: ../../include/widgets.php:502 ../../include/features.php:43
+#: ../../mod/sources.php:88
+msgid "Channel Sources"
msgstr ""
-#: ../../include/acl_selectors.php:247 ../../include/ItemObject.php:285
-msgid "Close"
+#: ../../include/widgets.php:513 ../../include/nav.php:186
+#: ../../mod/admin.php:976 ../../mod/admin.php:1181
+msgid "Settings"
msgstr ""
-#: ../../include/activities.php:39
-msgid " and "
+#: ../../include/widgets.php:530
+msgid "Check Mail"
msgstr ""
-#: ../../include/activities.php:47
-msgid "public profile"
+#: ../../include/widgets.php:535 ../../include/nav.php:177
+msgid "New Message"
msgstr ""
-#: ../../include/activities.php:52
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+#: ../../include/widgets.php:611
+msgid "Chat Rooms"
msgstr ""
-#: ../../include/activities.php:53
-#, php-format
-msgid "Visit %1$s's %2$s"
+#: ../../include/widgets.php:629
+msgid "Bookmarked Chatrooms"
msgstr ""
-#: ../../include/activities.php:56
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
+#: ../../include/widgets.php:647
+msgid "Suggested Chatrooms"
msgstr ""
#: ../../include/api.php:1016
msgid "Public Timeline"
msgstr ""
-#: ../../include/attach.php:224 ../../include/attach.php:278
-msgid "Item was not found."
-msgstr ""
-
-#: ../../include/attach.php:335
-msgid "No source file."
-msgstr ""
-
-#: ../../include/attach.php:352
-msgid "Cannot locate file to replace"
-msgstr ""
-
-#: ../../include/attach.php:370
-msgid "Cannot locate file to revise/update"
-msgstr ""
-
-#: ../../include/attach.php:381
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr ""
-
-#: ../../include/attach.php:393
-#, php-format
-msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
-msgstr ""
-
-#: ../../include/attach.php:475
-msgid "File upload failed. Possible system limit or action terminated."
-msgstr ""
-
-#: ../../include/attach.php:487
-msgid "Stored file could not be verified. Upload failed."
-msgstr ""
-
-#: ../../include/attach.php:528 ../../include/attach.php:545
-msgid "Path not available."
-msgstr ""
-
-#: ../../include/attach.php:590
-msgid "Empty pathname"
-msgstr ""
-
-#: ../../include/attach.php:606
-msgid "duplicate filename or path"
-msgstr ""
-
-#: ../../include/attach.php:630
-msgid "Path not found."
-msgstr ""
-
-#: ../../include/attach.php:674
-msgid "mkdir failed."
-msgstr ""
-
-#: ../../include/attach.php:678
-msgid "database storage failed."
-msgstr ""
-
-#: ../../include/auth.php:79
-msgid "Logged out."
-msgstr ""
-
-#: ../../include/auth.php:198
-msgid "Failed authentication"
-msgstr ""
-
-#: ../../include/auth.php:213 ../../mod/openid.php:188
-msgid "Login failed."
-msgstr ""
-
-#: ../../include/bb2diaspora.php:433 ../../include/event.php:11
-msgid "l F d, Y \\@ g:i A"
-msgstr ""
-
-#: ../../include/bb2diaspora.php:439 ../../include/event.php:20
-msgid "Starts:"
-msgstr ""
-
-#: ../../include/bb2diaspora.php:447 ../../include/event.php:30
-msgid "Finishes:"
-msgstr ""
-
-#: ../../include/bb2diaspora.php:455 ../../include/event.php:40
-#: ../../include/identity.php:726 ../../mod/directory.php:156
-#: ../../mod/dirprofile.php:105 ../../mod/events.php:474
-msgid "Location:"
-msgstr ""
-
-#: ../../include/bbcode.php:128 ../../include/bbcode.php:642
-#: ../../include/bbcode.php:645 ../../include/bbcode.php:650
-#: ../../include/bbcode.php:653 ../../include/bbcode.php:656
-#: ../../include/bbcode.php:659 ../../include/bbcode.php:664
-#: ../../include/bbcode.php:667 ../../include/bbcode.php:672
-#: ../../include/bbcode.php:675 ../../include/bbcode.php:678
-#: ../../include/bbcode.php:681
-msgid "Image/photo"
-msgstr ""
-
-#: ../../include/bbcode.php:163 ../../include/bbcode.php:692
-msgid "Encrypted content"
-msgstr ""
-
-#: ../../include/bbcode.php:179
-msgid "QR code"
-msgstr ""
-
-#: ../../include/bbcode.php:228
-#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr ""
-
-#: ../../include/bbcode.php:230
-msgid "post"
-msgstr ""
-
-#: ../../include/bbcode.php:610 ../../include/bbcode.php:630
-msgid "$1 wrote:"
-msgstr ""
-
-#: ../../include/ItemObject.php:89 ../../include/conversation.php:639
-#: ../../mod/photos.php:846
-msgid "Private Message"
-msgstr ""
-
-#: ../../include/ItemObject.php:114 ../../include/conversation.php:631
-msgid "Select"
-msgstr ""
-
-#: ../../include/ItemObject.php:118
-msgid "save to folder"
-msgstr ""
-
-#: ../../include/ItemObject.php:130 ../../include/ItemObject.php:142
-msgid "View all"
-msgstr ""
-
-#: ../../include/ItemObject.php:134
-msgid "Like"
-msgstr ""
-
-#: ../../include/ItemObject.php:134 ../../include/ItemObject.php:279
-#: ../../mod/profiles.php:302
-msgid "Likes"
-msgstr ""
-
-#: ../../include/ItemObject.php:139
-msgid "Dislike"
-msgstr ""
-
-#: ../../include/ItemObject.php:139 ../../include/ItemObject.php:280
-#: ../../mod/profiles.php:306
-msgid "Dislikes"
-msgstr ""
-
-#: ../../include/ItemObject.php:167
-msgid "add star"
-msgstr ""
-
-#: ../../include/ItemObject.php:168
-msgid "remove star"
-msgstr ""
-
-#: ../../include/ItemObject.php:169
-msgid "toggle star status"
-msgstr ""
-
-#: ../../include/ItemObject.php:173
-msgid "starred"
-msgstr ""
-
-#: ../../include/ItemObject.php:182 ../../include/conversation.php:646
-msgid "Message is verified"
-msgstr ""
-
-#: ../../include/ItemObject.php:190
-msgid "add tag"
-msgstr ""
-
-#: ../../include/ItemObject.php:205 ../../mod/photos.php:971
-msgid "I like this (toggle)"
-msgstr ""
-
-#: ../../include/ItemObject.php:205 ../../include/taxonomy.php:254
-msgid "like"
-msgstr ""
-
-#: ../../include/ItemObject.php:206 ../../mod/photos.php:972
-msgid "I don't like this (toggle)"
-msgstr ""
-
-#: ../../include/ItemObject.php:206 ../../include/taxonomy.php:255
-msgid "dislike"
-msgstr ""
-
-#: ../../include/ItemObject.php:208
-msgid "Share this"
-msgstr ""
-
-#: ../../include/ItemObject.php:208
-msgid "share"
-msgstr ""
-
-#: ../../include/ItemObject.php:232 ../../include/ItemObject.php:233
-#, php-format
-msgid "View %s's profile - %s"
-msgstr ""
-
-#: ../../include/ItemObject.php:234
-msgid "to"
+#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1450
+msgid "Logout"
msgstr ""
-#: ../../include/ItemObject.php:235
-msgid "via"
+#: ../../include/nav.php:77 ../../include/nav.php:96
+msgid "End this session"
msgstr ""
-#: ../../include/ItemObject.php:236
-msgid "Wall-to-Wall"
+#: ../../include/nav.php:80 ../../include/nav.php:130
+msgid "Home"
msgstr ""
-#: ../../include/ItemObject.php:237
-msgid "via Wall-To-Wall:"
+#: ../../include/nav.php:80
+msgid "Your posts and conversations"
msgstr ""
-#: ../../include/ItemObject.php:247 ../../include/conversation.php:690
-#, php-format
-msgid " from %s"
+#: ../../include/nav.php:81 ../../include/conversation.php:937
+#: ../../mod/connedit.php:351 ../../mod/connedit.php:465
+msgid "View Profile"
msgstr ""
-#: ../../include/ItemObject.php:250 ../../include/conversation.php:693
-#, php-format
-msgid "last edited: %s"
+#: ../../include/nav.php:81
+msgid "Your profile page"
msgstr ""
-#: ../../include/ItemObject.php:251 ../../include/conversation.php:694
-#, php-format
-msgid "Expires: %s"
+#: ../../include/nav.php:83
+msgid "Edit Profiles"
msgstr ""
-#: ../../include/ItemObject.php:271
-msgid "Bookmark Links"
+#: ../../include/nav.php:83
+msgid "Manage/Edit profiles"
msgstr ""
-#: ../../include/ItemObject.php:290 ../../include/conversation.php:711
-#: ../../include/conversation.php:1127 ../../mod/editblock.php:120
-#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121
-#: ../../mod/editwebpage.php:152 ../../mod/mail.php:222 ../../mod/mail.php:336
-#: ../../mod/photos.php:974
-msgid "Please wait"
+#: ../../include/nav.php:84 ../../include/conversation.php:1501
+#: ../../include/apps.php:110 ../../mod/fbrowser.php:25
+msgid "Photos"
msgstr ""
-#: ../../include/ItemObject.php:311
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../include/ItemObject.php:312 ../../include/contact_widgets.php:130
-#: ../../include/js_strings.php:7
-msgid "show more"
+#: ../../include/nav.php:84
+msgid "Your photos"
msgstr ""
-#: ../../include/ItemObject.php:576 ../../mod/photos.php:990
-#: ../../mod/photos.php:1077
-msgid "This is you"
+#: ../../include/nav.php:85 ../../include/conversation.php:1510
+#: ../../mod/fbrowser.php:114
+msgid "Files"
msgstr ""
-#: ../../include/ItemObject.php:578 ../../include/js_strings.php:6
-#: ../../mod/photos.php:992 ../../mod/photos.php:1079
-msgid "Comment"
+#: ../../include/nav.php:85
+msgid "Your files"
msgstr ""
-#: ../../include/ItemObject.php:579 ../../mod/mood.php:142
-#: ../../mod/admin.php:441 ../../mod/admin.php:750 ../../mod/admin.php:884
-#: ../../mod/admin.php:1017 ../../mod/admin.php:1216 ../../mod/admin.php:1303
-#: ../../mod/poke.php:166 ../../mod/profiles.php:506 ../../mod/chat.php:177
-#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:476
-#: ../../mod/settings.php:515 ../../mod/settings.php:627
-#: ../../mod/settings.php:655 ../../mod/settings.php:679
-#: ../../mod/settings.php:751 ../../mod/settings.php:929
-#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58
-#: ../../mod/events.php:481 ../../mod/sources.php:104
-#: ../../mod/sources.php:138 ../../mod/filestorage.php:135
-#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/thing.php:283
-#: ../../mod/thing.php:326 ../../mod/import.php:387 ../../mod/invite.php:156
-#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/photos.php:565
-#: ../../mod/photos.php:670 ../../mod/photos.php:953 ../../mod/photos.php:993
-#: ../../mod/photos.php:1080 ../../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
-msgid "Submit"
+#: ../../include/nav.php:86
+msgid "Chat"
msgstr ""
-#: ../../include/ItemObject.php:580
-msgid "Bold"
+#: ../../include/nav.php:86
+msgid "Your chatrooms"
msgstr ""
-#: ../../include/ItemObject.php:581
-msgid "Italic"
+#: ../../include/nav.php:87 ../../include/nav.php:180
+#: ../../include/conversation.php:1532 ../../include/apps.php:111
+#: ../../mod/events.php:366
+msgid "Events"
msgstr ""
-#: ../../include/ItemObject.php:582
-msgid "Underline"
+#: ../../include/nav.php:87
+msgid "Your events"
msgstr ""
-#: ../../include/ItemObject.php:583
-msgid "Quote"
+#: ../../include/nav.php:88 ../../include/conversation.php:1540
+msgid "Bookmarks"
msgstr ""
-#: ../../include/ItemObject.php:584
-msgid "Code"
+#: ../../include/nav.php:88
+msgid "Your bookmarks"
msgstr ""
-#: ../../include/ItemObject.php:585
-msgid "Image"
+#: ../../include/nav.php:90 ../../include/conversation.php:1551
+#: ../../mod/webpages.php:79
+msgid "Webpages"
msgstr ""
-#: ../../include/ItemObject.php:586
-msgid "Link"
+#: ../../include/nav.php:90
+msgid "Your webpages"
msgstr ""
-#: ../../include/ItemObject.php:587
-msgid "Video"
+#: ../../include/nav.php:94 ../../boot.php:1451
+msgid "Login"
msgstr ""
-#: ../../include/ItemObject.php:591 ../../include/conversation.php:1153
-#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341
-msgid "Encrypt text"
+#: ../../include/nav.php:94
+msgid "Sign in"
msgstr ""
-#: ../../include/bookmarks.php:42
+#: ../../include/nav.php:111
#, 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 ""
-
-#: ../../include/taxonomy.php:227
-msgid "Keywords"
-msgstr ""
-
-#: ../../include/taxonomy.php:252
-msgid "have"
-msgstr ""
-
-#: ../../include/taxonomy.php:252
-msgid "has"
-msgstr ""
-
-#: ../../include/taxonomy.php:253
-msgid "want"
-msgstr ""
-
-#: ../../include/taxonomy.php:253
-msgid "wants"
-msgstr ""
-
-#: ../../include/taxonomy.php:254
-msgid "likes"
-msgstr ""
-
-#: ../../include/taxonomy.php:255
-msgid "dislikes"
-msgstr ""
-
-#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185
-#: ../../view/theme/redbasic/php/config.php:84
-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
-msgid "Frequently"
-msgstr ""
-
-#: ../../include/contact_selectors.php:55
-msgid "Hourly"
-msgstr ""
-
-#: ../../include/contact_selectors.php:56
-msgid "Twice daily"
-msgstr ""
-
-#: ../../include/contact_selectors.php:57
-msgid "Daily"
-msgstr ""
-
-#: ../../include/contact_selectors.php:58
-msgid "Weekly"
-msgstr ""
-
-#: ../../include/contact_selectors.php:59
-msgid "Monthly"
-msgstr ""
-
-#: ../../include/contact_selectors.php:74
-msgid "Friendica"
-msgstr ""
-
-#: ../../include/contact_selectors.php:75
-msgid "OStatus"
-msgstr ""
-
-#: ../../include/contact_selectors.php:76
-msgid "RSS/Atom"
-msgstr ""
-
-#: ../../include/contact_selectors.php:77 ../../mod/admin.php:753
-#: ../../mod/admin.php:762 ../../boot.php:1453
-msgid "Email"
-msgstr ""
-
-#: ../../include/contact_selectors.php:78
-msgid "Diaspora"
-msgstr ""
-
-#: ../../include/contact_selectors.php:79
-msgid "Facebook"
-msgstr ""
-
-#: ../../include/contact_selectors.php:80
-msgid "Zot!"
-msgstr ""
-
-#: ../../include/contact_selectors.php:81
-msgid "LinkedIn"
-msgstr ""
-
-#: ../../include/contact_selectors.php:82
-msgid "XMPP/IM"
-msgstr ""
-
-#: ../../include/contact_selectors.php:83
-msgid "MySpace"
+msgid "%s - click to logout"
msgstr ""
-#: ../../include/text.php:320
-msgid "prev"
+#: ../../include/nav.php:116
+msgid "Click to authenticate to your home hub"
msgstr ""
-#: ../../include/text.php:322
-msgid "first"
+#: ../../include/nav.php:130
+msgid "Home Page"
msgstr ""
-#: ../../include/text.php:351
-msgid "last"
+#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1427
+msgid "Register"
msgstr ""
-#: ../../include/text.php:354
-msgid "next"
+#: ../../include/nav.php:134
+msgid "Create an account"
msgstr ""
-#: ../../include/text.php:366
-msgid "older"
+#: ../../include/nav.php:139 ../../include/apps.php:113 ../../mod/help.php:60
+#: ../../mod/help.php:65
+msgid "Help"
msgstr ""
-#: ../../include/text.php:368
-msgid "newer"
+#: ../../include/nav.php:139
+msgid "Help and documentation"
msgstr ""
-#: ../../include/text.php:729
-msgid "No connections"
+#: ../../include/nav.php:142 ../../mod/apps.php:17 ../../mod/apps.php:35
+msgid "Apps"
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"
+#: ../../include/nav.php:142
+msgid "Addon applications, utilities, games"
msgstr ""
-#: ../../include/text.php:813 ../../include/text.php:827
-#: ../../include/nav.php:144 ../../mod/search.php:29
+#: ../../include/nav.php:144 ../../include/text.php:813
+#: ../../include/text.php:827 ../../mod/search.php:29
msgid "Search"
msgstr ""
-#: ../../include/text.php:815 ../../include/text.php:829
-#: ../../include/widgets.php:185 ../../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:895 ../../include/conversation.php:240
-msgid "poked"
-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"
+#: ../../include/nav.php:144
+msgid "Search site content"
msgstr ""
-#: ../../include/text.php:913
-msgid "perky"
+#: ../../include/nav.php:147 ../../include/apps.php:112
+#: ../../mod/directory.php:210
+msgid "Directory"
msgstr ""
-#: ../../include/text.php:914
-msgid "angry"
+#: ../../include/nav.php:147
+msgid "Channel Locator"
msgstr ""
-#: ../../include/text.php:915
-msgid "stupified"
+#: ../../include/nav.php:158 ../../include/apps.php:107
+msgid "Matrix"
msgstr ""
-#: ../../include/text.php:916
-msgid "puzzled"
+#: ../../include/nav.php:158
+msgid "Your matrix"
msgstr ""
-#: ../../include/text.php:917
-msgid "interested"
+#: ../../include/nav.php:159
+msgid "Mark all matrix notifications seen"
msgstr ""
-#: ../../include/text.php:918
-msgid "bitter"
+#: ../../include/nav.php:161 ../../include/apps.php:108
+msgid "Channel Home"
msgstr ""
-#: ../../include/text.php:919
-msgid "cheerful"
+#: ../../include/nav.php:161
+msgid "Channel home"
msgstr ""
-#: ../../include/text.php:920
-msgid "alive"
+#: ../../include/nav.php:162
+msgid "Mark all channel notifications seen"
msgstr ""
-#: ../../include/text.php:921
-msgid "annoyed"
+#: ../../include/nav.php:165 ../../include/nav.php:188
+#: ../../mod/connections.php:385
+msgid "Connections"
msgstr ""
-#: ../../include/text.php:922
-msgid "anxious"
+#: ../../include/nav.php:168
+msgid "Notices"
msgstr ""
-#: ../../include/text.php:923
-msgid "cranky"
+#: ../../include/nav.php:168
+msgid "Notifications"
msgstr ""
-#: ../../include/text.php:924
-msgid "disturbed"
+#: ../../include/nav.php:169
+msgid "See all notifications"
msgstr ""
-#: ../../include/text.php:925
-msgid "frustrated"
+#: ../../include/nav.php:170 ../../mod/notifications.php:99
+msgid "Mark all system notifications seen"
msgstr ""
-#: ../../include/text.php:926
-msgid "depressed"
+#: ../../include/nav.php:172
+msgid "Mail"
msgstr ""
-#: ../../include/text.php:927
-msgid "motivated"
+#: ../../include/nav.php:172
+msgid "Private mail"
msgstr ""
-#: ../../include/text.php:928
-msgid "relaxed"
+#: ../../include/nav.php:173
+msgid "See all private messages"
msgstr ""
-#: ../../include/text.php:929
-msgid "surprised"
+#: ../../include/nav.php:174
+msgid "Mark all private messages seen"
msgstr ""
-#: ../../include/text.php:1090
-msgid "Monday"
+#: ../../include/nav.php:175
+msgid "Inbox"
msgstr ""
-#: ../../include/text.php:1090
-msgid "Tuesday"
+#: ../../include/nav.php:176
+msgid "Outbox"
msgstr ""
-#: ../../include/text.php:1090
-msgid "Wednesday"
+#: ../../include/nav.php:180
+msgid "Event Calendar"
msgstr ""
-#: ../../include/text.php:1090
-msgid "Thursday"
+#: ../../include/nav.php:181
+msgid "See all events"
msgstr ""
-#: ../../include/text.php:1090
-msgid "Friday"
+#: ../../include/nav.php:182
+msgid "Mark all events seen"
msgstr ""
-#: ../../include/text.php:1090
-msgid "Saturday"
+#: ../../include/nav.php:184
+msgid "Channel Select"
msgstr ""
-#: ../../include/text.php:1090
-msgid "Sunday"
+#: ../../include/nav.php:184
+msgid "Manage Your Channels"
msgstr ""
-#: ../../include/text.php:1094
-msgid "January"
+#: ../../include/nav.php:186
+msgid "Account/Channel Settings"
msgstr ""
-#: ../../include/text.php:1094
-msgid "February"
+#: ../../include/nav.php:188
+msgid "Manage/Edit Friends and Connections"
msgstr ""
-#: ../../include/text.php:1094
-msgid "March"
+#: ../../include/nav.php:195 ../../mod/admin.php:117
+msgid "Admin"
msgstr ""
-#: ../../include/text.php:1094
-msgid "April"
+#: ../../include/nav.php:195
+msgid "Site Setup and Configuration"
msgstr ""
-#: ../../include/text.php:1094
-msgid "May"
+#: ../../include/nav.php:220
+msgid "Nothing new here"
msgstr ""
-#: ../../include/text.php:1094
-msgid "June"
+#: ../../include/nav.php:225
+msgid "Please wait..."
msgstr ""
-#: ../../include/text.php:1094
-msgid "July"
+#: ../../include/oembed.php:171
+msgid "Embedded content"
msgstr ""
-#: ../../include/text.php:1094
-msgid "August"
+#: ../../include/oembed.php:180
+msgid "Embedding disabled"
msgstr ""
-#: ../../include/text.php:1094
-msgid "September"
+#: ../../include/bbcode.php:128 ../../include/bbcode.php:642
+#: ../../include/bbcode.php:645 ../../include/bbcode.php:650
+#: ../../include/bbcode.php:653 ../../include/bbcode.php:656
+#: ../../include/bbcode.php:659 ../../include/bbcode.php:664
+#: ../../include/bbcode.php:667 ../../include/bbcode.php:672
+#: ../../include/bbcode.php:675 ../../include/bbcode.php:678
+#: ../../include/bbcode.php:681
+msgid "Image/photo"
msgstr ""
-#: ../../include/text.php:1094
-msgid "October"
+#: ../../include/bbcode.php:163 ../../include/bbcode.php:692
+msgid "Encrypted content"
msgstr ""
-#: ../../include/text.php:1094
-msgid "November"
+#: ../../include/bbcode.php:179
+msgid "QR code"
msgstr ""
-#: ../../include/text.php:1094
-msgid "December"
+#: ../../include/bbcode.php:228
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
msgstr ""
-#: ../../include/text.php:1172
-msgid "unknown.???"
+#: ../../include/bbcode.php:230
+msgid "post"
msgstr ""
-#: ../../include/text.php:1173
-msgid "bytes"
+#: ../../include/bbcode.php:610 ../../include/bbcode.php:630
+msgid "$1 wrote:"
msgstr ""
-#: ../../include/text.php:1208
-msgid "remove category"
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
msgstr ""
-#: ../../include/text.php:1257
-msgid "remove from file"
+#: ../../include/group.php:223
+msgid "Default privacy group for new contacts"
msgstr ""
-#: ../../include/text.php:1318 ../../include/text.php:1330
-msgid "Click to open/close"
+#: ../../include/group.php:242 ../../mod/admin.php:762
+msgid "All Channels"
msgstr ""
-#: ../../include/text.php:1485 ../../mod/events.php:344
-msgid "link to source"
+#: ../../include/group.php:264
+msgid "edit"
msgstr ""
-#: ../../include/text.php:1504
-msgid "Select a page layout: "
+#: ../../include/group.php:285
+msgid "Collections"
msgstr ""
-#: ../../include/text.php:1507 ../../include/text.php:1572
-msgid "default"
+#: ../../include/group.php:286
+msgid "Edit collection"
msgstr ""
-#: ../../include/text.php:1543
-msgid "Page content type: "
+#: ../../include/group.php:287
+msgid "Create a new collection"
msgstr ""
-#: ../../include/text.php:1584
-msgid "Select an alternate language"
+#: ../../include/group.php:288
+msgid "Channels not in any collection"
msgstr ""
-#: ../../include/text.php:1705 ../../include/conversation.php:117
+#: ../../include/conversation.php:117 ../../include/text.php:1705
#: ../../mod/subthread.php:72 ../../mod/subthread.php:174
#: ../../mod/tagger.php:45 ../../mod/like.php:111
msgid "photo"
msgstr ""
-#: ../../include/text.php:1708 ../../include/conversation.php:120
+#: ../../include/conversation.php:120 ../../include/text.php:1708
#: ../../mod/tagger.php:49
msgid "event"
msgstr ""
-#: ../../include/text.php:1711 ../../include/conversation.php:145
+#: ../../include/conversation.php:123
+msgid "channel"
+msgstr ""
+
+#: ../../include/conversation.php:145 ../../include/text.php:1711
#: ../../mod/subthread.php:72 ../../mod/subthread.php:174
#: ../../mod/tagger.php:53 ../../mod/like.php:111
msgid "status"
msgstr ""
-#: ../../include/text.php:1713 ../../include/conversation.php:147
+#: ../../include/conversation.php:147 ../../include/text.php:1713
#: ../../mod/tagger.php:55
msgid "comment"
msgstr ""
-#: ../../include/text.php:1718
-msgid "activity"
-msgstr ""
-
-#: ../../include/text.php:1977
-msgid "Design"
-msgstr ""
-
-#: ../../include/text.php:1979
-msgid "Blocks"
-msgstr ""
-
-#: ../../include/text.php:1980
-msgid "Menus"
-msgstr ""
-
-#: ../../include/text.php:1981
-msgid "Layouts"
-msgstr ""
-
-#: ../../include/text.php:1982
-msgid "Pages"
-msgstr ""
-
-#: ../../include/contact_widgets.php:14
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445
-msgid "Advanced"
-msgstr ""
-
-#: ../../include/contact_widgets.php:22
-msgid "Find Channels"
-msgstr ""
-
-#: ../../include/contact_widgets.php:23
-msgid "Enter name or interest"
-msgstr ""
-
-#: ../../include/contact_widgets.php:24
-msgid "Connect/Follow"
-msgstr ""
-
-#: ../../include/contact_widgets.php:25
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr ""
-
-#: ../../include/contact_widgets.php:26 ../../mod/connections.php:391
-#: ../../mod/directory.php:206 ../../mod/directory.php:211
-msgid "Find"
-msgstr ""
-
-#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59
-msgid "Channel Suggestions"
-msgstr ""
-
-#: ../../include/contact_widgets.php:29
-msgid "Random Profile"
-msgstr ""
-
-#: ../../include/contact_widgets.php:30
-msgid "Invite Friends"
-msgstr ""
-
-#: ../../include/contact_widgets.php:32
-msgid "Exammple: name=fred and country=iceland"
-msgstr ""
-
-#: ../../include/contact_widgets.php:33
-msgid "Advanced Find"
-msgstr ""
-
-#: ../../include/contact_widgets.php:58 ../../include/features.php:66
-#: ../../include/widgets.php:295
-msgid "Saved Folders"
-msgstr ""
-
-#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:95
-#: ../../include/widgets.php:298
-msgid "Everything"
-msgstr ""
-
-#: ../../include/contact_widgets.php:92 ../../include/widgets.php:29
-msgid "Categories"
-msgstr ""
-
-#: ../../include/contact_widgets.php:125
-#, php-format
-msgid "%d connection in common"
-msgid_plural "%d connections in common"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../include/conversation.php:123
-msgid "channel"
-msgstr ""
-
#: ../../include/conversation.php:161 ../../mod/like.php:142
#, php-format
msgid "%1$s likes %2$s's %3$s"
@@ -1337,11 +641,36 @@ msgstr ""
msgid "%1$s poked %2$s"
msgstr ""
+#: ../../include/conversation.php:240 ../../include/text.php:895
+msgid "poked"
+msgstr ""
+
#: ../../include/conversation.php:258 ../../mod/mood.php:63
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
+#: ../../include/conversation.php:631 ../../include/ItemObject.php:114
+msgid "Select"
+msgstr ""
+
+#: ../../include/conversation.php:632 ../../include/ItemObject.php:108
+#: ../../include/apps.php:156 ../../mod/group.php:176 ../../mod/thing.php:236
+#: ../../mod/filestorage.php:175 ../../mod/connedit.php:398
+#: ../../mod/settings.php:578 ../../mod/photos.php:1043
+#: ../../mod/admin.php:757 ../../mod/admin.php:886
+msgid "Delete"
+msgstr ""
+
+#: ../../include/conversation.php:639 ../../include/ItemObject.php:89
+#: ../../mod/photos.php:846
+msgid "Private Message"
+msgstr ""
+
+#: ../../include/conversation.php:646 ../../include/ItemObject.php:182
+msgid "Message is verified"
+msgstr ""
+
#: ../../include/conversation.php:666
#, php-format
msgid "View %s's profile @ %s"
@@ -1355,10 +684,33 @@ msgstr ""
msgid "Filed under:"
msgstr ""
+#: ../../include/conversation.php:690 ../../include/ItemObject.php:247
+#, php-format
+msgid " from %s"
+msgstr ""
+
+#: ../../include/conversation.php:693 ../../include/ItemObject.php:250
+#, php-format
+msgid "last edited: %s"
+msgstr ""
+
+#: ../../include/conversation.php:694 ../../include/ItemObject.php:251
+#, php-format
+msgid "Expires: %s"
+msgstr ""
+
#: ../../include/conversation.php:709
msgid "View in context"
msgstr ""
+#: ../../include/conversation.php:711 ../../include/conversation.php:1127
+#: ../../include/ItemObject.php:290 ../../mod/editlayout.php:115
+#: ../../mod/editpost.php:121 ../../mod/photos.php:974
+#: ../../mod/editblock.php:120 ../../mod/editwebpage.php:152
+#: ../../mod/mail.php:222 ../../mod/mail.php:336
+msgid "Please wait"
+msgstr ""
+
#: ../../include/conversation.php:838
msgid "remove"
msgstr ""
@@ -1383,11 +735,6 @@ msgstr ""
msgid "View Status"
msgstr ""
-#: ../../include/conversation.php:937 ../../include/nav.php:81
-#: ../../mod/connedit.php:351 ../../mod/connedit.php:465
-msgid "View Profile"
-msgstr ""
-
#: ../../include/conversation.php:938
msgid "View Photos"
msgstr ""
@@ -1487,8 +834,16 @@ msgstr ""
msgid "Expires YYYY-MM-DD HH:MM"
msgstr ""
-#: ../../include/conversation.php:1102 ../../mod/layouts.php:113
-#: ../../mod/photos.php:973
+#: ../../include/conversation.php:1088 ../../include/ItemObject.php:588
+#: ../../include/page_widgets.php:40 ../../mod/editlayout.php:135
+#: ../../mod/webpages.php:123 ../../mod/editpost.php:140
+#: ../../mod/photos.php:994 ../../mod/editblock.php:141
+#: ../../mod/editwebpage.php:175
+msgid "Preview"
+msgstr ""
+
+#: ../../include/conversation.php:1102 ../../mod/photos.php:973
+#: ../../mod/layouts.php:113
msgid "Share"
msgstr ""
@@ -1500,8 +855,8 @@ msgstr ""
msgid "Post as"
msgstr ""
-#: ../../include/conversation.php:1108 ../../mod/editblock.php:112
-#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113
+#: ../../include/conversation.php:1108 ../../mod/editlayout.php:107
+#: ../../mod/editpost.php:113 ../../mod/editblock.php:112
#: ../../mod/editwebpage.php:144 ../../mod/mail.php:219 ../../mod/mail.php:332
msgid "Upload photo"
msgstr ""
@@ -1510,8 +865,8 @@ msgstr ""
msgid "upload photo"
msgstr ""
-#: ../../include/conversation.php:1110 ../../mod/editblock.php:113
-#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114
+#: ../../include/conversation.php:1110 ../../mod/editlayout.php:108
+#: ../../mod/editpost.php:114 ../../mod/editblock.php:113
#: ../../mod/editwebpage.php:145 ../../mod/mail.php:220 ../../mod/mail.php:333
msgid "Attach file"
msgstr ""
@@ -1520,8 +875,8 @@ msgstr ""
msgid "attach file"
msgstr ""
-#: ../../include/conversation.php:1112 ../../mod/editblock.php:114
-#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115
+#: ../../include/conversation.php:1112 ../../mod/editlayout.php:109
+#: ../../mod/editpost.php:115 ../../mod/editblock.php:114
#: ../../mod/editwebpage.php:146 ../../mod/mail.php:221 ../../mod/mail.php:334
msgid "Insert web link"
msgstr ""
@@ -1546,8 +901,8 @@ msgstr ""
msgid "audio link"
msgstr ""
-#: ../../include/conversation.php:1118 ../../mod/editblock.php:118
-#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119
+#: ../../include/conversation.php:1118 ../../mod/editlayout.php:113
+#: ../../mod/editpost.php:119 ../../mod/editblock.php:118
#: ../../mod/editwebpage.php:150
msgid "Set your location"
msgstr ""
@@ -1556,8 +911,8 @@ msgstr ""
msgid "set location"
msgstr ""
-#: ../../include/conversation.php:1120 ../../mod/editblock.php:119
-#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120
+#: ../../include/conversation.php:1120 ../../mod/editlayout.php:114
+#: ../../mod/editpost.php:120 ../../mod/editblock.php:119
#: ../../mod/editwebpage.php:151
msgid "Clear browser location"
msgstr ""
@@ -1566,20 +921,20 @@ msgstr ""
msgid "clear location"
msgstr ""
-#: ../../include/conversation.php:1123 ../../mod/editblock.php:132
-#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132
+#: ../../include/conversation.php:1123 ../../mod/editlayout.php:126
+#: ../../mod/editpost.php:132 ../../mod/editblock.php:132
#: ../../mod/editwebpage.php:167
msgid "Set title"
msgstr ""
-#: ../../include/conversation.php:1126 ../../mod/editblock.php:135
-#: ../../mod/editlayout.php:129 ../../mod/editpost.php:134
+#: ../../include/conversation.php:1126 ../../mod/editlayout.php:129
+#: ../../mod/editpost.php:134 ../../mod/editblock.php:135
#: ../../mod/editwebpage.php:169
msgid "Categories (comma-separated list)"
msgstr ""
-#: ../../include/conversation.php:1128 ../../mod/editblock.php:121
-#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122
+#: ../../include/conversation.php:1128 ../../mod/editlayout.php:116
+#: ../../mod/editpost.php:122 ../../mod/editblock.php:121
#: ../../mod/editwebpage.php:153
msgid "Permission settings"
msgstr ""
@@ -1588,32 +943,37 @@ msgstr ""
msgid "permissions"
msgstr ""
-#: ../../include/conversation.php:1136 ../../mod/editblock.php:129
-#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129
+#: ../../include/conversation.php:1136 ../../mod/editlayout.php:123
+#: ../../mod/editpost.php:129 ../../mod/editblock.php:129
#: ../../mod/editwebpage.php:162
msgid "Public post"
msgstr ""
-#: ../../include/conversation.php:1138 ../../mod/editblock.php:136
-#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135
+#: ../../include/conversation.php:1138 ../../mod/editlayout.php:130
+#: ../../mod/editpost.php:135 ../../mod/editblock.php:136
#: ../../mod/editwebpage.php:170
msgid "Example: bob@example.com, mary@example.com"
msgstr ""
-#: ../../include/conversation.php:1151 ../../mod/editblock.php:146
-#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146
+#: ../../include/conversation.php:1151 ../../mod/editlayout.php:140
+#: ../../mod/editpost.php:146 ../../mod/editblock.php:146
#: ../../mod/editwebpage.php:180 ../../mod/mail.php:226 ../../mod/mail.php:339
msgid "Set expiration date"
msgstr ""
+#: ../../include/conversation.php:1153 ../../include/ItemObject.php:591
+#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341
+msgid "Encrypt text"
+msgstr ""
+
#: ../../include/conversation.php:1155 ../../mod/editpost.php:150
msgid "OK"
msgstr ""
-#: ../../include/conversation.php:1156 ../../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
+#: ../../include/conversation.php:1156 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/editpost.php:151
+#: ../../mod/settings.php:516 ../../mod/settings.php:542
+#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117
msgid "Cancel"
msgstr ""
@@ -1641,10 +1001,6 @@ msgstr ""
msgid "Sort by Post Date"
msgstr ""
-#: ../../include/conversation.php:1415 ../../include/widgets.php:81
-msgid "Personal"
-msgstr ""
-
#: ../../include/conversation.php:1418
msgid "Posts that mention or involve you"
msgstr ""
@@ -1690,9 +1046,8 @@ msgstr ""
msgid "Profile Details"
msgstr ""
-#: ../../include/conversation.php:1510 ../../include/nav.php:85
-#: ../../mod/fbrowser.php:114
-msgid "Files"
+#: ../../include/conversation.php:1504 ../../include/photos.php:311
+msgid "Photo Albums"
msgstr ""
#: ../../include/conversation.php:1513
@@ -1707,94 +1062,365 @@ msgstr ""
msgid "Events and Calendar"
msgstr ""
-#: ../../include/conversation.php:1540 ../../include/nav.php:88
-msgid "Bookmarks"
-msgstr ""
-
#: ../../include/conversation.php:1543
msgid "Saved Bookmarks"
msgstr ""
-#: ../../include/conversation.php:1551 ../../include/nav.php:90
-#: ../../mod/webpages.php:79
-msgid "Webpages"
-msgstr ""
-
#: ../../include/conversation.php:1554
msgid "Manage Webpages"
msgstr ""
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
+#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:84
+msgid "Default"
msgstr ""
-#: ../../include/datetime.php:152 ../../include/datetime.php:284
-msgid "year"
+#: ../../include/message.php:18
+msgid "No recipient provided."
msgstr ""
-#: ../../include/datetime.php:157 ../../include/datetime.php:285
-msgid "month"
+#: ../../include/message.php:23
+msgid "[no subject]"
msgstr ""
-#: ../../include/datetime.php:162 ../../include/datetime.php:287
-msgid "day"
+#: ../../include/message.php:42
+msgid "Unable to determine sender."
msgstr ""
-#: ../../include/datetime.php:275
-msgid "never"
+#: ../../include/message.php:143
+msgid "Stored post could not be verified."
msgstr ""
-#: ../../include/datetime.php:281
-msgid "less than a second ago"
+#: ../../include/activities.php:39
+msgid " and "
msgstr ""
-#: ../../include/datetime.php:284
-msgid "years"
+#: ../../include/activities.php:47
+msgid "public profile"
msgstr ""
-#: ../../include/datetime.php:285
-msgid "months"
+#: ../../include/activities.php:52
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr ""
-#: ../../include/datetime.php:286
-msgid "week"
+#: ../../include/activities.php:53
+#, php-format
+msgid "Visit %1$s's %2$s"
msgstr ""
-#: ../../include/datetime.php:286
-msgid "weeks"
+#: ../../include/activities.php:56
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
-#: ../../include/datetime.php:287
-msgid "days"
+#: ../../include/network.php:652
+msgid "view full size"
msgstr ""
-#: ../../include/datetime.php:288
-msgid "hour"
+#: ../../include/bookmarks.php:42
+#, php-format
+msgid "%1$s's bookmarks"
msgstr ""
-#: ../../include/datetime.php:288
-msgid "hours"
+#: ../../include/taxonomy.php:210
+msgid "Tags"
msgstr ""
-#: ../../include/datetime.php:289
-msgid "minute"
+#: ../../include/taxonomy.php:227
+msgid "Keywords"
msgstr ""
-#: ../../include/datetime.php:289
-msgid "minutes"
+#: ../../include/taxonomy.php:252
+msgid "have"
msgstr ""
-#: ../../include/datetime.php:290
-msgid "second"
+#: ../../include/taxonomy.php:252
+msgid "has"
msgstr ""
-#: ../../include/datetime.php:290
-msgid "seconds"
+#: ../../include/taxonomy.php:253
+msgid "want"
msgstr ""
-#: ../../include/datetime.php:299
+#: ../../include/taxonomy.php:253
+msgid "wants"
+msgstr ""
+
+#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:205
+msgid "like"
+msgstr ""
+
+#: ../../include/taxonomy.php:254
+msgid "likes"
+msgstr ""
+
+#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:206
+msgid "dislike"
+msgstr ""
+
+#: ../../include/taxonomy.php:255
+msgid "dislikes"
+msgstr ""
+
+#: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8
+#: ../../include/page_widgets.php:36 ../../include/menu.php:42
+#: ../../mod/editlayout.php:106 ../../mod/webpages.php:119
+#: ../../mod/thing.php:235 ../../mod/blocks.php:94
+#: ../../mod/filestorage.php:174 ../../mod/editpost.php:112
+#: ../../mod/settings.php:577 ../../mod/layouts.php:112
+#: ../../mod/connections.php:392 ../../mod/editblock.php:111
+#: ../../mod/editwebpage.php:143 ../../mod/menu.php:59
+msgid "Edit"
+msgstr ""
+
+#: ../../include/ItemObject.php:118
+msgid "save to folder"
+msgstr ""
+
+#: ../../include/ItemObject.php:130 ../../include/ItemObject.php:142
+msgid "View all"
+msgstr ""
+
+#: ../../include/ItemObject.php:134
+msgctxt "noun"
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/ItemObject.php:139
+msgctxt "noun"
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/ItemObject.php:167
+msgid "add star"
+msgstr ""
+
+#: ../../include/ItemObject.php:168
+msgid "remove star"
+msgstr ""
+
+#: ../../include/ItemObject.php:169
+msgid "toggle star status"
+msgstr ""
+
+#: ../../include/ItemObject.php:173
+msgid "starred"
+msgstr ""
+
+#: ../../include/ItemObject.php:190
+msgid "add tag"
+msgstr ""
+
+#: ../../include/ItemObject.php:205 ../../mod/photos.php:971
+msgid "I like this (toggle)"
+msgstr ""
+
+#: ../../include/ItemObject.php:206 ../../mod/photos.php:972
+msgid "I don't like this (toggle)"
+msgstr ""
+
+#: ../../include/ItemObject.php:208
+msgid "Share this"
+msgstr ""
+
+#: ../../include/ItemObject.php:208
+msgid "share"
+msgstr ""
+
+#: ../../include/ItemObject.php:232 ../../include/ItemObject.php:233
#, php-format
-msgid "%1$d %2$s ago"
+msgid "View %s's profile - %s"
+msgstr ""
+
+#: ../../include/ItemObject.php:234
+msgid "to"
+msgstr ""
+
+#: ../../include/ItemObject.php:235
+msgid "via"
+msgstr ""
+
+#: ../../include/ItemObject.php:236
+msgid "Wall-to-Wall"
+msgstr ""
+
+#: ../../include/ItemObject.php:237
+msgid "via Wall-To-Wall:"
+msgstr ""
+
+#: ../../include/ItemObject.php:271
+msgid "Bookmark Links"
+msgstr ""
+
+#: ../../include/ItemObject.php:279
+msgctxt "noun"
+msgid "Likes"
+msgstr ""
+
+#: ../../include/ItemObject.php:280
+msgctxt "noun"
+msgid "Dislikes"
+msgstr ""
+
+#: ../../include/ItemObject.php:285 ../../include/acl_selectors.php:247
+msgid "Close"
+msgstr ""
+
+#: ../../include/ItemObject.php:311
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/ItemObject.php:312 ../../include/contact_widgets.php:130
+#: ../../include/js_strings.php:7
+msgid "show more"
+msgstr ""
+
+#: ../../include/ItemObject.php:576 ../../mod/photos.php:990
+#: ../../mod/photos.php:1077
+msgid "This is you"
+msgstr ""
+
+#: ../../include/ItemObject.php:578 ../../include/js_strings.php:6
+#: ../../mod/photos.php:992 ../../mod/photos.php:1079
+msgid "Comment"
+msgstr ""
+
+#: ../../include/ItemObject.php:579 ../../mod/group.php:81
+#: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/connect.php:92
+#: ../../mod/pdledit.php:58 ../../mod/sources.php:104
+#: ../../mod/sources.php:138 ../../mod/filestorage.php:135
+#: ../../mod/fsuggest.php:108 ../../mod/connedit.php:476
+#: ../../mod/settings.php:515 ../../mod/settings.php:627
+#: ../../mod/settings.php:655 ../../mod/settings.php:679
+#: ../../mod/settings.php:751 ../../mod/settings.php:929
+#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/events.php:481
+#: ../../mod/photos.php:565 ../../mod/photos.php:670 ../../mod/photos.php:953
+#: ../../mod/photos.php:993 ../../mod/photos.php:1080 ../../mod/import.php:387
+#: ../../mod/mood.php:142 ../../mod/chat.php:177 ../../mod/chat.php:211
+#: ../../mod/profiles.php:506 ../../mod/mail.php:223 ../../mod/mail.php:335
+#: ../../mod/appman.php:91 ../../mod/poke.php:166 ../../mod/admin.php:441
+#: ../../mod/admin.php:750 ../../mod/admin.php:884 ../../mod/admin.php:1017
+#: ../../mod/admin.php:1216 ../../mod/admin.php:1303 ../../mod/invite.php:156
+#: ../../view/theme/redbasic/php/config.php:99
+msgid "Submit"
+msgstr ""
+
+#: ../../include/ItemObject.php:580
+msgid "Bold"
+msgstr ""
+
+#: ../../include/ItemObject.php:581
+msgid "Italic"
+msgstr ""
+
+#: ../../include/ItemObject.php:582
+msgid "Underline"
+msgstr ""
+
+#: ../../include/ItemObject.php:583
+msgid "Quote"
+msgstr ""
+
+#: ../../include/ItemObject.php:584
+msgid "Code"
+msgstr ""
+
+#: ../../include/ItemObject.php:585
+msgid "Image"
+msgstr ""
+
+#: ../../include/ItemObject.php:586
+msgid "Link"
+msgstr ""
+
+#: ../../include/ItemObject.php:587
+msgid "Video"
+msgstr ""
+
+#: ../../include/items.php:306 ../../mod/group.php:68
+#: ../../mod/subthread.php:49 ../../mod/profperm.php:23 ../../mod/like.php:63
+#: ../../index.php:361
+msgid "Permission denied"
+msgstr ""
+
+#: ../../include/items.php:830
+msgid "(Unknown)"
+msgstr ""
+
+#: ../../include/items.php:3583 ../../mod/home.php:63 ../../mod/thing.php:78
+#: ../../mod/filestorage.php:18 ../../mod/viewsrc.php:18
+#: ../../mod/display.php:32 ../../mod/admin.php:159 ../../mod/admin.php:921
+#: ../../mod/admin.php:1124
+msgid "Item not found."
+msgstr ""
+
+#: ../../include/items.php:3645 ../../include/attach.php:119
+#: ../../include/attach.php:166 ../../include/attach.php:229
+#: ../../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/photos.php:15 ../../include/chat.php:116 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/editlayout.php:48 ../../mod/webpages.php:40
+#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
+#: ../../mod/group.php:9 ../../mod/thing.php:247 ../../mod/thing.php:263
+#: ../../mod/thing.php:298 ../../mod/notifications.php:66
+#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/message.php:16
+#: ../../mod/mitem.php:73 ../../mod/item.php:179 ../../mod/item.php:187
+#: ../../mod/item.php:872 ../../mod/suggest.php:26 ../../mod/network.php:12
+#: ../../mod/bookmarks.php:46 ../../mod/channel.php:89
+#: ../../mod/channel.php:193 ../../mod/channel.php:236
+#: ../../mod/pdledit.php:21 ../../mod/sources.php:66
+#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276
+#: ../../mod/blocks.php:29 ../../mod/blocks.php:44
+#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59
+#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98
+#: ../../mod/authtest.php:13 ../../mod/fsuggest.php:78
+#: ../../mod/connedit.php:221 ../../mod/viewsrc.php:12
+#: ../../mod/achievements.php:27 ../../mod/editpost.php:13
+#: ../../mod/settings.php:492 ../../mod/setup.php:203 ../../mod/events.php:140
+#: ../../mod/photos.php:68 ../../mod/photos.php:526 ../../mod/delegate.php:6
+#: ../../mod/layouts.php:27 ../../mod/layouts.php:39
+#: ../../mod/connections.php:169 ../../mod/page.php:30 ../../mod/page.php:80
+#: ../../mod/mood.php:119 ../../mod/chat.php:90 ../../mod/chat.php:95
+#: ../../mod/editblock.php:34 ../../mod/editwebpage.php:44
+#: ../../mod/editwebpage.php:83 ../../mod/profiles.php:152
+#: ../../mod/profiles.php:453 ../../mod/menu.php:44 ../../mod/mail.php:108
+#: ../../mod/appman.php:58 ../../mod/poke.php:128
+#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
+#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/register.php:68
+#: ../../mod/manage.php:6 ../../mod/invite.php:13 ../../mod/invite.php:104
+#: ../../mod/common.php:35 ../../mod/regmod.php:18 ../../index.php:187
+#: ../../index.php:362
+msgid "Permission denied."
+msgstr ""
+
+#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140
+msgid "Collection not found."
+msgstr ""
+
+#: ../../include/items.php:4022
+msgid "Collection is empty."
+msgstr ""
+
+#: ../../include/items.php:4029
+#, php-format
+msgid "Collection: %s"
+msgstr ""
+
+#: ../../include/items.php:4040
+#, php-format
+msgid "Connection: %s"
+msgstr ""
+
+#: ../../include/items.php:4043
+msgid "Connection not found."
msgstr ""
#: ../../include/dir_fns.php:36
@@ -1825,6 +1451,21 @@ msgstr ""
msgid "Safe Mode"
msgstr ""
+#: ../../include/security.php:301
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr ""
+
+#: ../../include/notify.php:23
+msgid "created a new post"
+msgstr ""
+
+#: ../../include/notify.php:24
+#, php-format
+msgid "commented on %s's post"
+msgstr ""
+
#: ../../include/enotify.php:41
msgid "Red Matrix Notification"
msgstr ""
@@ -2016,2480 +1657,2336 @@ msgstr ""
msgid "Please visit %s to approve or reject the suggestion."
msgstr ""
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr ""
-
-#: ../../include/features.php:25
-msgid "Content Expiration"
-msgstr ""
-
-#: ../../include/features.php:25
-msgid "Remove posts/comments and/or private messages at a future time"
-msgstr ""
-
-#: ../../include/features.php:26
-msgid "Multiple Profiles"
-msgstr ""
-
-#: ../../include/features.php:26
-msgid "Ability to create multiple profiles"
-msgstr ""
-
-#: ../../include/features.php:27
-msgid "Web Pages"
-msgstr ""
-
-#: ../../include/features.php:27
-msgid "Provide managed web pages on your channel"
-msgstr ""
-
-#: ../../include/features.php:28
-msgid "Private Notes"
+#: ../../include/attach.php:224 ../../include/attach.php:278
+msgid "Item was not found."
msgstr ""
-#: ../../include/features.php:28
-msgid "Enables a tool to store notes and reminders"
+#: ../../include/attach.php:335
+msgid "No source file."
msgstr ""
-#: ../../include/features.php:33
-msgid "Extended Identity Sharing"
+#: ../../include/attach.php:352
+msgid "Cannot locate file to replace"
msgstr ""
-#: ../../include/features.php:33
-msgid ""
-"Share your identity with all websites on the internet. When disabled, "
-"identity is only shared with sites in the matrix."
+#: ../../include/attach.php:370
+msgid "Cannot locate file to revise/update"
msgstr ""
-#: ../../include/features.php:34
-msgid "Expert Mode"
+#: ../../include/attach.php:381
+#, php-format
+msgid "File exceeds size limit of %d"
msgstr ""
-#: ../../include/features.php:34
-msgid "Enable Expert Mode to provide advanced configuration options"
+#: ../../include/attach.php:393
+#, php-format
+msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
msgstr ""
-#: ../../include/features.php:35
-msgid "Premium Channel"
+#: ../../include/attach.php:475
+msgid "File upload failed. Possible system limit or action terminated."
msgstr ""
-#: ../../include/features.php:35
-msgid ""
-"Allows you to set restrictions and terms on those that connect with your "
-"channel"
+#: ../../include/attach.php:487
+msgid "Stored file could not be verified. Upload failed."
msgstr ""
-#: ../../include/features.php:40
-msgid "Post Composition Features"
+#: ../../include/attach.php:528 ../../include/attach.php:545
+msgid "Path not available."
msgstr ""
-#: ../../include/features.php:41
-msgid "Richtext Editor"
+#: ../../include/attach.php:590
+msgid "Empty pathname"
msgstr ""
-#: ../../include/features.php:41
-msgid "Enable richtext editor"
+#: ../../include/attach.php:606
+msgid "duplicate filename or path"
msgstr ""
-#: ../../include/features.php:42
-msgid "Post Preview"
+#: ../../include/attach.php:630
+msgid "Path not found."
msgstr ""
-#: ../../include/features.php:42
-msgid "Allow previewing posts and comments before publishing them"
+#: ../../include/attach.php:674
+msgid "mkdir failed."
msgstr ""
-#: ../../include/features.php:43 ../../include/widgets.php:502
-#: ../../mod/sources.php:88
-msgid "Channel Sources"
+#: ../../include/attach.php:678
+msgid "database storage failed."
msgstr ""
-#: ../../include/features.php:43
-msgid "Automatically import channel content from other channels or feeds"
+#: ../../include/page_widgets.php:6
+msgid "New Page"
msgstr ""
-#: ../../include/features.php:44
-msgid "Even More Encryption"
+#: ../../include/page_widgets.php:39 ../../mod/webpages.php:122
+#: ../../mod/blocks.php:97 ../../mod/layouts.php:116
+msgid "View"
msgstr ""
-#: ../../include/features.php:44
-msgid ""
-"Allow optional encryption of content end-to-end with a shared secret key"
+#: ../../include/page_widgets.php:41 ../../mod/webpages.php:124
+msgid "Actions"
msgstr ""
-#: ../../include/features.php:49
-msgid "Network and Stream Filtering"
+#: ../../include/page_widgets.php:42 ../../mod/webpages.php:125
+msgid "Page Link"
msgstr ""
-#: ../../include/features.php:50
-msgid "Search by Date"
+#: ../../include/page_widgets.php:43 ../../mod/webpages.php:126
+msgid "Title"
msgstr ""
-#: ../../include/features.php:50
-msgid "Ability to select posts by date ranges"
+#: ../../include/page_widgets.php:44 ../../mod/webpages.php:127
+msgid "Created"
msgstr ""
-#: ../../include/features.php:51
-msgid "Collections Filter"
+#: ../../include/page_widgets.php:45 ../../mod/webpages.php:128
+msgid "Edited"
msgstr ""
-#: ../../include/features.php:51
-msgid "Enable widget to display Network posts only from selected collections"
+#: ../../include/photos.php:51 ../../include/photo/photo_driver.php:643
+#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301
+#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91
+#: ../../mod/photos.php:655 ../../mod/photos.php:677
+msgid "Profile Photos"
msgstr ""
-#: ../../include/features.php:52 ../../include/widgets.php:264
-msgid "Saved Searches"
+#: ../../include/photos.php:89
+#, php-format
+msgid "Image exceeds website size limit of %lu bytes"
msgstr ""
-#: ../../include/features.php:52
-msgid "Save search terms for re-use"
+#: ../../include/photos.php:96
+msgid "Image file is empty."
msgstr ""
-#: ../../include/features.php:53
-msgid "Network Personal Tab"
+#: ../../include/photos.php:123 ../../mod/profile_photo.php:216
+msgid "Unable to process image"
msgstr ""
-#: ../../include/features.php:53
-msgid "Enable tab to display only Network posts that you've interacted on"
+#: ../../include/photos.php:186
+msgid "Photo storage failed."
msgstr ""
-#: ../../include/features.php:54
-msgid "Network New Tab"
+#: ../../include/photos.php:315 ../../mod/photos.php:693
+#: ../../mod/photos.php:1190
+msgid "Upload New Photos"
msgstr ""
-#: ../../include/features.php:54
-msgid "Enable tab to display all new Network activity"
+#: ../../include/dba/dba_driver.php:50
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
msgstr ""
-#: ../../include/features.php:55
-msgid "Affinity Tool"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
msgstr ""
-#: ../../include/features.php:55
-msgid "Filter stream activity by depth of relationships"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
msgstr ""
-#: ../../include/features.php:56
-msgid "Suggest Channels"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
msgstr ""
-#: ../../include/features.php:56
-msgid "Show channel suggestions"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
msgstr ""
-#: ../../include/features.php:61
-msgid "Post/Comment Tools"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
msgstr ""
-#: ../../include/features.php:63
-msgid "Edit Sent Posts"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
msgstr ""
-#: ../../include/features.php:63
-msgid "Edit and correct posts and comments after sending"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
msgstr ""
-#: ../../include/features.php:64
-msgid "Tagging"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
msgstr ""
-#: ../../include/features.php:64
-msgid "Ability to tag existing posts"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
msgstr ""
-#: ../../include/features.php:65
-msgid "Post Categories"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
msgstr ""
-#: ../../include/features.php:65
-msgid "Add categories to your posts"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
msgstr ""
-#: ../../include/features.php:66
-msgid "Ability to file posts under folders"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
msgstr ""
-#: ../../include/features.php:67
-msgid "Dislike Posts"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
msgstr ""
-#: ../../include/features.php:67
-msgid "Ability to dislike posts/comments"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
msgstr ""
-#: ../../include/features.php:68
-msgid "Star Posts"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
msgstr ""
-#: ../../include/features.php:68
-msgid "Ability to mark special posts with a star indicator"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
msgstr ""
-#: ../../include/features.php:69
-msgid "Tag Cloud"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
msgstr ""
-#: ../../include/features.php:69
-msgid "Provide a personal tag cloud on your channel page"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
msgstr ""
-#: ../../include/follow.php:23
-msgid "Channel is blocked on this site."
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
msgstr ""
-#: ../../include/follow.php:28
-msgid "Channel location missing."
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
msgstr ""
-#: ../../include/follow.php:54
-msgid "Response from remote channel was incomplete."
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
msgstr ""
-#: ../../include/follow.php:85
-msgid "Channel was deleted and no longer exists."
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
msgstr ""
-#: ../../include/follow.php:132
-msgid "Channel discovery failed."
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
msgstr ""
-#: ../../include/follow.php:149
-msgid "local account not found."
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
msgstr ""
-#: ../../include/follow.php:158
-msgid "Cannot connect to yourself."
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
msgstr ""
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
msgstr ""
-#: ../../include/group.php:223
-msgid "Default privacy group for new contacts"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
msgstr ""
-#: ../../include/group.php:242 ../../mod/admin.php:762
-msgid "All Channels"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
msgstr ""
-#: ../../include/group.php:264
-msgid "edit"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
msgstr ""
-#: ../../include/group.php:285
-msgid "Collections"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
msgstr ""
-#: ../../include/group.php:286
-msgid "Edit collection"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
msgstr ""
-#: ../../include/group.php:287
-msgid "Create a new collection"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
msgstr ""
-#: ../../include/group.php:288
-msgid "Channels not in any collection"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
msgstr ""
-#: ../../include/group.php:290 ../../include/widgets.php:265
-msgid "add"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
msgstr ""
-#: ../../include/identity.php:30 ../../mod/item.php:1244
-msgid "Unable to obtain identity information from database"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
msgstr ""
-#: ../../include/identity.php:63
-msgid "Empty name"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
msgstr ""
-#: ../../include/identity.php:65
-msgid "Name too long"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
msgstr ""
-#: ../../include/identity.php:166
-msgid "No account identifier"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
msgstr ""
-#: ../../include/identity.php:176
-msgid "Nickname is required."
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
msgstr ""
-#: ../../include/identity.php:190
-msgid "Reserved nickname. Please choose another."
+#: ../../include/profile_selectors.php:42
+msgid "Married"
msgstr ""
-#: ../../include/identity.php:195
-msgid ""
-"Nickname has unsupported characters or is already being used on this site."
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
msgstr ""
-#: ../../include/identity.php:258
-msgid "Unable to retrieve created identity"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
msgstr ""
-#: ../../include/identity.php:317
-msgid "Default Profile"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
msgstr ""
-#: ../../include/identity.php:342 ../../include/profile_selectors.php:42
-#: ../../include/widgets.php:399 ../../mod/connedit.php:431
-msgid "Friends"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
msgstr ""
-#: ../../include/identity.php:509
-msgid "Requested channel is not available."
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
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
-msgid "Requested profile is not available."
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
msgstr ""
-#: ../../include/identity.php:689 ../../mod/profiles.php:603
-msgid "Change profile photo"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
msgstr ""
-#: ../../include/identity.php:695
-msgid "Profiles"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
msgstr ""
-#: ../../include/identity.php:695
-msgid "Manage/edit profiles"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
msgstr ""
-#: ../../include/identity.php:696 ../../mod/profiles.php:604
-msgid "Create New Profile"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
msgstr ""
-#: ../../include/identity.php:699
-msgid "Edit Profile"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
msgstr ""
-#: ../../include/identity.php:710 ../../mod/profiles.php:615
-msgid "Profile Image"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
msgstr ""
-#: ../../include/identity.php:713 ../../mod/profiles.php:618
-msgid "visible to everybody"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
msgstr ""
-#: ../../include/identity.php:714 ../../mod/profiles.php:619
-msgid "Edit visibility"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
msgstr ""
-#: ../../include/identity.php:728 ../../include/identity.php:952
-#: ../../mod/directory.php:158
-msgid "Gender:"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
msgstr ""
-#: ../../include/identity.php:729 ../../include/identity.php:977
-#: ../../mod/directory.php:160
-msgid "Status:"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
msgstr ""
-#: ../../include/identity.php:730 ../../include/identity.php:988
-#: ../../mod/directory.php:162
-msgid "Homepage:"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
msgstr ""
-#: ../../include/identity.php:731 ../../mod/dirprofile.php:151
-msgid "Online Now"
+#: ../../include/plugin.php:486 ../../include/plugin.php:488
+msgid "Click here to upgrade."
msgstr ""
-#: ../../include/identity.php:796 ../../include/identity.php:876
-#: ../../mod/ping.php:262
-msgid "g A l F d"
+#: ../../include/plugin.php:494
+msgid "This action exceeds the limits set by your subscription plan."
msgstr ""
-#: ../../include/identity.php:797 ../../include/identity.php:877
-msgid "F d"
+#: ../../include/plugin.php:499
+msgid "This action is not available under your subscription plan."
msgstr ""
-#: ../../include/identity.php:842 ../../include/identity.php:917
-#: ../../mod/ping.php:284
-msgid "[today]"
+#: ../../include/acl_selectors.php:238
+msgid "Visible to everybody"
msgstr ""
-#: ../../include/identity.php:854
-msgid "Birthday Reminders"
+#: ../../include/acl_selectors.php:239
+msgid "Show"
msgstr ""
-#: ../../include/identity.php:855
-msgid "Birthdays this week:"
+#: ../../include/acl_selectors.php:240
+msgid "Don't show"
msgstr ""
-#: ../../include/identity.php:910
-msgid "[No description]"
+#: ../../include/acl_selectors.php:246 ../../mod/filestorage.php:126
+#: ../../mod/photos.php:606 ../../mod/photos.php:949 ../../mod/chat.php:209
+msgid "Permissions"
msgstr ""
-#: ../../include/identity.php:928
-msgid "Event Reminders"
+#: ../../include/account.php:23
+msgid "Not a valid email address"
msgstr ""
-#: ../../include/identity.php:929
-msgid "Events this week:"
+#: ../../include/account.php:25
+msgid "Your email domain is not among those allowed on this site"
msgstr ""
-#: ../../include/identity.php:950 ../../mod/settings.php:937
-msgid "Full Name:"
+#: ../../include/account.php:31
+msgid "Your email address is already registered at this site."
msgstr ""
-#: ../../include/identity.php:962
-msgid "j F, Y"
+#: ../../include/account.php:64
+msgid "An invitation is required."
msgstr ""
-#: ../../include/identity.php:963
-msgid "j F"
+#: ../../include/account.php:68
+msgid "Invitation could not be verified."
msgstr ""
-#: ../../include/identity.php:970
-msgid "Birthday:"
+#: ../../include/account.php:119
+msgid "Please enter the required information."
msgstr ""
-#: ../../include/identity.php:974
-msgid "Age:"
+#: ../../include/account.php:187
+msgid "Failed to store account information."
msgstr ""
-#: ../../include/identity.php:983
+#: ../../include/account.php:273
#, php-format
-msgid "for %1$d %2$s"
-msgstr ""
-
-#: ../../include/identity.php:986 ../../mod/profiles.php:526
-msgid "Sexual Preference:"
-msgstr ""
-
-#: ../../include/identity.php:990 ../../mod/profiles.php:528
-msgid "Hometown:"
-msgstr ""
-
-#: ../../include/identity.php:992
-msgid "Tags:"
-msgstr ""
-
-#: ../../include/identity.php:994 ../../mod/profiles.php:529
-msgid "Political Views:"
+msgid "Registration request at %s"
msgstr ""
-#: ../../include/identity.php:996
-msgid "Religion:"
+#: ../../include/account.php:275 ../../include/account.php:302
+#: ../../include/account.php:359
+msgid "Administrator"
msgstr ""
-#: ../../include/identity.php:998 ../../mod/directory.php:164
-msgid "About:"
+#: ../../include/account.php:297
+msgid "your registration password"
msgstr ""
-#: ../../include/identity.php:1000
-msgid "Hobbies/Interests:"
+#: ../../include/account.php:300 ../../include/account.php:357
+#, php-format
+msgid "Registration details for %s"
msgstr ""
-#: ../../include/identity.php:1002 ../../mod/profiles.php:532
-msgid "Likes:"
+#: ../../include/account.php:366
+msgid "Account approved."
msgstr ""
-#: ../../include/identity.php:1004 ../../mod/profiles.php:533
-msgid "Dislikes:"
+#: ../../include/account.php:400
+#, php-format
+msgid "Registration revoked for %s"
msgstr ""
-#: ../../include/identity.php:1007
-msgid "Contact information and Social Networks:"
+#: ../../include/Contact.php:123
+msgid "New window"
msgstr ""
-#: ../../include/identity.php:1009
-msgid "My other channels:"
+#: ../../include/Contact.php:124
+msgid "Open the selected location in a different window or browser tab"
msgstr ""
-#: ../../include/identity.php:1011
-msgid "Musical interests:"
+#: ../../include/contact_selectors.php:30
+msgid "Unknown | Not categorised"
msgstr ""
-#: ../../include/identity.php:1013
-msgid "Books, literature:"
+#: ../../include/contact_selectors.php:31
+msgid "Block immediately"
msgstr ""
-#: ../../include/identity.php:1015
-msgid "Television:"
+#: ../../include/contact_selectors.php:32
+msgid "Shady, spammer, self-marketer"
msgstr ""
-#: ../../include/identity.php:1017
-msgid "Film/dance/culture/entertainment:"
+#: ../../include/contact_selectors.php:33
+msgid "Known to me, but no opinion"
msgstr ""
-#: ../../include/identity.php:1019
-msgid "Love/Romance:"
+#: ../../include/contact_selectors.php:34
+msgid "OK, probably harmless"
msgstr ""
-#: ../../include/identity.php:1021
-msgid "Work/employment:"
+#: ../../include/contact_selectors.php:35
+msgid "Reputable, has my trust"
msgstr ""
-#: ../../include/identity.php:1023
-msgid "School/education:"
+#: ../../include/contact_selectors.php:54
+msgid "Frequently"
msgstr ""
-#: ../../include/items.php:306 ../../mod/profperm.php:23
-#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:63
-#: ../../index.php:361
-msgid "Permission denied"
+#: ../../include/contact_selectors.php:55
+msgid "Hourly"
msgstr ""
-#: ../../include/items.php:830
-msgid "(Unknown)"
+#: ../../include/contact_selectors.php:56
+msgid "Twice daily"
msgstr ""
-#: ../../include/items.php:3583 ../../mod/admin.php:159
-#: ../../mod/admin.php:921 ../../mod/admin.php:1124 ../../mod/display.php:32
-#: ../../mod/filestorage.php:18 ../../mod/home.php:63 ../../mod/thing.php:78
-#: ../../mod/viewsrc.php:18
-msgid "Item not found."
+#: ../../include/contact_selectors.php:57
+msgid "Daily"
msgstr ""
-#: ../../include/items.php:4007 ../../mod/group.php:38 ../../mod/group.php:140
-msgid "Collection not found."
+#: ../../include/contact_selectors.php:58
+msgid "Weekly"
msgstr ""
-#: ../../include/items.php:4022
-msgid "Collection is empty."
+#: ../../include/contact_selectors.php:59
+msgid "Monthly"
msgstr ""
-#: ../../include/items.php:4029
-#, php-format
-msgid "Collection: %s"
+#: ../../include/contact_selectors.php:74
+msgid "Friendica"
msgstr ""
-#: ../../include/items.php:4040
-#, php-format
-msgid "Connection: %s"
+#: ../../include/contact_selectors.php:75
+msgid "OStatus"
msgstr ""
-#: ../../include/items.php:4043
-msgid "Connection not found."
+#: ../../include/contact_selectors.php:76
+msgid "RSS/Atom"
msgstr ""
-#: ../../include/js_strings.php:5
-msgid "Delete this item?"
+#: ../../include/contact_selectors.php:77 ../../mod/admin.php:753
+#: ../../mod/admin.php:762 ../../boot.php:1453
+msgid "Email"
msgstr ""
-#: ../../include/js_strings.php:8
-msgid "show fewer"
+#: ../../include/contact_selectors.php:78
+msgid "Diaspora"
msgstr ""
-#: ../../include/js_strings.php:9
-msgid "+ Show More"
+#: ../../include/contact_selectors.php:79
+msgid "Facebook"
msgstr ""
-#: ../../include/js_strings.php:10
-msgid "- Show Less"
+#: ../../include/contact_selectors.php:80
+msgid "Zot!"
msgstr ""
-#: ../../include/js_strings.php:11
-msgid "Password too short"
+#: ../../include/contact_selectors.php:81
+msgid "LinkedIn"
msgstr ""
-#: ../../include/js_strings.php:12
-msgid "Passwords do not match"
+#: ../../include/contact_selectors.php:82
+msgid "XMPP/IM"
msgstr ""
-#: ../../include/js_strings.php:13 ../../mod/photos.php:39
-msgid "everybody"
+#: ../../include/contact_selectors.php:83
+msgid "MySpace"
msgstr ""
-#: ../../include/js_strings.php:14
-msgid "Secret Passphrase"
+#: ../../include/apps.php:109 ../../include/identity.php:942
+#: ../../include/identity.php:1031 ../../mod/profperm.php:112
+msgid "Profile"
msgstr ""
-#: ../../include/js_strings.php:15
-msgid "Passphrase hint"
+#: ../../include/apps.php:151 ../../mod/settings.php:79
+#: ../../mod/settings.php:541
+msgid "Update"
msgstr ""
-#: ../../include/js_strings.php:16
-msgid "Notice: Permissions have changed but have not yet been submitted."
+#: ../../include/apps.php:151
+msgid "Install"
msgstr ""
-#: ../../include/js_strings.php:17
-msgid "close all"
+#: ../../include/apps.php:231 ../../include/apps.php:279
+#: ../../mod/connedit.php:434
+msgid "Unknown"
msgstr ""
-#: ../../include/js_strings.php:19
-msgid "timeago.prefixAgo"
+#: ../../include/auth.php:79
+msgid "Logged out."
msgstr ""
-#: ../../include/js_strings.php:20
-msgid "timeago.prefixFromNow"
+#: ../../include/auth.php:198
+msgid "Failed authentication"
msgstr ""
-#: ../../include/js_strings.php:21
-msgid "ago"
+#: ../../include/auth.php:213 ../../mod/openid.php:188
+msgid "Login failed."
msgstr ""
-#: ../../include/js_strings.php:22
-msgid "from now"
+#: ../../include/text.php:320
+msgid "prev"
msgstr ""
-#: ../../include/js_strings.php:23
-msgid "less than a minute"
+#: ../../include/text.php:322
+msgid "first"
msgstr ""
-#: ../../include/js_strings.php:24
-msgid "about a minute"
+#: ../../include/text.php:351
+msgid "last"
msgstr ""
-#: ../../include/js_strings.php:25
-#, php-format
-msgid "%d minutes"
+#: ../../include/text.php:354
+msgid "next"
msgstr ""
-#: ../../include/js_strings.php:26
-msgid "about an hour"
+#: ../../include/text.php:366
+msgid "older"
msgstr ""
-#: ../../include/js_strings.php:27
-#, php-format
-msgid "about %d hours"
+#: ../../include/text.php:368
+msgid "newer"
msgstr ""
-#: ../../include/js_strings.php:28
-msgid "a day"
+#: ../../include/text.php:729
+msgid "No connections"
msgstr ""
-#: ../../include/js_strings.php:29
+#: ../../include/text.php:742
#, php-format
-msgid "%d days"
-msgstr ""
+msgid "%d Connection"
+msgid_plural "%d Connections"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/js_strings.php:30
-msgid "about a month"
+#: ../../include/text.php:754
+msgid "View Connections"
msgstr ""
-#: ../../include/js_strings.php:31
-#, php-format
-msgid "%d months"
+#: ../../include/text.php:895
+msgid "poke"
msgstr ""
-#: ../../include/js_strings.php:32
-msgid "about a year"
+#: ../../include/text.php:896
+msgid "ping"
msgstr ""
-#: ../../include/js_strings.php:33
-#, php-format
-msgid "%d years"
+#: ../../include/text.php:896
+msgid "pinged"
msgstr ""
-#: ../../include/js_strings.php:34
-msgid " "
+#: ../../include/text.php:897
+msgid "prod"
msgstr ""
-#: ../../include/js_strings.php:35
-msgid "timeago.numbers"
+#: ../../include/text.php:897
+msgid "prodded"
msgstr ""
-#: ../../include/message.php:18
-msgid "No recipient provided."
+#: ../../include/text.php:898
+msgid "slap"
msgstr ""
-#: ../../include/message.php:23
-msgid "[no subject]"
+#: ../../include/text.php:898
+msgid "slapped"
msgstr ""
-#: ../../include/message.php:42
-msgid "Unable to determine sender."
+#: ../../include/text.php:899
+msgid "finger"
msgstr ""
-#: ../../include/message.php:143
-msgid "Stored post could not be verified."
+#: ../../include/text.php:899
+msgid "fingered"
msgstr ""
-#: ../../include/nav.php:77 ../../include/nav.php:96 ../../boot.php:1450
-msgid "Logout"
+#: ../../include/text.php:900
+msgid "rebuff"
msgstr ""
-#: ../../include/nav.php:77 ../../include/nav.php:96
-msgid "End this session"
+#: ../../include/text.php:900
+msgid "rebuffed"
msgstr ""
-#: ../../include/nav.php:80 ../../include/nav.php:130
-msgid "Home"
+#: ../../include/text.php:909
+msgid "happy"
msgstr ""
-#: ../../include/nav.php:80
-msgid "Your posts and conversations"
+#: ../../include/text.php:910
+msgid "sad"
msgstr ""
-#: ../../include/nav.php:81
-msgid "Your profile page"
+#: ../../include/text.php:911
+msgid "mellow"
msgstr ""
-#: ../../include/nav.php:83
-msgid "Edit Profiles"
+#: ../../include/text.php:912
+msgid "tired"
msgstr ""
-#: ../../include/nav.php:83
-msgid "Manage/Edit profiles"
+#: ../../include/text.php:913
+msgid "perky"
msgstr ""
-#: ../../include/nav.php:84
-msgid "Your photos"
+#: ../../include/text.php:914
+msgid "angry"
msgstr ""
-#: ../../include/nav.php:85
-msgid "Your files"
+#: ../../include/text.php:915
+msgid "stupified"
msgstr ""
-#: ../../include/nav.php:86
-msgid "Chat"
+#: ../../include/text.php:916
+msgid "puzzled"
msgstr ""
-#: ../../include/nav.php:86
-msgid "Your chatrooms"
+#: ../../include/text.php:917
+msgid "interested"
msgstr ""
-#: ../../include/nav.php:87
-msgid "Your events"
+#: ../../include/text.php:918
+msgid "bitter"
msgstr ""
-#: ../../include/nav.php:88
-msgid "Your bookmarks"
+#: ../../include/text.php:919
+msgid "cheerful"
msgstr ""
-#: ../../include/nav.php:90
-msgid "Your webpages"
+#: ../../include/text.php:920
+msgid "alive"
msgstr ""
-#: ../../include/nav.php:94 ../../boot.php:1451
-msgid "Login"
+#: ../../include/text.php:921
+msgid "annoyed"
msgstr ""
-#: ../../include/nav.php:94
-msgid "Sign in"
+#: ../../include/text.php:922
+msgid "anxious"
msgstr ""
-#: ../../include/nav.php:111
-#, php-format
-msgid "%s - click to logout"
+#: ../../include/text.php:923
+msgid "cranky"
msgstr ""
-#: ../../include/nav.php:116
-msgid "Click to authenticate to your home hub"
+#: ../../include/text.php:924
+msgid "disturbed"
msgstr ""
-#: ../../include/nav.php:130
-msgid "Home Page"
+#: ../../include/text.php:925
+msgid "frustrated"
msgstr ""
-#: ../../include/nav.php:134 ../../mod/register.php:206 ../../boot.php:1427
-msgid "Register"
+#: ../../include/text.php:926
+msgid "depressed"
msgstr ""
-#: ../../include/nav.php:134
-msgid "Create an account"
+#: ../../include/text.php:927
+msgid "motivated"
msgstr ""
-#: ../../include/nav.php:139
-msgid "Help and documentation"
+#: ../../include/text.php:928
+msgid "relaxed"
msgstr ""
-#: ../../include/nav.php:142 ../../mod/apps.php:17 ../../mod/apps.php:35
-msgid "Apps"
+#: ../../include/text.php:929
+msgid "surprised"
msgstr ""
-#: ../../include/nav.php:142
-msgid "Addon applications, utilities, games"
+#: ../../include/text.php:1090
+msgid "Monday"
msgstr ""
-#: ../../include/nav.php:144
-msgid "Search site content"
+#: ../../include/text.php:1090
+msgid "Tuesday"
msgstr ""
-#: ../../include/nav.php:147
-msgid "Channel Locator"
+#: ../../include/text.php:1090
+msgid "Wednesday"
msgstr ""
-#: ../../include/nav.php:158
-msgid "Your matrix"
+#: ../../include/text.php:1090
+msgid "Thursday"
msgstr ""
-#: ../../include/nav.php:159
-msgid "Mark all matrix notifications seen"
+#: ../../include/text.php:1090
+msgid "Friday"
msgstr ""
-#: ../../include/nav.php:161
-msgid "Channel home"
+#: ../../include/text.php:1090
+msgid "Saturday"
msgstr ""
-#: ../../include/nav.php:162
-msgid "Mark all channel notifications seen"
+#: ../../include/text.php:1090
+msgid "Sunday"
msgstr ""
-#: ../../include/nav.php:165 ../../include/nav.php:188
-#: ../../mod/connections.php:385
-msgid "Connections"
+#: ../../include/text.php:1094
+msgid "January"
msgstr ""
-#: ../../include/nav.php:168
-msgid "Notices"
+#: ../../include/text.php:1094
+msgid "February"
msgstr ""
-#: ../../include/nav.php:168
-msgid "Notifications"
+#: ../../include/text.php:1094
+msgid "March"
msgstr ""
-#: ../../include/nav.php:169
-msgid "See all notifications"
+#: ../../include/text.php:1094
+msgid "April"
msgstr ""
-#: ../../include/nav.php:170 ../../mod/notifications.php:99
-msgid "Mark all system notifications seen"
+#: ../../include/text.php:1094
+msgid "May"
msgstr ""
-#: ../../include/nav.php:172
-msgid "Mail"
+#: ../../include/text.php:1094
+msgid "June"
msgstr ""
-#: ../../include/nav.php:172
-msgid "Private mail"
+#: ../../include/text.php:1094
+msgid "July"
msgstr ""
-#: ../../include/nav.php:173
-msgid "See all private messages"
+#: ../../include/text.php:1094
+msgid "August"
msgstr ""
-#: ../../include/nav.php:174
-msgid "Mark all private messages seen"
+#: ../../include/text.php:1094
+msgid "September"
msgstr ""
-#: ../../include/nav.php:175
-msgid "Inbox"
+#: ../../include/text.php:1094
+msgid "October"
msgstr ""
-#: ../../include/nav.php:176
-msgid "Outbox"
+#: ../../include/text.php:1094
+msgid "November"
msgstr ""
-#: ../../include/nav.php:177 ../../include/widgets.php:535
-msgid "New Message"
+#: ../../include/text.php:1094
+msgid "December"
msgstr ""
-#: ../../include/nav.php:180
-msgid "Event Calendar"
+#: ../../include/text.php:1172
+msgid "unknown.???"
msgstr ""
-#: ../../include/nav.php:181
-msgid "See all events"
+#: ../../include/text.php:1173
+msgid "bytes"
msgstr ""
-#: ../../include/nav.php:182
-msgid "Mark all events seen"
+#: ../../include/text.php:1208
+msgid "remove category"
msgstr ""
-#: ../../include/nav.php:184
-msgid "Channel Select"
+#: ../../include/text.php:1257
+msgid "remove from file"
msgstr ""
-#: ../../include/nav.php:184
-msgid "Manage Your Channels"
+#: ../../include/text.php:1318 ../../include/text.php:1330
+msgid "Click to open/close"
msgstr ""
-#: ../../include/nav.php:186 ../../include/widgets.php:513
-#: ../../mod/admin.php:976 ../../mod/admin.php:1181
-msgid "Settings"
+#: ../../include/text.php:1485 ../../mod/events.php:344
+msgid "link to source"
msgstr ""
-#: ../../include/nav.php:186
-msgid "Account/Channel Settings"
+#: ../../include/text.php:1504
+msgid "Select a page layout: "
msgstr ""
-#: ../../include/nav.php:188
-msgid "Manage/Edit Friends and Connections"
+#: ../../include/text.php:1507 ../../include/text.php:1572
+msgid "default"
msgstr ""
-#: ../../include/nav.php:195 ../../mod/admin.php:117
-msgid "Admin"
+#: ../../include/text.php:1543
+msgid "Page content type: "
msgstr ""
-#: ../../include/nav.php:195
-msgid "Site Setup and Configuration"
+#: ../../include/text.php:1584
+msgid "Select an alternate language"
msgstr ""
-#: ../../include/nav.php:220
-msgid "Nothing new here"
+#: ../../include/text.php:1718
+msgid "activity"
msgstr ""
-#: ../../include/nav.php:225
-msgid "Please wait..."
+#: ../../include/text.php:1977
+msgid "Design"
msgstr ""
-#: ../../include/network.php:652
-msgid "view full size"
+#: ../../include/text.php:1979
+msgid "Blocks"
msgstr ""
-#: ../../include/plugin.php:486 ../../include/plugin.php:488
-msgid "Click here to upgrade."
+#: ../../include/text.php:1980
+msgid "Menus"
msgstr ""
-#: ../../include/plugin.php:494
-msgid "This action exceeds the limits set by your subscription plan."
+#: ../../include/text.php:1981
+msgid "Layouts"
msgstr ""
-#: ../../include/plugin.php:499
-msgid "This action is not available under your subscription plan."
+#: ../../include/text.php:1982
+msgid "Pages"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Male"
+#: ../../include/chat.php:10
+msgid "Missing room name"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Female"
+#: ../../include/chat.php:19
+msgid "Duplicate room name"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
+#: ../../include/chat.php:68 ../../include/chat.php:76
+msgid "Invalid room specifier."
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
+#: ../../include/chat.php:105
+msgid "Room not found."
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
+#: ../../include/chat.php:126
+msgid "Room is full"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
+#: ../../include/features.php:23
+msgid "General Features"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
+#: ../../include/features.php:25
+msgid "Content Expiration"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
+#: ../../include/features.php:25
+msgid "Remove posts/comments and/or private messages at a future time"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
+#: ../../include/features.php:26
+msgid "Multiple Profiles"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
+#: ../../include/features.php:26
+msgid "Ability to create multiple profiles"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
+#: ../../include/features.php:27
+msgid "Web Pages"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
+#: ../../include/features.php:27
+msgid "Provide managed web pages on your channel"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Other"
+#: ../../include/features.php:28
+msgid "Private Notes"
msgstr ""
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
+#: ../../include/features.php:28
+msgid "Enables a tool to store notes and reminders"
msgstr ""
-#: ../../include/profile_selectors.php:23
-msgid "Males"
+#: ../../include/features.php:33
+msgid "Extended Identity Sharing"
msgstr ""
-#: ../../include/profile_selectors.php:23
-msgid "Females"
+#: ../../include/features.php:33
+msgid ""
+"Share your identity with all websites on the internet. When disabled, "
+"identity is only shared with sites in the matrix."
msgstr ""
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
+#: ../../include/features.php:34
+msgid "Expert Mode"
msgstr ""
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
+#: ../../include/features.php:34
+msgid "Enable Expert Mode to provide advanced configuration options"
msgstr ""
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
+#: ../../include/features.php:35
+msgid "Premium Channel"
msgstr ""
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
+#: ../../include/features.php:35
+msgid ""
+"Allows you to set restrictions and terms on those that connect with your "
+"channel"
msgstr ""
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
+#: ../../include/features.php:40
+msgid "Post Composition Features"
msgstr ""
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
+#: ../../include/features.php:41
+msgid "Richtext Editor"
msgstr ""
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
+#: ../../include/features.php:41
+msgid "Enable richtext editor"
msgstr ""
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
+#: ../../include/features.php:42
+msgid "Post Preview"
msgstr ""
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
+#: ../../include/features.php:42
+msgid "Allow previewing posts and comments before publishing them"
msgstr ""
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
+#: ../../include/features.php:43
+msgid "Automatically import channel content from other channels or feeds"
msgstr ""
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
+#: ../../include/features.php:44
+msgid "Even More Encryption"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Single"
+#: ../../include/features.php:44
+msgid ""
+"Allow optional encryption of content end-to-end with a shared secret key"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
+#: ../../include/features.php:49
+msgid "Network and Stream Filtering"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Available"
+#: ../../include/features.php:50
+msgid "Search by Date"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
+#: ../../include/features.php:50
+msgid "Ability to select posts by date ranges"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
+#: ../../include/features.php:51
+msgid "Collections Filter"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
+#: ../../include/features.php:51
+msgid "Enable widget to display Network posts only from selected collections"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
+#: ../../include/features.php:52
+msgid "Save search terms for re-use"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
+#: ../../include/features.php:53
+msgid "Network Personal Tab"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
+#: ../../include/features.php:53
+msgid "Enable tab to display only Network posts that you've interacted on"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
+#: ../../include/features.php:54
+msgid "Network New Tab"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
+#: ../../include/features.php:54
+msgid "Enable tab to display all new Network activity"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
+#: ../../include/features.php:55
+msgid "Affinity Tool"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Married"
+#: ../../include/features.php:55
+msgid "Filter stream activity by depth of relationships"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
+#: ../../include/features.php:56
+msgid "Suggest Channels"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
+#: ../../include/features.php:56
+msgid "Show channel suggestions"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
+#: ../../include/features.php:61
+msgid "Post/Comment Tools"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
+#: ../../include/features.php:63
+msgid "Edit Sent Posts"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
+#: ../../include/features.php:63
+msgid "Edit and correct posts and comments after sending"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
+#: ../../include/features.php:64
+msgid "Tagging"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
+#: ../../include/features.php:64
+msgid "Ability to tag existing posts"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
+#: ../../include/features.php:65
+msgid "Post Categories"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
+#: ../../include/features.php:65
+msgid "Add categories to your posts"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
+#: ../../include/features.php:66
+msgid "Ability to file posts under folders"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
+#: ../../include/features.php:67
+msgid "Dislike Posts"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
+#: ../../include/features.php:67
+msgid "Ability to dislike posts/comments"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
+#: ../../include/features.php:68
+msgid "Star Posts"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
+#: ../../include/features.php:68
+msgid "Ability to mark special posts with a star indicator"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
+#: ../../include/features.php:69
+msgid "Tag Cloud"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
+#: ../../include/features.php:69
+msgid "Provide a personal tag cloud on your channel page"
msgstr ""
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
+#: ../../include/permissions.php:13
+msgid "Can view my \"public\" stream and posts"
msgstr ""
-#: ../../include/reddav.php:1045
-msgid "Edit File properties"
+#: ../../include/permissions.php:14
+msgid "Can view my \"public\" channel profile"
msgstr ""
-#: ../../include/zot.php:587
-msgid "Invalid data packet"
+#: ../../include/permissions.php:15
+msgid "Can view my \"public\" photo albums"
msgstr ""
-#: ../../include/zot.php:597
-msgid "Unable to verify channel signature"
+#: ../../include/permissions.php:16
+msgid "Can view my \"public\" address book"
msgstr ""
-#: ../../include/zot.php:794
-#, php-format
-msgid "Unable to verify site signature for %s"
+#: ../../include/permissions.php:17
+msgid "Can view my \"public\" file storage"
msgstr ""
-#: ../../include/security.php:301
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
+#: ../../include/permissions.php:18
+msgid "Can view my \"public\" pages"
msgstr ""
-#: ../../include/widgets.php:79
-msgid "App Category"
+#: ../../include/permissions.php:21
+msgid "Can send me their channel stream and posts"
msgstr ""
-#: ../../include/widgets.php:80
-msgid "System"
+#: ../../include/permissions.php:22
+msgid "Can post on my channel page (\"wall\")"
msgstr ""
-#: ../../include/widgets.php:129 ../../mod/suggest.php:53
-msgid "Ignore/Hide"
+#: ../../include/permissions.php:23
+msgid "Can comment on my posts"
msgstr ""
-#: ../../include/widgets.php:135 ../../mod/connections.php:266
-msgid "Suggestions"
+#: ../../include/permissions.php:24
+msgid "Can send me private mail messages"
msgstr ""
-#: ../../include/widgets.php:136
-msgid "See more..."
+#: ../../include/permissions.php:25
+msgid "Can post photos to my photo albums"
msgstr ""
-#: ../../include/widgets.php:158
-#, php-format
-msgid "You have %1$.0f of %2$.0f allowed connections."
+#: ../../include/permissions.php:26
+msgid "Can forward to all my channel contacts via post @mentions"
msgstr ""
-#: ../../include/widgets.php:164
-msgid "Add New Connection"
+#: ../../include/permissions.php:26
+msgid "Advanced - useful for creating group forum channels"
msgstr ""
-#: ../../include/widgets.php:165
-msgid "Enter the channel address"
+#: ../../include/permissions.php:27
+msgid "Can chat with me (when available)"
msgstr ""
-#: ../../include/widgets.php:166
-msgid "Example: bob@example.com, http://example.com/barbara"
+#: ../../include/permissions.php:28
+msgid "Can write to my \"public\" file storage"
msgstr ""
-#: ../../include/widgets.php:183
-msgid "Notes"
+#: ../../include/permissions.php:29
+msgid "Can edit my \"public\" pages"
msgstr ""
-#: ../../include/widgets.php:255
-msgid "Remove term"
+#: ../../include/permissions.php:31
+msgid "Can source my \"public\" posts in derived channels"
msgstr ""
-#: ../../include/widgets.php:334
-msgid "Archives"
+#: ../../include/permissions.php:31
+msgid "Somewhat advanced - very useful in open communities"
msgstr ""
-#: ../../include/widgets.php:396
-msgid "Refresh"
+#: ../../include/permissions.php:33
+msgid "Can administer my channel resources"
msgstr ""
-#: ../../include/widgets.php:397 ../../mod/connedit.php:428
-msgid "Me"
+#: ../../include/permissions.php:33
+msgid "Extremely advanced. Leave this alone unless you know what you are doing"
msgstr ""
-#: ../../include/widgets.php:398 ../../mod/connedit.php:430
-msgid "Best Friends"
+#: ../../include/zot.php:587
+msgid "Invalid data packet"
msgstr ""
-#: ../../include/widgets.php:400
-msgid "Co-workers"
+#: ../../include/zot.php:597
+msgid "Unable to verify channel signature"
msgstr ""
-#: ../../include/widgets.php:401 ../../mod/connedit.php:432
-msgid "Former Friends"
+#: ../../include/zot.php:794
+#, php-format
+msgid "Unable to verify site signature for %s"
msgstr ""
-#: ../../include/widgets.php:402 ../../mod/connedit.php:433
-msgid "Acquaintances"
-msgstr ""
+#: ../../include/contact_widgets.php:14
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/widgets.php:403
-msgid "Everybody"
+#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445
+msgid "Advanced"
msgstr ""
-#: ../../include/widgets.php:435
-msgid "Account settings"
+#: ../../include/contact_widgets.php:22
+msgid "Find Channels"
msgstr ""
-#: ../../include/widgets.php:441
-msgid "Channel settings"
+#: ../../include/contact_widgets.php:23
+msgid "Enter name or interest"
msgstr ""
-#: ../../include/widgets.php:447
-msgid "Additional features"
+#: ../../include/contact_widgets.php:24
+msgid "Connect/Follow"
msgstr ""
-#: ../../include/widgets.php:453
-msgid "Feature settings"
+#: ../../include/contact_widgets.php:25
+msgid "Examples: Robert Morgenstein, Fishing"
msgstr ""
-#: ../../include/widgets.php:459
-msgid "Display settings"
+#: ../../include/contact_widgets.php:26 ../../mod/directory.php:206
+#: ../../mod/directory.php:211 ../../mod/connections.php:391
+msgid "Find"
msgstr ""
-#: ../../include/widgets.php:465
-msgid "Connected apps"
+#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59
+msgid "Channel Suggestions"
msgstr ""
-#: ../../include/widgets.php:471
-msgid "Export channel"
+#: ../../include/contact_widgets.php:29
+msgid "Random Profile"
msgstr ""
-#: ../../include/widgets.php:483
-msgid "Automatic Permissions (Advanced)"
+#: ../../include/contact_widgets.php:30
+msgid "Invite Friends"
msgstr ""
-#: ../../include/widgets.php:493
-msgid "Premium Channel Settings"
+#: ../../include/contact_widgets.php:32
+msgid "Exammple: name=fred and country=iceland"
msgstr ""
-#: ../../include/widgets.php:530
-msgid "Check Mail"
+#: ../../include/contact_widgets.php:33
+msgid "Advanced Find"
msgstr ""
-#: ../../include/widgets.php:611
-msgid "Chat Rooms"
-msgstr ""
+#: ../../include/contact_widgets.php:125
+#, php-format
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/widgets.php:629
-msgid "Bookmarked Chatrooms"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
msgstr ""
-#: ../../include/widgets.php:647
-msgid "Suggested Chatrooms"
+#: ../../include/datetime.php:152 ../../include/datetime.php:284
+msgid "year"
msgstr ""
-#: ../../mod/mood.php:138
-msgid "Mood"
+#: ../../include/datetime.php:157 ../../include/datetime.php:285
+msgid "month"
msgstr ""
-#: ../../mod/mood.php:139
-msgid "Set your current mood and tell your friends"
+#: ../../include/datetime.php:162 ../../include/datetime.php:287
+msgid "day"
msgstr ""
-#: ../../mod/mitem.php:14 ../../mod/menu.php:92
-msgid "Menu not found."
+#: ../../include/datetime.php:275
+msgid "never"
msgstr ""
-#: ../../mod/mitem.php:47
-msgid "Menu element updated."
+#: ../../include/datetime.php:281
+msgid "less than a second ago"
msgstr ""
-#: ../../mod/mitem.php:51
-msgid "Unable to update menu element."
+#: ../../include/datetime.php:284
+msgid "years"
msgstr ""
-#: ../../mod/mitem.php:57
-msgid "Menu element added."
+#: ../../include/datetime.php:285
+msgid "months"
msgstr ""
-#: ../../mod/mitem.php:61
-msgid "Unable to add menu element."
+#: ../../include/datetime.php:286
+msgid "week"
msgstr ""
-#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120
-#: ../../mod/xchan.php:27
-msgid "Not found."
+#: ../../include/datetime.php:286
+msgid "weeks"
msgstr ""
-#: ../../mod/mitem.php:96
-msgid "Manage Menu Elements"
+#: ../../include/datetime.php:287
+msgid "days"
msgstr ""
-#: ../../mod/mitem.php:99
-msgid "Edit menu"
+#: ../../include/datetime.php:288
+msgid "hour"
msgstr ""
-#: ../../mod/mitem.php:102
-msgid "Edit element"
+#: ../../include/datetime.php:288
+msgid "hours"
msgstr ""
-#: ../../mod/mitem.php:103
-msgid "Drop element"
+#: ../../include/datetime.php:289
+msgid "minute"
msgstr ""
-#: ../../mod/mitem.php:104
-msgid "New element"
+#: ../../include/datetime.php:289
+msgid "minutes"
msgstr ""
-#: ../../mod/mitem.php:105
-msgid "Edit this menu container"
+#: ../../include/datetime.php:290
+msgid "second"
msgstr ""
-#: ../../mod/mitem.php:106
-msgid "Add menu element"
+#: ../../include/datetime.php:290
+msgid "seconds"
msgstr ""
-#: ../../mod/mitem.php:107
-msgid "Delete this menu item"
+#: ../../include/datetime.php:299
+#, php-format
+msgid "%1$d %2$s ago"
msgstr ""
-#: ../../mod/mitem.php:108
-msgid "Edit this menu item"
+#: ../../include/identity.php:30 ../../mod/item.php:1244
+msgid "Unable to obtain identity information from database"
msgstr ""
-#: ../../mod/mitem.php:131
-msgid "New Menu Element"
+#: ../../include/identity.php:63
+msgid "Empty name"
msgstr ""
-#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
-msgid "Menu Item Permissions"
+#: ../../include/identity.php:65
+msgid "Name too long"
msgstr ""
-#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:962
-msgid "(click to open/close)"
+#: ../../include/identity.php:166
+msgid "No account identifier"
msgstr ""
-#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
-msgid "Link text"
+#: ../../include/identity.php:176
+msgid "Nickname is required."
msgstr ""
-#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
-msgid "URL of link"
+#: ../../include/identity.php:190
+msgid "Reserved nickname. Please choose another."
msgstr ""
-#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
-msgid "Use Red magic-auth if available"
+#: ../../include/identity.php:195
+msgid ""
+"Nickname has unsupported characters or is already being used on this site."
msgstr ""
-#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
-msgid "Open link in new window"
+#: ../../include/identity.php:258
+msgid "Unable to retrieve created identity"
msgstr ""
-#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
-msgid "Order in list"
+#: ../../include/identity.php:317
+msgid "Default Profile"
msgstr ""
-#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
-msgid "Higher numbers will sink to bottom of listing"
+#: ../../include/identity.php:509
+msgid "Requested channel is not available."
msgstr ""
-#: ../../mod/mitem.php:142 ../../mod/menu.php:84 ../../mod/new_channel.php:117
-msgid "Create"
+#: ../../include/identity.php:557 ../../mod/webpages.php:8
+#: ../../mod/connect.php:13 ../../mod/blocks.php:10
+#: ../../mod/filestorage.php:40 ../../mod/achievements.php:8
+#: ../../mod/layouts.php:8 ../../mod/profile.php:16
+msgid "Requested profile is not available."
msgstr ""
-#: ../../mod/mitem.php:154
-msgid "Menu item not found."
+#: ../../include/identity.php:689 ../../mod/profiles.php:603
+msgid "Change profile photo"
msgstr ""
-#: ../../mod/mitem.php:163
-msgid "Menu item deleted."
+#: ../../include/identity.php:695
+msgid "Profiles"
msgstr ""
-#: ../../mod/mitem.php:165
-msgid "Menu item could not be deleted."
+#: ../../include/identity.php:695
+msgid "Manage/edit profiles"
msgstr ""
-#: ../../mod/mitem.php:174
-msgid "Edit Menu Element"
+#: ../../include/identity.php:696 ../../mod/profiles.php:604
+msgid "Create New Profile"
msgstr ""
-#: ../../mod/mitem.php:186 ../../mod/menu.php:114
-msgid "Modify"
+#: ../../include/identity.php:699
+msgid "Edit Profile"
msgstr ""
-#: ../../mod/ping.php:192
-msgid "sent you a private message"
+#: ../../include/identity.php:710 ../../mod/profiles.php:615
+msgid "Profile Image"
msgstr ""
-#: ../../mod/ping.php:250
-msgid "added your channel"
+#: ../../include/identity.php:713 ../../mod/profiles.php:618
+msgid "visible to everybody"
msgstr ""
-#: ../../mod/ping.php:294
-msgid "posted an event"
+#: ../../include/identity.php:714 ../../mod/profiles.php:619
+msgid "Edit visibility"
msgstr ""
-#: ../../mod/acl.php:239
-msgid "network"
+#: ../../include/identity.php:728 ../../include/identity.php:952
+#: ../../mod/directory.php:158
+msgid "Gender:"
msgstr ""
-#: ../../mod/admin.php:52
-msgid "Theme settings updated."
+#: ../../include/identity.php:729 ../../include/identity.php:977
+#: ../../mod/directory.php:160
+msgid "Status:"
msgstr ""
-#: ../../mod/admin.php:92 ../../mod/admin.php:440
-msgid "Site"
+#: ../../include/identity.php:730 ../../include/identity.php:988
+#: ../../mod/directory.php:162
+msgid "Homepage:"
msgstr ""
-#: ../../mod/admin.php:93
-msgid "Accounts"
+#: ../../include/identity.php:731 ../../mod/dirprofile.php:151
+msgid "Online Now"
msgstr ""
-#: ../../mod/admin.php:94 ../../mod/admin.php:883
-msgid "Channels"
+#: ../../include/identity.php:796 ../../include/identity.php:876
+#: ../../mod/ping.php:262
+msgid "g A l F d"
msgstr ""
-#: ../../mod/admin.php:95 ../../mod/admin.php:974 ../../mod/admin.php:1016
-msgid "Plugins"
+#: ../../include/identity.php:797 ../../include/identity.php:877
+msgid "F d"
msgstr ""
-#: ../../mod/admin.php:96 ../../mod/admin.php:1179 ../../mod/admin.php:1215
-msgid "Themes"
+#: ../../include/identity.php:842 ../../include/identity.php:917
+#: ../../mod/ping.php:284
+msgid "[today]"
msgstr ""
-#: ../../mod/admin.php:97 ../../mod/admin.php:540
-msgid "Server"
+#: ../../include/identity.php:854
+msgid "Birthday Reminders"
msgstr ""
-#: ../../mod/admin.php:98
-msgid "DB updates"
+#: ../../include/identity.php:855
+msgid "Birthdays this week:"
msgstr ""
-#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1302
-msgid "Logs"
+#: ../../include/identity.php:910
+msgid "[No description]"
msgstr ""
-#: ../../mod/admin.php:118
-msgid "Plugin Features"
+#: ../../include/identity.php:928
+msgid "Event Reminders"
msgstr ""
-#: ../../mod/admin.php:120
-msgid "User registrations waiting for confirmation"
+#: ../../include/identity.php:929
+msgid "Events this week:"
msgstr ""
-#: ../../mod/admin.php:197
-msgid "Message queues"
+#: ../../include/identity.php:950 ../../mod/settings.php:937
+msgid "Full Name:"
msgstr ""
-#: ../../mod/admin.php:202 ../../mod/admin.php:439 ../../mod/admin.php:539
-#: ../../mod/admin.php:748 ../../mod/admin.php:882 ../../mod/admin.php:973
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1178 ../../mod/admin.php:1214
-#: ../../mod/admin.php:1301
-msgid "Administration"
+#: ../../include/identity.php:962
+msgid "j F, Y"
msgstr ""
-#: ../../mod/admin.php:203
-msgid "Summary"
+#: ../../include/identity.php:963
+msgid "j F"
msgstr ""
-#: ../../mod/admin.php:205
-msgid "Registered users"
+#: ../../include/identity.php:970
+msgid "Birthday:"
msgstr ""
-#: ../../mod/admin.php:207 ../../mod/admin.php:543
-msgid "Pending registrations"
+#: ../../include/identity.php:974
+msgid "Age:"
msgstr ""
-#: ../../mod/admin.php:208
-msgid "Version"
+#: ../../include/identity.php:983
+#, php-format
+msgid "for %1$d %2$s"
msgstr ""
-#: ../../mod/admin.php:210 ../../mod/admin.php:544
-msgid "Active plugins"
+#: ../../include/identity.php:986 ../../mod/profiles.php:526
+msgid "Sexual Preference:"
msgstr ""
-#: ../../mod/admin.php:360
-msgid "Site settings updated."
+#: ../../include/identity.php:990 ../../mod/profiles.php:528
+msgid "Hometown:"
msgstr ""
-#: ../../mod/admin.php:389 ../../mod/settings.php:708
-msgid "No special theme for mobile devices"
+#: ../../include/identity.php:992
+msgid "Tags:"
msgstr ""
-#: ../../mod/admin.php:391
-msgid "No special theme for accessibility"
+#: ../../include/identity.php:994 ../../mod/profiles.php:529
+msgid "Political Views:"
msgstr ""
-#: ../../mod/admin.php:419 ../../mod/api.php:106 ../../mod/profiles.php:484
-#: ../../mod/settings.php:879 ../../mod/settings.php:884
-#: ../../mod/settings.php:955
-msgid "No"
+#: ../../include/identity.php:996
+msgid "Religion:"
msgstr ""
-#: ../../mod/admin.php:420
-msgid "Yes - with approval"
+#: ../../include/identity.php:998 ../../mod/directory.php:164
+msgid "About:"
msgstr ""
-#: ../../mod/admin.php:421 ../../mod/api.php:105 ../../mod/profiles.php:483
-#: ../../mod/settings.php:879 ../../mod/settings.php:884
-#: ../../mod/settings.php:955
-msgid "Yes"
+#: ../../include/identity.php:1000
+msgid "Hobbies/Interests:"
msgstr ""
-#: ../../mod/admin.php:426
-msgid "My site is not a public server"
+#: ../../include/identity.php:1002 ../../mod/profiles.php:532
+msgid "Likes:"
msgstr ""
-#: ../../mod/admin.php:427
-msgid "My site has paid access only"
+#: ../../include/identity.php:1004 ../../mod/profiles.php:533
+msgid "Dislikes:"
msgstr ""
-#: ../../mod/admin.php:428
-msgid "My site has free access only"
+#: ../../include/identity.php:1007
+msgid "Contact information and Social Networks:"
msgstr ""
-#: ../../mod/admin.php:429
-msgid "My site offers free accounts with optional paid upgrades"
+#: ../../include/identity.php:1009
+msgid "My other channels:"
msgstr ""
-#: ../../mod/admin.php:442 ../../mod/register.php:189
-msgid "Registration"
+#: ../../include/identity.php:1011
+msgid "Musical interests:"
msgstr ""
-#: ../../mod/admin.php:443
-msgid "File upload"
+#: ../../include/identity.php:1013
+msgid "Books, literature:"
msgstr ""
-#: ../../mod/admin.php:444
-msgid "Policies"
+#: ../../include/identity.php:1015
+msgid "Television:"
msgstr ""
-#: ../../mod/admin.php:449
-msgid "Site name"
+#: ../../include/identity.php:1017
+msgid "Film/dance/culture/entertainment:"
msgstr ""
-#: ../../mod/admin.php:450
-msgid "Banner/Logo"
+#: ../../include/identity.php:1019
+msgid "Love/Romance:"
msgstr ""
-#: ../../mod/admin.php:451
-msgid "Administrator Information"
+#: ../../include/identity.php:1021
+msgid "Work/employment:"
msgstr ""
-#: ../../mod/admin.php:451
-msgid ""
-"Contact information for site administrators. Displayed on siteinfo page. "
-"BBCode can be used here"
+#: ../../include/identity.php:1023
+msgid "School/education:"
msgstr ""
-#: ../../mod/admin.php:452
-msgid "System language"
+#: ../../include/js_strings.php:5
+msgid "Delete this item?"
msgstr ""
-#: ../../mod/admin.php:453
-msgid "System theme"
+#: ../../include/js_strings.php:8
+msgid "show fewer"
msgstr ""
-#: ../../mod/admin.php:453
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+#: ../../include/js_strings.php:9
+msgid "+ Show More"
msgstr ""
-#: ../../mod/admin.php:454
-msgid "Mobile system theme"
+#: ../../include/js_strings.php:10
+msgid "- Show Less"
msgstr ""
-#: ../../mod/admin.php:454
-msgid "Theme for mobile devices"
+#: ../../include/js_strings.php:11
+msgid "Password too short"
msgstr ""
-#: ../../mod/admin.php:455
-msgid "Accessibility system theme"
+#: ../../include/js_strings.php:12
+msgid "Passwords do not match"
msgstr ""
-#: ../../mod/admin.php:455
-msgid "Accessibility theme"
+#: ../../include/js_strings.php:13 ../../mod/photos.php:39
+msgid "everybody"
msgstr ""
-#: ../../mod/admin.php:456
-msgid "Channel to use for this website's static pages"
+#: ../../include/js_strings.php:14
+msgid "Secret Passphrase"
msgstr ""
-#: ../../mod/admin.php:456
-msgid "Site Channel"
+#: ../../include/js_strings.php:15
+msgid "Passphrase hint"
msgstr ""
-#: ../../mod/admin.php:458
-msgid "Maximum image size"
+#: ../../include/js_strings.php:16
+msgid "Notice: Permissions have changed but have not yet been submitted."
msgstr ""
-#: ../../mod/admin.php:458
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
+#: ../../include/js_strings.php:17
+msgid "close all"
msgstr ""
-#: ../../mod/admin.php:459
-msgid "Does this site allow new member registration?"
+#: ../../include/js_strings.php:19
+msgid "timeago.prefixAgo"
msgstr ""
-#: ../../mod/admin.php:460
-msgid "Which best describes the types of account offered by this hub?"
+#: ../../include/js_strings.php:20
+msgid "timeago.prefixFromNow"
msgstr ""
-#: ../../mod/admin.php:461
-msgid "Register text"
+#: ../../include/js_strings.php:21
+msgid "ago"
msgstr ""
-#: ../../mod/admin.php:461
-msgid "Will be displayed prominently on the registration page."
+#: ../../include/js_strings.php:22
+msgid "from now"
msgstr ""
-#: ../../mod/admin.php:462
-msgid "Accounts abandoned after x days"
+#: ../../include/js_strings.php:23
+msgid "less than a minute"
msgstr ""
-#: ../../mod/admin.php:462
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
+#: ../../include/js_strings.php:24
+msgid "about a minute"
msgstr ""
-#: ../../mod/admin.php:463
-msgid "Allowed friend domains"
+#: ../../include/js_strings.php:25
+#, php-format
+msgid "%d minutes"
msgstr ""
-#: ../../mod/admin.php:463
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
+#: ../../include/js_strings.php:26
+msgid "about an hour"
msgstr ""
-#: ../../mod/admin.php:464
-msgid "Allowed email domains"
+#: ../../include/js_strings.php:27
+#, php-format
+msgid "about %d hours"
msgstr ""
-#: ../../mod/admin.php:464
-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"
+#: ../../include/js_strings.php:28
+msgid "a day"
msgstr ""
-#: ../../mod/admin.php:465
-msgid "Block public"
+#: ../../include/js_strings.php:29
+#, php-format
+msgid "%d days"
msgstr ""
-#: ../../mod/admin.php:465
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
+#: ../../include/js_strings.php:30
+msgid "about a month"
msgstr ""
-#: ../../mod/admin.php:466
-msgid "Force publish"
+#: ../../include/js_strings.php:31
+#, php-format
+msgid "%d months"
msgstr ""
-#: ../../mod/admin.php:466
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
+#: ../../include/js_strings.php:32
+msgid "about a year"
msgstr ""
-#: ../../mod/admin.php:467
-msgid "Disable discovery tab"
+#: ../../include/js_strings.php:33
+#, php-format
+msgid "%d years"
msgstr ""
-#: ../../mod/admin.php:467
-msgid ""
-"Remove the tab in the network view with public content pulled from sources "
-"chosen for this site."
+#: ../../include/js_strings.php:34
+msgid " "
msgstr ""
-#: ../../mod/admin.php:468
-msgid "No login on Homepage"
+#: ../../include/js_strings.php:35
+msgid "timeago.numbers"
msgstr ""
-#: ../../mod/admin.php:468
-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)."
+#: ../../mod/home.php:50 ../../mod/block.php:39 ../../mod/chanview.php:77
+#: ../../mod/page.php:47 ../../mod/wall_upload.php:28
+msgid "Channel not found."
msgstr ""
-#: ../../mod/admin.php:470
-msgid "Proxy user"
+#: ../../mod/home.php:89
+#, php-format
+msgid "Welcome to %s"
msgstr ""
-#: ../../mod/admin.php:471
-msgid "Proxy URL"
+#: ../../mod/follow.php:25
+msgid "Channel added."
msgstr ""
-#: ../../mod/admin.php:472
-msgid "Network timeout"
+#: ../../mod/dirprofile.php:9 ../../mod/search.php:13
+#: ../../mod/directory.php:15 ../../mod/photos.php:443 ../../mod/display.php:9
+#: ../../mod/viewconnections.php:17
+msgid "Public access denied."
msgstr ""
-#: ../../mod/admin.php:472
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: ../../mod/dirprofile.php:92 ../../mod/directory.php:143
+#: ../../mod/profiles.php:561
+msgid "Age: "
msgstr ""
-#: ../../mod/admin.php:473
-msgid "Delivery interval"
+#: ../../mod/dirprofile.php:95 ../../mod/directory.php:146
+msgid "Gender: "
msgstr ""
-#: ../../mod/admin.php:473
-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."
+#: ../../mod/dirprofile.php:108
+msgid "Status: "
msgstr ""
-#: ../../mod/admin.php:474
-msgid "Poll interval"
+#: ../../mod/dirprofile.php:109
+msgid "Sexual Preference: "
msgstr ""
-#: ../../mod/admin.php:474
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
+#: ../../mod/dirprofile.php:111
+msgid "Homepage: "
msgstr ""
-#: ../../mod/admin.php:475
-msgid "Maximum Load Average"
+#: ../../mod/dirprofile.php:112
+msgid "Hometown: "
msgstr ""
-#: ../../mod/admin.php:475
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+#: ../../mod/dirprofile.php:114
+msgid "About: "
msgstr ""
-#: ../../mod/admin.php:531
-msgid "No server found"
+#: ../../mod/dirprofile.php:162
+msgid "Keywords: "
msgstr ""
-#: ../../mod/admin.php:538 ../../mod/admin.php:762
-msgid "ID"
+#: ../../mod/dirprofile.php:175 ../../mod/mitem.php:78 ../../mod/xchan.php:27
+#: ../../mod/menu.php:120
+msgid "Not found."
msgstr ""
-#: ../../mod/admin.php:538
-msgid "for channel"
+#: ../../mod/acl.php:239
+msgid "network"
msgstr ""
-#: ../../mod/admin.php:538
-msgid "on server"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
msgstr ""
-#: ../../mod/admin.php:538
-msgid "Status"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
msgstr ""
-#: ../../mod/admin.php:559
-msgid "Update has been marked successful"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
msgstr ""
-#: ../../mod/admin.php:569
-#, php-format
-msgid "Executing %s failed. Check system logs."
+#: ../../mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts, "
+"and/or create new posts for you?"
msgstr ""
-#: ../../mod/admin.php:572
-#, php-format
-msgid "Update %s was successfully applied."
+#: ../../mod/api.php:105 ../../mod/settings.php:879 ../../mod/settings.php:884
+#: ../../mod/settings.php:955 ../../mod/profiles.php:483
+#: ../../mod/admin.php:421
+msgid "Yes"
msgstr ""
-#: ../../mod/admin.php:576
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+#: ../../mod/api.php:106 ../../mod/settings.php:879 ../../mod/settings.php:884
+#: ../../mod/settings.php:955 ../../mod/profiles.php:484
+#: ../../mod/admin.php:419
+msgid "No"
msgstr ""
-#: ../../mod/admin.php:579
-#, php-format
-msgid "Update function %s could not be found."
+#: ../../mod/editlayout.php:36 ../../mod/editpost.php:20
+#: ../../mod/editblock.php:8 ../../mod/editblock.php:27
+#: ../../mod/editblock.php:53 ../../mod/editwebpage.php:32
+msgid "Item not found"
msgstr ""
-#: ../../mod/admin.php:594
-msgid "No failed updates."
+#: ../../mod/editlayout.php:72
+msgid "Edit Layout"
msgstr ""
-#: ../../mod/admin.php:598
-msgid "Failed Updates"
+#: ../../mod/editlayout.php:82
+msgid "Delete layout?"
msgstr ""
-#: ../../mod/admin.php:600
-msgid "Mark success (if update was manually applied)"
+#: ../../mod/editlayout.php:110 ../../mod/editpost.php:116
+#: ../../mod/editblock.php:115 ../../mod/editwebpage.php:147
+msgid "Insert YouTube video"
msgstr ""
-#: ../../mod/admin.php:601
-msgid "Attempt to execute this update step automatically"
+#: ../../mod/editlayout.php:111 ../../mod/editpost.php:117
+#: ../../mod/editblock.php:116 ../../mod/editwebpage.php:148
+msgid "Insert Vorbis [.ogg] video"
msgstr ""
-#: ../../mod/admin.php:627
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/admin.php:634
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/admin.php:665
-msgid "Account not found"
+#: ../../mod/editlayout.php:112 ../../mod/editpost.php:118
+#: ../../mod/editblock.php:117 ../../mod/editwebpage.php:149
+msgid "Insert Vorbis [.ogg] audio"
msgstr ""
-#: ../../mod/admin.php:676
-#, php-format
-msgid "User '%s' deleted"
+#: ../../mod/editlayout.php:146
+msgid "Delete Layout"
msgstr ""
-#: ../../mod/admin.php:685
-#, php-format
-msgid "User '%s' unblocked"
+#: ../../mod/magic.php:70
+msgid "Hub not found."
msgstr ""
-#: ../../mod/admin.php:685
+#: ../../mod/probe.php:23 ../../mod/probe.php:29
#, php-format
-msgid "User '%s' blocked"
-msgstr ""
-
-#: ../../mod/admin.php:749 ../../mod/admin.php:761
-msgid "Users"
-msgstr ""
-
-#: ../../mod/admin.php:751 ../../mod/admin.php:885
-msgid "select all"
-msgstr ""
-
-#: ../../mod/admin.php:752
-msgid "User registrations waiting for confirm"
-msgstr ""
-
-#: ../../mod/admin.php:753
-msgid "Request date"
+msgid "Fetching URL returns error: %1$s"
msgstr ""
-#: ../../mod/admin.php:754
-msgid "No registrations."
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
msgstr ""
-#: ../../mod/admin.php:755
-msgid "Approve"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
msgstr ""
-#: ../../mod/admin.php:756
-msgid "Deny"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
msgstr ""
-#: ../../mod/admin.php:758 ../../mod/connedit.php:372
-#: ../../mod/connedit.php:515
-msgid "Block"
+#: ../../mod/tagrm.php:93 ../../mod/photos.php:908 ../../mod/delegate.php:130
+msgid "Remove"
msgstr ""
-#: ../../mod/admin.php:759 ../../mod/connedit.php:372
-#: ../../mod/connedit.php:515
-msgid "Unblock"
+#: ../../mod/new_channel.php:107
+msgid "Add a Channel"
msgstr ""
-#: ../../mod/admin.php:762
-msgid "Register date"
+#: ../../mod/new_channel.php:108
+msgid ""
+"A channel is your own collection of related web pages. A channel can be used "
+"to hold social network profiles, blogs, conversation groups and forums, "
+"celebrity pages, and much more. You may create as many channels as your "
+"service provider allows."
msgstr ""
-#: ../../mod/admin.php:762
-msgid "Last login"
+#: ../../mod/new_channel.php:110 ../../mod/sources.php:103
+#: ../../mod/sources.php:137
+msgid "Channel Name"
msgstr ""
-#: ../../mod/admin.php:762
-msgid "Expires"
+#: ../../mod/new_channel.php:111
+msgid ""
+"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation "
+"Group\" "
msgstr ""
-#: ../../mod/admin.php:762
-msgid "Service Class"
+#: ../../mod/new_channel.php:112
+msgid "Choose a short nickname"
msgstr ""
-#: ../../mod/admin.php:764
+#: ../../mod/new_channel.php:113
msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
+"Your nickname will be used to create an easily remembered channel address "
+"(like an email address) which you can share with others."
msgstr ""
-#: ../../mod/admin.php:765
+#: ../../mod/new_channel.php:114
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:797
-#, php-format
-msgid "%s channel censored/uncensored"
-msgid_plural "%s channelss censored/uncensored"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/admin.php:804
-#, php-format
-msgid "%s channel deleted"
-msgid_plural "%s channels deleted"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/admin.php:823
-msgid "Channel not found"
+"Or <a href=\"import\">import an existing channel</a> from another location"
msgstr ""
-#: ../../mod/admin.php:834
-#, php-format
-msgid "Channel '%s' deleted"
+#: ../../mod/new_channel.php:117 ../../mod/mitem.php:142 ../../mod/menu.php:84
+msgid "Create"
msgstr ""
-#: ../../mod/admin.php:844
-#, php-format
-msgid "Channel '%s' uncensored"
+#: ../../mod/pubsites.php:16
+msgid "Public Sites"
msgstr ""
-#: ../../mod/admin.php:844
-#, php-format
-msgid "Channel '%s' censored"
+#: ../../mod/pubsites.php:19
+msgid ""
+"The listed sites allow public registration into the Red Matrix. All sites in "
+"the matrix are interlinked so membership on any of them conveys membership "
+"in the matrix as a whole. Some sites may require subscription or provide "
+"tiered service plans. The provider links <strong>may</strong> provide "
+"additional details."
msgstr ""
-#: ../../mod/admin.php:887
-msgid "Censor"
+#: ../../mod/pubsites.php:25
+msgid "Site URL"
msgstr ""
-#: ../../mod/admin.php:888
-msgid "Uncensor"
+#: ../../mod/pubsites.php:25
+msgid "Access Type"
msgstr ""
-#: ../../mod/admin.php:891
-msgid "UID"
+#: ../../mod/pubsites.php:25
+msgid "Registration Policy"
msgstr ""
-#: ../../mod/admin.php:891 ../../mod/settings.php:517
-#: ../../mod/settings.php:543
-msgid "Name"
+#: ../../mod/pubsites.php:25 ../../mod/profiles.php:344
+msgid "Location"
msgstr ""
-#: ../../mod/admin.php:891 ../../mod/profiles.php:337
-msgid "Address"
+#: ../../mod/update_search.php:46 ../../mod/update_network.php:23
+#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25
+msgid "[Embedded content - reload page to view]"
msgstr ""
-#: ../../mod/admin.php:893
-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?"
+#: ../../mod/group.php:20
+msgid "Collection created."
msgstr ""
-#: ../../mod/admin.php:894
-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?"
+#: ../../mod/group.php:26
+msgid "Could not create collection."
msgstr ""
-#: ../../mod/admin.php:933
-#, php-format
-msgid "Plugin %s disabled."
+#: ../../mod/group.php:54
+msgid "Collection updated."
msgstr ""
-#: ../../mod/admin.php:937
-#, php-format
-msgid "Plugin %s enabled."
+#: ../../mod/group.php:86
+msgid "Create a collection of channels."
msgstr ""
-#: ../../mod/admin.php:947 ../../mod/admin.php:1149
-msgid "Disable"
+#: ../../mod/group.php:87 ../../mod/group.php:183
+msgid "Collection Name: "
msgstr ""
-#: ../../mod/admin.php:949 ../../mod/admin.php:1151
-msgid "Enable"
+#: ../../mod/group.php:89 ../../mod/group.php:186
+msgid "Members are visible to other channels"
msgstr ""
-#: ../../mod/admin.php:975 ../../mod/admin.php:1180
-msgid "Toggle"
+#: ../../mod/group.php:107
+msgid "Collection removed."
msgstr ""
-#: ../../mod/admin.php:983 ../../mod/admin.php:1190
-msgid "Author: "
+#: ../../mod/group.php:109
+msgid "Unable to remove collection."
msgstr ""
-#: ../../mod/admin.php:984 ../../mod/admin.php:1191
-msgid "Maintainer: "
+#: ../../mod/group.php:182
+msgid "Collection Editor"
msgstr ""
-#: ../../mod/admin.php:1113
-msgid "No themes found."
+#: ../../mod/group.php:196
+msgid "Members"
msgstr ""
-#: ../../mod/admin.php:1172
-msgid "Screenshot"
+#: ../../mod/group.php:198
+msgid "All Connected Channels"
msgstr ""
-#: ../../mod/admin.php:1220
-msgid "[Experimental]"
+#: ../../mod/group.php:231
+msgid "Click on a channel to add or remove."
msgstr ""
-#: ../../mod/admin.php:1221
-msgid "[Unsupported]"
+#: ../../mod/thing.php:98
+msgid "Thing updated"
msgstr ""
-#: ../../mod/admin.php:1248
-msgid "Log settings updated."
+#: ../../mod/thing.php:158
+msgid "Object store: failed"
msgstr ""
-#: ../../mod/admin.php:1304
-msgid "Clear"
+#: ../../mod/thing.php:162
+msgid "Thing added"
msgstr ""
-#: ../../mod/admin.php:1310
-msgid "Debugging"
+#: ../../mod/thing.php:182
+#, php-format
+msgid "OBJ: %1$s %2$s %3$s"
msgstr ""
-#: ../../mod/admin.php:1311
-msgid "Log file"
+#: ../../mod/thing.php:234
+msgid "Show Thing"
msgstr ""
-#: ../../mod/admin.php:1311
-msgid ""
-"Must be writable by web server. Relative to your Red top-level directory."
+#: ../../mod/thing.php:241
+msgid "item not found."
msgstr ""
-#: ../../mod/admin.php:1312
-msgid "Log level"
+#: ../../mod/thing.php:269
+msgid "Edit Thing"
msgstr ""
-#: ../../mod/poke.php:159
-msgid "Poke/Prod"
+#: ../../mod/thing.php:271 ../../mod/thing.php:318
+msgid "Select a profile"
msgstr ""
-#: ../../mod/poke.php:160
-msgid "poke, prod or do other things to somebody"
+#: ../../mod/thing.php:273 ../../mod/thing.php:320
+msgid "Select a category of stuff. e.g. I ______ something"
msgstr ""
-#: ../../mod/poke.php:161
-msgid "Recipient"
+#: ../../mod/thing.php:275 ../../mod/thing.php:321
+msgid "Post an activity"
msgstr ""
-#: ../../mod/poke.php:162
-msgid "Choose what you wish to do to recipient"
+#: ../../mod/thing.php:275 ../../mod/thing.php:321
+msgid "Only sends to viewers of the applicable profile"
msgstr ""
-#: ../../mod/poke.php:165
-msgid "Make this post private"
+#: ../../mod/thing.php:277 ../../mod/thing.php:323
+msgid "Name of thing e.g. something"
msgstr ""
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
+#: ../../mod/thing.php:279 ../../mod/thing.php:324
+msgid "URL of thing (optional)"
msgstr ""
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
+#: ../../mod/thing.php:281 ../../mod/thing.php:325
+msgid "URL for photo of thing (optional)"
msgstr ""
-#: ../../mod/api.php:89
-msgid "Please login to continue."
+#: ../../mod/thing.php:316
+msgid "Add Thing to your Profile"
msgstr ""
-#: ../../mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts, "
-"and/or create new posts for you?"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
msgstr ""
-#: ../../mod/post.php:226
-msgid ""
-"Remote authentication blocked. You are logged into this site locally. Please "
-"logout and retry."
+#: ../../mod/notifications.php:35
+msgid "Discard"
msgstr ""
-#: ../../mod/post.php:257 ../../mod/openid.php:72 ../../mod/openid.php:178
-#, php-format
-msgid "Welcome %s. Remote authentication successful."
+#: ../../mod/notifications.php:51 ../../mod/connedit.php:379
+#: ../../mod/connedit.php:516
+msgid "Ignore"
msgstr ""
-#: ../../mod/attach.php:9
-msgid "Item not available."
+#: ../../mod/notifications.php:94 ../../mod/notify.php:54
+msgid "No more system notifications."
msgstr ""
-#: ../../mod/probe.php:23 ../../mod/probe.php:29
-#, php-format
-msgid "Fetching URL returns error: %1$s"
+#: ../../mod/notifications.php:98 ../../mod/notify.php:58
+msgid "System Notifications"
msgstr ""
#: ../../mod/block.php:27 ../../mod/page.php:35
msgid "Invalid item."
msgstr ""
-#: ../../mod/block.php:39 ../../mod/chanview.php:77 ../../mod/page.php:47
-#: ../../mod/home.php:50 ../../mod/wall_upload.php:28
-msgid "Channel not found."
-msgstr ""
-
-#: ../../mod/block.php:75 ../../mod/page.php:83 ../../mod/display.php:100
-#: ../../mod/help.php:72 ../../index.php:237
+#: ../../mod/block.php:75 ../../mod/help.php:72 ../../mod/page.php:83
+#: ../../mod/display.php:100 ../../index.php:237
msgid "Page not found."
msgstr ""
-#: ../../mod/profile_photo.php:108
-msgid "Image uploaded but image cropping failed."
-msgstr ""
-
-#: ../../mod/profile_photo.php:161
-msgid "Image resize failed."
-msgstr ""
-
-#: ../../mod/profile_photo.php:205
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr ""
-
-#: ../../mod/profile_photo.php:232
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr ""
-
-#: ../../mod/profile_photo.php:241
-msgid "Unable to process image."
-msgstr ""
-
-#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339
-msgid "Photo not available."
-msgstr ""
-
-#: ../../mod/profile_photo.php:358
-msgid "Upload File:"
-msgstr ""
-
-#: ../../mod/profile_photo.php:359
-msgid "Select a profile:"
-msgstr ""
-
-#: ../../mod/profile_photo.php:360
-msgid "Upload Profile Photo"
+#: ../../mod/message.php:31 ../../mod/mail.php:121
+msgid "Messages"
msgstr ""
-#: ../../mod/profile_photo.php:361
-msgid "Upload"
+#: ../../mod/message.php:41
+msgid "Conversation removed."
msgstr ""
-#: ../../mod/profile_photo.php:365 ../../mod/settings.php:888
-msgid "or"
+#: ../../mod/message.php:56
+msgid "No messages."
msgstr ""
-#: ../../mod/profile_photo.php:365
-msgid "skip this step"
+#: ../../mod/message.php:72 ../../mod/mail.php:292
+msgid "Delete message"
msgstr ""
-#: ../../mod/profile_photo.php:365
-msgid "select a photo from your photo albums"
+#: ../../mod/message.php:74
+msgid "D, d M Y - g:i A"
msgstr ""
-#: ../../mod/profile_photo.php:379
-msgid "Crop Image"
+#: ../../mod/rpost.php:86 ../../mod/editpost.php:42
+msgid "Edit post"
msgstr ""
-#: ../../mod/profile_photo.php:380
-msgid "Please adjust the image cropping for optimum viewing."
+#: ../../mod/directory.php:207
+msgid "Finding:"
msgstr ""
-#: ../../mod/profile_photo.php:382
-msgid "Done Editing"
+#: ../../mod/directory.php:215
+msgid "next page"
msgstr ""
-#: ../../mod/profile_photo.php:425
-msgid "Image uploaded successfully."
+#: ../../mod/directory.php:215
+msgid "previous page"
msgstr ""
-#: ../../mod/profile_photo.php:427
-msgid "Image upload failed."
+#: ../../mod/directory.php:222
+msgid "No entries (some entries may be hidden)."
msgstr ""
-#: ../../mod/profile_photo.php:436
-#, php-format
-msgid "Image size reduction [%s] failed."
+#: ../../mod/mitem.php:14 ../../mod/menu.php:92
+msgid "Menu not found."
msgstr ""
-#: ../../mod/blocks.php:66
-msgid "Block Name"
+#: ../../mod/mitem.php:47
+msgid "Menu element updated."
msgstr ""
-#: ../../mod/profiles.php:18 ../../mod/profiles.php:138
-#: ../../mod/profiles.php:168 ../../mod/profiles.php:463
-msgid "Profile not found."
+#: ../../mod/mitem.php:51
+msgid "Unable to update menu element."
msgstr ""
-#: ../../mod/profiles.php:38
-msgid "Profile deleted."
+#: ../../mod/mitem.php:57
+msgid "Menu element added."
msgstr ""
-#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
-msgid "Profile-"
+#: ../../mod/mitem.php:61
+msgid "Unable to add menu element."
msgstr ""
-#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
-msgid "New profile created."
+#: ../../mod/mitem.php:96
+msgid "Manage Menu Elements"
msgstr ""
-#: ../../mod/profiles.php:98
-msgid "Profile unavailable to clone."
+#: ../../mod/mitem.php:99
+msgid "Edit menu"
msgstr ""
-#: ../../mod/profiles.php:178
-msgid "Profile Name is required."
+#: ../../mod/mitem.php:102
+msgid "Edit element"
msgstr ""
-#: ../../mod/profiles.php:294
-msgid "Marital Status"
+#: ../../mod/mitem.php:103
+msgid "Drop element"
msgstr ""
-#: ../../mod/profiles.php:298
-msgid "Romantic Partner"
+#: ../../mod/mitem.php:104
+msgid "New element"
msgstr ""
-#: ../../mod/profiles.php:310
-msgid "Work/Employment"
+#: ../../mod/mitem.php:105
+msgid "Edit this menu container"
msgstr ""
-#: ../../mod/profiles.php:313
-msgid "Religion"
+#: ../../mod/mitem.php:106
+msgid "Add menu element"
msgstr ""
-#: ../../mod/profiles.php:317
-msgid "Political Views"
+#: ../../mod/mitem.php:107
+msgid "Delete this menu item"
msgstr ""
-#: ../../mod/profiles.php:321
-msgid "Gender"
+#: ../../mod/mitem.php:108
+msgid "Edit this menu item"
msgstr ""
-#: ../../mod/profiles.php:325
-msgid "Sexual Preference"
+#: ../../mod/mitem.php:131
+msgid "New Menu Element"
msgstr ""
-#: ../../mod/profiles.php:329
-msgid "Homepage"
+#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
+msgid "Menu Item Permissions"
msgstr ""
-#: ../../mod/profiles.php:333
-msgid "Interests"
+#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:962
+msgid "(click to open/close)"
msgstr ""
-#: ../../mod/profiles.php:344 ../../mod/pubsites.php:25
-msgid "Location"
+#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
+msgid "Link text"
msgstr ""
-#: ../../mod/profiles.php:427
-msgid "Profile updated."
+#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
+msgid "URL of link"
msgstr ""
-#: ../../mod/profiles.php:482
-msgid "Hide your contact/friend list from viewers of this profile?"
+#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
+msgid "Use Red magic-auth if available"
msgstr ""
-#: ../../mod/profiles.php:505
-msgid "Edit Profile Details"
+#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
+msgid "Open link in new window"
msgstr ""
-#: ../../mod/profiles.php:507
-msgid "View this profile"
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Order in list"
msgstr ""
-#: ../../mod/profiles.php:508
-msgid "Change Profile Photo"
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Higher numbers will sink to bottom of listing"
msgstr ""
-#: ../../mod/profiles.php:509
-msgid "Create a new profile using these settings"
+#: ../../mod/mitem.php:154
+msgid "Menu item not found."
msgstr ""
-#: ../../mod/profiles.php:510
-msgid "Clone this profile"
+#: ../../mod/mitem.php:163
+msgid "Menu item deleted."
msgstr ""
-#: ../../mod/profiles.php:511
-msgid "Delete this profile"
+#: ../../mod/mitem.php:165
+msgid "Menu item could not be deleted."
msgstr ""
-#: ../../mod/profiles.php:512
-msgid "Profile Name:"
+#: ../../mod/mitem.php:174
+msgid "Edit Menu Element"
msgstr ""
-#: ../../mod/profiles.php:513
-msgid "Your Full Name:"
+#: ../../mod/mitem.php:186 ../../mod/menu.php:114
+msgid "Modify"
msgstr ""
-#: ../../mod/profiles.php:514
-msgid "Title/Description:"
+#: ../../mod/connect.php:55 ../../mod/connect.php:103
+msgid "Continue"
msgstr ""
-#: ../../mod/profiles.php:515
-msgid "Your Gender:"
+#: ../../mod/connect.php:84
+msgid "Premium Channel Setup"
msgstr ""
-#: ../../mod/profiles.php:516
-#, php-format
-msgid "Birthday (%s):"
+#: ../../mod/connect.php:86
+msgid "Enable premium channel connection restrictions"
msgstr ""
-#: ../../mod/profiles.php:517
-msgid "Street Address:"
+#: ../../mod/connect.php:87
+msgid ""
+"Please enter your restrictions or conditions, such as paypal receipt, usage "
+"guidelines, etc."
msgstr ""
-#: ../../mod/profiles.php:518
-msgid "Locality/City:"
+#: ../../mod/connect.php:89 ../../mod/connect.php:109
+msgid ""
+"This channel may require additional steps or acknowledgement of the "
+"following conditions prior to connecting:"
msgstr ""
-#: ../../mod/profiles.php:519
-msgid "Postal/Zip Code:"
+#: ../../mod/connect.php:90
+msgid ""
+"Potential connections will then see the following text before proceeding:"
msgstr ""
-#: ../../mod/profiles.php:520
-msgid "Country:"
+#: ../../mod/connect.php:91 ../../mod/connect.php:112
+msgid ""
+"By continuing, I certify that I have complied with any instructions provided "
+"on this page."
msgstr ""
-#: ../../mod/profiles.php:521
-msgid "Region/State:"
+#: ../../mod/connect.php:100
+msgid "(No specific instructions have been provided by the channel owner.)"
msgstr ""
-#: ../../mod/profiles.php:522
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+#: ../../mod/connect.php:108
+msgid "Restricted or Premium Channel"
msgstr ""
-#: ../../mod/profiles.php:523
-msgid "Who: (if applicable)"
+#: ../../mod/item.php:147
+msgid "Unable to locate original post."
msgstr ""
-#: ../../mod/profiles.php:524
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/item.php:352
+msgid "Empty post discarded."
msgstr ""
-#: ../../mod/profiles.php:525
-msgid "Since [date]:"
+#: ../../mod/item.php:392
+msgid "Executable content type not permitted to this channel."
msgstr ""
-#: ../../mod/profiles.php:527
-msgid "Homepage URL:"
+#: ../../mod/item.php:806
+msgid "System error. Post not saved."
msgstr ""
-#: ../../mod/profiles.php:530
-msgid "Religious Views:"
+#: ../../mod/item.php:1249
+#, php-format
+msgid "You have reached your limit of %1$.0f top level posts."
msgstr ""
-#: ../../mod/profiles.php:531
-msgid "Keywords:"
+#: ../../mod/item.php:1255
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
msgstr ""
-#: ../../mod/profiles.php:534
-msgid "Example: fishing photography software"
+#: ../../mod/suggest.php:35
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
msgstr ""
-#: ../../mod/profiles.php:535
-msgid "Used in directory listings"
+#: ../../mod/network.php:79
+msgid "No such group"
msgstr ""
-#: ../../mod/profiles.php:536
-msgid "Tell us about yourself..."
+#: ../../mod/network.php:119
+msgid "Search Results For:"
msgstr ""
-#: ../../mod/profiles.php:537
-msgid "Hobbies/Interests"
+#: ../../mod/network.php:173
+msgid "Collection is empty"
msgstr ""
-#: ../../mod/profiles.php:538
-msgid "Contact information and Social Networks"
+#: ../../mod/network.php:181
+msgid "Collection: "
msgstr ""
-#: ../../mod/profiles.php:539
-msgid "My other channels"
+#: ../../mod/network.php:194
+msgid "Connection: "
msgstr ""
-#: ../../mod/profiles.php:540
-msgid "Musical interests"
+#: ../../mod/network.php:197
+msgid "Invalid connection."
msgstr ""
-#: ../../mod/profiles.php:541
-msgid "Books, literature"
+#: ../../mod/siteinfo.php:57
+#, php-format
+msgid "Version %s"
msgstr ""
-#: ../../mod/profiles.php:542
-msgid "Television"
+#: ../../mod/siteinfo.php:76
+msgid "Installed plugins/addons/apps:"
msgstr ""
-#: ../../mod/profiles.php:543
-msgid "Film/dance/culture/entertainment"
+#: ../../mod/siteinfo.php:89
+msgid "No installed plugins/addons/apps"
msgstr ""
-#: ../../mod/profiles.php:544
-msgid "Love/romance"
+#: ../../mod/siteinfo.php:97
+msgid "Red"
msgstr ""
-#: ../../mod/profiles.php:545
-msgid "Work/employment"
+#: ../../mod/siteinfo.php:98
+msgid ""
+"This is a hub of the Red Matrix - a global cooperative network of "
+"decentralised privacy enhanced websites."
msgstr ""
-#: ../../mod/profiles.php:546
-msgid "School/education"
+#: ../../mod/siteinfo.php:101
+msgid "Running at web location"
msgstr ""
-#: ../../mod/profiles.php:551
+#: ../../mod/siteinfo.php:102
msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr ""
-
-#: ../../mod/profiles.php:561 ../../mod/directory.php:143
-#: ../../mod/dirprofile.php:92
-msgid "Age: "
+"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
+"about the Red Matrix."
msgstr ""
-#: ../../mod/profiles.php:600
-msgid "Edit/Manage Profiles"
+#: ../../mod/siteinfo.php:103
+msgid "Bug reports and issues: please visit"
msgstr ""
-#: ../../mod/profiles.php:601
-msgid "Add profile things"
+#: ../../mod/siteinfo.php:106
+msgid ""
+"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"
msgstr ""
-#: ../../mod/profiles.php:602
-msgid "Include desirable objects in your profile"
+#: ../../mod/siteinfo.php:108
+msgid "Site Administrators"
msgstr ""
#: ../../mod/bookmarks.php:38
@@ -4504,448 +4001,322 @@ msgstr ""
msgid "My Connections Bookmarks"
msgstr ""
-#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
-msgid "Invalid profile identifier."
-msgstr ""
-
-#: ../../mod/profperm.php:110
-msgid "Profile Visibility Editor"
-msgstr ""
-
-#: ../../mod/profperm.php:114
-msgid "Click on a contact to add or remove."
+#: ../../mod/channel.php:25 ../../mod/chat.php:19
+msgid "You must be logged in to see this page."
msgstr ""
-#: ../../mod/profperm.php:123
-msgid "Visible To"
+#: ../../mod/channel.php:86
+msgid "Insufficient permissions. Request redirected to profile page."
msgstr ""
-#: ../../mod/profperm.php:139 ../../mod/connections.php:278
-msgid "All Connections"
+#: ../../mod/pdledit.php:13
+msgid "Layout updated."
msgstr ""
-#: ../../mod/pubsites.php:16
-msgid "Public Sites"
+#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53
+msgid "Edit System Page Description"
msgstr ""
-#: ../../mod/pubsites.php:19
-msgid ""
-"The listed sites allow public registration into the Red Matrix. All sites in "
-"the matrix are interlinked so membership on any of them conveys membership "
-"in the matrix as a whole. Some sites may require subscription or provide "
-"tiered service plans. The provider links <strong>may</strong> provide "
-"additional details."
+#: ../../mod/pdledit.php:48
+msgid "Layout not found."
msgstr ""
-#: ../../mod/pubsites.php:25
-msgid "Site URL"
+#: ../../mod/pdledit.php:54
+msgid "Module Name:"
msgstr ""
-#: ../../mod/pubsites.php:25
-msgid "Access Type"
+#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59
+msgid "Layout Help"
msgstr ""
-#: ../../mod/pubsites.php:25
-msgid "Registration Policy"
+#: ../../mod/oexchange.php:23
+msgid "Unable to find your hub."
msgstr ""
-#: ../../mod/channel.php:25 ../../mod/chat.php:19
-msgid "You must be logged in to see this page."
+#: ../../mod/oexchange.php:37
+msgid "Post successful."
msgstr ""
-#: ../../mod/channel.php:86
-msgid "Insufficient permissions. Request redirected to profile page."
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
msgstr ""
#: ../../mod/chanview.php:93
msgid "toggle full screen mode"
msgstr ""
-#: ../../mod/rbmark.php:88
-msgid "Select a bookmark folder"
+#: ../../mod/zfinger.php:23
+msgid "invalid target signature"
msgstr ""
-#: ../../mod/rbmark.php:93
-msgid "Save Bookmark"
+#: ../../mod/sources.php:32
+msgid "Failed to create source. No channel selected."
msgstr ""
-#: ../../mod/rbmark.php:94
-msgid "URL of bookmark"
+#: ../../mod/sources.php:45
+msgid "Source created."
msgstr ""
-#: ../../mod/rbmark.php:95
-msgid "Description"
+#: ../../mod/sources.php:57
+msgid "Source updated."
msgstr ""
-#: ../../mod/rbmark.php:99
-msgid "Or enter new bookmark folder name"
+#: ../../mod/sources.php:82
+msgid "*"
msgstr ""
-#: ../../mod/chat.php:167
-msgid "Room not found"
+#: ../../mod/sources.php:89
+msgid "Manage remote sources of content for your channel."
msgstr ""
-#: ../../mod/chat.php:178
-msgid "Leave Room"
+#: ../../mod/sources.php:90 ../../mod/sources.php:100
+msgid "New Source"
msgstr ""
-#: ../../mod/chat.php:179
-msgid "Delete This Room"
+#: ../../mod/sources.php:101 ../../mod/sources.php:133
+msgid ""
+"Import all or selected content from the following channel into this channel "
+"and distribute it according to your channel settings."
msgstr ""
-#: ../../mod/chat.php:180
-msgid "I am away right now"
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Only import content with these words (one per line)"
msgstr ""
-#: ../../mod/chat.php:181
-msgid "I am online"
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Leave blank to import all public content"
msgstr ""
-#: ../../mod/chat.php:183
-msgid "Bookmark this room"
+#: ../../mod/sources.php:123 ../../mod/sources.php:150
+msgid "Source not found."
msgstr ""
-#: ../../mod/chat.php:207 ../../mod/chat.php:229
-msgid "New Chatroom"
+#: ../../mod/sources.php:130
+msgid "Edit Source"
msgstr ""
-#: ../../mod/chat.php:208
-msgid "Chatroom Name"
+#: ../../mod/sources.php:131
+msgid "Delete Source"
msgstr ""
-#: ../../mod/chat.php:225
-#, php-format
-msgid "%1$s's Chatrooms"
+#: ../../mod/sources.php:158
+msgid "Source removed"
msgstr ""
-#: ../../mod/register.php:43
-msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
+#: ../../mod/sources.php:160
+msgid "Unable to remove source."
msgstr ""
-#: ../../mod/register.php:49
-msgid ""
-"Please indicate acceptance of the Terms of Service. Registration failed."
+#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
+msgid "Invalid profile identifier."
msgstr ""
-#: ../../mod/register.php:77
-msgid "Passwords do not match."
+#: ../../mod/profperm.php:110
+msgid "Profile Visibility Editor"
msgstr ""
-#: ../../mod/register.php:105
-msgid ""
-"Registration successful. Please check your email for validation instructions."
+#: ../../mod/profperm.php:114
+msgid "Click on a contact to add or remove."
msgstr ""
-#: ../../mod/register.php:111
-msgid "Your registration is pending approval by the site owner."
+#: ../../mod/profperm.php:123
+msgid "Visible To"
msgstr ""
-#: ../../mod/register.php:114
-msgid "Your registration can not be processed."
+#: ../../mod/profperm.php:139 ../../mod/connections.php:278
+msgid "All Connections"
msgstr ""
-#: ../../mod/register.php:147
-msgid "Registration on this site/hub is by approval only."
+#: ../../mod/profile_photo.php:108
+msgid "Image uploaded but image cropping failed."
msgstr ""
-#: ../../mod/register.php:148
-msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>"
+#: ../../mod/profile_photo.php:161
+msgid "Image resize failed."
msgstr ""
-#: ../../mod/register.php:156
+#: ../../mod/profile_photo.php:205
msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr ""
-
-#: ../../mod/register.php:167
-msgid "Terms of Service"
-msgstr ""
-
-#: ../../mod/register.php:173
-#, php-format
-msgid "I accept the %s for this website"
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
msgstr ""
-#: ../../mod/register.php:175
+#: ../../mod/profile_photo.php:232
#, php-format
-msgid "I am over 13 years of age and accept the %s for this website"
-msgstr ""
-
-#: ../../mod/register.php:194
-msgid "Membership on this site is by invitation only."
-msgstr ""
-
-#: ../../mod/register.php:195
-msgid "Please enter your invitation code"
+msgid "Image exceeds size limit of %d"
msgstr ""
-#: ../../mod/register.php:198
-msgid "Your email address"
+#: ../../mod/profile_photo.php:241
+msgid "Unable to process image."
msgstr ""
-#: ../../mod/register.php:199
-msgid "Choose a password"
+#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339
+msgid "Photo not available."
msgstr ""
-#: ../../mod/register.php:200
-msgid "Please re-enter your password"
+#: ../../mod/profile_photo.php:358
+msgid "Upload File:"
msgstr ""
-#: ../../mod/chatsvc.php:111
-msgid "Away"
+#: ../../mod/profile_photo.php:359
+msgid "Select a profile:"
msgstr ""
-#: ../../mod/chatsvc.php:115
-msgid "Online"
+#: ../../mod/profile_photo.php:360
+msgid "Upload Profile Photo"
msgstr ""
-#: ../../mod/regmod.php:12
-msgid "Please login."
+#: ../../mod/profile_photo.php:361
+msgid "Upload"
msgstr ""
-#: ../../mod/cloud.php:112
-msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
+#: ../../mod/profile_photo.php:365 ../../mod/settings.php:888
+msgid "or"
msgstr ""
-#: ../../mod/removeme.php:49
-msgid "Remove This Channel"
+#: ../../mod/profile_photo.php:365
+msgid "skip this step"
msgstr ""
-#: ../../mod/removeme.php:50
-msgid ""
-"This will completely remove this channel from the network. Once this has "
-"been done it is not recoverable."
+#: ../../mod/profile_photo.php:365
+msgid "select a photo from your photo albums"
msgstr ""
-#: ../../mod/removeme.php:51
-msgid "Please enter your password for verification:"
+#: ../../mod/profile_photo.php:379
+msgid "Crop Image"
msgstr ""
-#: ../../mod/removeme.php:52
-msgid "Remove this channel and all its clones from the network"
+#: ../../mod/profile_photo.php:380
+msgid "Please adjust the image cropping for optimum viewing."
msgstr ""
-#: ../../mod/removeme.php:52
-msgid ""
-"By default only the instance of the channel located on this hub will be "
-"removed from the network"
+#: ../../mod/profile_photo.php:382
+msgid "Done Editing"
msgstr ""
-#: ../../mod/removeme.php:53
-msgid "Remove Channel"
+#: ../../mod/profile_photo.php:425
+msgid "Image uploaded successfully."
msgstr ""
-#: ../../mod/common.php:10
-msgid "No channel."
+#: ../../mod/profile_photo.php:427
+msgid "Image upload failed."
msgstr ""
-#: ../../mod/common.php:39
-msgid "Common connections"
+#: ../../mod/profile_photo.php:436
+#, php-format
+msgid "Image size reduction [%s] failed."
msgstr ""
-#: ../../mod/common.php:44
-msgid "No connections in common."
+#: ../../mod/blocks.php:66
+msgid "Block Name"
msgstr ""
-#: ../../mod/rmagic.php:38
+#: ../../mod/post.php:226
msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
+"Remote authentication blocked. You are logged into this site locally. Please "
+"logout and retry."
msgstr ""
-#: ../../mod/rmagic.php:38
-msgid "The error message was:"
+#: ../../mod/post.php:257 ../../mod/openid.php:72 ../../mod/openid.php:178
+#, php-format
+msgid "Welcome %s. Remote authentication successful."
msgstr ""
-#: ../../mod/rmagic.php:42
-msgid "Authentication failed."
+#: ../../mod/filestorage.php:68
+msgid "Permission Denied."
msgstr ""
-#: ../../mod/rmagic.php:78
-msgid "Remote Authentication"
+#: ../../mod/filestorage.php:85
+msgid "File not found."
msgstr ""
-#: ../../mod/rmagic.php:79
-msgid "Enter your channel address (e.g. channel@example.com)"
+#: ../../mod/filestorage.php:121
+msgid "Edit file permissions"
msgstr ""
-#: ../../mod/rmagic.php:80
-msgid "Authenticate"
+#: ../../mod/filestorage.php:129
+msgid "Set/edit permissions"
msgstr ""
-#: ../../mod/connect.php:55 ../../mod/connect.php:103
-msgid "Continue"
+#: ../../mod/filestorage.php:130
+msgid "Include all files and sub folders"
msgstr ""
-#: ../../mod/connect.php:84
-msgid "Premium Channel Setup"
+#: ../../mod/filestorage.php:131
+msgid "Return to file list"
msgstr ""
-#: ../../mod/connect.php:86
-msgid "Enable premium channel connection restrictions"
+#: ../../mod/filestorage.php:133
+msgid "Copy/paste this code to attach file to a post"
msgstr ""
-#: ../../mod/connect.php:87
-msgid ""
-"Please enter your restrictions or conditions, such as paypal receipt, usage "
-"guidelines, etc."
+#: ../../mod/filestorage.php:134
+msgid "Copy/paste this URL to link file from a web page"
msgstr ""
-#: ../../mod/connect.php:89 ../../mod/connect.php:109
-msgid ""
-"This channel may require additional steps or acknowledgement of the "
-"following conditions prior to connecting:"
+#: ../../mod/filestorage.php:171
+msgid "Download"
msgstr ""
-#: ../../mod/connect.php:90
-msgid ""
-"Potential connections will then see the following text before proceeding:"
+#: ../../mod/filestorage.php:177
+msgid "Used: "
msgstr ""
-#: ../../mod/connect.php:91 ../../mod/connect.php:112
-msgid ""
-"By continuing, I certify that I have complied with any instructions provided "
-"on this page."
+#: ../../mod/filestorage.php:178
+msgid "[directory]"
msgstr ""
-#: ../../mod/connect.php:100
-msgid "(No specific instructions have been provided by the channel owner.)"
+#: ../../mod/filestorage.php:180
+msgid "Limit: "
msgstr ""
-#: ../../mod/connect.php:108
-msgid "Restricted or Premium Channel"
+#: ../../mod/lockview.php:30 ../../mod/lockview.php:36
+msgid "Remote privacy information not available."
msgstr ""
-#: ../../mod/network.php:79
-msgid "No such group"
+#: ../../mod/lockview.php:45
+msgid "Visible to:"
msgstr ""
-#: ../../mod/network.php:119
-msgid "Search Results For:"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
msgstr ""
-#: ../../mod/network.php:173
-msgid "Collection is empty"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
msgstr ""
-#: ../../mod/network.php:181
-msgid "Collection: "
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
msgstr ""
-#: ../../mod/network.php:194
-msgid "Connection: "
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
msgstr ""
-#: ../../mod/network.php:197
-msgid "Invalid connection."
+#: ../../mod/tagger.php:98
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr ""
-#: ../../mod/connections.php:37 ../../mod/connedit.php:64
+#: ../../mod/connedit.php:64 ../../mod/connections.php:37
msgid "Could not access contact record."
msgstr ""
-#: ../../mod/connections.php:51 ../../mod/connedit.php:78
+#: ../../mod/connedit.php:78 ../../mod/connections.php:51
msgid "Could not locate selected profile."
msgstr ""
-#: ../../mod/connections.php:94 ../../mod/connedit.php:131
+#: ../../mod/connedit.php:131 ../../mod/connections.php:94
msgid "Connection updated."
msgstr ""
-#: ../../mod/connections.php:96 ../../mod/connedit.php:133
+#: ../../mod/connedit.php:133 ../../mod/connections.php:96
msgid "Failed to update connection record."
msgstr ""
-#: ../../mod/connections.php:191 ../../mod/connections.php:291
-msgid "Blocked"
-msgstr ""
-
-#: ../../mod/connections.php:196 ../../mod/connections.php:298
-msgid "Ignored"
-msgstr ""
-
-#: ../../mod/connections.php:201 ../../mod/connections.php:312
-msgid "Hidden"
-msgstr ""
-
-#: ../../mod/connections.php:206 ../../mod/connections.php:305
-msgid "Archived"
-msgstr ""
-
-#: ../../mod/connections.php:230 ../../mod/connections.php:244
-msgid "All"
-msgstr ""
-
-#: ../../mod/connections.php:239 ../../mod/connections.php:319
-msgid "Unconnected"
-msgstr ""
-
-#: ../../mod/connections.php:269
-msgid "Suggest new connections"
-msgstr ""
-
-#: ../../mod/connections.php:272
-msgid "New Connections"
-msgstr ""
-
-#: ../../mod/connections.php:275
-msgid "Show pending (new) connections"
-msgstr ""
-
-#: ../../mod/connections.php:281
-msgid "Show all connections"
-msgstr ""
-
-#: ../../mod/connections.php:284
-msgid "Unblocked"
-msgstr ""
-
-#: ../../mod/connections.php:287
-msgid "Only show unblocked connections"
-msgstr ""
-
-#: ../../mod/connections.php:294
-msgid "Only show blocked connections"
-msgstr ""
-
-#: ../../mod/connections.php:301
-msgid "Only show ignored connections"
-msgstr ""
-
-#: ../../mod/connections.php:308
-msgid "Only show archived connections"
-msgstr ""
-
-#: ../../mod/connections.php:315
-msgid "Only show hidden connections"
-msgstr ""
-
-#: ../../mod/connections.php:322
-msgid "Only show one-way connections"
-msgstr ""
-
-#: ../../mod/connections.php:367
-#, php-format
-msgid "%1$s [%2$s]"
-msgstr ""
-
-#: ../../mod/connections.php:368
-msgid "Edit contact"
-msgstr ""
-
-#: ../../mod/connections.php:389
-msgid "Search your connections"
-msgstr ""
-
-#: ../../mod/connections.php:390
-msgid "Finding: "
-msgstr ""
-
-#: ../../mod/rpost.php:86 ../../mod/editpost.php:42
-msgid "Edit post"
-msgstr ""
-
#: ../../mod/connedit.php:243
msgid "Could not access address book record."
msgstr ""
@@ -5025,6 +4396,16 @@ msgstr ""
msgid "View recent posts and comments"
msgstr ""
+#: ../../mod/connedit.php:372 ../../mod/connedit.php:515
+#: ../../mod/admin.php:759
+msgid "Unblock"
+msgstr ""
+
+#: ../../mod/connedit.php:372 ../../mod/connedit.php:515
+#: ../../mod/admin.php:758
+msgid "Block"
+msgstr ""
+
#: ../../mod/connedit.php:375
msgid "Block or Unblock this connection"
msgstr ""
@@ -5033,11 +4414,6 @@ msgstr ""
msgid "Unignore"
msgstr ""
-#: ../../mod/connedit.php:379 ../../mod/connedit.php:516
-#: ../../mod/notifications.php:51
-msgid "Ignore"
-msgstr ""
-
#: ../../mod/connedit.php:382
msgid "Ignore or Unignore this connection"
msgstr ""
@@ -5244,97 +4620,46 @@ msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr ""
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr ""
-
-#: ../../mod/delegate.php:121
-msgid "Delegate Page Management"
+#: ../../mod/dirsearch.php:21
+msgid "This site is not a directory server"
msgstr ""
-#: ../../mod/delegate.php:123
+#: ../../mod/rmagic.php:38
msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr ""
-
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr ""
-
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr ""
-
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr ""
-
-#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93 ../../mod/photos.php:908
-msgid "Remove"
-msgstr ""
-
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr ""
-
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr ""
-
-#: ../../mod/search.php:13 ../../mod/directory.php:15
-#: ../../mod/dirprofile.php:9 ../../mod/display.php:9
-#: ../../mod/viewconnections.php:17 ../../mod/photos.php:443
-msgid "Public access denied."
-msgstr ""
-
-#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95
-msgid "Gender: "
-msgstr ""
-
-#: ../../mod/directory.php:207
-msgid "Finding:"
-msgstr ""
-
-#: ../../mod/directory.php:215
-msgid "next page"
-msgstr ""
-
-#: ../../mod/directory.php:215
-msgid "previous page"
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
msgstr ""
-#: ../../mod/directory.php:222
-msgid "No entries (some entries may be hidden)."
+#: ../../mod/rmagic.php:38
+msgid "The error message was:"
msgstr ""
-#: ../../mod/dirprofile.php:108
-msgid "Status: "
+#: ../../mod/rmagic.php:42
+msgid "Authentication failed."
msgstr ""
-#: ../../mod/dirprofile.php:109
-msgid "Sexual Preference: "
+#: ../../mod/rmagic.php:78
+msgid "Remote Authentication"
msgstr ""
-#: ../../mod/dirprofile.php:111
-msgid "Homepage: "
+#: ../../mod/rmagic.php:79
+msgid "Enter your channel address (e.g. channel@example.com)"
msgstr ""
-#: ../../mod/dirprofile.php:112
-msgid "Hometown: "
+#: ../../mod/rmagic.php:80
+msgid "Authenticate"
msgstr ""
-#: ../../mod/dirprofile.php:114
-msgid "About: "
+#: ../../mod/attach.php:9
+msgid "Item not available."
msgstr ""
-#: ../../mod/dirprofile.php:162
-msgid "Keywords: "
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
msgstr ""
-#: ../../mod/dirsearch.php:21
-msgid "This site is not a directory server"
+#: ../../mod/editpost.php:53
+msgid "Delete item?"
msgstr ""
#: ../../mod/settings.php:71
@@ -5382,6 +4707,11 @@ msgstr ""
msgid "Add application"
msgstr ""
+#: ../../mod/settings.php:517 ../../mod/settings.php:543
+#: ../../mod/admin.php:891
+msgid "Name"
+msgstr ""
+
#: ../../mod/settings.php:517
msgid "Name of application"
msgstr ""
@@ -5491,6 +4821,10 @@ msgstr ""
msgid "Connector Settings"
msgstr ""
+#: ../../mod/settings.php:708 ../../mod/admin.php:389
+msgid "No special theme for mobile devices"
+msgstr ""
+
#: ../../mod/settings.php:749
msgid "Display Settings"
msgstr ""
@@ -6142,486 +5476,446 @@ msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
msgstr ""
-#: ../../mod/editblock.php:8 ../../mod/editblock.php:27
-#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36
-#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32
-msgid "Item not found"
-msgstr ""
-
-#: ../../mod/editblock.php:77
-msgid "Edit Block"
-msgstr ""
-
-#: ../../mod/editblock.php:87
-msgid "Delete block?"
-msgstr ""
-
-#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110
-#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147
-msgid "Insert YouTube video"
-msgstr ""
-
-#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111
-#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148
-msgid "Insert Vorbis [.ogg] video"
-msgstr ""
-
-#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112
-#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149
-msgid "Insert Vorbis [.ogg] audio"
-msgstr ""
-
-#: ../../mod/editblock.php:153
-msgid "Delete Block"
-msgstr ""
-
-#: ../../mod/pdledit.php:13
-msgid "Layout updated."
-msgstr ""
-
-#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53
-msgid "Edit System Page Description"
+#: ../../mod/events.php:72
+msgid "Event title and start time are required."
msgstr ""
-#: ../../mod/pdledit.php:48
-msgid "Layout not found."
+#: ../../mod/events.php:299
+msgid "l, F j"
msgstr ""
-#: ../../mod/pdledit.php:54
-msgid "Module Name:"
+#: ../../mod/events.php:321
+msgid "Edit event"
msgstr ""
-#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59
-msgid "Layout Help"
+#: ../../mod/events.php:367
+msgid "Create New Event"
msgstr ""
-#: ../../mod/editlayout.php:72
-msgid "Edit Layout"
+#: ../../mod/events.php:368
+msgid "Previous"
msgstr ""
-#: ../../mod/editlayout.php:82
-msgid "Delete layout?"
+#: ../../mod/events.php:439
+msgid "hour:minute"
msgstr ""
-#: ../../mod/editlayout.php:146
-msgid "Delete Layout"
+#: ../../mod/events.php:459
+msgid "Event details"
msgstr ""
-#: ../../mod/editpost.php:31
-msgid "Item is not editable"
+#: ../../mod/events.php:460
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
msgstr ""
-#: ../../mod/editpost.php:53
-msgid "Delete item?"
+#: ../../mod/events.php:462
+msgid "Event Starts:"
msgstr ""
-#: ../../mod/editwebpage.php:106
-msgid "Edit Webpage"
+#: ../../mod/events.php:462 ../../mod/events.php:476 ../../mod/appman.php:83
+#: ../../mod/appman.php:84
+msgid "Required"
msgstr ""
-#: ../../mod/editwebpage.php:116
-msgid "Delete webpage?"
+#: ../../mod/events.php:465
+msgid "Finish date/time is not known or not relevant"
msgstr ""
-#: ../../mod/editwebpage.php:187
-msgid "Delete Webpage"
+#: ../../mod/events.php:467
+msgid "Event Finishes:"
msgstr ""
-#: ../../mod/siteinfo.php:57
-#, php-format
-msgid "Version %s"
+#: ../../mod/events.php:470
+msgid "Adjust for viewer timezone"
msgstr ""
-#: ../../mod/siteinfo.php:76
-msgid "Installed plugins/addons/apps:"
+#: ../../mod/events.php:472
+msgid "Description:"
msgstr ""
-#: ../../mod/siteinfo.php:89
-msgid "No installed plugins/addons/apps"
+#: ../../mod/events.php:476
+msgid "Title:"
msgstr ""
-#: ../../mod/siteinfo.php:97
-msgid "Red"
+#: ../../mod/events.php:478
+msgid "Share this event"
msgstr ""
-#: ../../mod/siteinfo.php:98
-msgid ""
-"This is a hub of the Red Matrix - a global cooperative network of "
-"decentralised privacy enhanced websites."
+#: ../../mod/photos.php:77
+msgid "Page owner information could not be retrieved."
msgstr ""
-#: ../../mod/siteinfo.php:101
-msgid "Running at web location"
+#: ../../mod/photos.php:97
+msgid "Album not found."
msgstr ""
-#: ../../mod/siteinfo.php:102
-msgid ""
-"Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more "
-"about the Red Matrix."
+#: ../../mod/photos.php:119 ../../mod/photos.php:671
+msgid "Delete Album"
msgstr ""
-#: ../../mod/siteinfo.php:103
-msgid "Bug reports and issues: please visit"
+#: ../../mod/photos.php:159 ../../mod/photos.php:954
+msgid "Delete Photo"
msgstr ""
-#: ../../mod/siteinfo.php:106
-msgid ""
-"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"
+#: ../../mod/photos.php:453
+msgid "No photos selected"
msgstr ""
-#: ../../mod/siteinfo.php:108
-msgid "Site Administrators"
+#: ../../mod/photos.php:500
+msgid "Access to this item is restricted."
msgstr ""
-#: ../../mod/events.php:72
-msgid "Event title and start time are required."
+#: ../../mod/photos.php:576
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr ""
-#: ../../mod/events.php:299
-msgid "l, F j"
+#: ../../mod/photos.php:579
+#, php-format
+msgid "You have used %1$.2f Mbytes of photo storage."
msgstr ""
-#: ../../mod/events.php:321
-msgid "Edit event"
+#: ../../mod/photos.php:598
+msgid "Upload Photos"
msgstr ""
-#: ../../mod/events.php:367
-msgid "Create New Event"
+#: ../../mod/photos.php:602 ../../mod/photos.php:666
+msgid "New album name: "
msgstr ""
-#: ../../mod/events.php:368
-msgid "Previous"
+#: ../../mod/photos.php:603
+msgid "or existing album name: "
msgstr ""
-#: ../../mod/events.php:439
-msgid "hour:minute"
+#: ../../mod/photos.php:604
+msgid "Do not show a status post for this upload"
msgstr ""
-#: ../../mod/events.php:459
-msgid "Event details"
+#: ../../mod/photos.php:655 ../../mod/photos.php:677 ../../mod/photos.php:1126
+#: ../../mod/photos.php:1141
+msgid "Contact Photos"
msgstr ""
-#: ../../mod/events.php:460
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
+#: ../../mod/photos.php:681
+msgid "Edit Album"
msgstr ""
-#: ../../mod/events.php:462
-msgid "Event Starts:"
+#: ../../mod/photos.php:687
+msgid "Show Newest First"
msgstr ""
-#: ../../mod/events.php:462 ../../mod/events.php:476
-msgid "Required"
+#: ../../mod/photos.php:689
+msgid "Show Oldest First"
msgstr ""
-#: ../../mod/events.php:465
-msgid "Finish date/time is not known or not relevant"
+#: ../../mod/photos.php:732 ../../mod/photos.php:1173
+msgid "View Photo"
msgstr ""
-#: ../../mod/events.php:467
-msgid "Event Finishes:"
+#: ../../mod/photos.php:778
+msgid "Permission denied. Access to this item may be restricted."
msgstr ""
-#: ../../mod/events.php:470
-msgid "Adjust for viewer timezone"
+#: ../../mod/photos.php:780
+msgid "Photo not available"
msgstr ""
-#: ../../mod/events.php:472
-msgid "Description:"
+#: ../../mod/photos.php:840
+msgid "Use as profile photo"
msgstr ""
-#: ../../mod/events.php:476
-msgid "Title:"
+#: ../../mod/photos.php:864
+msgid "View Full Size"
msgstr ""
-#: ../../mod/events.php:478
-msgid "Share this event"
+#: ../../mod/photos.php:938
+msgid "Edit photo"
msgstr ""
-#: ../../mod/sources.php:32
-msgid "Failed to create source. No channel selected."
+#: ../../mod/photos.php:940
+msgid "Rotate CW (right)"
msgstr ""
-#: ../../mod/sources.php:45
-msgid "Source created."
+#: ../../mod/photos.php:941
+msgid "Rotate CCW (left)"
msgstr ""
-#: ../../mod/sources.php:57
-msgid "Source updated."
+#: ../../mod/photos.php:943
+msgid "New album name"
msgstr ""
-#: ../../mod/sources.php:82
-msgid "*"
+#: ../../mod/photos.php:946
+msgid "Caption"
msgstr ""
-#: ../../mod/sources.php:89
-msgid "Manage remote sources of content for your channel."
+#: ../../mod/photos.php:948
+msgid "Add a Tag"
msgstr ""
-#: ../../mod/sources.php:90 ../../mod/sources.php:100
-msgid "New Source"
+#: ../../mod/photos.php:951
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr ""
-#: ../../mod/sources.php:101 ../../mod/sources.php:133
-msgid ""
-"Import all or selected content from the following channel into this channel "
-"and distribute it according to your channel settings."
+#: ../../mod/photos.php:1104
+msgid "In This Photo:"
msgstr ""
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Only import content with these words (one per line)"
+#: ../../mod/photos.php:1179
+msgid "View Album"
msgstr ""
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Leave blank to import all public content"
+#: ../../mod/photos.php:1188
+msgid "Recent Photos"
msgstr ""
-#: ../../mod/sources.php:103 ../../mod/sources.php:137
-#: ../../mod/new_channel.php:110
-msgid "Channel Name"
+#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
+msgid "Help:"
msgstr ""
-#: ../../mod/sources.php:123 ../../mod/sources.php:150
-msgid "Source not found."
+#: ../../mod/help.php:69 ../../index.php:234
+msgid "Not Found"
msgstr ""
-#: ../../mod/sources.php:130
-msgid "Edit Source"
+#: ../../mod/ping.php:192
+msgid "sent you a private message"
msgstr ""
-#: ../../mod/sources.php:131
-msgid "Delete Source"
+#: ../../mod/ping.php:250
+msgid "added your channel"
msgstr ""
-#: ../../mod/sources.php:158
-msgid "Source removed"
+#: ../../mod/ping.php:294
+msgid "posted an event"
msgstr ""
-#: ../../mod/sources.php:160
-msgid "Unable to remove source."
+#: ../../mod/lostpass.php:15
+msgid "No valid account found."
msgstr ""
-#: ../../mod/filer.php:49
-msgid "- select -"
+#: ../../mod/lostpass.php:29
+msgid "Password reset request issued. Check your email."
msgstr ""
-#: ../../mod/filestorage.php:68
-msgid "Permission Denied."
+#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
+#, php-format
+msgid "Site Member (%s)"
msgstr ""
-#: ../../mod/filestorage.php:85
-msgid "File not found."
+#: ../../mod/lostpass.php:40
+#, php-format
+msgid "Password reset requested at %s"
msgstr ""
-#: ../../mod/filestorage.php:121
-msgid "Edit file permissions"
+#: ../../mod/lostpass.php:63
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
msgstr ""
-#: ../../mod/filestorage.php:129
-msgid "Set/edit permissions"
+#: ../../mod/lostpass.php:85 ../../boot.php:1461
+msgid "Password Reset"
msgstr ""
-#: ../../mod/filestorage.php:130
-msgid "Include all files and sub folders"
+#: ../../mod/lostpass.php:86
+msgid "Your password has been reset as requested."
msgstr ""
-#: ../../mod/filestorage.php:131
-msgid "Return to file list"
+#: ../../mod/lostpass.php:87
+msgid "Your new password is"
msgstr ""
-#: ../../mod/filestorage.php:133
-msgid "Copy/paste this code to attach file to a post"
+#: ../../mod/lostpass.php:88
+msgid "Save or copy your new password - and then"
msgstr ""
-#: ../../mod/filestorage.php:134
-msgid "Copy/paste this URL to link file from a web page"
+#: ../../mod/lostpass.php:89
+msgid "click here to login"
msgstr ""
-#: ../../mod/filestorage.php:171
-msgid "Download"
+#: ../../mod/lostpass.php:90
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
msgstr ""
-#: ../../mod/filestorage.php:177
-msgid "Used: "
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has changed at %s"
msgstr ""
-#: ../../mod/filestorage.php:178
-msgid "[directory]"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
msgstr ""
-#: ../../mod/filestorage.php:180
-msgid "Limit: "
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
msgstr ""
-#: ../../mod/follow.php:25
-msgid "Channel added."
+#: ../../mod/lostpass.php:124
+msgid "Email Address"
msgstr ""
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
msgstr ""
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
+#: ../../mod/removeme.php:49
+msgid "Remove This Channel"
msgstr ""
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
+#: ../../mod/removeme.php:50
+msgid ""
+"This will completely remove this channel from the network. Once this has "
+"been done it is not recoverable."
msgstr ""
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
+#: ../../mod/removeme.php:51
+msgid "Please enter your password for verification:"
msgstr ""
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
+#: ../../mod/removeme.php:52
+msgid "Remove this channel and all its clones from the network"
msgstr ""
-#: ../../mod/suggest.php:35
+#: ../../mod/removeme.php:52
msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr ""
-
-#: ../../mod/group.php:20
-msgid "Collection created."
-msgstr ""
-
-#: ../../mod/group.php:26
-msgid "Could not create collection."
+"By default only the instance of the channel located on this hub will be "
+"removed from the network"
msgstr ""
-#: ../../mod/group.php:54
-msgid "Collection updated."
+#: ../../mod/removeme.php:53
+msgid "Remove Channel"
msgstr ""
-#: ../../mod/group.php:86
-msgid "Create a collection of channels."
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
msgstr ""
-#: ../../mod/group.php:87 ../../mod/group.php:183
-msgid "Collection Name: "
+#: ../../mod/delegate.php:121
+msgid "Delegate Page Management"
msgstr ""
-#: ../../mod/group.php:89 ../../mod/group.php:186
-msgid "Members are visible to other channels"
+#: ../../mod/delegate.php:123
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
msgstr ""
-#: ../../mod/group.php:107
-msgid "Collection removed."
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
msgstr ""
-#: ../../mod/group.php:109
-msgid "Unable to remove collection."
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
msgstr ""
-#: ../../mod/group.php:182
-msgid "Collection Editor"
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
msgstr ""
-#: ../../mod/group.php:196
-msgid "Members"
+#: ../../mod/delegate.php:131
+msgid "Add"
msgstr ""
-#: ../../mod/group.php:198
-msgid "All Connected Channels"
+#: ../../mod/delegate.php:132
+msgid "No entries."
msgstr ""
-#: ../../mod/group.php:231
-msgid "Click on a channel to add or remove."
+#: ../../mod/layouts.php:62
+msgid "Help with this feature"
msgstr ""
-#: ../../mod/tagger.php:98
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
+#: ../../mod/layouts.php:84
+msgid "Layout Name"
msgstr ""
-#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
-msgid "Help:"
+#: ../../mod/connections.php:191 ../../mod/connections.php:291
+msgid "Blocked"
msgstr ""
-#: ../../mod/help.php:69 ../../index.php:234
-msgid "Not Found"
+#: ../../mod/connections.php:196 ../../mod/connections.php:298
+msgid "Ignored"
msgstr ""
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
+#: ../../mod/connections.php:201 ../../mod/connections.php:312
+msgid "Hidden"
msgstr ""
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
+#: ../../mod/connections.php:206 ../../mod/connections.php:305
+msgid "Archived"
msgstr ""
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
+#: ../../mod/connections.php:230 ../../mod/connections.php:244
+msgid "All"
msgstr ""
-#: ../../mod/home.php:89
-#, php-format
-msgid "Welcome to %s"
+#: ../../mod/connections.php:239 ../../mod/connections.php:319
+msgid "Unconnected"
msgstr ""
-#: ../../mod/thing.php:98
-msgid "Thing updated"
+#: ../../mod/connections.php:269
+msgid "Suggest new connections"
msgstr ""
-#: ../../mod/thing.php:158
-msgid "Object store: failed"
+#: ../../mod/connections.php:272
+msgid "New Connections"
msgstr ""
-#: ../../mod/thing.php:162
-msgid "Thing added"
+#: ../../mod/connections.php:275
+msgid "Show pending (new) connections"
msgstr ""
-#: ../../mod/thing.php:182
-#, php-format
-msgid "OBJ: %1$s %2$s %3$s"
+#: ../../mod/connections.php:281
+msgid "Show all connections"
msgstr ""
-#: ../../mod/thing.php:234
-msgid "Show Thing"
+#: ../../mod/connections.php:284
+msgid "Unblocked"
msgstr ""
-#: ../../mod/thing.php:241
-msgid "item not found."
+#: ../../mod/connections.php:287
+msgid "Only show unblocked connections"
msgstr ""
-#: ../../mod/thing.php:269
-msgid "Edit Thing"
+#: ../../mod/connections.php:294
+msgid "Only show blocked connections"
msgstr ""
-#: ../../mod/thing.php:271 ../../mod/thing.php:318
-msgid "Select a profile"
+#: ../../mod/connections.php:301
+msgid "Only show ignored connections"
msgstr ""
-#: ../../mod/thing.php:273 ../../mod/thing.php:320
-msgid "Select a category of stuff. e.g. I ______ something"
+#: ../../mod/connections.php:308
+msgid "Only show archived connections"
msgstr ""
-#: ../../mod/thing.php:275 ../../mod/thing.php:321
-msgid "Post an activity"
+#: ../../mod/connections.php:315
+msgid "Only show hidden connections"
msgstr ""
-#: ../../mod/thing.php:275 ../../mod/thing.php:321
-msgid "Only sends to viewers of the applicable profile"
+#: ../../mod/connections.php:322
+msgid "Only show one-way connections"
msgstr ""
-#: ../../mod/thing.php:277 ../../mod/thing.php:323
-msgid "Name of thing e.g. something"
+#: ../../mod/connections.php:367
+#, php-format
+msgid "%1$s [%2$s]"
msgstr ""
-#: ../../mod/thing.php:279 ../../mod/thing.php:324
-msgid "URL of thing (optional)"
+#: ../../mod/connections.php:368
+msgid "Edit contact"
msgstr ""
-#: ../../mod/thing.php:281 ../../mod/thing.php:325
-msgid "URL for photo of thing (optional)"
+#: ../../mod/connections.php:389
+msgid "Search your connections"
msgstr ""
-#: ../../mod/thing.php:316
-msgid "Add Thing to your Profile"
+#: ../../mod/connections.php:390
+msgid "Finding: "
msgstr ""
#: ../../mod/import.php:36
@@ -6701,349 +5995,341 @@ msgstr ""
msgid "Make this hub my primary location"
msgstr ""
-#: ../../mod/invite.php:25
-msgid "Total invitation limit exceeded."
+#: ../../mod/mood.php:138
+msgid "Mood"
msgstr ""
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
+#: ../../mod/mood.php:139
+msgid "Set your current mood and tell your friends"
msgstr ""
-#: ../../mod/invite.php:76
-msgid "Please join us on Red"
+#: ../../mod/chat.php:167
+msgid "Room not found"
msgstr ""
-#: ../../mod/invite.php:87
-msgid "Invitation limit exceeded. Please contact your site administrator."
+#: ../../mod/chat.php:178
+msgid "Leave Room"
msgstr ""
-#: ../../mod/invite.php:92
-#, php-format
-msgid "%s : Message delivery failed."
+#: ../../mod/chat.php:179
+msgid "Delete This Room"
msgstr ""
-#: ../../mod/invite.php:96
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] ""
-msgstr[1] ""
+#: ../../mod/chat.php:180
+msgid "I am away right now"
+msgstr ""
-#: ../../mod/invite.php:115
-msgid "You have no more invitations available"
+#: ../../mod/chat.php:181
+msgid "I am online"
msgstr ""
-#: ../../mod/invite.php:141
-msgid "Send invitations"
+#: ../../mod/chat.php:183
+msgid "Bookmark this room"
msgstr ""
-#: ../../mod/invite.php:142
-msgid "Enter email addresses, one per line:"
+#: ../../mod/chat.php:207 ../../mod/chat.php:229
+msgid "New Chatroom"
msgstr ""
-#: ../../mod/invite.php:143 ../../mod/mail.php:216 ../../mod/mail.php:328
-msgid "Your message:"
+#: ../../mod/chat.php:208
+msgid "Chatroom Name"
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/chat.php:225
+#, php-format
+msgid "%1$s's Chatrooms"
msgstr ""
-#: ../../mod/invite.php:146
-msgid "You will need to supply this invitation code: $invite_code"
+#: ../../mod/editblock.php:77
+msgid "Edit Block"
msgstr ""
-#: ../../mod/invite.php:147
-msgid "Please visit my channel at"
+#: ../../mod/editblock.php:87
+msgid "Delete block?"
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/editblock.php:153
+msgid "Delete Block"
msgstr ""
-#: ../../mod/invite.php:153
-msgid "Click the [Register] link on the following page to join."
+#: ../../mod/match.php:16
+msgid "Profile Match"
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/match.php:24
+msgid "No keywords to match. Please add keywords to your default profile."
msgstr ""
-#: ../../mod/item.php:147
-msgid "Unable to locate original post."
+#: ../../mod/match.php:61
+msgid "is interested in:"
msgstr ""
-#: ../../mod/item.php:352
-msgid "Empty post discarded."
+#: ../../mod/match.php:69
+msgid "No matches"
msgstr ""
-#: ../../mod/item.php:392
-msgid "Executable content type not permitted to this channel."
+#: ../../mod/chatsvc.php:111
+msgid "Away"
msgstr ""
-#: ../../mod/item.php:806
-msgid "System error. Post not saved."
+#: ../../mod/chatsvc.php:115
+msgid "Online"
msgstr ""
-#: ../../mod/item.php:1249
-#, php-format
-msgid "You have reached your limit of %1$.0f top level posts."
+#: ../../mod/editwebpage.php:106
+msgid "Edit Webpage"
msgstr ""
-#: ../../mod/item.php:1255
-#, php-format
-msgid "You have reached your limit of %1$.0f webpages."
+#: ../../mod/editwebpage.php:116
+msgid "Delete webpage?"
msgstr ""
-#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25
-#: ../../mod/update_network.php:23 ../../mod/update_search.php:46
-msgid "[Embedded content - reload page to view]"
+#: ../../mod/editwebpage.php:187
+msgid "Delete Webpage"
msgstr ""
-#: ../../mod/layouts.php:62
-msgid "Help with this feature"
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:138
+#: ../../mod/profiles.php:168 ../../mod/profiles.php:463
+msgid "Profile not found."
msgstr ""
-#: ../../mod/layouts.php:84
-msgid "Layout Name"
+#: ../../mod/profiles.php:38
+msgid "Profile deleted."
msgstr ""
-#: ../../mod/lockview.php:30 ../../mod/lockview.php:36
-msgid "Remote privacy information not available."
+#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
+msgid "Profile-"
msgstr ""
-#: ../../mod/lockview.php:45
-msgid "Visible to:"
+#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
+msgid "New profile created."
msgstr ""
-#: ../../mod/viewconnections.php:58
-msgid "No connections."
+#: ../../mod/profiles.php:98
+msgid "Profile unavailable to clone."
msgstr ""
-#: ../../mod/viewconnections.php:70
-#, php-format
-msgid "Visit %s's profile [%s]"
+#: ../../mod/profiles.php:178
+msgid "Profile Name is required."
msgstr ""
-#: ../../mod/viewconnections.php:85
-msgid "View Connnections"
+#: ../../mod/profiles.php:294
+msgid "Marital Status"
msgstr ""
-#: ../../mod/lostpass.php:15
-msgid "No valid account found."
+#: ../../mod/profiles.php:298
+msgid "Romantic Partner"
msgstr ""
-#: ../../mod/lostpass.php:29
-msgid "Password reset request issued. Check your email."
+#: ../../mod/profiles.php:302
+msgid "Likes"
msgstr ""
-#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
-#, php-format
-msgid "Site Member (%s)"
+#: ../../mod/profiles.php:306
+msgid "Dislikes"
msgstr ""
-#: ../../mod/lostpass.php:40
-#, php-format
-msgid "Password reset requested at %s"
+#: ../../mod/profiles.php:310
+msgid "Work/Employment"
msgstr ""
-#: ../../mod/lostpass.php:63
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
+#: ../../mod/profiles.php:313
+msgid "Religion"
msgstr ""
-#: ../../mod/lostpass.php:85 ../../boot.php:1461
-msgid "Password Reset"
+#: ../../mod/profiles.php:317
+msgid "Political Views"
msgstr ""
-#: ../../mod/lostpass.php:86
-msgid "Your password has been reset as requested."
+#: ../../mod/profiles.php:321
+msgid "Gender"
msgstr ""
-#: ../../mod/lostpass.php:87
-msgid "Your new password is"
+#: ../../mod/profiles.php:325
+msgid "Sexual Preference"
msgstr ""
-#: ../../mod/lostpass.php:88
-msgid "Save or copy your new password - and then"
+#: ../../mod/profiles.php:329
+msgid "Homepage"
msgstr ""
-#: ../../mod/lostpass.php:89
-msgid "click here to login"
+#: ../../mod/profiles.php:333
+msgid "Interests"
msgstr ""
-#: ../../mod/lostpass.php:90
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
+#: ../../mod/profiles.php:337 ../../mod/admin.php:891
+msgid "Address"
msgstr ""
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has changed at %s"
+#: ../../mod/profiles.php:427
+msgid "Profile updated."
msgstr ""
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
+#: ../../mod/profiles.php:482
+msgid "Hide your contact/friend list from viewers of this profile?"
msgstr ""
-#: ../../mod/lostpass.php:123
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
+#: ../../mod/profiles.php:505
+msgid "Edit Profile Details"
msgstr ""
-#: ../../mod/lostpass.php:124
-msgid "Email Address"
+#: ../../mod/profiles.php:507
+msgid "View this profile"
msgstr ""
-#: ../../mod/lostpass.php:125
-msgid "Reset"
+#: ../../mod/profiles.php:508
+msgid "Change Profile Photo"
msgstr ""
-#: ../../mod/magic.php:70
-msgid "Hub not found."
+#: ../../mod/profiles.php:509
+msgid "Create a new profile using these settings"
msgstr ""
-#: ../../mod/vote.php:97
-msgid "Total votes"
+#: ../../mod/profiles.php:510
+msgid "Clone this profile"
msgstr ""
-#: ../../mod/vote.php:98
-msgid "Average Rating"
+#: ../../mod/profiles.php:511
+msgid "Delete this profile"
msgstr ""
-#: ../../mod/mail.php:33
-msgid "Unable to lookup recipient."
+#: ../../mod/profiles.php:512
+msgid "Profile Name:"
msgstr ""
-#: ../../mod/mail.php:41
-msgid "Unable to communicate with requested channel."
+#: ../../mod/profiles.php:513
+msgid "Your Full Name:"
msgstr ""
-#: ../../mod/mail.php:48
-msgid "Cannot verify requested channel."
+#: ../../mod/profiles.php:514
+msgid "Title/Description:"
msgstr ""
-#: ../../mod/mail.php:74
-msgid "Selected channel has private message restrictions. Send failed."
+#: ../../mod/profiles.php:515
+msgid "Your Gender:"
msgstr ""
-#: ../../mod/mail.php:121 ../../mod/message.php:31
-msgid "Messages"
+#: ../../mod/profiles.php:516
+#, php-format
+msgid "Birthday (%s):"
msgstr ""
-#: ../../mod/mail.php:132
-msgid "Message deleted."
+#: ../../mod/profiles.php:517
+msgid "Street Address:"
msgstr ""
-#: ../../mod/mail.php:149
-msgid "Message recalled."
+#: ../../mod/profiles.php:518
+msgid "Locality/City:"
msgstr ""
-#: ../../mod/mail.php:206
-msgid "Send Private Message"
+#: ../../mod/profiles.php:519
+msgid "Postal/Zip Code:"
msgstr ""
-#: ../../mod/mail.php:207 ../../mod/mail.php:323
-msgid "To:"
+#: ../../mod/profiles.php:520
+msgid "Country:"
msgstr ""
-#: ../../mod/mail.php:212 ../../mod/mail.php:325
-msgid "Subject:"
+#: ../../mod/profiles.php:521
+msgid "Region/State:"
msgstr ""
-#: ../../mod/mail.php:249
-msgid "Message not found."
+#: ../../mod/profiles.php:522
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr ""
-#: ../../mod/mail.php:292 ../../mod/message.php:72
-msgid "Delete message"
+#: ../../mod/profiles.php:523
+msgid "Who: (if applicable)"
msgstr ""
-#: ../../mod/mail.php:293
-msgid "Recall message"
+#: ../../mod/profiles.php:524
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr ""
-#: ../../mod/mail.php:295
-msgid "Message has been recalled."
+#: ../../mod/profiles.php:525
+msgid "Since [date]:"
msgstr ""
-#: ../../mod/mail.php:312
-msgid "Private Conversation"
+#: ../../mod/profiles.php:527
+msgid "Homepage URL:"
msgstr ""
-#: ../../mod/mail.php:316
-msgid "Delete conversation"
+#: ../../mod/profiles.php:530
+msgid "Religious Views:"
msgstr ""
-#: ../../mod/mail.php:318
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
+#: ../../mod/profiles.php:531
+msgid "Keywords:"
msgstr ""
-#: ../../mod/mail.php:322
-msgid "Send Reply"
+#: ../../mod/profiles.php:534
+msgid "Example: fishing photography software"
msgstr ""
-#: ../../mod/manage.php:64
-#, php-format
-msgid "You have created %1$.0f of %2$.0f allowed channels."
+#: ../../mod/profiles.php:535
+msgid "Used in directory listings"
msgstr ""
-#: ../../mod/manage.php:72
-msgid "Create a new channel"
+#: ../../mod/profiles.php:536
+msgid "Tell us about yourself..."
msgstr ""
-#: ../../mod/manage.php:77
-msgid "Channel Manager"
+#: ../../mod/profiles.php:537
+msgid "Hobbies/Interests"
msgstr ""
-#: ../../mod/manage.php:78
-msgid "Current Channel"
+#: ../../mod/profiles.php:538
+msgid "Contact information and Social Networks"
msgstr ""
-#: ../../mod/manage.php:80
-msgid "Attach to one of your channels by selecting it."
+#: ../../mod/profiles.php:539
+msgid "My other channels"
msgstr ""
-#: ../../mod/manage.php:81
-msgid "Default Channel"
+#: ../../mod/profiles.php:540
+msgid "Musical interests"
msgstr ""
-#: ../../mod/manage.php:82
-msgid "Make Default"
+#: ../../mod/profiles.php:541
+msgid "Books, literature"
msgstr ""
-#: ../../mod/wall_upload.php:34
-msgid "Wall Photos"
+#: ../../mod/profiles.php:542
+msgid "Television"
msgstr ""
-#: ../../mod/match.php:16
-msgid "Profile Match"
+#: ../../mod/profiles.php:543
+msgid "Film/dance/culture/entertainment"
msgstr ""
-#: ../../mod/match.php:24
-msgid "No keywords to match. Please add keywords to your default profile."
+#: ../../mod/profiles.php:544
+msgid "Love/romance"
msgstr ""
-#: ../../mod/match.php:61
-msgid "is interested in:"
+#: ../../mod/profiles.php:545
+msgid "Work/employment"
msgstr ""
-#: ../../mod/match.php:69
-msgid "No matches"
+#: ../../mod/profiles.php:546
+msgid "School/education"
+msgstr ""
+
+#: ../../mod/profiles.php:551
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr ""
+
+#: ../../mod/profiles.php:600
+msgid "Edit/Manage Profiles"
+msgstr ""
+
+#: ../../mod/profiles.php:601
+msgid "Add profile things"
+msgstr ""
+
+#: ../../mod/profiles.php:602
+msgid "Include desirable objects in your profile"
msgstr ""
#: ../../mod/menu.php:21
@@ -7130,373 +6416,1018 @@ msgstr ""
msgid "Add or remove entries to this menu"
msgstr ""
-#: ../../mod/message.php:41
-msgid "Conversation removed."
+#: ../../mod/openid.php:26
+msgid "OpenID protocol error. No ID returned."
msgstr ""
-#: ../../mod/message.php:56
-msgid "No messages."
+#: ../../mod/cloud.php:112
+msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
msgstr ""
-#: ../../mod/message.php:74
-msgid "D, d M Y - g:i A"
+#: ../../mod/mail.php:33
+msgid "Unable to lookup recipient."
msgstr ""
-#: ../../mod/new_channel.php:107
-msgid "Add a Channel"
+#: ../../mod/mail.php:41
+msgid "Unable to communicate with requested channel."
msgstr ""
-#: ../../mod/new_channel.php:108
+#: ../../mod/mail.php:48
+msgid "Cannot verify requested channel."
+msgstr ""
+
+#: ../../mod/mail.php:74
+msgid "Selected channel has private message restrictions. Send failed."
+msgstr ""
+
+#: ../../mod/mail.php:132
+msgid "Message deleted."
+msgstr ""
+
+#: ../../mod/mail.php:149
+msgid "Message recalled."
+msgstr ""
+
+#: ../../mod/mail.php:206
+msgid "Send Private Message"
+msgstr ""
+
+#: ../../mod/mail.php:207 ../../mod/mail.php:323
+msgid "To:"
+msgstr ""
+
+#: ../../mod/mail.php:212 ../../mod/mail.php:325
+msgid "Subject:"
+msgstr ""
+
+#: ../../mod/mail.php:216 ../../mod/mail.php:328 ../../mod/invite.php:143
+msgid "Your message:"
+msgstr ""
+
+#: ../../mod/mail.php:249
+msgid "Message not found."
+msgstr ""
+
+#: ../../mod/mail.php:293
+msgid "Recall message"
+msgstr ""
+
+#: ../../mod/mail.php:295
+msgid "Message has been recalled."
+msgstr ""
+
+#: ../../mod/mail.php:312
+msgid "Private Conversation"
+msgstr ""
+
+#: ../../mod/mail.php:316
+msgid "Delete conversation"
+msgstr ""
+
+#: ../../mod/mail.php:318
msgid ""
-"A channel is your own collection of related web pages. A channel can be used "
-"to hold social network profiles, blogs, conversation groups and forums, "
-"celebrity pages, and much more. You may create as many channels as your "
-"service provider allows."
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
msgstr ""
-#: ../../mod/new_channel.php:111
+#: ../../mod/mail.php:322
+msgid "Send Reply"
+msgstr ""
+
+#: ../../mod/appman.php:27
+msgid "App installed."
+msgstr ""
+
+#: ../../mod/appman.php:35
+msgid "Malformed app."
+msgstr ""
+
+#: ../../mod/appman.php:72
+msgid "Embed code"
+msgstr ""
+
+#: ../../mod/appman.php:78
+msgid "Create App"
+msgstr ""
+
+#: ../../mod/appman.php:83
+msgid "Name of app"
+msgstr ""
+
+#: ../../mod/appman.php:84
+msgid "Location (URL) of app"
+msgstr ""
+
+#: ../../mod/appman.php:85 ../../mod/rbmark.php:95
+msgid "Description"
+msgstr ""
+
+#: ../../mod/appman.php:86
+msgid "Photo icon URL"
+msgstr ""
+
+#: ../../mod/appman.php:86
+msgid "80 x 80 pixels - optional"
+msgstr ""
+
+#: ../../mod/appman.php:87
+msgid "Version ID"
+msgstr ""
+
+#: ../../mod/appman.php:88
+msgid "Price of app"
+msgstr ""
+
+#: ../../mod/appman.php:89
+msgid "Location (URL) to purchase app"
+msgstr ""
+
+#: ../../mod/poke.php:159
+msgid "Poke/Prod"
+msgstr ""
+
+#: ../../mod/poke.php:160
+msgid "poke, prod or do other things to somebody"
+msgstr ""
+
+#: ../../mod/poke.php:161
+msgid "Recipient"
+msgstr ""
+
+#: ../../mod/poke.php:162
+msgid "Choose what you wish to do to recipient"
+msgstr ""
+
+#: ../../mod/poke.php:165
+msgid "Make this post private"
+msgstr ""
+
+#: ../../mod/viewconnections.php:58
+msgid "No connections."
+msgstr ""
+
+#: ../../mod/viewconnections.php:70
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr ""
+
+#: ../../mod/viewconnections.php:85
+msgid "View Connnections"
+msgstr ""
+
+#: ../../mod/admin.php:52
+msgid "Theme settings updated."
+msgstr ""
+
+#: ../../mod/admin.php:92 ../../mod/admin.php:440
+msgid "Site"
+msgstr ""
+
+#: ../../mod/admin.php:93
+msgid "Accounts"
+msgstr ""
+
+#: ../../mod/admin.php:94 ../../mod/admin.php:883
+msgid "Channels"
+msgstr ""
+
+#: ../../mod/admin.php:95 ../../mod/admin.php:974 ../../mod/admin.php:1016
+msgid "Plugins"
+msgstr ""
+
+#: ../../mod/admin.php:96 ../../mod/admin.php:1179 ../../mod/admin.php:1215
+msgid "Themes"
+msgstr ""
+
+#: ../../mod/admin.php:97 ../../mod/admin.php:540
+msgid "Server"
+msgstr ""
+
+#: ../../mod/admin.php:98
+msgid "DB updates"
+msgstr ""
+
+#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1302
+msgid "Logs"
+msgstr ""
+
+#: ../../mod/admin.php:118
+msgid "Plugin Features"
+msgstr ""
+
+#: ../../mod/admin.php:120
+msgid "User registrations waiting for confirmation"
+msgstr ""
+
+#: ../../mod/admin.php:197
+msgid "Message queues"
+msgstr ""
+
+#: ../../mod/admin.php:202 ../../mod/admin.php:439 ../../mod/admin.php:539
+#: ../../mod/admin.php:748 ../../mod/admin.php:882 ../../mod/admin.php:973
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1178 ../../mod/admin.php:1214
+#: ../../mod/admin.php:1301
+msgid "Administration"
+msgstr ""
+
+#: ../../mod/admin.php:203
+msgid "Summary"
+msgstr ""
+
+#: ../../mod/admin.php:205
+msgid "Registered users"
+msgstr ""
+
+#: ../../mod/admin.php:207 ../../mod/admin.php:543
+msgid "Pending registrations"
+msgstr ""
+
+#: ../../mod/admin.php:208
+msgid "Version"
+msgstr ""
+
+#: ../../mod/admin.php:210 ../../mod/admin.php:544
+msgid "Active plugins"
+msgstr ""
+
+#: ../../mod/admin.php:360
+msgid "Site settings updated."
+msgstr ""
+
+#: ../../mod/admin.php:391
+msgid "No special theme for accessibility"
+msgstr ""
+
+#: ../../mod/admin.php:420
+msgid "Yes - with approval"
+msgstr ""
+
+#: ../../mod/admin.php:426
+msgid "My site is not a public server"
+msgstr ""
+
+#: ../../mod/admin.php:427
+msgid "My site has paid access only"
+msgstr ""
+
+#: ../../mod/admin.php:428
+msgid "My site has free access only"
+msgstr ""
+
+#: ../../mod/admin.php:429
+msgid "My site offers free accounts with optional paid upgrades"
+msgstr ""
+
+#: ../../mod/admin.php:442 ../../mod/register.php:189
+msgid "Registration"
+msgstr ""
+
+#: ../../mod/admin.php:443
+msgid "File upload"
+msgstr ""
+
+#: ../../mod/admin.php:444
+msgid "Policies"
+msgstr ""
+
+#: ../../mod/admin.php:449
+msgid "Site name"
+msgstr ""
+
+#: ../../mod/admin.php:450
+msgid "Banner/Logo"
+msgstr ""
+
+#: ../../mod/admin.php:451
+msgid "Administrator Information"
+msgstr ""
+
+#: ../../mod/admin.php:451
msgid ""
-"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation "
-"Group\" "
+"Contact information for site administrators. Displayed on siteinfo page. "
+"BBCode can be used here"
msgstr ""
-#: ../../mod/new_channel.php:112
-msgid "Choose a short nickname"
+#: ../../mod/admin.php:452
+msgid "System language"
msgstr ""
-#: ../../mod/new_channel.php:113
+#: ../../mod/admin.php:453
+msgid "System theme"
+msgstr ""
+
+#: ../../mod/admin.php:453
msgid ""
-"Your nickname will be used to create an easily remembered channel address "
-"(like an email address) which you can share with others."
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
msgstr ""
-#: ../../mod/new_channel.php:114
+#: ../../mod/admin.php:454
+msgid "Mobile system theme"
+msgstr ""
+
+#: ../../mod/admin.php:454
+msgid "Theme for mobile devices"
+msgstr ""
+
+#: ../../mod/admin.php:455
+msgid "Accessibility system theme"
+msgstr ""
+
+#: ../../mod/admin.php:455
+msgid "Accessibility theme"
+msgstr ""
+
+#: ../../mod/admin.php:456
+msgid "Channel to use for this website's static pages"
+msgstr ""
+
+#: ../../mod/admin.php:456
+msgid "Site Channel"
+msgstr ""
+
+#: ../../mod/admin.php:458
+msgid "Maximum image size"
+msgstr ""
+
+#: ../../mod/admin.php:458
msgid ""
-"Or <a href=\"import\">import an existing channel</a> from another location"
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
msgstr ""
-#: ../../mod/photos.php:77
-msgid "Page owner information could not be retrieved."
+#: ../../mod/admin.php:459
+msgid "Does this site allow new member registration?"
msgstr ""
-#: ../../mod/photos.php:97
-msgid "Album not found."
+#: ../../mod/admin.php:460
+msgid "Which best describes the types of account offered by this hub?"
msgstr ""
-#: ../../mod/photos.php:119 ../../mod/photos.php:671
-msgid "Delete Album"
+#: ../../mod/admin.php:461
+msgid "Register text"
msgstr ""
-#: ../../mod/photos.php:159 ../../mod/photos.php:954
-msgid "Delete Photo"
+#: ../../mod/admin.php:461
+msgid "Will be displayed prominently on the registration page."
msgstr ""
-#: ../../mod/photos.php:453
-msgid "No photos selected"
+#: ../../mod/admin.php:462
+msgid "Accounts abandoned after x days"
msgstr ""
-#: ../../mod/photos.php:500
-msgid "Access to this item is restricted."
+#: ../../mod/admin.php:462
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
msgstr ""
-#: ../../mod/photos.php:576
+#: ../../mod/admin.php:463
+msgid "Allowed friend domains"
+msgstr ""
+
+#: ../../mod/admin.php:463
+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:464
+msgid "Allowed email domains"
+msgstr ""
+
+#: ../../mod/admin.php:464
+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:465
+msgid "Block public"
+msgstr ""
+
+#: ../../mod/admin.php:465
+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:466
+msgid "Force publish"
+msgstr ""
+
+#: ../../mod/admin.php:466
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr ""
+
+#: ../../mod/admin.php:467
+msgid "Disable discovery tab"
+msgstr ""
+
+#: ../../mod/admin.php:467
+msgid ""
+"Remove the tab in the network view with public content pulled from sources "
+"chosen for this site."
+msgstr ""
+
+#: ../../mod/admin.php:468
+msgid "No login on Homepage"
+msgstr ""
+
+#: ../../mod/admin.php:468
+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:470
+msgid "Proxy user"
+msgstr ""
+
+#: ../../mod/admin.php:471
+msgid "Proxy URL"
+msgstr ""
+
+#: ../../mod/admin.php:472
+msgid "Network timeout"
+msgstr ""
+
+#: ../../mod/admin.php:472
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr ""
+
+#: ../../mod/admin.php:473
+msgid "Delivery interval"
+msgstr ""
+
+#: ../../mod/admin.php:473
+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:474
+msgid "Poll interval"
+msgstr ""
+
+#: ../../mod/admin.php:474
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr ""
+
+#: ../../mod/admin.php:475
+msgid "Maximum Load Average"
+msgstr ""
+
+#: ../../mod/admin.php:475
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr ""
+
+#: ../../mod/admin.php:531
+msgid "No server found"
+msgstr ""
+
+#: ../../mod/admin.php:538 ../../mod/admin.php:762
+msgid "ID"
+msgstr ""
+
+#: ../../mod/admin.php:538
+msgid "for channel"
+msgstr ""
+
+#: ../../mod/admin.php:538
+msgid "on server"
+msgstr ""
+
+#: ../../mod/admin.php:538
+msgid "Status"
+msgstr ""
+
+#: ../../mod/admin.php:559
+msgid "Update has been marked successful"
+msgstr ""
+
+#: ../../mod/admin.php:569
#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgid "Executing %s failed. Check system logs."
msgstr ""
-#: ../../mod/photos.php:579
+#: ../../mod/admin.php:572
#, php-format
-msgid "You have used %1$.2f Mbytes of photo storage."
+msgid "Update %s was successfully applied."
msgstr ""
-#: ../../mod/photos.php:598
-msgid "Upload Photos"
+#: ../../mod/admin.php:576
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
-#: ../../mod/photos.php:602 ../../mod/photos.php:666
-msgid "New album name: "
+#: ../../mod/admin.php:579
+#, php-format
+msgid "Update function %s could not be found."
msgstr ""
-#: ../../mod/photos.php:603
-msgid "or existing album name: "
+#: ../../mod/admin.php:594
+msgid "No failed updates."
msgstr ""
-#: ../../mod/photos.php:604
-msgid "Do not show a status post for this upload"
+#: ../../mod/admin.php:598
+msgid "Failed Updates"
msgstr ""
-#: ../../mod/photos.php:655 ../../mod/photos.php:677 ../../mod/photos.php:1126
-#: ../../mod/photos.php:1141
-msgid "Contact Photos"
+#: ../../mod/admin.php:600
+msgid "Mark success (if update was manually applied)"
msgstr ""
-#: ../../mod/photos.php:681
-msgid "Edit Album"
+#: ../../mod/admin.php:601
+msgid "Attempt to execute this update step automatically"
msgstr ""
-#: ../../mod/photos.php:687
-msgid "Show Newest First"
+#: ../../mod/admin.php:627
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/admin.php:634
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/admin.php:665
+msgid "Account not found"
msgstr ""
-#: ../../mod/photos.php:689
-msgid "Show Oldest First"
+#: ../../mod/admin.php:676
+#, php-format
+msgid "User '%s' deleted"
msgstr ""
-#: ../../mod/photos.php:732 ../../mod/photos.php:1173
-msgid "View Photo"
+#: ../../mod/admin.php:685
+#, php-format
+msgid "User '%s' unblocked"
msgstr ""
-#: ../../mod/photos.php:778
-msgid "Permission denied. Access to this item may be restricted."
+#: ../../mod/admin.php:685
+#, php-format
+msgid "User '%s' blocked"
msgstr ""
-#: ../../mod/photos.php:780
-msgid "Photo not available"
+#: ../../mod/admin.php:749 ../../mod/admin.php:761
+msgid "Users"
msgstr ""
-#: ../../mod/photos.php:840
-msgid "Use as profile photo"
+#: ../../mod/admin.php:751 ../../mod/admin.php:885
+msgid "select all"
msgstr ""
-#: ../../mod/photos.php:864
-msgid "View Full Size"
+#: ../../mod/admin.php:752
+msgid "User registrations waiting for confirm"
msgstr ""
-#: ../../mod/photos.php:938
-msgid "Edit photo"
+#: ../../mod/admin.php:753
+msgid "Request date"
msgstr ""
-#: ../../mod/photos.php:940
-msgid "Rotate CW (right)"
+#: ../../mod/admin.php:754
+msgid "No registrations."
msgstr ""
-#: ../../mod/photos.php:941
-msgid "Rotate CCW (left)"
+#: ../../mod/admin.php:755
+msgid "Approve"
msgstr ""
-#: ../../mod/photos.php:943
-msgid "New album name"
+#: ../../mod/admin.php:756
+msgid "Deny"
msgstr ""
-#: ../../mod/photos.php:946
-msgid "Caption"
+#: ../../mod/admin.php:762
+msgid "Register date"
msgstr ""
-#: ../../mod/photos.php:948
-msgid "Add a Tag"
+#: ../../mod/admin.php:762
+msgid "Last login"
msgstr ""
-#: ../../mod/photos.php:951
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: ../../mod/admin.php:762
+msgid "Expires"
msgstr ""
-#: ../../mod/photos.php:1104
-msgid "In This Photo:"
+#: ../../mod/admin.php:762
+msgid "Service Class"
msgstr ""
-#: ../../mod/photos.php:1179
-msgid "View Album"
+#: ../../mod/admin.php:764
+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/photos.php:1188
-msgid "Recent Photos"
+#: ../../mod/admin.php:765
+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/notifications.php:26
-msgid "Invalid request identifier."
+#: ../../mod/admin.php:797
+#, php-format
+msgid "%s channel censored/uncensored"
+msgid_plural "%s channelss censored/uncensored"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/admin.php:804
+#, php-format
+msgid "%s channel deleted"
+msgid_plural "%s channels deleted"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/admin.php:823
+msgid "Channel not found"
msgstr ""
-#: ../../mod/notifications.php:35
-msgid "Discard"
+#: ../../mod/admin.php:834
+#, php-format
+msgid "Channel '%s' deleted"
msgstr ""
-#: ../../mod/notifications.php:94 ../../mod/notify.php:54
-msgid "No more system notifications."
+#: ../../mod/admin.php:844
+#, php-format
+msgid "Channel '%s' uncensored"
msgstr ""
-#: ../../mod/notifications.php:98 ../../mod/notify.php:58
-msgid "System Notifications"
+#: ../../mod/admin.php:844
+#, php-format
+msgid "Channel '%s' censored"
msgstr ""
-#: ../../mod/oexchange.php:23
-msgid "Unable to find your hub."
+#: ../../mod/admin.php:887
+msgid "Censor"
msgstr ""
-#: ../../mod/oexchange.php:37
-msgid "Post successful."
+#: ../../mod/admin.php:888
+msgid "Uncensor"
msgstr ""
-#: ../../mod/zfinger.php:23
-msgid "invalid target signature"
+#: ../../mod/admin.php:891
+msgid "UID"
msgstr ""
-#: ../../mod/openid.php:26
-msgid "OpenID protocol error. No ID returned."
+#: ../../mod/admin.php:893
+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/appman.php:13
-msgid "Malformed app."
+#: ../../mod/admin.php:894
+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 ""
-#: ../../view/theme/apw/php/config.php:202
-#: ../../view/theme/apw/php/config.php:236
-msgid "Schema Default"
+#: ../../mod/admin.php:933
+#, php-format
+msgid "Plugin %s disabled."
msgstr ""
-#: ../../view/theme/apw/php/config.php:203
-msgid "Sans-Serif"
+#: ../../mod/admin.php:937
+#, php-format
+msgid "Plugin %s enabled."
msgstr ""
-#: ../../view/theme/apw/php/config.php:204
-msgid "Monospace"
+#: ../../mod/admin.php:947 ../../mod/admin.php:1149
+msgid "Disable"
msgstr ""
-#: ../../view/theme/apw/php/config.php:259
-#: ../../view/theme/blogga/php/config.php:69
-#: ../../view/theme/blogga/view/theme/blog/config.php:69
-#: ../../view/theme/redbasic/php/config.php:102
-msgid "Theme settings"
+#: ../../mod/admin.php:949 ../../mod/admin.php:1151
+msgid "Enable"
msgstr ""
-#: ../../view/theme/apw/php/config.php:260
-#: ../../view/theme/redbasic/php/config.php:103
-msgid "Set scheme"
+#: ../../mod/admin.php:975 ../../mod/admin.php:1180
+msgid "Toggle"
msgstr ""
-#: ../../view/theme/apw/php/config.php:261
-#: ../../view/theme/redbasic/php/config.php:124
-msgid "Set font-size for posts and comments"
+#: ../../mod/admin.php:983 ../../mod/admin.php:1190
+msgid "Author: "
msgstr ""
-#: ../../view/theme/apw/php/config.php:262
-msgid "Set font face"
+#: ../../mod/admin.php:984 ../../mod/admin.php:1191
+msgid "Maintainer: "
msgstr ""
-#: ../../view/theme/apw/php/config.php:263
-msgid "Set iconset"
+#: ../../mod/admin.php:1113
+msgid "No themes found."
msgstr ""
-#: ../../view/theme/apw/php/config.php:264
-msgid "Set big shadow size, default 15px 15px 15px"
+#: ../../mod/admin.php:1172
+msgid "Screenshot"
msgstr ""
-#: ../../view/theme/apw/php/config.php:265
-msgid "Set small shadow size, default 5px 5px 5px"
+#: ../../mod/admin.php:1220
+msgid "[Experimental]"
msgstr ""
-#: ../../view/theme/apw/php/config.php:266
-msgid "Set shadow colour, default #000"
+#: ../../mod/admin.php:1221
+msgid "[Unsupported]"
msgstr ""
-#: ../../view/theme/apw/php/config.php:267
-msgid "Set radius size, default 5px"
+#: ../../mod/admin.php:1248
+msgid "Log settings updated."
msgstr ""
-#: ../../view/theme/apw/php/config.php:268
-msgid "Set line-height for posts and comments"
+#: ../../mod/admin.php:1304
+msgid "Clear"
msgstr ""
-#: ../../view/theme/apw/php/config.php:269
-msgid "Set background image"
+#: ../../mod/admin.php:1310
+msgid "Debugging"
msgstr ""
-#: ../../view/theme/apw/php/config.php:270
-msgid "Set background attachment"
+#: ../../mod/admin.php:1311
+msgid "Log file"
msgstr ""
-#: ../../view/theme/apw/php/config.php:271
-msgid "Set background colour"
+#: ../../mod/admin.php:1311
+msgid ""
+"Must be writable by web server. Relative to your Red top-level directory."
msgstr ""
-#: ../../view/theme/apw/php/config.php:272
-msgid "Set section background image"
+#: ../../mod/admin.php:1312
+msgid "Log level"
msgstr ""
-#: ../../view/theme/apw/php/config.php:273
-msgid "Set section background colour"
+#: ../../mod/register.php:43
+msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
msgstr ""
-#: ../../view/theme/apw/php/config.php:274
-msgid "Set colour of items - use hex"
+#: ../../mod/register.php:49
+msgid ""
+"Please indicate acceptance of the Terms of Service. Registration failed."
msgstr ""
-#: ../../view/theme/apw/php/config.php:275
-msgid "Set colour of links - use hex"
+#: ../../mod/register.php:77
+msgid "Passwords do not match."
msgstr ""
-#: ../../view/theme/apw/php/config.php:276
-msgid "Set max-width for items. Default 400px"
+#: ../../mod/register.php:105
+msgid ""
+"Registration successful. Please check your email for validation instructions."
msgstr ""
-#: ../../view/theme/apw/php/config.php:277
-msgid "Set min-width for items. Default 240px"
+#: ../../mod/register.php:111
+msgid "Your registration is pending approval by the site owner."
msgstr ""
-#: ../../view/theme/apw/php/config.php:278
-msgid "Set the generic content wrapper width. Default 48%"
+#: ../../mod/register.php:114
+msgid "Your registration can not be processed."
msgstr ""
-#: ../../view/theme/apw/php/config.php:279
-msgid "Set colour of fonts - use hex"
+#: ../../mod/register.php:147
+msgid "Registration on this site/hub is by approval only."
msgstr ""
-#: ../../view/theme/apw/php/config.php:280
-msgid "Set background-size element"
+#: ../../mod/register.php:148
+msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>"
msgstr ""
-#: ../../view/theme/apw/php/config.php:281
-msgid "Item opacity"
+#: ../../mod/register.php:156
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
msgstr ""
-#: ../../view/theme/apw/php/config.php:282
-msgid "Display post previews only"
+#: ../../mod/register.php:167
+msgid "Terms of Service"
msgstr ""
-#: ../../view/theme/apw/php/config.php:283
-msgid "Display side bar on channel page"
+#: ../../mod/register.php:173
+#, php-format
+msgid "I accept the %s for this website"
msgstr ""
-#: ../../view/theme/apw/php/config.php:284
-msgid "Colour of the navigation bar"
+#: ../../mod/register.php:175
+#, php-format
+msgid "I am over 13 years of age and accept the %s for this website"
msgstr ""
-#: ../../view/theme/apw/php/config.php:285
-msgid "Item float"
+#: ../../mod/register.php:194
+msgid "Membership on this site is by invitation only."
msgstr ""
-#: ../../view/theme/apw/php/config.php:286
-msgid "Left offset of the section element"
+#: ../../mod/register.php:195
+msgid "Please enter your invitation code"
msgstr ""
-#: ../../view/theme/apw/php/config.php:287
-msgid "Right offset of the section element"
+#: ../../mod/register.php:198
+msgid "Your email address"
msgstr ""
-#: ../../view/theme/apw/php/config.php:288
-msgid "Section width"
+#: ../../mod/register.php:199
+msgid "Choose a password"
msgstr ""
-#: ../../view/theme/apw/php/config.php:289
-msgid "Left offset of the aside"
+#: ../../mod/register.php:200
+msgid "Please re-enter your password"
msgstr ""
-#: ../../view/theme/apw/php/config.php:290
-msgid "Right offset of the aside element"
+#: ../../mod/filer.php:49
+msgid "- select -"
msgstr ""
-#: ../../view/theme/blogga/php/config.php:47
-#: ../../view/theme/blogga/view/theme/blog/config.php:47
-msgid "None"
+#: ../../mod/manage.php:64
+#, php-format
+msgid "You have created %1$.0f of %2$.0f allowed channels."
+msgstr ""
+
+#: ../../mod/manage.php:72
+msgid "Create a new channel"
+msgstr ""
+
+#: ../../mod/manage.php:77
+msgid "Channel Manager"
+msgstr ""
+
+#: ../../mod/manage.php:78
+msgid "Current Channel"
+msgstr ""
+
+#: ../../mod/manage.php:80
+msgid "Attach to one of your channels by selecting it."
msgstr ""
-#: ../../view/theme/blogga/php/config.php:70
-#: ../../view/theme/blogga/view/theme/blog/config.php:70
-msgid "Header image"
+#: ../../mod/manage.php:81
+msgid "Default Channel"
msgstr ""
-#: ../../view/theme/blogga/php/config.php:71
-#: ../../view/theme/blogga/view/theme/blog/config.php:71
-msgid "Header image only on profile pages"
+#: ../../mod/manage.php:82
+msgid "Make Default"
+msgstr ""
+
+#: ../../mod/invite.php:25
+msgid "Total invitation limit exceeded."
+msgstr ""
+
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr ""
+
+#: ../../mod/invite.php:76
+msgid "Please join us on Red"
+msgstr ""
+
+#: ../../mod/invite.php:87
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr ""
+
+#: ../../mod/invite.php:92
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr ""
+
+#: ../../mod/invite.php:96
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/invite.php:115
+msgid "You have no more invitations available"
+msgstr ""
+
+#: ../../mod/invite.php:141
+msgid "Send invitations"
+msgstr ""
+
+#: ../../mod/invite.php:142
+msgid "Enter email addresses, one per line:"
+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."
+msgstr ""
+
+#: ../../mod/invite.php:146
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr ""
+
+#: ../../mod/invite.php:147
+msgid "Please visit my channel at"
+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:"
+msgstr ""
+
+#: ../../mod/invite.php:153
+msgid "Click the [Register] link on the following page to join."
+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"
+msgstr ""
+
+#: ../../mod/wall_upload.php:34
+msgid "Wall Photos"
+msgstr ""
+
+#: ../../mod/common.php:10
+msgid "No channel."
+msgstr ""
+
+#: ../../mod/common.php:39
+msgid "Common connections"
+msgstr ""
+
+#: ../../mod/common.php:44
+msgid "No connections in common."
+msgstr ""
+
+#: ../../mod/regmod.php:12
+msgid "Please login."
+msgstr ""
+
+#: ../../mod/rbmark.php:88
+msgid "Select a bookmark folder"
+msgstr ""
+
+#: ../../mod/rbmark.php:93
+msgid "Save Bookmark"
+msgstr ""
+
+#: ../../mod/rbmark.php:94
+msgid "URL of bookmark"
+msgstr ""
+
+#: ../../mod/rbmark.php:99
+msgid "Or enter new bookmark folder name"
+msgstr ""
+
+#: ../../boot.php:1259
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr ""
+
+#: ../../boot.php:1262
+#, php-format
+msgid "Update Error at %s"
+msgstr ""
+
+#: ../../boot.php:1426
+msgid ""
+"Create an account to access services and applications within the Red Matrix"
+msgstr ""
+
+#: ../../boot.php:1454
+msgid "Password"
+msgstr ""
+
+#: ../../boot.php:1455
+msgid "Remember me"
+msgstr ""
+
+#: ../../boot.php:1460
+msgid "Forgot your password?"
+msgstr ""
+
+#: ../../boot.php:1525
+msgid "permission denied"
+msgstr ""
+
+#: ../../boot.php:1526
+msgid "Got Zot?"
+msgstr ""
+
+#: ../../boot.php:1956
+msgid "toggle mobile"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:102
+msgid "Theme settings"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:103
+msgid "Set scheme"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:104
@@ -7579,6 +7510,10 @@ msgstr ""
msgid "Set font-size for the entire application"
msgstr ""
+#: ../../view/theme/redbasic/php/config.php:124
+msgid "Set font-size for posts and comments"
+msgstr ""
+
#: ../../view/theme/redbasic/php/config.php:125
msgid "Set font-colour for posts and comments"
msgstr ""
@@ -7618,42 +7553,3 @@ msgstr ""
#: ../../view/theme/redbasic/php/config.php:133
msgid "Are you a clean desk or a messy desk person?"
msgstr ""
-
-#: ../../boot.php:1259
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr ""
-
-#: ../../boot.php:1262
-#, php-format
-msgid "Update Error at %s"
-msgstr ""
-
-#: ../../boot.php:1426
-msgid ""
-"Create an account to access services and applications within the Red Matrix"
-msgstr ""
-
-#: ../../boot.php:1454
-msgid "Password"
-msgstr ""
-
-#: ../../boot.php:1455
-msgid "Remember me"
-msgstr ""
-
-#: ../../boot.php:1460
-msgid "Forgot your password?"
-msgstr ""
-
-#: ../../boot.php:1525
-msgid "permission denied"
-msgstr ""
-
-#: ../../boot.php:1526
-msgid "Got Zot?"
-msgstr ""
-
-#: ../../boot.php:1956
-msgid "toggle mobile"
-msgstr ""
diff --git a/util/run_xgettext.sh b/util/run_xgettext.sh
index 6fef46f67..3eca8a8b3 100755
--- a/util/run_xgettext.sh
+++ b/util/run_xgettext.sh
@@ -44,7 +44,7 @@ OPTS=
# fi
#fi
-KEYWORDS="-k -kt:1 -kt:1,2c,2t -ktt:1,2"
+KEYWORDS="-k -kt:1 -kt:1,2c,2t -ktt:1,2 -ktt:1,2,4c,4t"
echo "extract strings to $OUTFILE.."
diff --git a/util/strings.php b/util/strings.php
index 2614d7fc2..ef15500f1 100644
--- a/util/strings.php
+++ b/util/strings.php
@@ -1,256 +1,83 @@
<?php
;
-$a->strings["Visible to everybody"] = "";
-$a->strings["show"] = "";
-$a->strings["don't show"] = "";
-$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["Red Matrix Notification"] = "";
-$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 sent you a new private message at %2\$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 commented on [zrl=%2\$s]a %3\$s[/zrl]"] = "";
-$a->strings["%1\$s commented on [zrl=%2\$s]%3\$s's %4\$s[/zrl]"] = "";
-$a->strings["%1\$s commented on [zrl=%2\$s]your %3\$s[/zrl]"] = "";
-$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
-$a->strings["%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 posted to your profile wall at %2\$s"] = "";
-$a->strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "";
-$a->strings["[Red:Notify] %s tagged you"] = "";
-$a->strings["%1\$s tagged you at %2\$s"] = "";
-$a->strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "";
-$a->strings["[Red:Notify] %1\$s poked you"] = "";
-$a->strings["%1\$s poked you at %2\$s"] = "";
-$a->strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "";
-$a->strings["[Red:Notify] %s tagged your post"] = "";
-$a->strings["%1\$s tagged your post at %2\$s"] = "";
-$a->strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "";
-$a->strings["[Red:Notify] Introduction received"] = "";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received [zrl=%1\$s]an introduction[/zrl] from %2\$s."] = "";
-$a->strings["You may visit their profile at %s"] = "";
-$a->strings["Please visit %s to approve or reject the introduction."] = "";
-$a->strings["[Red:Notify] Friend suggestion received"] = "";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "";
-$a->strings["Name:"] = "";
-$a->strings["Photo:"] = "";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "";
-$a->strings["Connect"] = "";
-$a->strings["New window"] = "";
-$a->strings["Open the selected location in a different window or browser tab"] = "";
-$a->strings["Poke"] = "";
-$a->strings["View Status"] = "";
-$a->strings["View Profile"] = "";
-$a->strings["View Photos"] = "";
-$a->strings["Network Posts"] = "";
-$a->strings["Edit Contact"] = "";
-$a->strings["Send PM"] = "";
-$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["Add New Connection"] = "";
-$a->strings["Enter the channel address"] = "";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "";
-$a->strings["%d invitation available"] = array(
- 0 => "",
- 1 => "",
-);
-$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["Similar Interests"] = "";
-$a->strings["Random Profile"] = "";
-$a->strings["Invite Friends"] = "";
-$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["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["Cannot locate DNS info for database server '%s'"] = "";
+$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["l F d, Y \\@ g:i A"] = "";
$a->strings["Starts:"] = "";
$a->strings["Finishes:"] = "";
$a->strings["Location:"] = "";
-$a->strings["General Features"] = "";
-$a->strings["Content Expiration"] = "";
-$a->strings["Remove old posts/comments after a period of time"] = "";
-$a->strings["Multiple Profiles"] = "";
-$a->strings["Ability to create multiple profiles"] = "";
-$a->strings["Web Pages"] = "";
-$a->strings["Provide managed web pages on your channel"] = "";
-$a->strings["Enhanced Photo Albums"] = "";
-$a->strings["Enable photo album with enhanced features"] = "";
-$a->strings["Extended Identity Sharing"] = "";
-$a->strings[" "] = "";
-$a->strings["Expert Mode"] = "";
-$a->strings["Enable Expert Mode to provide advanced configuration options"] = "";
-$a->strings["Post Composition Features"] = "";
-$a->strings["Richtext Editor"] = "";
-$a->strings["Enable richtext editor"] = "";
-$a->strings["Post Preview"] = "";
-$a->strings["Allow previewing posts and comments before publishing them"] = "";
-$a->strings["Network and Stream Filtering"] = "";
-$a->strings["Search by Date"] = "";
-$a->strings["Ability to select posts by date ranges"] = "";
-$a->strings["Collections Filter"] = "";
-$a->strings["Enable widget to display Network posts only from selected collections"] = "";
+$a->strings["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["Save search terms for re-use"] = "";
-$a->strings["Network Personal Tab"] = "";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
-$a->strings["Network New Tab"] = "";
-$a->strings["Enable tab to display all new Network activity"] = "";
-$a->strings["Affinity Tool"] = "";
-$a->strings["Filter stream activity by depth of relationships"] = "";
-$a->strings["Post/Comment Tools"] = "";
-$a->strings["Multiple Deletion"] = "";
-$a->strings["Select and delete multiple posts/comments at once"] = "";
-$a->strings["Edit Sent Posts"] = "";
-$a->strings["Edit and correct posts and comments after sending"] = "";
-$a->strings["Tagging"] = "";
-$a->strings["Ability to tag existing posts"] = "";
-$a->strings["Post Categories"] = "";
-$a->strings["Add categories to your posts"] = "";
-$a->strings["Ability to file posts under folders"] = "";
-$a->strings["Dislike Posts"] = "";
-$a->strings["Ability to dislike posts/comments"] = "";
-$a->strings["Star Posts"] = "";
-$a->strings["Ability to mark special posts with a star indicator"] = "";
-$a->strings["Tag Cloud"] = "";
-$a->strings["Provide a personal tag cloud on your channel page"] = "";
-$a->strings["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["Delete this item?"] = "";
-$a->strings["Comment"] = "";
-$a->strings["show fewer"] = "";
-$a->strings["Password too short"] = "";
-$a->strings["Passwords do not match"] = "";
-$a->strings["everybody"] = "";
-$a->strings["timeago.prefixAgo"] = "";
-$a->strings["timeago.suffixAgo"] = "";
-$a->strings["ago"] = "";
-$a->strings["from now"] = "";
-$a->strings["less than a minute"] = "";
-$a->strings["about a minute"] = "";
-$a->strings["%d minutes"] = "";
-$a->strings["about an hour"] = "";
-$a->strings["about %d hours"] = "";
-$a->strings["a day"] = "";
-$a->strings["%d days"] = "";
-$a->strings["about a month"] = "";
-$a->strings["%d months"] = "";
-$a->strings["about a year"] = "";
-$a->strings["%d years"] = "";
-$a->strings["timeago.numbers"] = "";
-$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["view full size"] = "";
-$a->strings["Profile Photos"] = "";
-$a->strings["Profile"] = "";
-$a->strings["Full Name:"] = "";
-$a->strings["Gender:"] = "";
-$a->strings["j F, Y"] = "";
-$a->strings["j F"] = "";
-$a->strings["Birthday:"] = "";
-$a->strings["Age:"] = "";
-$a->strings["Status:"] = "";
-$a->strings["for %1\$d %2\$s"] = "";
-$a->strings["Sexual Preference:"] = "";
-$a->strings["Homepage:"] = "";
-$a->strings["Hometown:"] = "";
-$a->strings["Tags:"] = "";
-$a->strings["Political Views:"] = "";
-$a->strings["Religion:"] = "";
-$a->strings["About:"] = "";
-$a->strings["Hobbies/Interests:"] = "";
-$a->strings["Likes:"] = "";
-$a->strings["Dislikes:"] = "";
-$a->strings["Contact information and Social Networks:"] = "";
-$a->strings["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["Welcome "] = "";
-$a->strings["Please upload a profile photo."] = "";
-$a->strings["Welcome back "] = "";
-$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["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"] = "";
$a->strings["Your posts and conversations"] = "";
+$a->strings["View Profile"] = "";
$a->strings["Your profile page"] = "";
$a->strings["Edit Profiles"] = "";
-$a->strings["Manage/Edit Profiles"] = "";
+$a->strings["Manage/Edit profiles"] = "";
$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"] = "";
+$a->strings["Your webpages"] = "";
$a->strings["Login"] = "";
$a->strings["Sign in"] = "";
$a->strings["%s - click to logout"] = "";
@@ -267,14 +94,12 @@ $a->strings["Search site content"] = "";
$a->strings["Directory"] = "";
$a->strings["Channel Locator"] = "";
$a->strings["Matrix"] = "";
-$a->strings["Conversations from your grid"] = "";
-$a->strings["See all matrix notifications"] = "";
+$a->strings["Your matrix"] = "";
$a->strings["Mark all matrix notifications seen"] = "";
-$a->strings["See all channel notifications"] = "";
+$a->strings["Channel Home"] = "";
+$a->strings["Channel home"] = "";
$a->strings["Mark all channel notifications seen"] = "";
-$a->strings["Intros"] = "";
-$a->strings["New Connections"] = "";
-$a->strings["See all channel introductions"] = "";
+$a->strings["Connections"] = "";
$a->strings["Notices"] = "";
$a->strings["Notifications"] = "";
$a->strings["See all notifications"] = "";
@@ -285,32 +110,296 @@ $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["Connections"] = "";
$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["created a new post"] = "";
-$a->strings["commented on %s's post"] = "";
$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["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["Select"] = "";
+$a->strings["Delete"] = "";
+$a->strings["Private Message"] = "";
+$a->strings["Message is verified"] = "";
+$a->strings["View %s's profile @ %s"] = "";
+$a->strings["Categories:"] = "";
+$a->strings["Filed under:"] = "";
+$a->strings[" from %s"] = "";
+$a->strings["last edited: %s"] = "";
+$a->strings["Expires: %s"] = "";
+$a->strings["View in context"] = "";
+$a->strings["Please wait"] = "";
+$a->strings["remove"] = "";
+$a->strings["Loading..."] = "";
+$a->strings["Delete Selected Items"] = "";
+$a->strings["View Source"] = "";
+$a->strings["Follow Thread"] = "";
+$a->strings["View Status"] = "";
+$a->strings["View Photos"] = "";
+$a->strings["Matrix Activity"] = "";
+$a->strings["Edit Contact"] = "";
+$a->strings["Send PM"] = "";
+$a->strings["Poke"] = "";
+$a->strings["%s likes this."] = "";
+$a->strings["%s doesn't like this."] = "";
+$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
+ 0 => "",
+ 1 => "",
+);
+$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
+ 0 => "",
+ 1 => "",
+);
+$a->strings["and"] = "";
+$a->strings[", and %d other people"] = array(
+ 0 => "",
+ 1 => "",
+);
+$a->strings["%s like this."] = "";
+$a->strings["%s don't like this."] = "";
+$a->strings["Visible to <strong>everybody</strong>"] = "";
+$a->strings["Please enter a link URL:"] = "";
+$a->strings["Please enter a video link/URL:"] = "";
+$a->strings["Please enter an audio link/URL:"] = "";
+$a->strings["Tag term:"] = "";
+$a->strings["Save to Folder:"] = "";
+$a->strings["Where are you right now?"] = "";
+$a->strings["Expires YYYY-MM-DD HH:MM"] = "";
+$a->strings["Preview"] = "";
+$a->strings["Share"] = "";
+$a->strings["Page link title"] = "";
+$a->strings["Post as"] = "";
+$a->strings["Upload photo"] = "";
+$a->strings["upload photo"] = "";
+$a->strings["Attach file"] = "";
+$a->strings["attach file"] = "";
+$a->strings["Insert web link"] = "";
+$a->strings["web link"] = "";
+$a->strings["Insert video link"] = "";
+$a->strings["video link"] = "";
+$a->strings["Insert audio link"] = "";
+$a->strings["audio link"] = "";
+$a->strings["Set your location"] = "";
+$a->strings["set location"] = "";
+$a->strings["Clear browser location"] = "";
+$a->strings["clear location"] = "";
+$a->strings["Set title"] = "";
+$a->strings["Categories (comma-separated list)"] = "";
+$a->strings["Permission settings"] = "";
+$a->strings["permissions"] = "";
+$a->strings["Public post"] = "";
+$a->strings["Example: bob@example.com, mary@example.com"] = "";
+$a->strings["Set expiration date"] = "";
+$a->strings["Encrypt text"] = "";
+$a->strings["OK"] = "";
+$a->strings["Cancel"] = "";
+$a->strings["Discover"] = "";
+$a->strings["Imported public streams"] = "";
+$a->strings["Commented Order"] = "";
+$a->strings["Sort by Comment Date"] = "";
+$a->strings["Posted Order"] = "";
+$a->strings["Sort by Post Date"] = "";
+$a->strings["Posts that mention or involve you"] = "";
+$a->strings["New"] = "";
+$a->strings["Activity Stream - by date"] = "";
+$a->strings["Starred"] = "";
+$a->strings["Favourite Posts"] = "";
+$a->strings["Spam"] = "";
+$a->strings["Posts flagged as SPAM"] = "";
+$a->strings["Channel"] = "";
+$a->strings["Status Messages and Posts"] = "";
+$a->strings["About"] = "";
+$a->strings["Profile Details"] = "";
+$a->strings["Photo Albums"] = "";
+$a->strings["Files and Storage"] = "";
+$a->strings["Chatrooms"] = "";
+$a->strings["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["Photo Albums"] = "";
$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"] = "";
@@ -347,7 +436,6 @@ $a->strings["Infatuated"] = "";
$a->strings["Dating"] = "";
$a->strings["Unfaithful"] = "";
$a->strings["Sex Addict"] = "";
-$a->strings["Friends"] = "";
$a->strings["Friends/Benefits"] = "";
$a->strings["Casual"] = "";
$a->strings["Engaged"] = "";
@@ -369,6 +457,13 @@ $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."] = "";
@@ -382,19 +477,37 @@ $a->strings["your registration password"] = "";
$a->strings["Registration details for %s"] = "";
$a->strings["Account approved."] = "";
$a->strings["Registration revoked for %s"] = "";
-$a->strings["Unable to obtain identity information from database"] = "";
-$a->strings["Empty name"] = "";
-$a->strings["Name too long"] = "";
-$a->strings["No account identifier"] = "";
-$a->strings["Nickname has unsupported characters or is already being used on this site."] = "";
-$a->strings["Unable to retrieve created identity"] = "";
-$a->strings["Default Profile"] = "";
-$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["Invalid data packet"] = "";
-$a->strings["Unable to verify channel signature"] = "";
-$a->strings["Unable to verify site signature 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"] = "";
@@ -407,9 +520,7 @@ $a->strings["%d Connection"] = array(
1 => "",
);
$a->strings["View Connections"] = "";
-$a->strings["Save"] = "";
$a->strings["poke"] = "";
-$a->strings["poked"] = "";
$a->strings["ping"] = "";
$a->strings["pinged"] = "";
$a->strings["prod"] = "";
@@ -437,6 +548,7 @@ $a->strings["anxious"] = "";
$a->strings["cranky"] = "";
$a->strings["disturbed"] = "";
$a->strings["frustrated"] = "";
+$a->strings["depressed"] = "";
$a->strings["motivated"] = "";
$a->strings["relaxed"] = "";
$a->strings["surprised"] = "";
@@ -461,29 +573,76 @@ $a->strings["November"] = "";
$a->strings["December"] = "";
$a->strings["unknown.???"] = "";
$a->strings["bytes"] = "";
-$a->strings["remove"] = "";
-$a->strings["[remove]"] = "";
-$a->strings["Categories:"] = "";
-$a->strings["Filed under:"] = "";
+$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["Logged out."] = "";
-$a->strings["Failed authentication"] = "";
-$a->strings["Login failed."] = "";
-$a->strings["Channel is blocked on this site."] = "";
-$a->strings["Channel location missing."] = "";
-$a->strings["Channel discovery failed. Website may be down or misconfigured."] = "";
-$a->strings["Response from remote channel was not understood."] = "";
-$a->strings["Response from remote channel was incomplete."] = "";
-$a->strings["local account not found."] = "";
-$a->strings["Cannot connect to yourself."] = "";
+$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["Web Pages"] = "";
+$a->strings["Provide managed web pages on your channel"] = "";
+$a->strings["Private Notes"] = "";
+$a->strings["Enables a tool to store notes and reminders"] = "";
+$a->strings["Extended Identity Sharing"] = "";
+$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "";
+$a->strings["Expert Mode"] = "";
+$a->strings["Enable Expert Mode to provide advanced configuration options"] = "";
+$a->strings["Premium Channel"] = "";
+$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "";
+$a->strings["Post Composition Features"] = "";
+$a->strings["Richtext Editor"] = "";
+$a->strings["Enable richtext editor"] = "";
+$a->strings["Post Preview"] = "";
+$a->strings["Allow previewing posts and comments before publishing them"] = "";
+$a->strings["Automatically import channel content from other channels or feeds"] = "";
+$a->strings["Even More Encryption"] = "";
+$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "";
+$a->strings["Network and Stream Filtering"] = "";
+$a->strings["Search by Date"] = "";
+$a->strings["Ability to select posts by date ranges"] = "";
+$a->strings["Collections Filter"] = "";
+$a->strings["Enable widget to display Network posts only from selected collections"] = "";
+$a->strings["Save search terms for re-use"] = "";
+$a->strings["Network Personal Tab"] = "";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
+$a->strings["Network New Tab"] = "";
+$a->strings["Enable tab to display all new Network activity"] = "";
+$a->strings["Affinity Tool"] = "";
+$a->strings["Filter stream activity by depth of relationships"] = "";
+$a->strings["Suggest Channels"] = "";
+$a->strings["Show channel suggestions"] = "";
+$a->strings["Post/Comment Tools"] = "";
+$a->strings["Edit Sent Posts"] = "";
+$a->strings["Edit and correct posts and comments after sending"] = "";
+$a->strings["Tagging"] = "";
+$a->strings["Ability to tag existing posts"] = "";
+$a->strings["Post Categories"] = "";
+$a->strings["Add categories to your posts"] = "";
+$a->strings["Ability to file posts under folders"] = "";
+$a->strings["Dislike Posts"] = "";
+$a->strings["Ability to dislike posts/comments"] = "";
+$a->strings["Star Posts"] = "";
+$a->strings["Ability to mark special posts with a star indicator"] = "";
+$a->strings["Tag Cloud"] = "";
+$a->strings["Provide a personal tag cloud on your channel page"] = "";
$a->strings["Can view my \"public\" stream and posts"] = "";
$a->strings["Can view my \"public\" channel profile"] = "";
$a->strings["Can view my \"public\" photo albums"] = "";
@@ -498,271 +657,449 @@ $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["Requires compatible chat plugin"] = "";
$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["Tags"] = "";
-$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["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["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["Private Message"] = "";
-$a->strings["Edit"] = "";
-$a->strings["Delete"] = "";
-$a->strings["Select"] = "";
-$a->strings["save to folder"] = "";
-$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["Wall-to-Wall"] = "";
-$a->strings["via Wall-To-Wall:"] = "";
-$a->strings[" from %s"] = "";
-$a->strings["Please wait"] = "";
-$a->strings["%d comment"] = array(
+$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["This is you"] = "";
-$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["Preview"] = "";
-$a->strings["channel"] = "";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "";
-$a->strings["%1\$s is now connected with %2\$s"] = "";
-$a->strings["%1\$s poked %2\$s"] = "";
-$a->strings["%1\$s is currently %2\$s"] = "";
-$a->strings["View %s's profile @ %s"] = "";
-$a->strings["View in context"] = "";
-$a->strings["Loading..."] = "";
-$a->strings["Delete Selected Items"] = "";
-$a->strings["Follow Thread"] = "";
-$a->strings["%s likes this."] = "";
-$a->strings["%s doesn't like this."] = "";
-$a->strings["<span %1\$s>%2\$d people</span> like this."] = "";
-$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = "";
-$a->strings["and"] = "";
-$a->strings[", and %d other people"] = "";
-$a->strings["%s like this."] = "";
-$a->strings["%s don't like this."] = "";
-$a->strings["Visible to <strong>everybody</strong>"] = "";
-$a->strings["Please enter a link URL:"] = "";
-$a->strings["Please enter a video link/URL:"] = "";
-$a->strings["Please enter an audio link/URL:"] = "";
-$a->strings["Tag term:"] = "";
-$a->strings["Save to Folder:"] = "";
-$a->strings["Where are you right now?"] = "";
-$a->strings["Share"] = "";
-$a->strings["Page link title"] = "";
-$a->strings["Upload photo"] = "";
-$a->strings["upload photo"] = "";
-$a->strings["Attach file"] = "";
-$a->strings["attach file"] = "";
-$a->strings["Insert web link"] = "";
-$a->strings["web link"] = "";
-$a->strings["Insert video link"] = "";
-$a->strings["video link"] = "";
-$a->strings["Insert audio link"] = "";
-$a->strings["audio link"] = "";
-$a->strings["Set your location"] = "";
-$a->strings["set location"] = "";
-$a->strings["Clear browser location"] = "";
-$a->strings["clear location"] = "";
-$a->strings["Set title"] = "";
-$a->strings["Categories (comma-separated list)"] = "";
-$a->strings["Permission settings"] = "";
-$a->strings["permissions"] = "";
-$a->strings["Public post"] = "";
-$a->strings["Example: bob@example.com, mary@example.com"] = "";
-$a->strings["Permission denied"] = "";
-$a->strings["Item not found."] = "";
-$a->strings["Archives"] = "";
-$a->strings["Collection not found."] = "";
-$a->strings["Collection has no members."] = "";
-$a->strings["Connection not found."] = "";
-$a->strings["Image/photo"] = "";
-$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "";
-$a->strings["post"] = "";
-$a->strings["$1 wrote:"] = "";
-$a->strings["Encrypted content"] = "";
-$a->strings["No channel."] = "";
-$a->strings["Common connections"] = "";
-$a->strings["No connections in common."] = "";
-$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["Next"] = "";
-$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["Object store: failed"] = "";
-$a->strings["thing/stuff added"] = "";
-$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "";
-$a->strings["not yet implemented."] = "";
-$a->strings["Add Stuff to your Profile"] = "";
-$a->strings["Select a profile"] = "";
-$a->strings["Select a category of stuff. e.g. I ______ something"] = "";
-$a->strings["Name of thing or stuff e.g. something"] = "";
-$a->strings["URL of thing or stuff (optional)"] = "";
-$a->strings["URL for photo of thing or stuff (optional)"] = "";
-$a->strings["Total invitation limit exceeded."] = "";
-$a->strings["%s : Not a valid email address."] = "";
-$a->strings["Please join us on Red"] = "";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
-$a->strings["%s : Message delivery failed."] = "";
-$a->strings["%d message sent."] = array(
+$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["You have no more invitations available"] = "";
-$a->strings["Send invitations"] = "";
-$a->strings["Enter email addresses, one per line:"] = "";
-$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 decentralised social 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, please connect with my Red Matrix channel address:"] = "";
-$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["Friends of %s"] = "";
-$a->strings["No friends to display."] = "";
+$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["Unable to obtain identity information from database"] = "";
+$a->strings["Empty name"] = "";
+$a->strings["Name too long"] = "";
+$a->strings["No account identifier"] = "";
+$a->strings["Nickname is required."] = "";
+$a->strings["Reserved nickname. Please choose another."] = "";
+$a->strings["Nickname has unsupported characters or is already being used on this site."] = "";
+$a->strings["Unable to retrieve created identity"] = "";
+$a->strings["Default Profile"] = "";
+$a->strings["Requested channel is not available."] = "";
$a->strings["Requested profile is not available."] = "";
-$a->strings["View"] = "";
+$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"] = "";
+$a->strings["Gender:"] = "";
+$a->strings["Status:"] = "";
+$a->strings["Homepage:"] = "";
+$a->strings["Online Now"] = "";
+$a->strings["g A l F d"] = "";
+$a->strings["F d"] = "";
+$a->strings["[today]"] = "";
+$a->strings["Birthday Reminders"] = "";
+$a->strings["Birthdays this week:"] = "";
+$a->strings["[No description]"] = "";
+$a->strings["Event Reminders"] = "";
+$a->strings["Events this week:"] = "";
+$a->strings["Full Name:"] = "";
+$a->strings["j F, Y"] = "";
+$a->strings["j F"] = "";
+$a->strings["Birthday:"] = "";
+$a->strings["Age:"] = "";
+$a->strings["for %1\$d %2\$s"] = "";
+$a->strings["Sexual Preference:"] = "";
+$a->strings["Hometown:"] = "";
+$a->strings["Tags:"] = "";
+$a->strings["Political Views:"] = "";
+$a->strings["Religion:"] = "";
+$a->strings["About:"] = "";
+$a->strings["Hobbies/Interests:"] = "";
+$a->strings["Likes:"] = "";
+$a->strings["Dislikes:"] = "";
+$a->strings["Contact information and Social Networks:"] = "";
+$a->strings["My other channels:"] = "";
+$a->strings["Musical interests:"] = "";
+$a->strings["Books, literature:"] = "";
+$a->strings["Television:"] = "";
+$a->strings["Film/dance/culture/entertainment:"] = "";
+$a->strings["Love/Romance:"] = "";
+$a->strings["Work/employment:"] = "";
+$a->strings["School/education:"] = "";
+$a->strings["Delete this item?"] = "";
+$a->strings["show fewer"] = "";
+$a->strings["+ Show More"] = "";
+$a->strings["- Show Less"] = "";
+$a->strings["Password too short"] = "";
+$a->strings["Passwords do not match"] = "";
+$a->strings["everybody"] = "";
+$a->strings["Secret Passphrase"] = "";
+$a->strings["Passphrase hint"] = "";
+$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "";
+$a->strings["close all"] = "";
+$a->strings["timeago.prefixAgo"] = "";
+$a->strings["timeago.prefixFromNow"] = "";
+$a->strings["ago"] = "";
+$a->strings["from now"] = "";
+$a->strings["less than a minute"] = "";
+$a->strings["about a minute"] = "";
+$a->strings["%d minutes"] = "";
+$a->strings["about an hour"] = "";
+$a->strings["about %d hours"] = "";
+$a->strings["a day"] = "";
+$a->strings["%d days"] = "";
+$a->strings["about a month"] = "";
+$a->strings["%d months"] = "";
+$a->strings["about a year"] = "";
+$a->strings["%d years"] = "";
+$a->strings[" "] = "";
+$a->strings["timeago.numbers"] = "";
+$a->strings["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["You must be logged in to see this page."] = "";
-$a->strings["No installed applications."] = "";
-$a->strings["Applications"] = "";
+$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["Channel not found."] = "";
-$a->strings["Item not available."] = "";
-$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."] = "";
-$a->strings["Could not create table."] = "";
-$a->strings["Your site database has been installed."] = "";
-$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "";
-$a->strings["Please see the file \"install/INSTALL.txt\"."] = "";
-$a->strings["System check"] = "";
-$a->strings["Check again"] = "";
-$a->strings["Database connection"] = "";
-$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "";
-$a->strings["Database Server Name"] = "";
-$a->strings["Default is localhost"] = "";
-$a->strings["Database Port"] = "";
-$a->strings["Communication port number - use 0 for default"] = "";
-$a->strings["Database Login Name"] = "";
-$a->strings["Database Login Password"] = "";
-$a->strings["Database Name"] = "";
-$a->strings["Site administrator email address"] = "";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "";
-$a->strings["Website URL"] = "";
-$a->strings["Please use SSL (https) URL if available."] = "";
-$a->strings["Please select a default timezone for your website"] = "";
-$a->strings["Site settings"] = "";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "";
-$a->strings["PHP executable path"] = "";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
-$a->strings["Command line PHP"] = "";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "";
-$a->strings["This is required for message delivery to work."] = "";
-$a->strings["PHP register_argc_argv"] = "";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "";
-$a->strings["Generate encryption keys"] = "";
-$a->strings["libCurl PHP module"] = "";
-$a->strings["GD graphics PHP module"] = "";
-$a->strings["OpenSSL PHP module"] = "";
-$a->strings["mysqli PHP module"] = "";
-$a->strings["mb_string PHP module"] = "";
-$a->strings["mcrypt PHP module"] = "";
-$a->strings["Apache mod_rewrite module"] = "";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "";
-$a->strings["proc_open"] = "";
-$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "";
-$a->strings["Error: libCURL PHP module required but not installed."] = "";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "";
-$a->strings["Error: openssl PHP module required but not installed."] = "";
-$a->strings["Error: mysqli PHP module required but not installed."] = "";
-$a->strings["Error: mb_string PHP module required but not installed."] = "";
-$a->strings["Error: mcrypt PHP module required but not installed."] = "";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "";
-$a->strings[".htconfig.php is writable"] = "";
-$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ 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["SSL certificate validation"] = "";
-$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
-$a->strings["Url rewrite is working"] = "";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "";
-$a->strings["Errors encountered creating database tables."] = "";
-$a->strings["<h1>What next</h1>"] = "";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
+$a->strings["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["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["Manage Menu Elements"] = "";
+$a->strings["Edit menu"] = "";
+$a->strings["Edit element"] = "";
+$a->strings["Drop element"] = "";
+$a->strings["New element"] = "";
+$a->strings["Edit this menu container"] = "";
+$a->strings["Add menu element"] = "";
+$a->strings["Delete this menu item"] = "";
+$a->strings["Edit this menu item"] = "";
+$a->strings["New Menu Element"] = "";
+$a->strings["Menu Item Permissions"] = "";
+$a->strings["(click to open/close)"] = "";
+$a->strings["Link text"] = "";
+$a->strings["URL of link"] = "";
+$a->strings["Use Red magic-auth if available"] = "";
+$a->strings["Open link in new window"] = "";
+$a->strings["Order in list"] = "";
+$a->strings["Higher numbers will sink to bottom of listing"] = "";
+$a->strings["Menu item not found."] = "";
+$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["[Embedded content - reload page to view]"] = "";
$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["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["Missing some important data!"] = "";
-$a->strings["Update"] = "";
+$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["Name is required"] = "";
+$a->strings["Key and Secret are required"] = "";
$a->strings["Passwords do not match. Password unchanged."] = "";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "";
$a->strings["Password changed."] = "";
@@ -772,12 +1109,15 @@ $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["Cancel"] = "";
$a->strings["Name"] = "";
+$a->strings["Name of application"] = "";
$a->strings["Consumer Key"] = "";
+$a->strings["Automatically generated - change if desired. Max length 20"] = "";
$a->strings["Consumer Secret"] = "";
$a->strings["Redirect"] = "";
+$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "";
$a->strings["Icon url"] = "";
+$a->strings["Optional"] = "";
$a->strings["You can't edit this application."] = "";
$a->strings["Connected Apps"] = "";
$a->strings["Client key starts with"] = "";
@@ -806,39 +1146,43 @@ $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["Anybody on this website"] = "";
$a->strings["Anybody in this network"] = "";
+$a->strings["Anybody authenticated"] = "";
$a->strings["Anybody on the internet"] = "";
$a->strings["Publish your default profile in the network directory"] = "";
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "";
-$a->strings["or"] = "";
$a->strings["Your channel address is"] = "";
-$a->strings["Automatically expire posts after this many days:"] = "";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "";
-$a->strings["Advanced expiration settings"] = "";
-$a->strings["Advanced Expiration"] = "";
-$a->strings["Expire posts:"] = "";
-$a->strings["Expire starred posts:"] = "";
-$a->strings["Expire photos:"] = "";
-$a->strings["Only expire posts by others:"] = "";
$a->strings["Channel Settings"] = "";
$a->strings["Basic Settings"] = "";
$a->strings["Your Timezone:"] = "";
$a->strings["Default Post Location:"] = "";
+$a->strings["Geographical location to display on your posts"] = "";
$a->strings["Use Browser Location:"] = "";
+$a->strings["Adult Content"] = "";
+$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "";
$a->strings["Security and Privacy Settings"] = "";
-$a->strings["Quick Privacy Settings:"] = "";
-$a->strings["Very Public - extremely permissive"] = "";
-$a->strings["Typical - default public, privacy when desired"] = "";
-$a->strings["Private - default private, rarely open or public"] = "";
-$a->strings["Blocked - default blocked to/from everybody"] = "";
+$a->strings["Hide my online presence"] = "";
+$a->strings["Prevents displaying in your profile that you are online"] = "";
+$a->strings["Simple Privacy Settings:"] = "";
+$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "";
+$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "";
+$a->strings["Private - <em>default private, never open or public</em>"] = "";
+$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "";
+$a->strings["Allow others to tag your posts"] = "";
+$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "";
+$a->strings["Advanced Privacy Settings"] = "";
+$a->strings["Expire other channel content after this many days"] = "";
+$a->strings["0 or blank prevents expiration"] = "";
$a->strings["Maximum Friend Requests/Day:"] = "";
$a->strings["May reduce spam activity"] = "";
$a->strings["Default Post Permissions"] = "";
-$a->strings["(click to open/close)"] = "";
$a->strings["Maximum private messages per day from unknown people:"] = "";
$a->strings["Useful to reduce spamming"] = "";
$a->strings["Notification Settings"] = "";
@@ -847,8 +1191,8 @@ $a->strings["accepting a friend request"] = "";
$a->strings["joining a forum/community"] = "";
$a->strings["making an <em>interesting</em> profile change"] = "";
$a->strings["Send a notification email when:"] = "";
-$a->strings["You receive an introduction"] = "";
-$a->strings["Your introductions are confirmed"] = "";
+$a->strings["You receive a connection request"] = "";
+$a->strings["Your connections are confirmed"] = "";
$a->strings["Someone writes on your profile wall"] = "";
$a->strings["Someone writes a followup comment"] = "";
$a->strings["You receive a private message"] = "";
@@ -857,48 +1201,108 @@ $a->strings["You are tagged in a post"] = "";
$a->strings["You are poked/prodded/etc. in a post"] = "";
$a->strings["Advanced Account/Page Type Settings"] = "";
$a->strings["Change the behaviour of this account for special situations"] = "";
-$a->strings["Public access denied."] = "";
-$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["Remove"] = "";
-$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["Age: "] = "";
-$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["People Search"] = "";
-$a->strings["No matches"] = "";
-$a->strings["Collection created."] = "";
-$a->strings["Could not create collection."] = "";
-$a->strings["Collection name changed."] = "";
-$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["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["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."] = "";
+$a->strings["Could not create table."] = "";
+$a->strings["Your site database has been installed."] = "";
+$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "";
+$a->strings["Please see the file \"install/INSTALL.txt\"."] = "";
+$a->strings["System check"] = "";
+$a->strings["Next"] = "";
+$a->strings["Check again"] = "";
+$a->strings["Database connection"] = "";
+$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "";
+$a->strings["Database Server Name"] = "";
+$a->strings["Default is localhost"] = "";
+$a->strings["Database Port"] = "";
+$a->strings["Communication port number - use 0 for default"] = "";
+$a->strings["Database Login Name"] = "";
+$a->strings["Database Login Password"] = "";
+$a->strings["Database Name"] = "";
+$a->strings["Site administrator email address"] = "";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "";
+$a->strings["Website URL"] = "";
+$a->strings["Please use SSL (https) URL if available."] = "";
+$a->strings["Please select a default timezone for your website"] = "";
+$a->strings["Site settings"] = "";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "";
+$a->strings["PHP executable path"] = "";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
+$a->strings["Command line PHP"] = "";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "";
+$a->strings["This is required for message delivery to work."] = "";
+$a->strings["PHP register_argc_argv"] = "";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "";
+$a->strings["Generate encryption keys"] = "";
+$a->strings["libCurl PHP module"] = "";
+$a->strings["GD graphics PHP module"] = "";
+$a->strings["OpenSSL PHP module"] = "";
+$a->strings["mysqli PHP module"] = "";
+$a->strings["mb_string PHP module"] = "";
+$a->strings["mcrypt PHP module"] = "";
+$a->strings["Apache mod_rewrite module"] = "";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "";
+$a->strings["proc_open"] = "";
+$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "";
+$a->strings["Error: libCURL PHP module required but not installed."] = "";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "";
+$a->strings["Error: openssl PHP module required but not installed."] = "";
+$a->strings["Error: mysqli PHP module required but not installed."] = "";
+$a->strings["Error: mb_string PHP module required but not installed."] = "";
+$a->strings["Error: mcrypt PHP module required but not installed."] = "";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "";
+$a->strings[".htconfig.php is writable"] = "";
+$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ 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["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["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "";
+$a->strings["Providers are available that issue free certificates which are browser-valid."] = "";
+$a->strings["SSL certificate validation"] = "";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
+$a->strings["Url rewrite is working"] = "";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "";
+$a->strings["Errors encountered creating database tables."] = "";
+$a->strings["<h1>What next</h1>"] = "";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
+$a->strings["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["Page owner information could not be retrieved."] = "";
$a->strings["Album not found."] = "";
$a->strings["Delete Album"] = "";
$a->strings["Delete Photo"] = "";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
-$a->strings["a photo"] = "";
$a->strings["No photos selected"] = "";
$a->strings["Access to this item is restricted."] = "";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
@@ -907,7 +1311,6 @@ $a->strings["Upload Photos"] = "";
$a->strings["New album name: "] = "";
$a->strings["or existing album name: "] = "";
$a->strings["Do not show a status post for this upload"] = "";
-$a->strings["Permissions"] = "";
$a->strings["Contact Photos"] = "";
$a->strings["Edit Album"] = "";
$a->strings["Show Newest First"] = "";
@@ -924,75 +1327,234 @@ $a->strings["New album name"] = "";
$a->strings["Caption"] = "";
$a->strings["Add a Tag"] = "";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "";
+$a->strings["In This Photo:"] = "";
$a->strings["View Album"] = "";
$a->strings["Recent Photos"] = "";
+$a->strings["Help:"] = "";
+$a->strings["Not Found"] = "";
$a->strings["sent you a private message"] = "";
$a->strings["added your channel"] = "";
-$a->strings["g A l F d"] = "";
-$a->strings["[today]"] = "";
$a->strings["posted an event"] = "";
-$a->strings["Not found."] = "";
-$a->strings["- select -"] = "";
-$a->strings["Welcome to %s"] = "";
-$a->strings["Check Mail"] = "";
+$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["Messages"] = "";
$a->strings["Message deleted."] = "";
-$a->strings["Conversation removed."] = "";
+$a->strings["Message recalled."] = "";
$a->strings["Send Private Message"] = "";
$a->strings["To:"] = "";
$a->strings["Subject:"] = "";
-$a->strings["No messages."] = "";
-$a->strings["Delete message"] = "";
-$a->strings["D, d M Y - g:i A"] = "";
+$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["No profile"] = "";
-$a->strings["Help:"] = "";
-$a->strings["Not Found"] = "";
-$a->strings["Page not found."] = "";
-$a->strings["Remote Authentication"] = "";
-$a->strings["Enter your channel address (e.g. channel@example.com)"] = "";
-$a->strings["Authenticate"] = "";
-$a->strings["Unable to locate original post."] = "";
-$a->strings["Empty post discarded."] = "";
-$a->strings["System error. Post not saved."] = "";
-$a->strings["Wall Photos"] = "";
-$a->strings["Remove term"] = "";
-$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"] = "";
-$a->strings["Starred"] = "";
-$a->strings["Favourite Posts"] = "";
-$a->strings["Spam"] = "";
-$a->strings["Posts flagged as SPAM"] = "";
-$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["Search Results For:"] = "";
-$a->strings["No such group"] = "";
-$a->strings["Group is empty"] = "";
-$a->strings["Contact: "] = "";
-$a->strings["Invalid contact."] = "";
+$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["Theme settings updated."] = "";
$a->strings["Site"] = "";
-$a->strings["Users"] = "";
+$a->strings["Accounts"] = "";
+$a->strings["Channels"] = "";
$a->strings["Plugins"] = "";
$a->strings["Themes"] = "";
+$a->strings["Server"] = "";
$a->strings["DB updates"] = "";
$a->strings["Logs"] = "";
$a->strings["Plugin Features"] = "";
@@ -1006,20 +1568,18 @@ $a->strings["Version"] = "";
$a->strings["Active plugins"] = "";
$a->strings["Site settings updated."] = "";
$a->strings["No special theme for accessibility"] = "";
-$a->strings["Closed"] = "";
-$a->strings["Requires approval"] = "";
-$a->strings["Open"] = "";
-$a->strings["Private"] = "";
-$a->strings["Paid Access"] = "";
-$a->strings["Free Access"] = "";
-$a->strings["No SSL policy, links will track page SSL state"] = "";
-$a->strings["Force all links to use SSL"] = "";
+$a->strings["Yes - with approval"] = "";
+$a->strings["My site is not a public server"] = "";
+$a->strings["My site has paid access only"] = "";
+$a->strings["My site has free access only"] = "";
+$a->strings["My site offers free accounts with optional paid upgrades"] = "";
$a->strings["Registration"] = "";
$a->strings["File upload"] = "";
$a->strings["Policies"] = "";
-$a->strings["Advanced"] = "";
$a->strings["Site name"] = "";
$a->strings["Banner/Logo"] = "";
+$a->strings["Administrator Information"] = "";
+$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "";
$a->strings["System language"] = "";
$a->strings["System theme"] = "";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
@@ -1029,12 +1589,10 @@ $a->strings["Accessibility system theme"] = "";
$a->strings["Accessibility theme"] = "";
$a->strings["Channel to use for this website's static pages"] = "";
$a->strings["Site Channel"] = "";
-$a->strings["SSL link policy"] = "";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "";
$a->strings["Maximum image size"] = "";
$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
-$a->strings["Register policy"] = "";
-$a->strings["Access policy"] = "";
+$a->strings["Does this site allow new member registration?"] = "";
+$a->strings["Which best describes the types of account offered by this hub?"] = "";
$a->strings["Register text"] = "";
$a->strings["Will be displayed prominently on the registration page."] = "";
$a->strings["Accounts abandoned after x days"] = "";
@@ -1047,6 +1605,10 @@ $a->strings["Block public"] = "";
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
$a->strings["Force publish"] = "";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
+$a->strings["Disable discovery tab"] = "";
+$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "";
+$a->strings["No login on Homepage"] = "";
+$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "";
$a->strings["Proxy user"] = "";
$a->strings["Proxy URL"] = "";
$a->strings["Network timeout"] = "";
@@ -1057,6 +1619,11 @@ $a->strings["Poll interval"] = "";
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
$a->strings["Maximum Load Average"] = "";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
+$a->strings["No server found"] = "";
+$a->strings["ID"] = "";
+$a->strings["for channel"] = "";
+$a->strings["on server"] = "";
+$a->strings["Status"] = "";
$a->strings["Update has been marked successful"] = "";
$a->strings["Executing %s failed. Check system logs."] = "";
$a->strings["Update %s was successfully applied."] = "";
@@ -1078,23 +1645,36 @@ $a->strings["Account not found"] = "";
$a->strings["User '%s' deleted"] = "";
$a->strings["User '%s' unblocked"] = "";
$a->strings["User '%s' blocked"] = "";
-$a->strings["Normal Account"] = "";
-$a->strings["Soapbox Account"] = "";
-$a->strings["Community/Celebrity Account"] = "";
-$a->strings["Automatic Friend Account"] = "";
+$a->strings["Users"] = "";
$a->strings["select all"] = "";
$a->strings["User registrations waiting for confirm"] = "";
$a->strings["Request date"] = "";
$a->strings["No registrations."] = "";
$a->strings["Approve"] = "";
$a->strings["Deny"] = "";
-$a->strings["Block"] = "";
-$a->strings["Unblock"] = "";
$a->strings["Register date"] = "";
$a->strings["Last login"] = "";
+$a->strings["Expires"] = "";
$a->strings["Service Class"] = "";
$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
+$a->strings["%s channel censored/uncensored"] = array(
+ 0 => "",
+ 1 => "",
+);
+$a->strings["%s channel deleted"] = array(
+ 0 => "",
+ 1 => "",
+);
+$a->strings["Channel not found"] = "";
+$a->strings["Channel '%s' deleted"] = "";
+$a->strings["Channel '%s' uncensored"] = "";
+$a->strings["Channel '%s' censored"] = "";
+$a->strings["Censor"] = "";
+$a->strings["Uncensor"] = "";
+$a->strings["UID"] = "";
+$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
+$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
$a->strings["Plugin %s disabled."] = "";
$a->strings["Plugin %s enabled."] = "";
$a->strings["Disable"] = "";
@@ -1112,331 +1692,14 @@ $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["Ignore"] = "";
-$a->strings["Connection updated."] = "";
-$a->strings["Connection update failed."] = "";
-$a->strings["Introductions and Connection Requests"] = "";
-$a->strings["No pending introductions."] = "";
-$a->strings["System error. Please try again later."] = "";
-$a->strings["Hide this contact from others"] = "";
-$a->strings["Post a new friend activity"] = "";
-$a->strings["if applicable"] = "";
-$a->strings["Discard"] = "";
-$a->strings["Could not access contact record."] = "";
-$a->strings["Could not locate selected profile."] = "";
-$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["Contact has been removed."] = "";
-$a->strings["View %s's profile"] = "";
-$a->strings["Refresh Permissions"] = "";
-$a->strings["Fetch updated permissions"] = "";
-$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["Unknown"] = "";
-$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["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["Forum Members"] = "";
-$a->strings["Soapbox"] = "";
-$a->strings["Full Sharing"] = "";
-$a->strings["Cautious Sharing"] = "";
-$a->strings["Follow Only"] = "";
-$a->strings["Individual Permissions"] = "";
-$a->strings["Individual permissions are only enabled for <a href=\"settings\">privacy settings</a> which are set to \"Only those you specifically allow\". Otherwise they are controlled by your privacy settings."] = "";
-$a->strings["Advanced Permissions"] = "";
-$a->strings["Quick Links"] = "";
-$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["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
-$a->strings["Blocked"] = "";
-$a->strings["Ignored"] = "";
-$a->strings["Hidden"] = "";
-$a->strings["Archived"] = "";
-$a->strings["All"] = "";
-$a->strings["Suggestions"] = "";
-$a->strings["Suggest new connections"] = "";
-$a->strings["Show pending (new) connections"] = "";
-$a->strings["All Connections"] = "";
-$a->strings["Show all connections"] = "";
-$a->strings["Unblocked"] = "";
-$a->strings["Only show unblocked connections"] = "";
-$a->strings["Only show blocked connections"] = "";
-$a->strings["Only show ignored connections"] = "";
-$a->strings["Only show archived connections"] = "";
-$a->strings["Only show hidden connections"] = "";
-$a->strings["%1\$s [%2\$s]"] = "";
-$a->strings["Edit contact"] = "";
-$a->strings["Search your connections"] = "";
-$a->strings["Finding: "] = "";
-$a->strings["This site is not a directory server"] = "";
-$a->strings["Remote privacy information not available."] = "";
-$a->strings["Visible to:"] = "";
-$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["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["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["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["Change profile photo"] = "";
-$a->strings["Create New Profile"] = "";
-$a->strings["Profile Image"] = "";
-$a->strings["visible to everybody"] = "";
-$a->strings["Edit visibility"] = "";
-$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["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["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["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["Profile Match"] = "";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "";
-$a->strings["is interested in:"] = "";
-$a->strings["Contact settings applied."] = "";
-$a->strings["Contact update failed."] = "";
-$a->strings["Contact not found."] = "";
-$a->strings["Repair Contact Settings"] = "";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "";
-$a->strings["Return to contact editor"] = "";
-$a->strings["Account Nickname"] = "";
-$a->strings["@Tagname - overrides Name/Nickname"] = "";
-$a->strings["Account URL"] = "";
-$a->strings["Friend Request URL"] = "";
-$a->strings["Friend Confirm URL"] = "";
-$a->strings["Notification Endpoint URL"] = "";
-$a->strings["Poll/Feed URL"] = "";
-$a->strings["New photo from this URL"] = "";
-$a->strings["invalid target signature"] = "";
-$a->strings["Channel added."] = "";
-$a->strings["Contacts who are not members of a group"] = "";
-$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["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["Item not found"] = "";
-$a->strings["Edit post"] = "";
-$a->strings["Insert YouTube video"] = "";
-$a->strings["Insert Vorbis [.ogg] video"] = "";
-$a->strings["Insert Vorbis [.ogg] audio"] = "";
-$a->strings["Invalid request identifier."] = "";
-$a->strings["System"] = "";
-$a->strings["Introductions"] = "";
-$a->strings["Show Ignored Requests"] = "";
-$a->strings["Hide Ignored Requests"] = "";
-$a->strings["Notification type: "] = "";
-$a->strings["Friend Suggestion"] = "";
-$a->strings["suggested by %s"] = "";
-$a->strings["Claims to be known to you: "] = "";
-$a->strings["yes"] = "";
-$a->strings["no"] = "";
-$a->strings["Approve as: "] = "";
-$a->strings["Friend"] = "";
-$a->strings["Sharer"] = "";
-$a->strings["Fan/Admirer"] = "";
-$a->strings["Friend/Connect Request"] = "";
-$a->strings["New Follower"] = "";
-$a->strings["No introductions."] = "";
-$a->strings["%s liked %s's post"] = "";
-$a->strings["%s disliked %s's post"] = "";
-$a->strings["%s is now friends with %s"] = "";
-$a->strings["%s created a new post"] = "";
-$a->strings["%s commented on %s's post"] = "";
-$a->strings["No more network notifications."] = "";
-$a->strings["Network Notifications"] = "";
-$a->strings["No more system notifications."] = "";
-$a->strings["System Notifications"] = "";
-$a->strings["No more personal notifications."] = "";
-$a->strings["Personal Notifications"] = "";
-$a->strings["No more home notifications."] = "";
-$a->strings["Home Notifications"] = "";
-$a->strings["Post successful."] = "";
-$a->strings["Item is not editable"] = "";
-$a->strings["Access to this profile has been restricted."] = "";
-$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["Not available."] = "";
-$a->strings["Community"] = "";
-$a->strings["No results."] = "";
-$a->strings["Files"] = "";
-$a->strings["Friend suggestion sent."] = "";
-$a->strings["Suggest Friends"] = "";
-$a->strings["Suggest a friend for %s"] = "";
-$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 Contacts (with secure profile access)"] = "";
-$a->strings["Version %s"] = "";
-$a->strings["Installed plugins/addons/apps:"] = "";
-$a->strings["No installed plugins/addons/apps"] = "";
-$a->strings["Red"] = "";
-$a->strings["This is Red - another decentralized, distributed communications project by the folks at Friendica."] = "";
-$a->strings["Running at web location"] = "";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica and/or Red project."] = "";
-$a->strings["Bug reports and issues: please visit"] = "";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
-$a->strings["Ignore/Hide"] = "";
$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"] = "";
@@ -1446,46 +1709,80 @@ $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["Total invitation limit exceeded."] = "";
+$a->strings["%s : Not a valid email address."] = "";
+$a->strings["Please join us on Red"] = "";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
+$a->strings["%s : Message delivery failed."] = "";
+$a->strings["%d message sent."] = array(
+ 0 => "",
+ 1 => "",
+);
+$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["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["Wall Photos"] = "";
+$a->strings["No channel."] = "";
+$a->strings["Common connections"] = "";
+$a->strings["No connections in common."] = "";
$a->strings["Please login."] = "";
-$a->strings["Remove My Account"] = "";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "";
-$a->strings["Please enter your password for verification:"] = "";
-$a->strings["Mood"] = "";
-$a->strings["Set your current mood and tell your friends"] = "";
-$a->strings["Theme settings"] = "";
-$a->strings["Set font-size for posts and comments"] = "";
-$a->strings["Set line-height for posts and comments"] = "";
-$a->strings["Set colour scheme"] = "";
-$a->strings["Draw shadows"] = "";
-$a->strings["Navigation bar colour"] = "";
-$a->strings["Display style"] = "";
-$a->strings["Display colour of links - hex value, do not include the #"] = "";
-$a->strings["Icons"] = "";
-$a->strings["Shiny style"] = "";
-$a->strings["Corner radius"] = "";
-$a->strings["0-99 default: 5"] = "";
+$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 a New Account"] = "";
+$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["Requested channel is not available."] = "";
-$a->strings[" Sorry, you don't have the permission to view this profile. "] = "";
-$a->strings["Profiles"] = "";
-$a->strings["Manage/edit profiles"] = "";
-$a->strings["Edit Profile"] = "";
-$a->strings["F d"] = "";
-$a->strings["Birthday Reminders"] = "";
-$a->strings["Birthdays this week:"] = "";
-$a->strings["[No description]"] = "";
-$a->strings["Event Reminders"] = "";
-$a->strings["Events this week:"] = "";
-$a->strings["Channel"] = "";
-$a->strings["Status Messages and Posts"] = "";
-$a->strings["About"] = "";
-$a->strings["Profile Details"] = "";
-$a->strings["Events and Calendar"] = "";
-$a->strings["Webpages"] = "";
-$a->strings["Manage Webpages"] = "";
+$a->strings["permission denied"] = "";
+$a->strings["Got Zot?"] = "";
$a->strings["toggle mobile"] = "";
+$a->strings["Theme settings"] = "";
+$a->strings["Set scheme"] = "";
+$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["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 indent for comments"] = "";
+$a->strings["Set the basic colour for item icons"] = "";
+$a->strings["Set the hover colour 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 radius of corners"] = "";
+$a->strings["Set shadow depth of photos"] = "";
+$a->strings["Set maximum width of conversation regions"] = "";
+$a->strings["Center conversation regions"] = "";
+$a->strings["Set minimum opacity of nav bar - to hide it"] = "";
+$a->strings["Set size of conversation author photo"] = "";
+$a->strings["Set size of followup author photos"] = "";
+$a->strings["Sloppy photo albums"] = "";
+$a->strings["Are you a clean desk or a messy desk person?"] = "";