aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-04-23 19:49:41 -0700
committerfriendica <info@friendica.com>2015-04-23 19:49:41 -0700
commit6679734135fb04f4a7beccb81663bf1e9574f062 (patch)
tree887488543d98b5dd297d917718bdd99844e83ba5 /util
parent08b757a22cd2804bfec8ecf682b6987b8c06ca49 (diff)
parentc696860cc53bc25558d83de5eda65d9b583da382 (diff)
downloadvolse-hubzilla-6679734135fb04f4a7beccb81663bf1e9574f062.tar.gz
volse-hubzilla-6679734135fb04f4a7beccb81663bf1e9574f062.tar.bz2
volse-hubzilla-6679734135fb04f4a7beccb81663bf1e9574f062.zip
Merge branch 'master' into tres
Conflicts: include/Contact.php include/ItemObject.php include/api.php include/attach.php include/diaspora.php include/dir_fns.php include/enotify.php include/event.php include/expire.php include/items.php include/notifier.php include/notify.php include/photos.php include/taxonomy.php include/text.php include/widgets.php include/zot.php mod/admin.php mod/channel.php mod/dirsearch.php mod/display.php mod/editwebpage.php mod/events.php mod/home.php mod/item.php mod/manage.php mod/mood.php mod/network.php mod/page.php mod/photos.php mod/ping.php mod/post.php mod/thing.php mod/viewsrc.php view/css/mod_events.css
Diffstat (limited to 'util')
-rw-r--r--util/Doxyfile16
-rwxr-xr-xutil/add_addon_repo39
-rwxr-xr-xutil/add_theme_repo37
-rw-r--r--util/messages.po8508
-rw-r--r--util/shredder/readme11
-rwxr-xr-xutil/update_addon_repo39
-rwxr-xr-xutil/update_theme_repo42
-rw-r--r--util/zotsh/README.txt109
-rw-r--r--util/zotsh/easywebdav/LICENSE5
-rw-r--r--util/zotsh/easywebdav/__init__.py5
-rw-r--r--util/zotsh/easywebdav/__init__.pycbin0 -> 455 bytes
-rw-r--r--util/zotsh/easywebdav/__version__.py1
-rw-r--r--util/zotsh/easywebdav/__version__.pycbin0 -> 173 bytes
-rw-r--r--util/zotsh/easywebdav/client.py202
-rw-r--r--util/zotsh/easywebdav/client.pycbin0 -> 8846 bytes
-rwxr-xr-xutil/zotsh/zotsh.py324
16 files changed, 5289 insertions, 4049 deletions
diff --git a/util/Doxyfile b/util/Doxyfile
index fce6c1359..f700c2abe 100644
--- a/util/Doxyfile
+++ b/util/Doxyfile
@@ -1,8 +1,8 @@
-INPUT = boot.php mod include setup util view
+INPUT = README.md index.php boot.php mod/ include/ util/ view/ version.inc
RECURSIVE = YES
-PROJECT_NAME = "The Red Matrix"
+PROJECT_NAME = "The RedMatrix"
PROJECT_LOGO = images/rm-64.png
-EXCLUDE = .htconfig.php library doc .git
+EXCLUDE = .htconfig.php library/ doc/ vendor/ .git/ util/zotsh/easywebdav/
EXCLUDE_PATTERNS = *smarty3* *strings.php *.out *test*
OUTPUT_DIRECTORY = doc
GENERATE_HTML = YES
@@ -12,10 +12,12 @@ GENERATE_LATEX = NO
EXTRACT_ALL = YES
EXTRACT_PRIVATE = YES
GENERATE_TODOLIST = YES
-USE_MDFILE_AS_MAINPAGE = README
+USE_MDFILE_AS_MAINPAGE = README.md
REFERENCED_BY_RELATION = YES
GENERATE_TREEVIEW = YES
HTML_FOOTER = util/Doxygen.footer
-
-
-
+ALIASES += "license=@par License:\n"
+ALIASES += "fixme=\xrefitem fixme \"Fixme\" \"Fixme List\""
+ALIASES += "FIXME=\fixme"
+ALIASES += "TODO=\todo"
+ALIASES += "BUG=\bug"
diff --git a/util/add_addon_repo b/util/add_addon_repo
new file mode 100755
index 000000000..4979c06bc
--- /dev/null
+++ b/util/add_addon_repo
@@ -0,0 +1,39 @@
+#!/bin/sh -f
+
+if [ $# -ne 2 ]; then
+ echo usage: $0 repo_url nickname
+ exit 1
+fi
+
+mkdir -p extend/addon/$2
+mkdir addon > /dev/null 2>&1
+git clone $1 extend/addon/$2
+if [ $? -ne 0 ]; then
+ exit $?
+fi
+
+filelist=(`ls extend/addon/$2`)
+
+
+cd addon
+for a in "${filelist[@]}" ; do
+ base=`basename $a`
+ if [ $base = '.git' ]; then
+# echo 'ignoring git'
+ continue;
+ fi
+ if [ ! -d ../extend/addon/$2/$base ]; then
+# echo $a 'not a directory'
+ continue;
+ fi
+ if [ -x $base ]; then
+# echo $base 'file exists'
+ continue;
+ fi
+
+ echo linking $base
+
+ ln -s ../extend/addon/$2/$base $base
+done
+
+
diff --git a/util/add_theme_repo b/util/add_theme_repo
new file mode 100755
index 000000000..70a8c6432
--- /dev/null
+++ b/util/add_theme_repo
@@ -0,0 +1,37 @@
+#!/bin/sh -f
+
+
+if [ $# -ne 2 ]; then
+ echo usage: $0 repo_url nickname
+ exit 1
+fi
+
+mkdir -p extend/theme/$2
+git clone $1 extend/theme/$2
+if [ $? -ne 0 ]; then
+ exit $?
+fi
+
+filelist=(`ls extend/theme/$2`)
+
+cd view/theme
+for a in "${filelist[@]}" ; do
+ base=`basename $a`
+ if [ $base = '.git' ]; then
+# echo 'ignoring git'
+ continue;
+ fi
+ if [ ! -d ../../extend/theme/$2/$base ]; then
+# echo $a 'not a directory'
+ continue;
+ fi
+ if [ -x $base ]; then
+# echo $base 'file exists'
+ continue;
+ fi
+
+ echo linking $base
+ ln -s ../../extend/theme/$2/$base $base
+done
+
+
diff --git a/util/messages.po b/util/messages.po
index d7cb61638..eba7c7bb6 100644
--- a/util/messages.po
+++ b/util/messages.po
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: 2015-02-06.937\n"
+"Project-Id-Version: 2015-04-17.1005\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-06 00:04-0800\n"
+"POT-Creation-Date: 2015-04-17 00:03-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,979 +17,1264 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../include/dba/dba_driver.php:142
+#: ../../include/dba/dba_driver.php:141
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr ""
-#: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52
+#: ../../include/photo/photo_driver.php:687 ../../mod/profile_photo.php:143
+#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424
#: ../../mod/photos.php:91 ../../mod/photos.php:625
-#: ../../mod/profile_photo.php:143 ../../mod/profile_photo.php:302
-#: ../../mod/profile_photo.php:424
msgid "Profile Photos"
msgstr ""
-#: ../../include/widgets.php:35 ../../include/taxonomy.php:250
-#: ../../include/contact_widgets.php:92
-msgid "Categories"
+#: ../../include/security.php:349
+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/widgets.php:91 ../../include/nav.php:163
-#: ../../mod/apps.php:34
-msgid "Apps"
+#: ../../include/notify.php:23
+msgid "created a new post"
msgstr ""
-#: ../../include/widgets.php:92
-msgid "System"
+#: ../../include/notify.php:24
+#, php-format
+msgid "commented on %s's post"
msgstr ""
-#: ../../include/widgets.php:94 ../../include/conversation.php:1471
-msgid "Personal"
+#: ../../include/group.php:26
+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/widgets.php:95
-msgid "Create Personal App"
+#: ../../include/group.php:235
+msgid "Default privacy group for new contacts"
msgstr ""
-#: ../../include/widgets.php:96
-msgid "Edit Personal App"
+#: ../../include/group.php:254 ../../mod/admin.php:822
+msgid "All Channels"
msgstr ""
-#: ../../include/widgets.php:136 ../../include/widgets.php:175
-#: ../../include/conversation.php:942 ../../include/identity.php:840
-#: ../../include/Contact.php:107 ../../mod/suggest.php:51
-#: ../../mod/match.php:62 ../../mod/directory.php:272
-msgid "Connect"
+#: ../../include/group.php:276
+msgid "edit"
msgstr ""
-#: ../../include/widgets.php:138 ../../mod/suggest.php:53
-msgid "Ignore/Hide"
+#: ../../include/group.php:298
+msgid "Collections"
msgstr ""
-#: ../../include/widgets.php:143 ../../mod/connections.php:268
-msgid "Suggestions"
+#: ../../include/group.php:299
+msgid "Edit collection"
msgstr ""
-#: ../../include/widgets.php:144
-msgid "See more..."
+#: ../../include/group.php:300
+msgid "Add new collection"
msgstr ""
-#: ../../include/widgets.php:166
-#, php-format
-msgid "You have %1$.0f of %2$.0f allowed connections."
+#: ../../include/group.php:301
+msgid "Channels not in any collection"
msgstr ""
-#: ../../include/widgets.php:172
-msgid "Add New Connection"
+#: ../../include/group.php:303 ../../include/widgets.php:275
+msgid "add"
msgstr ""
-#: ../../include/widgets.php:173
-msgid "Enter the channel address"
+#: ../../include/account.php:27
+msgid "Not a valid email address"
msgstr ""
-#: ../../include/widgets.php:174
-msgid "Example: bob@example.com, http://example.com/barbara"
+#: ../../include/account.php:29
+msgid "Your email domain is not among those allowed on this site"
msgstr ""
-#: ../../include/widgets.php:190
-msgid "Notes"
+#: ../../include/account.php:35
+msgid "Your email address is already registered at this site."
msgstr ""
-#: ../../include/widgets.php:192 ../../include/text.php:837
-#: ../../include/text.php:849 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98
-#: ../../mod/filer.php:50 ../../mod/admin.php:1344 ../../mod/admin.php:1365
-msgid "Save"
+#: ../../include/account.php:67
+msgid "An invitation is required."
msgstr ""
-#: ../../include/widgets.php:264
-msgid "Remove term"
+#: ../../include/account.php:71
+msgid "Invitation could not be verified."
msgstr ""
-#: ../../include/widgets.php:272 ../../include/features.php:71
-msgid "Saved Searches"
+#: ../../include/account.php:121
+msgid "Please enter the required information."
msgstr ""
-#: ../../include/widgets.php:273 ../../include/group.php:303
-msgid "add"
+#: ../../include/account.php:188
+msgid "Failed to store account information."
msgstr ""
-#: ../../include/widgets.php:302 ../../include/features.php:83
-#: ../../include/contact_widgets.php:57
-msgid "Saved Folders"
+#: ../../include/account.php:246
+#, php-format
+msgid "Registration confirmation for %s"
msgstr ""
-#: ../../include/widgets.php:305 ../../include/contact_widgets.php:60
-#: ../../include/contact_widgets.php:95
-msgid "Everything"
+#: ../../include/account.php:312
+#, php-format
+msgid "Registration request at %s"
msgstr ""
-#: ../../include/widgets.php:347
-msgid "Archives"
+#: ../../include/account.php:314 ../../include/account.php:341
+#: ../../include/account.php:401
+msgid "Administrator"
msgstr ""
-#: ../../include/widgets.php:425
-msgid "Refresh"
+#: ../../include/account.php:336
+msgid "your registration password"
msgstr ""
-#: ../../include/widgets.php:426 ../../mod/connedit.php:563
-msgid "Me"
+#: ../../include/account.php:339 ../../include/account.php:399
+#, php-format
+msgid "Registration details for %s"
msgstr ""
-#: ../../include/widgets.php:427 ../../mod/connedit.php:566
-msgid "Best Friends"
+#: ../../include/account.php:408
+msgid "Account approved."
msgstr ""
-#: ../../include/widgets.php:428 ../../include/identity.php:387
-#: ../../include/identity.php:388 ../../include/identity.php:395
-#: ../../include/profile_selectors.php:80 ../../mod/settings.php:329
-#: ../../mod/settings.php:333 ../../mod/settings.php:334
-#: ../../mod/settings.php:337 ../../mod/settings.php:348
-#: ../../mod/connedit.php:567
-msgid "Friends"
+#: ../../include/account.php:447
+#, php-format
+msgid "Registration revoked for %s"
msgstr ""
-#: ../../include/widgets.php:429
-msgid "Co-workers"
+#: ../../include/account.php:492
+msgid "Account verified. Please login."
msgstr ""
-#: ../../include/widgets.php:430 ../../mod/connedit.php:568
-msgid "Former Friends"
+#: ../../include/account.php:705 ../../include/account.php:707
+msgid "Click here to upgrade."
msgstr ""
-#: ../../include/widgets.php:431 ../../mod/connedit.php:569
-msgid "Acquaintances"
+#: ../../include/account.php:713
+msgid "This action exceeds the limits set by your subscription plan."
msgstr ""
-#: ../../include/widgets.php:432
-msgid "Everybody"
+#: ../../include/account.php:718
+msgid "This action is not available under your subscription plan."
msgstr ""
-#: ../../include/widgets.php:466
-msgid "Account settings"
+#: ../../include/datetime.php:48
+msgid "Miscellaneous"
msgstr ""
-#: ../../include/widgets.php:472
-msgid "Channel settings"
+#: ../../include/datetime.php:132
+msgid "YYYY-MM-DD or MM-DD"
msgstr ""
-#: ../../include/widgets.php:478
-msgid "Additional features"
+#: ../../include/datetime.php:235 ../../mod/events.php:635
+#: ../../mod/appman.php:91 ../../mod/appman.php:92
+msgid "Required"
msgstr ""
-#: ../../include/widgets.php:484
-msgid "Feature/Addon settings"
+#: ../../include/datetime.php:262 ../../boot.php:2342
+msgid "never"
msgstr ""
-#: ../../include/widgets.php:490
-msgid "Display settings"
+#: ../../include/datetime.php:268
+msgid "less than a second ago"
msgstr ""
-#: ../../include/widgets.php:496
-msgid "Connected apps"
+#: ../../include/datetime.php:271
+msgid "year"
msgstr ""
-#: ../../include/widgets.php:502
-msgid "Export channel"
+#: ../../include/datetime.php:271
+msgid "years"
msgstr ""
-#: ../../include/widgets.php:511 ../../mod/connedit.php:627
-msgid "Connection Default Permissions"
+#: ../../include/datetime.php:272
+msgid "month"
msgstr ""
-#: ../../include/widgets.php:519
-msgid "Premium Channel Settings"
+#: ../../include/datetime.php:272
+msgid "months"
msgstr ""
-#: ../../include/widgets.php:527 ../../include/features.php:61
-#: ../../mod/sources.php:88
-msgid "Channel Sources"
+#: ../../include/datetime.php:273
+msgid "week"
msgstr ""
-#: ../../include/widgets.php:535 ../../include/apps.php:134
-#: ../../include/nav.php:210 ../../mod/admin.php:956 ../../mod/admin.php:1161
-msgid "Settings"
+#: ../../include/datetime.php:273
+msgid "weeks"
msgstr ""
-#: ../../include/widgets.php:548 ../../mod/mail.php:128
-#: ../../mod/message.php:31
-msgid "Messages"
+#: ../../include/datetime.php:274
+msgid "day"
msgstr ""
-#: ../../include/widgets.php:551
-msgid "Check Mail"
+#: ../../include/datetime.php:274
+msgid "days"
msgstr ""
-#: ../../include/widgets.php:556 ../../include/nav.php:201
-msgid "New Message"
+#: ../../include/datetime.php:275
+msgid "hour"
msgstr ""
-#: ../../include/widgets.php:634
-msgid "Chat Rooms"
+#: ../../include/datetime.php:275
+msgid "hours"
msgstr ""
-#: ../../include/widgets.php:654
-msgid "Bookmarked Chatrooms"
+#: ../../include/datetime.php:276
+msgid "minute"
msgstr ""
-#: ../../include/widgets.php:674
-msgid "Suggested Chatrooms"
+#: ../../include/datetime.php:276
+msgid "minutes"
msgstr ""
-#: ../../include/widgets.php:801 ../../include/widgets.php:859
-msgid "photo/image"
+#: ../../include/datetime.php:277
+msgid "second"
msgstr ""
-#: ../../include/widgets.php:954 ../../include/widgets.php:956
-msgid "Rate Me"
+#: ../../include/datetime.php:277
+msgid "seconds"
msgstr ""
-#: ../../include/widgets.php:960
-msgid "View Ratings"
+#: ../../include/datetime.php:285
+#, php-format
+msgctxt "e.g. 22 hours ago, 1 minute ago"
+msgid "%1$d %2$s ago"
msgstr ""
-#: ../../include/permissions.php:26
-msgid "Can view my normal stream and posts"
+#: ../../include/datetime.php:519
+#, php-format
+msgid "%1$s's birthday"
msgstr ""
-#: ../../include/permissions.php:27
-msgid "Can view my default channel profile"
+#: ../../include/datetime.php:520
+#, php-format
+msgid "Happy Birthday %1$s"
msgstr ""
-#: ../../include/permissions.php:28
-msgid "Can view my photo albums"
+#: ../../include/page_widgets.php:6
+msgid "New Page"
msgstr ""
-#: ../../include/permissions.php:29
-msgid "Can view my connections"
+#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36
+#: ../../include/RedDAV/RedBrowser.php:269 ../../include/ItemObject.php:100
+#: ../../include/apps.php:254 ../../include/menu.php:42
+#: ../../mod/settings.php:644 ../../mod/blocks.php:129 ../../mod/thing.php:227
+#: ../../mod/connections.php:382 ../../mod/connections.php:395
+#: ../../mod/connections.php:414 ../../mod/editlayout.php:139
+#: ../../mod/editwebpage.php:176 ../../mod/editpost.php:113
+#: ../../mod/menu.php:86 ../../mod/webpages.php:174
+#: ../../mod/editblock.php:143 ../../mod/layouts.php:168
+msgid "Edit"
msgstr ""
-#: ../../include/permissions.php:30
-msgid "Can view my file storage"
+#: ../../include/page_widgets.php:39 ../../mod/blocks.php:132
+#: ../../mod/webpages.php:180 ../../mod/layouts.php:172
+msgid "View"
msgstr ""
-#: ../../include/permissions.php:31
-msgid "Can view my webpages"
+#: ../../include/page_widgets.php:40 ../../include/conversation.php:1153
+#: ../../include/ItemObject.php:677 ../../mod/events.php:653
+#: ../../mod/photos.php:970 ../../mod/editlayout.php:173
+#: ../../mod/editwebpage.php:212 ../../mod/editpost.php:149
+#: ../../mod/webpages.php:181 ../../mod/editblock.php:179
+msgid "Preview"
msgstr ""
-#: ../../include/permissions.php:34
-msgid "Can send me their channel stream and posts"
+#: ../../include/page_widgets.php:41 ../../mod/webpages.php:182
+msgid "Actions"
msgstr ""
-#: ../../include/permissions.php:35
-msgid "Can post on my channel page (\"wall\")"
+#: ../../include/page_widgets.php:42 ../../mod/webpages.php:183
+msgid "Page Link"
msgstr ""
-#: ../../include/permissions.php:36
-msgid "Can comment on or like my posts"
+#: ../../include/page_widgets.php:43
+msgid "Title"
msgstr ""
-#: ../../include/permissions.php:37
-msgid "Can send me private mail messages"
+#: ../../include/page_widgets.php:44 ../../mod/webpages.php:185
+msgid "Created"
msgstr ""
-#: ../../include/permissions.php:38
-msgid "Can post photos to my photo albums"
+#: ../../include/page_widgets.php:45 ../../mod/webpages.php:186
+msgid "Edited"
msgstr ""
-#: ../../include/permissions.php:39
-msgid "Can like/dislike stuff"
+#: ../../include/conversation.php:120 ../../include/text.php:1803
+#: ../../include/diaspora.php:2081 ../../mod/like.php:346
+#: ../../mod/subthread.php:72 ../../mod/subthread.php:174
+#: ../../mod/tagger.php:43
+msgid "photo"
msgstr ""
-#: ../../include/permissions.php:39
-msgid "Profiles and things other than posts/comments"
+#: ../../include/conversation.php:123 ../../include/text.php:1806
+#: ../../mod/like.php:348 ../../mod/tagger.php:47
+msgid "event"
msgstr ""
-#: ../../include/permissions.php:41
-msgid "Can forward to all my channel contacts via post @mentions"
+#: ../../include/conversation.php:126 ../../mod/like.php:113
+msgid "channel"
msgstr ""
-#: ../../include/permissions.php:41
-msgid "Advanced - useful for creating group forum channels"
+#: ../../include/conversation.php:148 ../../include/text.php:1809
+#: ../../include/diaspora.php:2081 ../../mod/like.php:346
+#: ../../mod/subthread.php:72 ../../mod/subthread.php:174
+#: ../../mod/tagger.php:51
+msgid "status"
msgstr ""
-#: ../../include/permissions.php:42
-msgid "Can chat with me (when available)"
+#: ../../include/conversation.php:150 ../../include/text.php:1811
+#: ../../mod/tagger.php:53
+msgid "comment"
msgstr ""
-#: ../../include/permissions.php:43
-msgid "Can write to my file storage"
+#: ../../include/conversation.php:164 ../../include/diaspora.php:2110
+#: ../../mod/like.php:394
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
msgstr ""
-#: ../../include/permissions.php:44
-msgid "Can edit my webpages"
+#: ../../include/conversation.php:167 ../../mod/like.php:396
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
msgstr ""
-#: ../../include/permissions.php:46
-msgid "Can source my public posts in derived channels"
+#: ../../include/conversation.php:204
+#, php-format
+msgid "%1$s is now connected with %2$s"
msgstr ""
-#: ../../include/permissions.php:46
-msgid "Somewhat advanced - very useful in open communities"
+#: ../../include/conversation.php:239
+#, php-format
+msgid "%1$s poked %2$s"
msgstr ""
-#: ../../include/permissions.php:48
-msgid "Can administer my channel resources"
+#: ../../include/conversation.php:243 ../../include/text.php:928
+msgid "poked"
msgstr ""
-#: ../../include/permissions.php:48
-msgid "Extremely advanced. Leave this alone unless you know what you are doing"
+#: ../../include/conversation.php:260 ../../mod/mood.php:63
+#, php-format
+msgctxt "mood"
+msgid "%1$s is %2$s"
msgstr ""
-#: ../../include/permissions.php:810
-msgid "Social Networking"
+#: ../../include/conversation.php:572 ../../mod/photos.php:984
+msgctxt "title"
+msgid "Likes"
msgstr ""
-#: ../../include/permissions.php:810 ../../include/permissions.php:811
-#: ../../include/permissions.php:812
-msgid "Mostly Public"
+#: ../../include/conversation.php:572 ../../mod/photos.php:984
+msgctxt "title"
+msgid "Dislikes"
msgstr ""
-#: ../../include/permissions.php:810 ../../include/permissions.php:811
-#: ../../include/permissions.php:812
-msgid "Restricted"
+#: ../../include/conversation.php:573 ../../mod/photos.php:985
+msgctxt "title"
+msgid "Agree"
msgstr ""
-#: ../../include/permissions.php:810 ../../include/permissions.php:811
-msgid "Private"
+#: ../../include/conversation.php:573 ../../mod/photos.php:985
+msgctxt "title"
+msgid "Disagree"
msgstr ""
-#: ../../include/permissions.php:811
-msgid "Community Forum"
+#: ../../include/conversation.php:573 ../../mod/photos.php:985
+msgctxt "title"
+msgid "Abstain"
msgstr ""
-#: ../../include/permissions.php:812
-msgid "Feed Republish"
+#: ../../include/conversation.php:574 ../../mod/photos.php:986
+msgctxt "title"
+msgid "Attending"
msgstr ""
-#: ../../include/permissions.php:813
-msgid "Special Purpose"
+#: ../../include/conversation.php:574 ../../mod/photos.php:986
+msgctxt "title"
+msgid "Not attending"
msgstr ""
-#: ../../include/permissions.php:813
-msgid "Celebrity/Soapbox"
+#: ../../include/conversation.php:574 ../../mod/photos.php:986
+msgctxt "title"
+msgid "Might attend"
msgstr ""
-#: ../../include/permissions.php:813
-msgid "Group Repository"
+#: ../../include/conversation.php:659 ../../include/ItemObject.php:126
+msgid "Select"
msgstr ""
-#: ../../include/permissions.php:814 ../../include/profile_selectors.php:6
-#: ../../include/profile_selectors.php:23
-#: ../../include/profile_selectors.php:61
-#: ../../include/profile_selectors.php:97
-msgid "Other"
+#: ../../include/conversation.php:660 ../../include/RedDAV/RedBrowser.php:270
+#: ../../include/ItemObject.php:120 ../../include/apps.php:255
+#: ../../mod/settings.php:645 ../../mod/thing.php:228 ../../mod/group.php:176
+#: ../../mod/photos.php:1050 ../../mod/webpages.php:176
+#: ../../mod/admin.php:817 ../../mod/admin.php:948 ../../mod/connedit.php:543
+msgid "Delete"
msgstr ""
-#: ../../include/permissions.php:814
-msgid "Custom/Expert Mode"
+#: ../../include/conversation.php:667 ../../include/ItemObject.php:89
+msgid "Private Message"
msgstr ""
-#: ../../include/notify.php:23
-msgid "created a new post"
+#: ../../include/conversation.php:674 ../../include/ItemObject.php:227
+msgid "Message signature validated"
msgstr ""
-#: ../../include/notify.php:24
+#: ../../include/conversation.php:675 ../../include/ItemObject.php:228
+msgid "Message signature incorrect"
+msgstr ""
+
+#: ../../include/conversation.php:692
#, php-format
-msgid "commented on %s's post"
+msgid "View %s's profile @ %s"
msgstr ""
-#: ../../include/taxonomy.php:210 ../../include/taxonomy.php:229
-msgid "Tags"
+#: ../../include/conversation.php:707
+msgid "Categories:"
msgstr ""
-#: ../../include/taxonomy.php:269
-msgid "Keywords"
+#: ../../include/conversation.php:708
+msgid "Filed under:"
msgstr ""
-#: ../../include/taxonomy.php:294
-msgid "have"
+#: ../../include/conversation.php:716 ../../include/ItemObject.php:312
+#, php-format
+msgid "from %s"
msgstr ""
-#: ../../include/taxonomy.php:294
-msgid "has"
+#: ../../include/conversation.php:719 ../../include/ItemObject.php:315
+#, php-format
+msgid "last edited: %s"
msgstr ""
-#: ../../include/taxonomy.php:295
-msgid "want"
+#: ../../include/conversation.php:720 ../../include/ItemObject.php:316
+#, php-format
+msgid "Expires: %s"
msgstr ""
-#: ../../include/taxonomy.php:295
-msgid "wants"
+#: ../../include/conversation.php:735
+msgid "View in context"
msgstr ""
-#: ../../include/taxonomy.php:296 ../../include/ItemObject.php:221
-msgid "like"
+#: ../../include/conversation.php:737 ../../include/conversation.php:1206
+#: ../../include/ItemObject.php:364 ../../mod/photos.php:950
+#: ../../mod/editlayout.php:153 ../../mod/editwebpage.php:190
+#: ../../mod/editpost.php:130 ../../mod/editblock.php:158
+#: ../../mod/mail.php:241 ../../mod/mail.php:356
+msgid "Please wait"
msgstr ""
-#: ../../include/taxonomy.php:296
-msgid "likes"
+#: ../../include/conversation.php:846
+msgid "remove"
msgstr ""
-#: ../../include/taxonomy.php:297 ../../include/ItemObject.php:222
-msgid "dislike"
+#: ../../include/conversation.php:850 ../../include/nav.php:247
+msgid "Loading..."
msgstr ""
-#: ../../include/taxonomy.php:297
-msgid "dislikes"
+#: ../../include/conversation.php:851
+msgid "Delete Selected Items"
msgstr ""
-#: ../../include/taxonomy.php:380 ../../include/ItemObject.php:146
-#: ../../include/identity.php:1155 ../../mod/photos.php:995
-msgctxt "noun"
-msgid "Like"
-msgid_plural "Likes"
+#: ../../include/conversation.php:939
+msgid "View Source"
+msgstr ""
+
+#: ../../include/conversation.php:940
+msgid "Follow Thread"
+msgstr ""
+
+#: ../../include/conversation.php:941
+msgid "View Status"
+msgstr ""
+
+#: ../../include/conversation.php:942 ../../include/nav.php:91
+#: ../../mod/connedit.php:494 ../../mod/connedit.php:660
+msgid "View Profile"
+msgstr ""
+
+#: ../../include/conversation.php:943
+msgid "View Photos"
+msgstr ""
+
+#: ../../include/conversation.php:944
+msgid "Matrix Activity"
+msgstr ""
+
+#: ../../include/conversation.php:945 ../../include/widgets.php:136
+#: ../../include/widgets.php:175 ../../include/Contact.php:107
+#: ../../include/identity.php:823 ../../mod/match.php:64
+#: ../../mod/directory.php:298 ../../mod/suggest.php:52
+msgid "Connect"
+msgstr ""
+
+#: ../../include/conversation.php:946
+msgid "Edit Contact"
+msgstr ""
+
+#: ../../include/conversation.php:947
+msgid "Send PM"
+msgstr ""
+
+#: ../../include/conversation.php:948 ../../include/apps.php:145
+msgid "Poke"
+msgstr ""
+
+#: ../../include/conversation.php:1019 ../../include/RedDAV/RedBrowser.php:164
+#: ../../include/apps.php:336 ../../include/apps.php:387
+#: ../../mod/photos.php:681 ../../mod/photos.php:1119
+msgid "Unknown"
+msgstr ""
+
+#: ../../include/conversation.php:1062
+#, php-format
+msgid "%s likes this."
+msgstr ""
+
+#: ../../include/conversation.php:1062
+#, php-format
+msgid "%s doesn't like this."
+msgstr ""
+
+#: ../../include/conversation.php:1066
+#, php-format
+msgid "<span %1$s>%2$d people</span> like this."
+msgid_plural "<span %1$s>%2$d people</span> like this."
msgstr[0] ""
msgstr[1] ""
-#: ../../include/bbcode.php:115 ../../include/bbcode.php:688
-#: ../../include/bbcode.php:691 ../../include/bbcode.php:696
-#: ../../include/bbcode.php:699 ../../include/bbcode.php:702
-#: ../../include/bbcode.php:705 ../../include/bbcode.php:710
-#: ../../include/bbcode.php:713 ../../include/bbcode.php:718
-#: ../../include/bbcode.php:721 ../../include/bbcode.php:724
-#: ../../include/bbcode.php:727
-msgid "Image/photo"
+#: ../../include/conversation.php:1068
+#, php-format
+msgid "<span %1$s>%2$d people</span> don't like this."
+msgid_plural "<span %1$s>%2$d people</span> don't like this."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/conversation.php:1074
+msgid "and"
msgstr ""
-#: ../../include/bbcode.php:150 ../../include/bbcode.php:738
-msgid "Encrypted content"
+#: ../../include/conversation.php:1077
+#, php-format
+msgid ", and %d other people"
+msgid_plural ", and %d other people"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/conversation.php:1078
+#, php-format
+msgid "%s like this."
msgstr ""
-#: ../../include/bbcode.php:168
-msgid "Install design element: "
+#: ../../include/conversation.php:1078
+#, php-format
+msgid "%s don't like this."
msgstr ""
-#: ../../include/bbcode.php:174
-msgid "QR code"
+#: ../../include/conversation.php:1138
+msgid "Visible to <strong>everybody</strong>"
msgstr ""
-#: ../../include/bbcode.php:223
-#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
+#: ../../include/conversation.php:1139 ../../mod/mail.php:174
+#: ../../mod/mail.php:289
+msgid "Please enter a link URL:"
msgstr ""
-#: ../../include/bbcode.php:225
-msgid "post"
+#: ../../include/conversation.php:1140
+msgid "Please enter a video link/URL:"
msgstr ""
-#: ../../include/bbcode.php:447
-msgid "Different viewers will see this text differently"
+#: ../../include/conversation.php:1141
+msgid "Please enter an audio link/URL:"
msgstr ""
-#: ../../include/bbcode.php:656
-msgid "$1 spoiler"
+#: ../../include/conversation.php:1142
+msgid "Tag term:"
msgstr ""
-#: ../../include/bbcode.php:676
-msgid "$1 wrote:"
+#: ../../include/conversation.php:1143 ../../mod/filer.php:49
+msgid "Save to Folder:"
msgstr ""
-#: ../../include/text.php:320
-msgid "prev"
+#: ../../include/conversation.php:1144
+msgid "Where are you right now?"
msgstr ""
-#: ../../include/text.php:322
-msgid "first"
+#: ../../include/conversation.php:1145 ../../mod/editpost.php:52
+#: ../../mod/mail.php:175 ../../mod/mail.php:290
+msgid "Expires YYYY-MM-DD HH:MM"
msgstr ""
-#: ../../include/text.php:351
-msgid "last"
+#: ../../include/conversation.php:1172 ../../mod/photos.php:949
+#: ../../mod/editlayout.php:198 ../../mod/webpages.php:175
+#: ../../mod/editblock.php:204 ../../mod/layouts.php:169
+msgid "Share"
msgstr ""
-#: ../../include/text.php:354
-msgid "next"
+#: ../../include/conversation.php:1174
+msgid "Page link name"
msgstr ""
-#: ../../include/text.php:366
-msgid "older"
+#: ../../include/conversation.php:1177
+msgid "Post as"
msgstr ""
-#: ../../include/text.php:368
-msgid "newer"
+#: ../../include/conversation.php:1179 ../../include/ItemObject.php:669
+#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:177
+#: ../../mod/editpost.php:114 ../../mod/editblock.php:144
+msgid "Bold"
msgstr ""
-#: ../../include/text.php:750
-msgid "No connections"
+#: ../../include/conversation.php:1180 ../../include/ItemObject.php:670
+#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:178
+#: ../../mod/editpost.php:115 ../../mod/editblock.php:145
+msgid "Italic"
msgstr ""
-#: ../../include/text.php:766
-#, php-format
-msgid "%d Connection"
-msgid_plural "%d Connections"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/conversation.php:1181 ../../include/ItemObject.php:671
+#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:179
+#: ../../mod/editpost.php:116 ../../mod/editblock.php:146
+msgid "Underline"
+msgstr ""
-#: ../../include/text.php:779 ../../mod/viewconnections.php:86
-msgid "View Connections"
+#: ../../include/conversation.php:1182 ../../include/ItemObject.php:672
+#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:180
+#: ../../mod/editpost.php:117 ../../mod/editblock.php:147
+msgid "Quote"
msgstr ""
-#: ../../include/text.php:836 ../../include/text.php:848
-#: ../../include/apps.php:147 ../../include/nav.php:165
-#: ../../mod/search.php:34
-msgid "Search"
+#: ../../include/conversation.php:1183 ../../include/ItemObject.php:673
+#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:181
+#: ../../mod/editpost.php:118 ../../mod/editblock.php:148
+msgid "Code"
msgstr ""
-#: ../../include/text.php:915
-msgid "poke"
+#: ../../include/conversation.php:1184 ../../mod/editlayout.php:145
+#: ../../mod/editwebpage.php:182 ../../mod/editpost.php:119
+#: ../../mod/editblock.php:150 ../../mod/mail.php:238 ../../mod/mail.php:352
+msgid "Upload photo"
msgstr ""
-#: ../../include/text.php:915 ../../include/conversation.php:243
-msgid "poked"
+#: ../../include/conversation.php:1185
+msgid "upload photo"
msgstr ""
-#: ../../include/text.php:916
-msgid "ping"
+#: ../../include/conversation.php:1186 ../../mod/editlayout.php:146
+#: ../../mod/editwebpage.php:183 ../../mod/editpost.php:120
+#: ../../mod/editblock.php:151 ../../mod/mail.php:239 ../../mod/mail.php:353
+msgid "Attach file"
msgstr ""
-#: ../../include/text.php:916
-msgid "pinged"
+#: ../../include/conversation.php:1187
+msgid "attach file"
msgstr ""
-#: ../../include/text.php:917
-msgid "prod"
+#: ../../include/conversation.php:1188 ../../mod/editlayout.php:147
+#: ../../mod/editwebpage.php:184 ../../mod/editpost.php:121
+#: ../../mod/editblock.php:152 ../../mod/mail.php:240 ../../mod/mail.php:354
+msgid "Insert web link"
msgstr ""
-#: ../../include/text.php:917
-msgid "prodded"
+#: ../../include/conversation.php:1189
+msgid "web link"
msgstr ""
-#: ../../include/text.php:918
-msgid "slap"
+#: ../../include/conversation.php:1190
+msgid "Insert video link"
msgstr ""
-#: ../../include/text.php:918
-msgid "slapped"
+#: ../../include/conversation.php:1191
+msgid "video link"
msgstr ""
-#: ../../include/text.php:919
-msgid "finger"
+#: ../../include/conversation.php:1192
+msgid "Insert audio link"
msgstr ""
-#: ../../include/text.php:919
-msgid "fingered"
+#: ../../include/conversation.php:1193
+msgid "audio link"
msgstr ""
-#: ../../include/text.php:920
-msgid "rebuff"
+#: ../../include/conversation.php:1194 ../../mod/editlayout.php:151
+#: ../../mod/editwebpage.php:188 ../../mod/editpost.php:125
+#: ../../mod/editblock.php:156
+msgid "Set your location"
msgstr ""
-#: ../../include/text.php:920
-msgid "rebuffed"
+#: ../../include/conversation.php:1195
+msgid "set location"
msgstr ""
-#: ../../include/text.php:930
-msgid "happy"
+#: ../../include/conversation.php:1196 ../../mod/editpost.php:127
+msgid "Toggle voting"
msgstr ""
-#: ../../include/text.php:931
-msgid "sad"
+#: ../../include/conversation.php:1199 ../../mod/editlayout.php:152
+#: ../../mod/editwebpage.php:189 ../../mod/editpost.php:126
+#: ../../mod/editblock.php:157
+msgid "Clear browser location"
msgstr ""
-#: ../../include/text.php:932
-msgid "mellow"
+#: ../../include/conversation.php:1200
+msgid "clear location"
msgstr ""
-#: ../../include/text.php:933
-msgid "tired"
+#: ../../include/conversation.php:1202 ../../mod/editlayout.php:164
+#: ../../mod/editwebpage.php:205 ../../mod/editpost.php:141
+#: ../../mod/editblock.php:170
+msgid "Title (optional)"
msgstr ""
-#: ../../include/text.php:934
-msgid "perky"
+#: ../../include/conversation.php:1205 ../../mod/editlayout.php:167
+#: ../../mod/editwebpage.php:207 ../../mod/editpost.php:143
+#: ../../mod/editblock.php:173
+msgid "Categories (optional, comma-separated list)"
msgstr ""
-#: ../../include/text.php:935
-msgid "angry"
+#: ../../include/conversation.php:1207 ../../mod/editlayout.php:154
+#: ../../mod/editwebpage.php:191 ../../mod/editpost.php:131
+#: ../../mod/editblock.php:159
+msgid "Permission settings"
msgstr ""
-#: ../../include/text.php:936
-msgid "stupified"
+#: ../../include/conversation.php:1208
+msgid "permissions"
msgstr ""
-#: ../../include/text.php:937
-msgid "puzzled"
+#: ../../include/conversation.php:1216 ../../mod/editlayout.php:161
+#: ../../mod/editwebpage.php:200 ../../mod/editpost.php:138
+#: ../../mod/editblock.php:167
+msgid "Public post"
msgstr ""
-#: ../../include/text.php:938
-msgid "interested"
+#: ../../include/conversation.php:1218 ../../mod/editlayout.php:168
+#: ../../mod/editwebpage.php:208 ../../mod/editpost.php:144
+#: ../../mod/editblock.php:174
+msgid "Example: bob@example.com, mary@example.com"
msgstr ""
-#: ../../include/text.php:939
-msgid "bitter"
+#: ../../include/conversation.php:1231 ../../mod/editlayout.php:178
+#: ../../mod/editwebpage.php:217 ../../mod/editpost.php:155
+#: ../../mod/editblock.php:184 ../../mod/mail.php:245 ../../mod/mail.php:359
+msgid "Set expiration date"
msgstr ""
-#: ../../include/text.php:940
-msgid "cheerful"
+#: ../../include/conversation.php:1233 ../../include/ItemObject.php:680
+#: ../../mod/editpost.php:157 ../../mod/mail.php:247 ../../mod/mail.php:361
+msgid "Encrypt text"
msgstr ""
-#: ../../include/text.php:941
-msgid "alive"
+#: ../../include/conversation.php:1235 ../../mod/events.php:637
+#: ../../mod/editpost.php:159
+msgid "OK"
msgstr ""
-#: ../../include/text.php:942
-msgid "annoyed"
+#: ../../include/conversation.php:1236 ../../mod/settings.php:583
+#: ../../mod/settings.php:609 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134
+#: ../../mod/events.php:636 ../../mod/fbrowser.php:82
+#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:160
+msgid "Cancel"
msgstr ""
-#: ../../include/text.php:943
-msgid "anxious"
+#: ../../include/conversation.php:1477
+msgid "Discover"
msgstr ""
-#: ../../include/text.php:944
-msgid "cranky"
+#: ../../include/conversation.php:1480
+msgid "Imported public streams"
msgstr ""
-#: ../../include/text.php:945
-msgid "disturbed"
+#: ../../include/conversation.php:1485
+msgid "Commented Order"
msgstr ""
-#: ../../include/text.php:946
-msgid "frustrated"
+#: ../../include/conversation.php:1488
+msgid "Sort by Comment Date"
msgstr ""
-#: ../../include/text.php:947
-msgid "depressed"
+#: ../../include/conversation.php:1492
+msgid "Posted Order"
msgstr ""
-#: ../../include/text.php:948
-msgid "motivated"
+#: ../../include/conversation.php:1495
+msgid "Sort by Post Date"
msgstr ""
-#: ../../include/text.php:949
-msgid "relaxed"
+#: ../../include/conversation.php:1500 ../../include/widgets.php:94
+msgid "Personal"
msgstr ""
-#: ../../include/text.php:950
-msgid "surprised"
+#: ../../include/conversation.php:1503
+msgid "Posts that mention or involve you"
msgstr ""
-#: ../../include/text.php:1116
-msgid "Monday"
+#: ../../include/conversation.php:1509 ../../mod/connections.php:212
+#: ../../mod/connections.php:225 ../../mod/menu.php:88
+msgid "New"
msgstr ""
-#: ../../include/text.php:1116
-msgid "Tuesday"
+#: ../../include/conversation.php:1512
+msgid "Activity Stream - by date"
msgstr ""
-#: ../../include/text.php:1116
-msgid "Wednesday"
+#: ../../include/conversation.php:1518
+msgid "Starred"
msgstr ""
-#: ../../include/text.php:1116
-msgid "Thursday"
+#: ../../include/conversation.php:1521
+msgid "Favourite Posts"
msgstr ""
-#: ../../include/text.php:1116
-msgid "Friday"
+#: ../../include/conversation.php:1528
+msgid "Spam"
msgstr ""
-#: ../../include/text.php:1116
-msgid "Saturday"
+#: ../../include/conversation.php:1531
+msgid "Posts flagged as SPAM"
msgstr ""
-#: ../../include/text.php:1116
-msgid "Sunday"
+#: ../../include/conversation.php:1575 ../../mod/admin.php:952
+msgid "Channel"
msgstr ""
-#: ../../include/text.php:1120
-msgid "January"
+#: ../../include/conversation.php:1578
+msgid "Status Messages and Posts"
msgstr ""
-#: ../../include/text.php:1120
-msgid "February"
+#: ../../include/conversation.php:1587
+msgid "About"
msgstr ""
-#: ../../include/text.php:1120
-msgid "March"
+#: ../../include/conversation.php:1590
+msgid "Profile Details"
msgstr ""
-#: ../../include/text.php:1120
-msgid "April"
+#: ../../include/conversation.php:1596 ../../include/nav.php:97
+#: ../../include/apps.php:139 ../../mod/fbrowser.php:25
+msgid "Photos"
msgstr ""
-#: ../../include/text.php:1120
-msgid "May"
+#: ../../include/conversation.php:1599 ../../include/photos.php:359
+msgid "Photo Albums"
msgstr ""
-#: ../../include/text.php:1120
-msgid "June"
+#: ../../include/conversation.php:1605 ../../include/RedDAV/RedBrowser.php:251
+#: ../../include/nav.php:98 ../../include/apps.php:135
+#: ../../mod/fbrowser.php:114
+msgid "Files"
msgstr ""
-#: ../../include/text.php:1120
-msgid "July"
+#: ../../include/conversation.php:1608
+msgid "Files and Storage"
msgstr ""
-#: ../../include/text.php:1120
-msgid "August"
+#: ../../include/conversation.php:1618 ../../include/conversation.php:1621
+msgid "Chatrooms"
msgstr ""
-#: ../../include/text.php:1120
-msgid "September"
+#: ../../include/conversation.php:1631 ../../include/nav.php:109
+#: ../../include/apps.php:129
+msgid "Bookmarks"
msgstr ""
-#: ../../include/text.php:1120
-msgid "October"
+#: ../../include/conversation.php:1634
+msgid "Saved Bookmarks"
msgstr ""
-#: ../../include/text.php:1120
-msgid "November"
+#: ../../include/conversation.php:1641 ../../include/nav.php:113
+#: ../../include/apps.php:136 ../../mod/webpages.php:171
+msgid "Webpages"
msgstr ""
-#: ../../include/text.php:1120
-msgid "December"
+#: ../../include/conversation.php:1644
+msgid "Manage Webpages"
msgstr ""
-#: ../../include/text.php:1198
-msgid "unknown.???"
+#: ../../include/conversation.php:1673 ../../include/ItemObject.php:175
+#: ../../include/ItemObject.php:187 ../../mod/photos.php:1003
+#: ../../mod/photos.php:1015
+msgid "View all"
msgstr ""
-#: ../../include/text.php:1199
-msgid "bytes"
+#: ../../include/conversation.php:1697 ../../include/ItemObject.php:179
+#: ../../include/taxonomy.php:396 ../../include/identity.php:1133
+#: ../../mod/photos.php:1007
+msgctxt "noun"
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/conversation.php:1700 ../../include/ItemObject.php:184
+#: ../../mod/photos.php:1012
+msgctxt "noun"
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/conversation.php:1703
+msgctxt "noun"
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/conversation.php:1706
+msgctxt "noun"
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/conversation.php:1709
+msgctxt "noun"
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/conversation.php:1712
+msgctxt "noun"
+msgid "Agree"
+msgid_plural "Agrees"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/conversation.php:1715
+msgctxt "noun"
+msgid "Disagree"
+msgid_plural "Disagrees"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/conversation.php:1718
+msgctxt "noun"
+msgid "Abstain"
+msgid_plural "Abstains"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/dir_fns.php:137
+msgid "Directory Options"
msgstr ""
-#: ../../include/text.php:1235
-msgid "remove category"
+#: ../../include/dir_fns.php:138
+msgid "Alphabetic"
msgstr ""
-#: ../../include/text.php:1304
-msgid "remove from file"
+#: ../../include/dir_fns.php:139
+msgid "Reverse Alphabetic"
msgstr ""
-#: ../../include/text.php:1380 ../../include/text.php:1391
-#: ../../mod/connedit.php:635
-msgid "Click to open/close"
+#: ../../include/dir_fns.php:140
+msgid "Newest to Oldest"
msgstr ""
-#: ../../include/text.php:1539 ../../mod/events.php:418
-msgid "Link to Source"
+#: ../../include/dir_fns.php:141
+msgid "Oldest to Newest"
msgstr ""
-#: ../../include/text.php:1558
-msgid "Select a page layout: "
+#: ../../include/dir_fns.php:142
+msgid "Sort"
msgstr ""
-#: ../../include/text.php:1561 ../../include/text.php:1621
-msgid "default"
+#: ../../include/dir_fns.php:146
+msgid "Safe Mode"
msgstr ""
-#: ../../include/text.php:1594
-msgid "Page content type: "
+#: ../../include/dir_fns.php:148
+msgid "Public Forums Only"
msgstr ""
-#: ../../include/text.php:1633
-msgid "Select an alternate language"
+#: ../../include/dir_fns.php:149
+msgid "This Website Only"
msgstr ""
-#: ../../include/text.php:1752 ../../include/diaspora.php:1953
-#: ../../include/conversation.php:120 ../../mod/subthread.php:72
-#: ../../mod/subthread.php:174 ../../mod/like.php:302 ../../mod/tagger.php:43
-msgid "photo"
+#: ../../include/event.php:19 ../../include/bb2diaspora.php:451
+msgid "l F d, Y \\@ g:i A"
msgstr ""
-#: ../../include/text.php:1755 ../../include/conversation.php:123
-#: ../../mod/tagger.php:47
-msgid "event"
+#: ../../include/event.php:27 ../../include/bb2diaspora.php:457
+msgid "Starts:"
msgstr ""
-#: ../../include/text.php:1758 ../../include/diaspora.php:1953
-#: ../../include/conversation.php:148 ../../mod/subthread.php:72
-#: ../../mod/subthread.php:174 ../../mod/like.php:302 ../../mod/tagger.php:51
-msgid "status"
+#: ../../include/event.php:37 ../../include/bb2diaspora.php:465
+msgid "Finishes:"
msgstr ""
-#: ../../include/text.php:1760 ../../include/conversation.php:150
-#: ../../mod/tagger.php:53
-msgid "comment"
+#: ../../include/event.php:47 ../../include/bb2diaspora.php:473
+#: ../../include/identity.php:874 ../../mod/events.php:647
+#: ../../mod/directory.php:230
+msgid "Location:"
msgstr ""
-#: ../../include/text.php:1765
-msgid "activity"
+#: ../../include/event.php:391
+msgid "This event has been added to your calendar."
msgstr ""
-#: ../../include/text.php:2052
-msgid "Design"
+#: ../../include/js_strings.php:5
+msgid "Delete this item?"
msgstr ""
-#: ../../include/text.php:2055
-msgid "Blocks"
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667
+#: ../../mod/photos.php:968 ../../mod/photos.php:1086
+msgid "Comment"
msgstr ""
-#: ../../include/text.php:2056
-msgid "Menus"
+#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384
+msgid "[+] show all"
msgstr ""
-#: ../../include/text.php:2057
-msgid "Layouts"
+#: ../../include/js_strings.php:8
+msgid "[-] show less"
msgstr ""
-#: ../../include/text.php:2058
-msgid "Pages"
+#: ../../include/js_strings.php:9
+msgid "[+] expand"
msgstr ""
-#: ../../include/text.php:2393 ../../include/RedDAV/RedBrowser.php:130
-msgid "Collection"
+#: ../../include/js_strings.php:10
+msgid "[-] collapse"
msgstr ""
-#: ../../include/page_widgets.php:6
-msgid "New Page"
+#: ../../include/js_strings.php:11
+msgid "Password too short"
msgstr ""
-#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36
-#: ../../include/RedDAV/RedBrowser.php:267 ../../include/apps.php:254
-#: ../../include/menu.php:42 ../../include/ItemObject.php:100
-#: ../../mod/blocks.php:132 ../../mod/webpages.php:162
-#: ../../mod/connections.php:382 ../../mod/connections.php:395
-#: ../../mod/connections.php:414 ../../mod/editblock.php:143
-#: ../../mod/settings.php:639 ../../mod/editpost.php:112
-#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174
-#: ../../mod/thing.php:233 ../../mod/layouts.php:167 ../../mod/menu.php:78
-msgid "Edit"
+#: ../../include/js_strings.php:12
+msgid "Passwords do not match"
msgstr ""
-#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135
-#: ../../mod/webpages.php:165 ../../mod/layouts.php:171
-msgid "View"
+#: ../../include/js_strings.php:13 ../../mod/photos.php:39
+msgid "everybody"
msgstr ""
-#: ../../include/page_widgets.php:40 ../../include/conversation.php:1132
-#: ../../include/ItemObject.php:638 ../../mod/webpages.php:166
-#: ../../mod/photos.php:966
-msgid "Preview"
+#: ../../include/js_strings.php:14
+msgid "Secret Passphrase"
msgstr ""
-#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167
-msgid "Actions"
+#: ../../include/js_strings.php:15
+msgid "Passphrase hint"
msgstr ""
-#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168
-msgid "Page Link"
+#: ../../include/js_strings.php:16
+msgid "Notice: Permissions have changed but have not yet been submitted."
msgstr ""
-#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169
-msgid "Title"
+#: ../../include/js_strings.php:17
+msgid "close all"
msgstr ""
-#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170
-msgid "Created"
+#: ../../include/js_strings.php:18
+msgid "Nothing new here"
msgstr ""
-#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171
-msgid "Edited"
+#: ../../include/js_strings.php:19
+msgid "Rate This Channel (this is public)"
msgstr ""
-#: ../../include/oembed.php:171
-msgid "Embedded content"
+#: ../../include/js_strings.php:20 ../../mod/rate.php:156
+msgid "Rating"
msgstr ""
-#: ../../include/oembed.php:180
-msgid "Embedding disabled"
+#: ../../include/js_strings.php:21
+msgid "Describe (optional)"
msgstr ""
-#: ../../include/photos.php:15 ../../include/attach.php:137
-#: ../../include/attach.php:184 ../../include/attach.php:247
-#: ../../include/attach.php:261 ../../include/attach.php:301
-#: ../../include/attach.php:315 ../../include/attach.php:339
-#: ../../include/attach.php:532 ../../include/attach.php:606
-#: ../../include/items.php:4063 ../../include/chat.php:116
-#: ../../mod/setup.php:207 ../../mod/register.php:72 ../../mod/network.php:12
-#: ../../mod/achievements.php:30 ../../mod/authtest.php:13
-#: ../../mod/suggest.php:26 ../../mod/api.php:26 ../../mod/api.php:31
-#: ../../mod/events.php:199 ../../mod/blocks.php:67 ../../mod/blocks.php:75
-#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/block.php:22
-#: ../../mod/block.php:72 ../../mod/webpages.php:67 ../../mod/mitem.php:106
-#: ../../mod/delegate.php:6 ../../mod/channel.php:90 ../../mod/channel.php:201
-#: ../../mod/channel.php:244 ../../mod/regmod.php:17 ../../mod/chat.php:90
-#: ../../mod/chat.php:95 ../../mod/common.php:35 ../../mod/item.php:195
-#: ../../mod/item.php:203 ../../mod/item.php:931 ../../mod/connections.php:169
-#: ../../mod/editblock.php:65 ../../mod/settings.php:554
-#: ../../mod/photos.php:68 ../../mod/poke.php:128 ../../mod/manage.php:6
-#: ../../mod/bookmarks.php:46 ../../mod/editpost.php:13 ../../mod/group.php:9
-#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89
-#: ../../mod/sources.php:66 ../../mod/pdledit.php:21
-#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86
-#: ../../mod/editwebpage.php:118 ../../mod/profile_photo.php:264
-#: ../../mod/profile_photo.php:277 ../../mod/fsuggest.php:78
-#: ../../mod/like.php:166 ../../mod/viewsrc.php:14 ../../mod/invite.php:13
-#: ../../mod/invite.php:104 ../../mod/filestorage.php:18
-#: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87
-#: ../../mod/filestorage.php:114 ../../mod/locs.php:77 ../../mod/thing.php:247
-#: ../../mod/thing.php:264 ../../mod/thing.php:299 ../../mod/layouts.php:67
-#: ../../mod/layouts.php:74 ../../mod/layouts.php:85
-#: ../../mod/connedit.php:321 ../../mod/menu.php:61
-#: ../../mod/notifications.php:66 ../../mod/appman.php:66
-#: ../../mod/mood.php:112 ../../mod/mail.php:114
-#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
-#: ../../mod/message.php:16 ../../mod/new_channel.php:68
-#: ../../mod/new_channel.php:99 ../../mod/rate.php:101 ../../mod/page.php:28
-#: ../../mod/page.php:78 ../../mod/profiles.php:188 ../../mod/profiles.php:576
-#: ../../mod/service_limits.php:7 ../../mod/sharedwithme.php:7
-#: ../../index.php:190 ../../index.php:390
-msgid "Permission denied."
+#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668
+#: ../../mod/settings.php:582 ../../mod/settings.php:684
+#: ../../mod/settings.php:710 ../../mod/settings.php:738
+#: ../../mod/settings.php:761 ../../mod/settings.php:843
+#: ../../mod/settings.php:1039 ../../mod/xchan.php:11 ../../mod/connect.php:93
+#: ../../mod/thing.php:275 ../../mod/thing.php:318 ../../mod/events.php:656
+#: ../../mod/group.php:81 ../../mod/setup.php:313 ../../mod/setup.php:358
+#: ../../mod/photos.php:565 ../../mod/photos.php:642 ../../mod/photos.php:929
+#: ../../mod/photos.php:969 ../../mod/photos.php:1087 ../../mod/pdledit.php:58
+#: ../../mod/import.php:504 ../../mod/chat.php:177 ../../mod/chat.php:211
+#: ../../mod/rate.php:167 ../../mod/invite.php:142 ../../mod/locs.php:105
+#: ../../mod/sources.php:104 ../../mod/sources.php:138
+#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108
+#: ../../mod/poke.php:166 ../../mod/profiles.php:667 ../../mod/admin.php:446
+#: ../../mod/admin.php:810 ../../mod/admin.php:946 ../../mod/admin.php:1077
+#: ../../mod/admin.php:1271 ../../mod/admin.php:1356 ../../mod/mood.php:134
+#: ../../mod/connedit.php:679 ../../mod/mail.php:355 ../../mod/appman.php:99
+#: ../../mod/poll.php:68 ../../mod/bulksetclose.php:24
+#: ../../view/theme/apw/php/config.php:256
+#: ../../view/theme/redbasic/php/config.php:97 ../../wppost/wppost.php:104
+msgid "Submit"
msgstr ""
-#: ../../include/photos.php:105
+#: ../../include/js_strings.php:23
+msgid "Please enter a link URL"
+msgstr ""
+
+#: ../../include/js_strings.php:25
+msgid "timeago.prefixAgo"
+msgstr ""
+
+#: ../../include/js_strings.php:26
+msgid "timeago.prefixFromNow"
+msgstr ""
+
+#: ../../include/js_strings.php:27
+msgid "ago"
+msgstr ""
+
+#: ../../include/js_strings.php:28
+msgid "from now"
+msgstr ""
+
+#: ../../include/js_strings.php:29
+msgid "less than a minute"
+msgstr ""
+
+#: ../../include/js_strings.php:30
+msgid "about a minute"
+msgstr ""
+
+#: ../../include/js_strings.php:31
#, php-format
-msgid "Image exceeds website size limit of %lu bytes"
+msgid "%d minutes"
msgstr ""
-#: ../../include/photos.php:112
-msgid "Image file is empty."
+#: ../../include/js_strings.php:32
+msgid "about an hour"
msgstr ""
-#: ../../include/photos.php:141 ../../mod/profile_photo.php:217
-msgid "Unable to process image"
+#: ../../include/js_strings.php:33
+#, php-format
+msgid "about %d hours"
msgstr ""
-#: ../../include/photos.php:213
-msgid "Photo storage failed."
+#: ../../include/js_strings.php:34
+msgid "a day"
msgstr ""
-#: ../../include/photos.php:355 ../../include/conversation.php:1566
-msgid "Photo Albums"
+#: ../../include/js_strings.php:35
+#, php-format
+msgid "%d days"
msgstr ""
-#: ../../include/photos.php:359
-msgid "Upload New Photos"
+#: ../../include/js_strings.php:36
+msgid "about a month"
msgstr ""
-#: ../../include/api.php:1084
-msgid "Public Timeline"
+#: ../../include/js_strings.php:37
+#, php-format
+msgid "%d months"
msgstr ""
-#: ../../include/bb2diaspora.php:366
-msgid "Attachments:"
+#: ../../include/js_strings.php:38
+msgid "about a year"
msgstr ""
-#: ../../include/bb2diaspora.php:445 ../../include/event.php:11
-msgid "l F d, Y \\@ g:i A"
+#: ../../include/js_strings.php:39
+#, php-format
+msgid "%d years"
msgstr ""
-#: ../../include/bb2diaspora.php:447
-msgid "Redmatrix event notification:"
+#: ../../include/js_strings.php:40
+msgid " "
msgstr ""
-#: ../../include/bb2diaspora.php:451 ../../include/event.php:20
-msgid "Starts:"
+#: ../../include/js_strings.php:41
+msgid "timeago.numbers"
msgstr ""
-#: ../../include/bb2diaspora.php:459 ../../include/event.php:30
-msgid "Finishes:"
+#: ../../include/RedDAV/RedBrowser.php:107
+#: ../../include/RedDAV/RedBrowser.php:268
+msgid "parent"
msgstr ""
-#: ../../include/bb2diaspora.php:467 ../../include/event.php:40
-#: ../../include/identity.php:894 ../../mod/events.php:595
-#: ../../mod/directory.php:204
-msgid "Location:"
+#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2468
+msgid "Collection"
msgstr ""
-#: ../../include/security.php:357
-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/RedDAV/RedBrowser.php:134
+msgid "Principal"
+msgstr ""
+
+#: ../../include/RedDAV/RedBrowser.php:137
+msgid "Addressbook"
+msgstr ""
+
+#: ../../include/RedDAV/RedBrowser.php:140
+msgid "Calendar"
+msgstr ""
+
+#: ../../include/RedDAV/RedBrowser.php:143
+msgid "Schedule Inbox"
msgstr ""
-#: ../../include/diaspora.php:1982 ../../include/conversation.php:164
-#: ../../mod/like.php:348
+#: ../../include/RedDAV/RedBrowser.php:146
+msgid "Schedule Outbox"
+msgstr ""
+
+#: ../../include/RedDAV/RedBrowser.php:227
#, php-format
-msgid "%1$s likes %2$s's %3$s"
+msgid "%1$s used"
+msgstr ""
+
+#: ../../include/RedDAV/RedBrowser.php:232
+#, php-format
+msgid "%1$s used of %2$s (%3$s&#37;)"
+msgstr ""
+
+#: ../../include/RedDAV/RedBrowser.php:253
+msgid "Total"
+msgstr ""
+
+#: ../../include/RedDAV/RedBrowser.php:255
+msgid "Shared"
+msgstr ""
+
+#: ../../include/RedDAV/RedBrowser.php:256
+#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/menu.php:109
+#: ../../mod/webpages.php:173 ../../mod/mitem.php:169
+#: ../../mod/new_channel.php:121
+msgid "Create"
+msgstr ""
+
+#: ../../include/RedDAV/RedBrowser.php:257
+#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/profile_photo.php:362
+#: ../../mod/photos.php:706 ../../mod/photos.php:1236
+msgid "Upload"
+msgstr ""
+
+#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/settings.php:584
+#: ../../mod/settings.php:610 ../../mod/admin.php:953
+#: ../../mod/sharedwithme.php:95
+msgid "Name"
+msgstr ""
+
+#: ../../include/RedDAV/RedBrowser.php:265
+msgid "Type"
+msgstr ""
+
+#: ../../include/RedDAV/RedBrowser.php:266 ../../mod/sharedwithme.php:97
+msgid "Size"
+msgstr ""
+
+#: ../../include/RedDAV/RedBrowser.php:267 ../../mod/sharedwithme.php:98
+msgid "Last Modified"
+msgstr ""
+
+#: ../../include/RedDAV/RedBrowser.php:305
+msgid "Create new folder"
+msgstr ""
+
+#: ../../include/RedDAV/RedBrowser.php:307
+msgid "Upload file"
+msgstr ""
+
+#: ../../include/bookmarks.php:35
+#, php-format
+msgid "%1$s's bookmarks"
+msgstr ""
+
+#: ../../include/network.php:632
+msgid "view full size"
msgstr ""
#: ../../include/features.php:38
@@ -1052,2419 +1337,2201 @@ msgstr ""
msgid "Change channels directly from within the navigation dropdown menu"
msgstr ""
-#: ../../include/features.php:50
-msgid "Extended Identity Sharing"
+#: ../../include/features.php:47
+msgid "Photo Location"
msgstr ""
-#: ../../include/features.php:50
-msgid ""
-"Share your identity with all websites on the internet. When disabled, "
-"identity is only shared with sites in the matrix."
+#: ../../include/features.php:47
+msgid "If location data is available on uploaded photos, link this to a map."
msgstr ""
-#: ../../include/features.php:51
+#: ../../include/features.php:49
msgid "Expert Mode"
msgstr ""
-#: ../../include/features.php:51
+#: ../../include/features.php:49
msgid "Enable Expert Mode to provide advanced configuration options"
msgstr ""
-#: ../../include/features.php:52
+#: ../../include/features.php:50
msgid "Premium Channel"
msgstr ""
-#: ../../include/features.php:52
+#: ../../include/features.php:50
msgid ""
"Allows you to set restrictions and terms on those that connect with your "
"channel"
msgstr ""
-#: ../../include/features.php:57
+#: ../../include/features.php:55
msgid "Post Composition Features"
msgstr ""
-#: ../../include/features.php:59
+#: ../../include/features.php:57
msgid "Use Markdown"
msgstr ""
-#: ../../include/features.php:59
+#: ../../include/features.php:57
msgid "Allow use of \"Markdown\" to format posts"
msgstr ""
-#: ../../include/features.php:60
+#: ../../include/features.php:58
msgid "Large Photos"
msgstr ""
-#: ../../include/features.php:60
+#: ../../include/features.php:58
msgid ""
"Include large (640px) photo thumbnails in posts. If not enabled, use small "
"(320px) photo thumbnails"
msgstr ""
-#: ../../include/features.php:61
+#: ../../include/features.php:59 ../../include/widgets.php:546
+#: ../../mod/sources.php:88
+msgid "Channel Sources"
+msgstr ""
+
+#: ../../include/features.php:59
msgid "Automatically import channel content from other channels or feeds"
msgstr ""
-#: ../../include/features.php:62
+#: ../../include/features.php:60
msgid "Even More Encryption"
msgstr ""
-#: ../../include/features.php:62
+#: ../../include/features.php:60
msgid ""
"Allow optional encryption of content end-to-end with a shared secret key"
msgstr ""
-#: ../../include/features.php:63
-msgid "Flag Adult Photos"
+#: ../../include/features.php:61
+msgid "Enable voting tools"
msgstr ""
-#: ../../include/features.php:63
-msgid "Provide photo edit option to hide adult photos from default album view"
+#: ../../include/features.php:61
+msgid "Provide a class of post which others can vote on"
msgstr ""
-#: ../../include/features.php:68
+#: ../../include/features.php:67
msgid "Network and Stream Filtering"
msgstr ""
-#: ../../include/features.php:69
+#: ../../include/features.php:68
msgid "Search by Date"
msgstr ""
-#: ../../include/features.php:69
+#: ../../include/features.php:68
msgid "Ability to select posts by date ranges"
msgstr ""
-#: ../../include/features.php:70
+#: ../../include/features.php:69
msgid "Collections Filter"
msgstr ""
-#: ../../include/features.php:70
+#: ../../include/features.php:69
msgid "Enable widget to display Network posts only from selected collections"
msgstr ""
-#: ../../include/features.php:71
+#: ../../include/features.php:70 ../../include/widgets.php:274
+msgid "Saved Searches"
+msgstr ""
+
+#: ../../include/features.php:70
msgid "Save search terms for re-use"
msgstr ""
-#: ../../include/features.php:72
+#: ../../include/features.php:71
msgid "Network Personal Tab"
msgstr ""
-#: ../../include/features.php:72
+#: ../../include/features.php:71
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr ""
-#: ../../include/features.php:73
+#: ../../include/features.php:72
msgid "Network New Tab"
msgstr ""
-#: ../../include/features.php:73
+#: ../../include/features.php:72
msgid "Enable tab to display all new Network activity"
msgstr ""
-#: ../../include/features.php:74
+#: ../../include/features.php:73
msgid "Affinity Tool"
msgstr ""
-#: ../../include/features.php:74
+#: ../../include/features.php:73
msgid "Filter stream activity by depth of relationships"
msgstr ""
-#: ../../include/features.php:75
+#: ../../include/features.php:74
msgid "Suggest Channels"
msgstr ""
-#: ../../include/features.php:75
+#: ../../include/features.php:74
msgid "Show channel suggestions"
msgstr ""
-#: ../../include/features.php:80
+#: ../../include/features.php:79
msgid "Post/Comment Tools"
msgstr ""
-#: ../../include/features.php:81
+#: ../../include/features.php:80
msgid "Tagging"
msgstr ""
-#: ../../include/features.php:81
+#: ../../include/features.php:80
msgid "Ability to tag existing posts"
msgstr ""
-#: ../../include/features.php:82
+#: ../../include/features.php:81
msgid "Post Categories"
msgstr ""
-#: ../../include/features.php:82
+#: ../../include/features.php:81
msgid "Add categories to your posts"
msgstr ""
-#: ../../include/features.php:83
+#: ../../include/features.php:82 ../../include/widgets.php:304
+#: ../../include/contact_widgets.php:57
+msgid "Saved Folders"
+msgstr ""
+
+#: ../../include/features.php:82
msgid "Ability to file posts under folders"
msgstr ""
-#: ../../include/features.php:84
+#: ../../include/features.php:83
msgid "Dislike Posts"
msgstr ""
-#: ../../include/features.php:84
+#: ../../include/features.php:83
msgid "Ability to dislike posts/comments"
msgstr ""
-#: ../../include/features.php:85
+#: ../../include/features.php:84
msgid "Star Posts"
msgstr ""
-#: ../../include/features.php:85
+#: ../../include/features.php:84
msgid "Ability to mark special posts with a star indicator"
msgstr ""
-#: ../../include/features.php:86
+#: ../../include/features.php:85
msgid "Tag Cloud"
msgstr ""
-#: ../../include/features.php:86
+#: ../../include/features.php:85
msgid "Provide a personal tag cloud on your channel page"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:106
-#: ../../include/RedDAV/RedBrowser.php:266
-msgid "parent"
+#: ../../include/widgets.php:35 ../../include/taxonomy.php:264
+#: ../../include/contact_widgets.php:92
+msgid "Categories"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:133
-msgid "Principal"
+#: ../../include/widgets.php:91 ../../include/nav.php:163
+#: ../../mod/apps.php:34
+msgid "Apps"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:136
-msgid "Addressbook"
+#: ../../include/widgets.php:92
+msgid "System"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:139
-msgid "Calendar"
+#: ../../include/widgets.php:95
+msgid "Create Personal App"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:142
-msgid "Schedule Inbox"
+#: ../../include/widgets.php:96
+msgid "Edit Personal App"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:145
-msgid "Schedule Outbox"
+#: ../../include/widgets.php:138 ../../mod/suggest.php:54
+msgid "Ignore/Hide"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:336
-#: ../../include/apps.php:387 ../../include/conversation.php:1022
-#: ../../mod/photos.php:681 ../../mod/photos.php:1100
-#: ../../mod/connedit.php:570
-msgid "Unknown"
+#: ../../include/widgets.php:143 ../../mod/connections.php:268
+msgid "Suggestions"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:225
-#, php-format
-msgid "%1$s used"
+#: ../../include/widgets.php:144
+msgid "See more..."
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:230
+#: ../../include/widgets.php:166
#, php-format
-msgid "%1$s used of %2$s (%3$s&#37;)"
-msgstr ""
-
-#: ../../include/RedDAV/RedBrowser.php:249 ../../include/apps.php:135
-#: ../../include/conversation.php:1572 ../../include/nav.php:98
-#: ../../mod/fbrowser.php:114
-msgid "Files"
+msgid "You have %1$.0f of %2$.0f allowed connections."
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:251
-msgid "Total"
+#: ../../include/widgets.php:172
+msgid "Add New Connection"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:253
-msgid "Shared"
+#: ../../include/widgets.php:173
+msgid "Enter the channel address"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:254
-#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/mitem.php:169
-#: ../../mod/menu.php:100 ../../mod/new_channel.php:121
-msgid "Create"
+#: ../../include/widgets.php:174
+msgid "Example: bob@example.com, http://example.com/barbara"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:255
-#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:706
-#: ../../mod/photos.php:1214 ../../mod/profile_photo.php:362
-msgid "Upload"
+#: ../../include/widgets.php:190
+msgid "Notes"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/settings.php:579
-#: ../../mod/settings.php:605 ../../mod/admin.php:871
-#: ../../mod/sharedwithme.php:100
-msgid "Name"
+#: ../../include/widgets.php:192 ../../include/text.php:853
+#: ../../include/text.php:865 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98
+#: ../../mod/filer.php:50 ../../mod/admin.php:1416 ../../mod/admin.php:1436
+msgid "Save"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:263
-msgid "Type"
+#: ../../include/widgets.php:266
+msgid "Remove term"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:101
-msgid "Size"
+#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60
+#: ../../include/contact_widgets.php:95
+msgid "Everything"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:265 ../../mod/sharedwithme.php:102
-msgid "Last Modified"
+#: ../../include/widgets.php:349
+msgid "Archives"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:268 ../../include/apps.php:255
-#: ../../include/conversation.php:640 ../../include/ItemObject.php:120
-#: ../../mod/settings.php:640 ../../mod/photos.php:1038
-#: ../../mod/group.php:176 ../../mod/thing.php:234 ../../mod/connedit.php:533
-#: ../../mod/admin.php:735 ../../mod/admin.php:866
-msgid "Delete"
+#: ../../include/widgets.php:427 ../../mod/connedit.php:572
+msgid "Me"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:302
-msgid "Create new folder"
+#: ../../include/widgets.php:428 ../../mod/connedit.php:573
+msgid "Family"
msgstr ""
-#: ../../include/RedDAV/RedBrowser.php:304
-msgid "Upload file"
+#: ../../include/widgets.php:429 ../../include/identity.php:394
+#: ../../include/identity.php:395 ../../include/identity.php:402
+#: ../../include/profile_selectors.php:80 ../../mod/settings.php:339
+#: ../../mod/settings.php:343 ../../mod/settings.php:344
+#: ../../mod/settings.php:347 ../../mod/settings.php:358
+#: ../../mod/connedit.php:574
+msgid "Friends"
msgstr ""
-#: ../../include/bookmarks.php:35
-#, php-format
-msgid "%1$s's bookmarks"
+#: ../../include/widgets.php:430 ../../mod/connedit.php:575
+msgid "Acquaintances"
msgstr ""
-#: ../../include/contact_selectors.php:56
-msgid "Frequently"
+#: ../../include/widgets.php:431 ../../mod/connections.php:231
+#: ../../mod/connections.php:246 ../../mod/connedit.php:576
+msgid "All"
msgstr ""
-#: ../../include/contact_selectors.php:57
-msgid "Hourly"
+#: ../../include/widgets.php:450
+msgid "Refresh"
msgstr ""
-#: ../../include/contact_selectors.php:58
-msgid "Twice daily"
+#: ../../include/widgets.php:485
+msgid "Account settings"
msgstr ""
-#: ../../include/contact_selectors.php:59
-msgid "Daily"
+#: ../../include/widgets.php:491
+msgid "Channel settings"
msgstr ""
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
+#: ../../include/widgets.php:497
+msgid "Additional features"
msgstr ""
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
+#: ../../include/widgets.php:503
+msgid "Feature/Addon settings"
msgstr ""
-#: ../../include/contact_selectors.php:76
-msgid "Friendica"
+#: ../../include/widgets.php:509
+msgid "Display settings"
msgstr ""
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
+#: ../../include/widgets.php:515
+msgid "Connected apps"
msgstr ""
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
+#: ../../include/widgets.php:521
+msgid "Export channel"
msgstr ""
-#: ../../include/contact_selectors.php:79 ../../mod/admin.php:731
-#: ../../mod/admin.php:740 ../../boot.php:1552
-msgid "Email"
+#: ../../include/widgets.php:530 ../../mod/connedit.php:653
+msgid "Connection Default Permissions"
msgstr ""
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
+#: ../../include/widgets.php:538
+msgid "Premium Channel Settings"
msgstr ""
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
+#: ../../include/widgets.php:554 ../../include/nav.php:208
+#: ../../include/apps.php:134 ../../mod/admin.php:1038
+#: ../../mod/admin.php:1238
+msgid "Settings"
msgstr ""
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
+#: ../../include/widgets.php:567 ../../mod/message.php:31
+#: ../../mod/mail.php:128
+msgid "Messages"
msgstr ""
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
+#: ../../include/widgets.php:570
+msgid "Check Mail"
msgstr ""
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
+#: ../../include/widgets.php:575 ../../include/nav.php:199
+msgid "New Message"
msgstr ""
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
+#: ../../include/widgets.php:650
+msgid "Chat Rooms"
msgstr ""
-#: ../../include/apps.php:128
-msgid "Site Admin"
+#: ../../include/widgets.php:670
+msgid "Bookmarked Chatrooms"
msgstr ""
-#: ../../include/apps.php:129 ../../include/conversation.php:1598
-#: ../../include/nav.php:109
-msgid "Bookmarks"
+#: ../../include/widgets.php:690
+msgid "Suggested Chatrooms"
msgstr ""
-#: ../../include/apps.php:130
-msgid "Address Book"
+#: ../../include/widgets.php:817 ../../include/widgets.php:875
+msgid "photo/image"
msgstr ""
-#: ../../include/apps.php:131 ../../include/nav.php:117 ../../boot.php:1550
-msgid "Login"
+#: ../../include/widgets.php:970 ../../include/widgets.php:972
+msgid "Rate Me"
msgstr ""
-#: ../../include/apps.php:132 ../../include/nav.php:208
-#: ../../mod/manage.php:150
-msgid "Channel Manager"
+#: ../../include/widgets.php:976
+msgid "View Ratings"
msgstr ""
-#: ../../include/apps.php:133 ../../include/nav.php:182
-msgid "Matrix"
+#: ../../include/widgets.php:987
+msgid "Public Hubs"
msgstr ""
-#: ../../include/apps.php:136 ../../include/conversation.php:1609
-#: ../../include/nav.php:113 ../../mod/webpages.php:160
-msgid "Webpages"
+#: ../../include/enotify.php:58
+msgid "Red Matrix Notification"
msgstr ""
-#: ../../include/apps.php:137 ../../include/nav.php:185
-msgid "Channel Home"
+#: ../../include/enotify.php:59
+msgid "redmatrix"
msgstr ""
-#: ../../include/apps.php:138 ../../include/identity.php:1129
-#: ../../include/identity.php:1246 ../../mod/profperm.php:112
-msgid "Profile"
+#: ../../include/enotify.php:61
+msgid "Thank You,"
msgstr ""
-#: ../../include/apps.php:139 ../../include/conversation.php:1563
-#: ../../include/nav.php:97 ../../mod/fbrowser.php:25
-msgid "Photos"
+#: ../../include/enotify.php:63
+#, php-format
+msgid "%s Administrator"
msgstr ""
-#: ../../include/apps.php:140 ../../include/nav.php:204
-#: ../../mod/events.php:446
-msgid "Events"
+#: ../../include/enotify.php:96
+#, php-format
+msgid "%s <!item_type!>"
msgstr ""
-#: ../../include/apps.php:141 ../../include/nav.php:168
-#: ../../mod/directory.php:334
-msgid "Directory"
+#: ../../include/enotify.php:100
+#, php-format
+msgid "[Red:Notify] New mail received at %s"
msgstr ""
-#: ../../include/apps.php:142 ../../include/nav.php:160 ../../mod/help.php:67
-#: ../../mod/help.php:72
-msgid "Help"
+#: ../../include/enotify.php:102
+#, php-format
+msgid "%1$s, %2$s sent you a new private message at %3$s."
msgstr ""
-#: ../../include/apps.php:143 ../../include/nav.php:196
-msgid "Mail"
+#: ../../include/enotify.php:103
+#, php-format
+msgid "%1$s sent you %2$s."
msgstr ""
-#: ../../include/apps.php:144 ../../mod/mood.php:131
-msgid "Mood"
+#: ../../include/enotify.php:103
+msgid "a private message"
msgstr ""
-#: ../../include/apps.php:145 ../../include/conversation.php:945
-msgid "Poke"
+#: ../../include/enotify.php:104
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
msgstr ""
-#: ../../include/apps.php:146 ../../include/nav.php:103
-msgid "Chat"
+#: ../../include/enotify.php:158
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
msgstr ""
-#: ../../include/apps.php:148
-msgid "Probe"
+#: ../../include/enotify.php:166
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
msgstr ""
-#: ../../include/apps.php:149
-msgid "Suggest"
+#: ../../include/enotify.php:175
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
msgstr ""
-#: ../../include/apps.php:150
-msgid "Random Channel"
+#: ../../include/enotify.php:186
+#, php-format
+msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
msgstr ""
-#: ../../include/apps.php:151
-msgid "Invite"
+#: ../../include/enotify.php:187
+#, php-format
+msgid "%1$s, %2$s commented on an item/conversation you have been following."
msgstr ""
-#: ../../include/apps.php:152
-msgid "Features"
+#: ../../include/enotify.php:190 ../../include/enotify.php:205
+#: ../../include/enotify.php:231 ../../include/enotify.php:249
+#: ../../include/enotify.php:263
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
msgstr ""
-#: ../../include/apps.php:153
-msgid "Language"
+#: ../../include/enotify.php:196
+#, php-format
+msgid "[Red:Notify] %s posted to your profile wall"
msgstr ""
-#: ../../include/apps.php:154
-msgid "Post"
+#: ../../include/enotify.php:198
+#, php-format
+msgid "%1$s, %2$s posted to your profile wall at %3$s"
msgstr ""
-#: ../../include/apps.php:155
-msgid "Profile Photo"
+#: ../../include/enotify.php:200
+#, php-format
+msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
msgstr ""
-#: ../../include/apps.php:247 ../../mod/settings.php:81
-#: ../../mod/settings.php:603
-msgid "Update"
+#: ../../include/enotify.php:224
+#, php-format
+msgid "[Red:Notify] %s tagged you"
msgstr ""
-#: ../../include/apps.php:247
-msgid "Install"
+#: ../../include/enotify.php:225
+#, php-format
+msgid "%1$s, %2$s tagged you at %3$s"
msgstr ""
-#: ../../include/apps.php:252
-msgid "Purchase"
+#: ../../include/enotify.php:226
+#, php-format
+msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
msgstr ""
-#: ../../include/comanche.php:35 ../../mod/admin.php:357
-#: ../../view/theme/apw/php/config.php:185
-msgid "Default"
+#: ../../include/enotify.php:238
+#, php-format
+msgid "[Red:Notify] %1$s poked you"
msgstr ""
-#: ../../include/acl_selectors.php:240
-msgid "Visible to your default audience"
+#: ../../include/enotify.php:239
+#, php-format
+msgid "%1$s, %2$s poked you at %3$s"
msgstr ""
-#: ../../include/acl_selectors.php:241
-msgid "Show"
+#: ../../include/enotify.php:240
+#, php-format
+msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
msgstr ""
-#: ../../include/acl_selectors.php:242
-msgid "Don't show"
+#: ../../include/enotify.php:256
+#, php-format
+msgid "[Red:Notify] %s tagged your post"
msgstr ""
-#: ../../include/acl_selectors.php:248 ../../mod/events.php:601
-#: ../../mod/chat.php:209 ../../mod/photos.php:559 ../../mod/photos.php:918
-#: ../../mod/filestorage.php:146
-msgid "Permissions"
+#: ../../include/enotify.php:257
+#, php-format
+msgid "%1$s, %2$s tagged your post at %3$s"
msgstr ""
-#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:320
-#: ../../mod/photos.php:1117
-msgid "Close"
+#: ../../include/enotify.php:258
+#, php-format
+msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]"
msgstr ""
-#: ../../include/activities.php:39
-msgid " and "
+#: ../../include/enotify.php:270
+msgid "[Red:Notify] Introduction received"
msgstr ""
-#: ../../include/activities.php:47
-msgid "public profile"
+#: ../../include/enotify.php:271
+#, php-format
+msgid "%1$s, you've received an new connection request from '%2$s' at %3$s"
msgstr ""
-#: ../../include/activities.php:56
+#: ../../include/enotify.php:272
#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgid ""
+"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s."
msgstr ""
-#: ../../include/activities.php:57
+#: ../../include/enotify.php:276 ../../include/enotify.php:295
#, php-format
-msgid "Visit %1$s's %2$s"
+msgid "You may visit their profile at %s"
msgstr ""
-#: ../../include/activities.php:60
+#: ../../include/enotify.php:278
#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
+msgid "Please visit %s to approve or reject the connection request."
msgstr ""
-#: ../../include/conversation.php:126 ../../mod/like.php:101
-msgid "channel"
+#: ../../include/enotify.php:285
+msgid "[Red:Notify] Friend suggestion received"
msgstr ""
-#: ../../include/conversation.php:167 ../../mod/like.php:350
+#: ../../include/enotify.php:286
#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
+msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
msgstr ""
-#: ../../include/conversation.php:204
+#: ../../include/enotify.php:287
#, php-format
-msgid "%1$s is now connected with %2$s"
+msgid ""
+"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s."
msgstr ""
-#: ../../include/conversation.php:239
-#, php-format
-msgid "%1$s poked %2$s"
+#: ../../include/enotify.php:293
+msgid "Name:"
+msgstr ""
+
+#: ../../include/enotify.php:294
+msgid "Photo:"
msgstr ""
-#: ../../include/conversation.php:261 ../../mod/mood.php:63
+#: ../../include/enotify.php:297
#, php-format
-msgctxt "mood"
-msgid "%1$s is %2$s"
+msgid "Please visit %s to approve or reject the suggestion."
msgstr ""
-#: ../../include/conversation.php:639 ../../include/ItemObject.php:126
-msgid "Select"
+#: ../../include/enotify.php:508
+msgid "[Red:Notify]"
msgstr ""
-#: ../../include/conversation.php:647 ../../include/ItemObject.php:89
-msgid "Private Message"
+#: ../../include/contact_selectors.php:56
+msgid "Frequently"
msgstr ""
-#: ../../include/conversation.php:654 ../../include/ItemObject.php:194
-msgid "Message signature validated"
+#: ../../include/contact_selectors.php:57
+msgid "Hourly"
msgstr ""
-#: ../../include/conversation.php:655 ../../include/ItemObject.php:195
-msgid "Message signature incorrect"
+#: ../../include/contact_selectors.php:58
+msgid "Twice daily"
msgstr ""
-#: ../../include/conversation.php:675
-#, php-format
-msgid "View %s's profile @ %s"
+#: ../../include/contact_selectors.php:59
+msgid "Daily"
msgstr ""
-#: ../../include/conversation.php:690
-msgid "Categories:"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
msgstr ""
-#: ../../include/conversation.php:691
-msgid "Filed under:"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
msgstr ""
-#: ../../include/conversation.php:699 ../../include/ItemObject.php:274
-#, php-format
-msgid " from %s"
+#: ../../include/contact_selectors.php:76
+msgid "Friendica"
msgstr ""
-#: ../../include/conversation.php:702 ../../include/ItemObject.php:277
-#, php-format
-msgid "last edited: %s"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
msgstr ""
-#: ../../include/conversation.php:703 ../../include/ItemObject.php:278
-#, php-format
-msgid "Expires: %s"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
msgstr ""
-#: ../../include/conversation.php:718
-msgid "View in context"
+#: ../../include/contact_selectors.php:79 ../../mod/admin.php:813
+#: ../../mod/admin.php:822 ../../mod/id.php:15 ../../mod/id.php:16
+#: ../../boot.php:1542
+msgid "Email"
msgstr ""
-#: ../../include/conversation.php:720 ../../include/conversation.php:1175
-#: ../../include/ItemObject.php:325 ../../mod/editblock.php:152
-#: ../../mod/photos.php:946 ../../mod/editpost.php:121
-#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:183
-#: ../../mod/mail.php:241 ../../mod/mail.php:356
-msgid "Please wait"
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
msgstr ""
-#: ../../include/conversation.php:840
-msgid "remove"
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
msgstr ""
-#: ../../include/conversation.php:844 ../../include/nav.php:249
-msgid "Loading..."
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
msgstr ""
-#: ../../include/conversation.php:845
-msgid "Delete Selected Items"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
msgstr ""
-#: ../../include/conversation.php:936
-msgid "View Source"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
msgstr ""
-#: ../../include/conversation.php:937
-msgid "Follow Thread"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
msgstr ""
-#: ../../include/conversation.php:938
-msgid "View Status"
+#: ../../include/message.php:18
+msgid "No recipient provided."
msgstr ""
-#: ../../include/conversation.php:939 ../../include/nav.php:91
-#: ../../mod/connedit.php:484 ../../mod/connedit.php:634
-msgid "View Profile"
+#: ../../include/message.php:23
+msgid "[no subject]"
msgstr ""
-#: ../../include/conversation.php:940
-msgid "View Photos"
+#: ../../include/message.php:45
+msgid "Unable to determine sender."
msgstr ""
-#: ../../include/conversation.php:941
-msgid "Matrix Activity"
+#: ../../include/message.php:200
+msgid "Stored post could not be verified."
msgstr ""
-#: ../../include/conversation.php:943
-msgid "Edit Contact"
+#: ../../include/follow.php:28
+msgid "Channel is blocked on this site."
msgstr ""
-#: ../../include/conversation.php:944
-msgid "Send PM"
+#: ../../include/follow.php:33
+msgid "Channel location missing."
msgstr ""
-#: ../../include/conversation.php:1043
-#, php-format
-msgid "%s likes this."
+#: ../../include/follow.php:83
+msgid "Response from remote channel was incomplete."
msgstr ""
-#: ../../include/conversation.php:1043
-#, php-format
-msgid "%s doesn't like this."
+#: ../../include/follow.php:100
+msgid "Channel was deleted and no longer exists."
msgstr ""
-#: ../../include/conversation.php:1047
-#, php-format
-msgid "<span %1$s>%2$d people</span> like this."
-msgid_plural "<span %1$s>%2$d people</span> like this."
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/follow.php:135 ../../include/follow.php:197
+msgid "Protocol disabled."
+msgstr ""
-#: ../../include/conversation.php:1049
-#, php-format
-msgid "<span %1$s>%2$d people</span> don't like this."
-msgid_plural "<span %1$s>%2$d people</span> don't like this."
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/follow.php:170
+msgid "Channel discovery failed."
+msgstr ""
-#: ../../include/conversation.php:1055
-msgid "and"
+#: ../../include/follow.php:186
+msgid "local account not found."
msgstr ""
-#: ../../include/conversation.php:1058
-#, php-format
-msgid ", and %d other people"
-msgid_plural ", and %d other people"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/follow.php:215
+msgid "Cannot connect to yourself."
+msgstr ""
-#: ../../include/conversation.php:1059
-#, php-format
-msgid "%s like this."
+#: ../../include/ItemObject.php:130
+msgid "Save to Folder"
msgstr ""
-#: ../../include/conversation.php:1059
-#, php-format
-msgid "%s don't like this."
+#: ../../include/ItemObject.php:151
+msgid "I will attend"
msgstr ""
-#: ../../include/conversation.php:1116
-msgid "Visible to <strong>everybody</strong>"
+#: ../../include/ItemObject.php:151
+msgid "I will not attend"
msgstr ""
-#: ../../include/conversation.php:1117 ../../mod/mail.php:174
-#: ../../mod/mail.php:289
-msgid "Please enter a link URL:"
+#: ../../include/ItemObject.php:151
+msgid "I might attend"
msgstr ""
-#: ../../include/conversation.php:1118
-msgid "Please enter a video link/URL:"
+#: ../../include/ItemObject.php:161
+msgid "I agree"
msgstr ""
-#: ../../include/conversation.php:1119
-msgid "Please enter an audio link/URL:"
+#: ../../include/ItemObject.php:161
+msgid "I disagree"
msgstr ""
-#: ../../include/conversation.php:1120
-msgid "Tag term:"
+#: ../../include/ItemObject.php:161
+msgid "I abstain"
msgstr ""
-#: ../../include/conversation.php:1121 ../../mod/filer.php:49
-msgid "Save to Folder:"
+#: ../../include/ItemObject.php:212
+msgid "Add Star"
msgstr ""
-#: ../../include/conversation.php:1122
-msgid "Where are you right now?"
+#: ../../include/ItemObject.php:213
+msgid "Remove Star"
msgstr ""
-#: ../../include/conversation.php:1123 ../../mod/editpost.php:52
-#: ../../mod/mail.php:175 ../../mod/mail.php:290
-msgid "Expires YYYY-MM-DD HH:MM"
+#: ../../include/ItemObject.php:214
+msgid "Toggle Star Status"
msgstr ""
-#: ../../include/conversation.php:1150 ../../mod/editblock.php:198
-#: ../../mod/photos.php:945 ../../mod/editlayout.php:193
-#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168
-msgid "Share"
+#: ../../include/ItemObject.php:218
+msgid "starred"
msgstr ""
-#: ../../include/conversation.php:1152 ../../mod/editwebpage.php:170
-msgid "Page link title"
+#: ../../include/ItemObject.php:236
+msgid "Add Tag"
msgstr ""
-#: ../../include/conversation.php:1155
-msgid "Post as"
+#: ../../include/ItemObject.php:254 ../../mod/photos.php:947
+msgid "I like this (toggle)"
msgstr ""
-#: ../../include/conversation.php:1156 ../../mod/editblock.php:144
-#: ../../mod/editpost.php:113 ../../mod/editlayout.php:140
-#: ../../mod/editwebpage.php:175 ../../mod/mail.php:238 ../../mod/mail.php:352
-msgid "Upload photo"
+#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:310
+msgid "like"
msgstr ""
-#: ../../include/conversation.php:1157
-msgid "upload photo"
+#: ../../include/ItemObject.php:255 ../../mod/photos.php:948
+msgid "I don't like this (toggle)"
msgstr ""
-#: ../../include/conversation.php:1158 ../../mod/editblock.php:145
-#: ../../mod/editpost.php:114 ../../mod/editlayout.php:141
-#: ../../mod/editwebpage.php:176 ../../mod/mail.php:239 ../../mod/mail.php:353
-msgid "Attach file"
+#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:311
+msgid "dislike"
msgstr ""
-#: ../../include/conversation.php:1159
-msgid "attach file"
+#: ../../include/ItemObject.php:259
+msgid "Share This"
msgstr ""
-#: ../../include/conversation.php:1160 ../../mod/editblock.php:146
-#: ../../mod/editpost.php:115 ../../mod/editlayout.php:142
-#: ../../mod/editwebpage.php:177 ../../mod/mail.php:240 ../../mod/mail.php:354
-msgid "Insert web link"
+#: ../../include/ItemObject.php:259
+msgid "share"
msgstr ""
-#: ../../include/conversation.php:1161
-msgid "web link"
+#: ../../include/ItemObject.php:276
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295
+#, php-format
+msgid "View %s's profile - %s"
msgstr ""
-#: ../../include/conversation.php:1162
-msgid "Insert video link"
+#: ../../include/ItemObject.php:298
+msgid "to"
msgstr ""
-#: ../../include/conversation.php:1163
-msgid "video link"
+#: ../../include/ItemObject.php:299
+msgid "via"
msgstr ""
-#: ../../include/conversation.php:1164
-msgid "Insert audio link"
+#: ../../include/ItemObject.php:300
+msgid "Wall-to-Wall"
msgstr ""
-#: ../../include/conversation.php:1165
-msgid "audio link"
+#: ../../include/ItemObject.php:301
+msgid "via Wall-To-Wall:"
msgstr ""
-#: ../../include/conversation.php:1166 ../../mod/editblock.php:150
-#: ../../mod/editpost.php:119 ../../mod/editlayout.php:146
-#: ../../mod/editwebpage.php:181
-msgid "Set your location"
+#: ../../include/ItemObject.php:337
+msgid "Save Bookmarks"
msgstr ""
-#: ../../include/conversation.php:1167
-msgid "set location"
+#: ../../include/ItemObject.php:338
+msgid "Add to Calendar"
msgstr ""
-#: ../../include/conversation.php:1168 ../../mod/editblock.php:151
-#: ../../mod/editpost.php:120 ../../mod/editlayout.php:147
-#: ../../mod/editwebpage.php:182
-msgid "Clear browser location"
+#: ../../include/ItemObject.php:347
+msgid "Mark all seen"
msgstr ""
-#: ../../include/conversation.php:1169
-msgid "clear location"
+#: ../../include/ItemObject.php:353 ../../mod/photos.php:1133
+msgctxt "noun"
+msgid "Likes"
msgstr ""
-#: ../../include/conversation.php:1171 ../../mod/editblock.php:164
-#: ../../mod/editpost.php:132 ../../mod/editlayout.php:159
-#: ../../mod/editwebpage.php:198
-msgid "Title (optional)"
+#: ../../include/ItemObject.php:354 ../../mod/photos.php:1134
+msgctxt "noun"
+msgid "Dislikes"
msgstr ""
-#: ../../include/conversation.php:1174 ../../mod/editblock.php:167
-#: ../../mod/editpost.php:134 ../../mod/editlayout.php:162
-#: ../../mod/editwebpage.php:200
-msgid "Categories (optional, comma-separated list)"
+#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249
+#: ../../mod/photos.php:1139
+msgid "Close"
msgstr ""
-#: ../../include/conversation.php:1176 ../../mod/editblock.php:153
-#: ../../mod/editpost.php:122 ../../mod/editlayout.php:149
-#: ../../mod/editwebpage.php:184
-msgid "Permission settings"
+#: ../../include/ItemObject.php:665 ../../mod/photos.php:966
+#: ../../mod/photos.php:1084
+msgid "This is you"
msgstr ""
-#: ../../include/conversation.php:1177
-msgid "permissions"
+#: ../../include/ItemObject.php:674
+msgid "Image"
msgstr ""
-#: ../../include/conversation.php:1184 ../../mod/editblock.php:161
-#: ../../mod/editpost.php:129 ../../mod/editlayout.php:156
-#: ../../mod/editwebpage.php:193
-msgid "Public post"
+#: ../../include/ItemObject.php:675
+msgid "Insert Link"
msgstr ""
-#: ../../include/conversation.php:1186 ../../mod/editblock.php:168
-#: ../../mod/editpost.php:135 ../../mod/editlayout.php:163
-#: ../../mod/editwebpage.php:201
-msgid "Example: bob@example.com, mary@example.com"
+#: ../../include/ItemObject.php:676
+msgid "Video"
msgstr ""
-#: ../../include/conversation.php:1199 ../../mod/editblock.php:178
-#: ../../mod/editpost.php:146 ../../mod/editlayout.php:173
-#: ../../mod/editwebpage.php:210 ../../mod/mail.php:245 ../../mod/mail.php:359
-msgid "Set expiration date"
+#: ../../include/Contact.php:124
+msgid "New window"
msgstr ""
-#: ../../include/conversation.php:1201 ../../include/ItemObject.php:641
-#: ../../mod/editpost.php:148 ../../mod/mail.php:247 ../../mod/mail.php:361
-msgid "Encrypt text"
+#: ../../include/Contact.php:125
+msgid "Open the selected location in a different window or browser tab"
msgstr ""
-#: ../../include/conversation.php:1203 ../../mod/events.php:585
-#: ../../mod/editpost.php:150
-msgid "OK"
+#: ../../include/Contact.php:215 ../../mod/admin.php:730
+#, php-format
+msgid "User '%s' deleted"
msgstr ""
-#: ../../include/conversation.php:1204 ../../mod/events.php:584
-#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117
-#: ../../mod/settings.php:578 ../../mod/settings.php:604
-#: ../../mod/editpost.php:151 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134
-msgid "Cancel"
+#: ../../include/bb2diaspora.php:373
+msgid "Attachments:"
msgstr ""
-#: ../../include/conversation.php:1448
-msgid "Discover"
+#: ../../include/bb2diaspora.php:453
+msgid "Redmatrix event notification:"
msgstr ""
-#: ../../include/conversation.php:1451
-msgid "Imported public streams"
+#: ../../include/text.php:329
+msgid "prev"
msgstr ""
-#: ../../include/conversation.php:1456
-msgid "Commented Order"
+#: ../../include/text.php:331
+msgid "first"
msgstr ""
-#: ../../include/conversation.php:1459
-msgid "Sort by Comment Date"
+#: ../../include/text.php:360
+msgid "last"
msgstr ""
-#: ../../include/conversation.php:1463
-msgid "Posted Order"
+#: ../../include/text.php:363
+msgid "next"
msgstr ""
-#: ../../include/conversation.php:1466
-msgid "Sort by Post Date"
+#: ../../include/text.php:373
+msgid "older"
msgstr ""
-#: ../../include/conversation.php:1474
-msgid "Posts that mention or involve you"
+#: ../../include/text.php:375
+msgid "newer"
msgstr ""
-#: ../../include/conversation.php:1480 ../../mod/connections.php:212
-#: ../../mod/connections.php:225 ../../mod/menu.php:80
-msgid "New"
+#: ../../include/text.php:768
+msgid "No connections"
msgstr ""
-#: ../../include/conversation.php:1483
-msgid "Activity Stream - by date"
+#: ../../include/text.php:782
+#, php-format
+msgid "%d Connection"
+msgid_plural "%d Connections"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/text.php:795 ../../mod/viewconnections.php:104
+msgid "View Connections"
msgstr ""
-#: ../../include/conversation.php:1489
-msgid "Starred"
+#: ../../include/text.php:852 ../../include/text.php:864
+#: ../../include/nav.php:165 ../../include/apps.php:147
+#: ../../mod/search.php:38
+msgid "Search"
msgstr ""
-#: ../../include/conversation.php:1492
-msgid "Favourite Posts"
+#: ../../include/text.php:928
+msgid "poke"
msgstr ""
-#: ../../include/conversation.php:1499
-msgid "Spam"
+#: ../../include/text.php:929
+msgid "ping"
msgstr ""
-#: ../../include/conversation.php:1502
-msgid "Posts flagged as SPAM"
+#: ../../include/text.php:929
+msgid "pinged"
msgstr ""
-#: ../../include/conversation.php:1542 ../../mod/admin.php:870
-msgid "Channel"
+#: ../../include/text.php:930
+msgid "prod"
msgstr ""
-#: ../../include/conversation.php:1545
-msgid "Status Messages and Posts"
+#: ../../include/text.php:930
+msgid "prodded"
msgstr ""
-#: ../../include/conversation.php:1554
-msgid "About"
+#: ../../include/text.php:931
+msgid "slap"
msgstr ""
-#: ../../include/conversation.php:1557
-msgid "Profile Details"
+#: ../../include/text.php:931
+msgid "slapped"
msgstr ""
-#: ../../include/conversation.php:1575
-msgid "Files and Storage"
+#: ../../include/text.php:932
+msgid "finger"
msgstr ""
-#: ../../include/conversation.php:1585 ../../include/conversation.php:1588
-msgid "Chatrooms"
+#: ../../include/text.php:932
+msgid "fingered"
msgstr ""
-#: ../../include/conversation.php:1601
-msgid "Saved Bookmarks"
+#: ../../include/text.php:933
+msgid "rebuff"
msgstr ""
-#: ../../include/conversation.php:1612
-msgid "Manage Webpages"
+#: ../../include/text.php:933
+msgid "rebuffed"
msgstr ""
-#: ../../include/ItemObject.php:130
-msgid "Save to Folder"
+#: ../../include/text.php:943
+msgid "happy"
msgstr ""
-#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154
-#: ../../mod/photos.php:991 ../../mod/photos.php:1003
-msgid "View all"
+#: ../../include/text.php:944
+msgid "sad"
msgstr ""
-#: ../../include/ItemObject.php:151 ../../mod/photos.php:1000
-msgctxt "noun"
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/text.php:945
+msgid "mellow"
+msgstr ""
-#: ../../include/ItemObject.php:179
-msgid "Add Star"
+#: ../../include/text.php:946
+msgid "tired"
msgstr ""
-#: ../../include/ItemObject.php:180
-msgid "Remove Star"
+#: ../../include/text.php:947
+msgid "perky"
msgstr ""
-#: ../../include/ItemObject.php:181
-msgid "Toggle Star Status"
+#: ../../include/text.php:948
+msgid "angry"
msgstr ""
-#: ../../include/ItemObject.php:185
-msgid "starred"
+#: ../../include/text.php:949
+msgid "stupified"
msgstr ""
-#: ../../include/ItemObject.php:203
-msgid "Add Tag"
+#: ../../include/text.php:950
+msgid "puzzled"
msgstr ""
-#: ../../include/ItemObject.php:221 ../../mod/photos.php:943
-msgid "I like this (toggle)"
+#: ../../include/text.php:951
+msgid "interested"
msgstr ""
-#: ../../include/ItemObject.php:222 ../../mod/photos.php:944
-msgid "I don't like this (toggle)"
+#: ../../include/text.php:952
+msgid "bitter"
msgstr ""
-#: ../../include/ItemObject.php:226
-msgid "Share This"
+#: ../../include/text.php:953
+msgid "cheerful"
msgstr ""
-#: ../../include/ItemObject.php:226
-msgid "share"
+#: ../../include/text.php:954
+msgid "alive"
msgstr ""
-#: ../../include/ItemObject.php:243
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/text.php:955
+msgid "annoyed"
+msgstr ""
-#: ../../include/ItemObject.php:256 ../../include/ItemObject.php:257
-#, php-format
-msgid "View %s's profile - %s"
+#: ../../include/text.php:956
+msgid "anxious"
msgstr ""
-#: ../../include/ItemObject.php:260
-msgid "to"
+#: ../../include/text.php:957
+msgid "cranky"
msgstr ""
-#: ../../include/ItemObject.php:261
-msgid "via"
+#: ../../include/text.php:958
+msgid "disturbed"
msgstr ""
-#: ../../include/ItemObject.php:262
-msgid "Wall-to-Wall"
+#: ../../include/text.php:959
+msgid "frustrated"
msgstr ""
-#: ../../include/ItemObject.php:263
-msgid "via Wall-To-Wall:"
+#: ../../include/text.php:960
+msgid "depressed"
msgstr ""
-#: ../../include/ItemObject.php:299
-msgid "Save Bookmarks"
+#: ../../include/text.php:961
+msgid "motivated"
msgstr ""
-#: ../../include/ItemObject.php:300
-msgid "Add to Calendar"
+#: ../../include/text.php:962
+msgid "relaxed"
msgstr ""
-#: ../../include/ItemObject.php:309
-msgid "Mark all seen"
+#: ../../include/text.php:963
+msgid "surprised"
msgstr ""
-#: ../../include/ItemObject.php:314 ../../mod/photos.php:1111
-msgctxt "noun"
-msgid "Likes"
+#: ../../include/text.php:1135
+msgid "Monday"
msgstr ""
-#: ../../include/ItemObject.php:315 ../../mod/photos.php:1112
-msgctxt "noun"
-msgid "Dislikes"
+#: ../../include/text.php:1135
+msgid "Tuesday"
msgstr ""
-#: ../../include/ItemObject.php:345 ../../include/js_strings.php:7
-msgid "[+] show all"
+#: ../../include/text.php:1135
+msgid "Wednesday"
msgstr ""
-#: ../../include/ItemObject.php:626 ../../mod/photos.php:962
-#: ../../mod/photos.php:1072
-msgid "This is you"
+#: ../../include/text.php:1135
+msgid "Thursday"
msgstr ""
-#: ../../include/ItemObject.php:628 ../../include/js_strings.php:6
-#: ../../mod/photos.php:964 ../../mod/photos.php:1074
-msgid "Comment"
+#: ../../include/text.php:1135
+msgid "Friday"
msgstr ""
-#: ../../include/ItemObject.php:629 ../../include/js_strings.php:22
-#: ../../mod/setup.php:313 ../../mod/setup.php:358 ../../mod/events.php:603
-#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/settings.php:577
-#: ../../mod/settings.php:689 ../../mod/settings.php:718
-#: ../../mod/settings.php:741 ../../mod/settings.php:823
-#: ../../mod/settings.php:1019 ../../mod/photos.php:565
-#: ../../mod/photos.php:642 ../../mod/photos.php:925 ../../mod/photos.php:965
-#: ../../mod/photos.php:1075 ../../mod/poke.php:166 ../../mod/group.php:81
-#: ../../mod/sources.php:104 ../../mod/sources.php:138
-#: ../../mod/pdledit.php:58 ../../mod/fsuggest.php:108
-#: ../../mod/invite.php:142 ../../mod/filestorage.php:155
-#: ../../mod/import.php:504 ../../mod/locs.php:105 ../../mod/thing.php:284
-#: ../../mod/thing.php:327 ../../mod/connedit.php:653 ../../mod/admin.php:416
-#: ../../mod/admin.php:728 ../../mod/admin.php:864 ../../mod/admin.php:997
-#: ../../mod/admin.php:1196 ../../mod/admin.php:1283 ../../mod/connect.php:93
-#: ../../mod/appman.php:99 ../../mod/mood.php:135 ../../mod/mail.php:355
-#: ../../mod/xchan.php:11 ../../mod/rate.php:153 ../../mod/profiles.php:667
-#: ../../mod/poll.php:68 ../../view/theme/apw/php/config.php:256
-#: ../../view/theme/redbasic/php/config.php:99
-msgid "Submit"
+#: ../../include/text.php:1135
+msgid "Saturday"
msgstr ""
-#: ../../include/ItemObject.php:630
-msgid "Bold"
+#: ../../include/text.php:1135
+msgid "Sunday"
msgstr ""
-#: ../../include/ItemObject.php:631
-msgid "Italic"
+#: ../../include/text.php:1139
+msgid "January"
msgstr ""
-#: ../../include/ItemObject.php:632
-msgid "Underline"
+#: ../../include/text.php:1139
+msgid "February"
msgstr ""
-#: ../../include/ItemObject.php:633
-msgid "Quote"
+#: ../../include/text.php:1139
+msgid "March"
msgstr ""
-#: ../../include/ItemObject.php:634
-msgid "Code"
+#: ../../include/text.php:1139
+msgid "April"
msgstr ""
-#: ../../include/ItemObject.php:635
-msgid "Image"
+#: ../../include/text.php:1139
+msgid "May"
msgstr ""
-#: ../../include/ItemObject.php:636
-msgid "Link"
+#: ../../include/text.php:1139
+msgid "June"
msgstr ""
-#: ../../include/ItemObject.php:637
-msgid "Video"
+#: ../../include/text.php:1139
+msgid "July"
msgstr ""
-#: ../../include/event.php:376
-msgid "This event has been added to your calendar."
+#: ../../include/text.php:1139
+msgid "August"
msgstr ""
-#: ../../include/message.php:18
-msgid "No recipient provided."
+#: ../../include/text.php:1139
+msgid "September"
msgstr ""
-#: ../../include/message.php:23
-msgid "[no subject]"
+#: ../../include/text.php:1139
+msgid "October"
msgstr ""
-#: ../../include/message.php:45
-msgid "Unable to determine sender."
+#: ../../include/text.php:1139
+msgid "November"
msgstr ""
-#: ../../include/message.php:200
-msgid "Stored post could not be verified."
+#: ../../include/text.php:1139
+msgid "December"
msgstr ""
-#: ../../include/attach.php:242 ../../include/attach.php:296
-msgid "Item was not found."
+#: ../../include/text.php:1225
+msgid "unknown.???"
msgstr ""
-#: ../../include/attach.php:352
-msgid "No source file."
+#: ../../include/text.php:1226
+msgid "bytes"
msgstr ""
-#: ../../include/attach.php:369
-msgid "Cannot locate file to replace"
+#: ../../include/text.php:1262
+msgid "remove category"
msgstr ""
-#: ../../include/attach.php:387
-msgid "Cannot locate file to revise/update"
+#: ../../include/text.php:1337
+msgid "remove from file"
msgstr ""
-#: ../../include/attach.php:398
-#, php-format
-msgid "File exceeds size limit of %d"
+#: ../../include/text.php:1413 ../../include/text.php:1424
+#: ../../mod/connedit.php:661
+msgid "Click to open/close"
msgstr ""
-#: ../../include/attach.php:410
-#, php-format
-msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
+#: ../../include/text.php:1580 ../../mod/events.php:444
+msgid "Link to Source"
msgstr ""
-#: ../../include/attach.php:493
-msgid "File upload failed. Possible system limit or action terminated."
+#: ../../include/text.php:1601 ../../include/text.php:1672
+msgid "default"
msgstr ""
-#: ../../include/attach.php:505
-msgid "Stored file could not be verified. Upload failed."
+#: ../../include/text.php:1609
+msgid "Page layout"
msgstr ""
-#: ../../include/attach.php:547 ../../include/attach.php:564
-msgid "Path not available."
+#: ../../include/text.php:1609
+msgid "You can create your own with the layouts tool"
msgstr ""
-#: ../../include/attach.php:611
-msgid "Empty pathname"
+#: ../../include/text.php:1650
+msgid "Page content type"
msgstr ""
-#: ../../include/attach.php:627
-msgid "duplicate filename or path"
+#: ../../include/text.php:1684
+msgid "Select an alternate language"
msgstr ""
-#: ../../include/attach.php:651
-msgid "Path not found."
+#: ../../include/text.php:1816
+msgid "activity"
msgstr ""
-#: ../../include/attach.php:702
-msgid "mkdir failed."
+#: ../../include/text.php:2111
+msgid "Design Tools"
msgstr ""
-#: ../../include/attach.php:706
-msgid "database storage failed."
+#: ../../include/text.php:2114
+msgid "Blocks"
msgstr ""
-#: ../../include/enotify.php:41
-msgid "Red Matrix Notification"
+#: ../../include/text.php:2115
+msgid "Menus"
msgstr ""
-#: ../../include/enotify.php:42
-msgid "redmatrix"
+#: ../../include/text.php:2116
+msgid "Layouts"
msgstr ""
-#: ../../include/enotify.php:44
-msgid "Thank You,"
+#: ../../include/text.php:2117
+msgid "Pages"
msgstr ""
-#: ../../include/enotify.php:46
-#, php-format
-msgid "%s Administrator"
+#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1539
+msgid "Logout"
msgstr ""
-#: ../../include/enotify.php:81
-#, php-format
-msgid "%s <!item_type!>"
+#: ../../include/nav.php:87 ../../include/nav.php:120
+msgid "End this session"
msgstr ""
-#: ../../include/enotify.php:85
-#, php-format
-msgid "[Red:Notify] New mail received at %s"
+#: ../../include/nav.php:90 ../../include/nav.php:151
+msgid "Home"
msgstr ""
-#: ../../include/enotify.php:87
-#, php-format
-msgid "%1$s, %2$s sent you a new private message at %3$s."
+#: ../../include/nav.php:90
+msgid "Your posts and conversations"
msgstr ""
-#: ../../include/enotify.php:88
-#, php-format
-msgid "%1$s sent you %2$s."
+#: ../../include/nav.php:91
+msgid "Your profile page"
msgstr ""
-#: ../../include/enotify.php:88
-msgid "a private message"
+#: ../../include/nav.php:93
+msgid "Edit Profiles"
msgstr ""
-#: ../../include/enotify.php:89
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
+#: ../../include/nav.php:93
+msgid "Manage/Edit profiles"
msgstr ""
-#: ../../include/enotify.php:144
-#, php-format
-msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
+#: ../../include/nav.php:95 ../../include/identity.php:846
+msgid "Edit Profile"
msgstr ""
-#: ../../include/enotify.php:152
-#, php-format
-msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
+#: ../../include/nav.php:95
+msgid "Edit your profile"
msgstr ""
-#: ../../include/enotify.php:161
-#, php-format
-msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
+#: ../../include/nav.php:97
+msgid "Your photos"
msgstr ""
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
+#: ../../include/nav.php:98
+msgid "Your files"
msgstr ""
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s, %2$s commented on an item/conversation you have been following."
+#: ../../include/nav.php:103 ../../include/apps.php:146
+msgid "Chat"
msgstr ""
-#: ../../include/enotify.php:176 ../../include/enotify.php:191
-#: ../../include/enotify.php:217 ../../include/enotify.php:236
-#: ../../include/enotify.php:250
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
+#: ../../include/nav.php:103
+msgid "Your chatrooms"
msgstr ""
-#: ../../include/enotify.php:182
-#, php-format
-msgid "[Red:Notify] %s posted to your profile wall"
+#: ../../include/nav.php:109
+msgid "Your bookmarks"
msgstr ""
-#: ../../include/enotify.php:184
-#, php-format
-msgid "%1$s, %2$s posted to your profile wall at %3$s"
+#: ../../include/nav.php:113
+msgid "Your webpages"
msgstr ""
-#: ../../include/enotify.php:186
-#, php-format
-msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
+#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1540
+msgid "Login"
msgstr ""
-#: ../../include/enotify.php:210
-#, php-format
-msgid "[Red:Notify] %s tagged you"
+#: ../../include/nav.php:117
+msgid "Sign in"
msgstr ""
-#: ../../include/enotify.php:211
+#: ../../include/nav.php:134
#, php-format
-msgid "%1$s, %2$s tagged you at %3$s"
+msgid "%s - click to logout"
msgstr ""
-#: ../../include/enotify.php:212
-#, php-format
-msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
+#: ../../include/nav.php:137
+msgid "Remote authentication"
msgstr ""
-#: ../../include/enotify.php:225
-#, php-format
-msgid "[Red:Notify] %1$s poked you"
+#: ../../include/nav.php:137
+msgid "Click to authenticate to your home hub"
msgstr ""
-#: ../../include/enotify.php:226
-#, php-format
-msgid "%1$s, %2$s poked you at %3$s"
+#: ../../include/nav.php:151
+msgid "Home Page"
msgstr ""
-#: ../../include/enotify.php:227
-#, php-format
-msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
+#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1516
+msgid "Register"
msgstr ""
-#: ../../include/enotify.php:243
-#, php-format
-msgid "[Red:Notify] %s tagged your post"
+#: ../../include/nav.php:155
+msgid "Create an account"
msgstr ""
-#: ../../include/enotify.php:244
-#, php-format
-msgid "%1$s, %2$s tagged your post at %3$s"
+#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67
+#: ../../mod/help.php:72
+msgid "Help"
msgstr ""
-#: ../../include/enotify.php:245
-#, php-format
-msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]"
+#: ../../include/nav.php:160
+msgid "Help and documentation"
msgstr ""
-#: ../../include/enotify.php:257
-msgid "[Red:Notify] Introduction received"
+#: ../../include/nav.php:163
+msgid "Applications, utilities, links, games"
msgstr ""
-#: ../../include/enotify.php:258
-#, php-format
-msgid "%1$s, you've received an new connection request from '%2$s' at %3$s"
+#: ../../include/nav.php:165
+msgid "Search site content"
msgstr ""
-#: ../../include/enotify.php:259
-#, php-format
-msgid ""
-"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s."
+#: ../../include/nav.php:168 ../../include/apps.php:141
+#: ../../mod/directory.php:362
+msgid "Directory"
msgstr ""
-#: ../../include/enotify.php:263 ../../include/enotify.php:282
-#, php-format
-msgid "You may visit their profile at %s"
+#: ../../include/nav.php:168
+msgid "Channel Directory"
msgstr ""
-#: ../../include/enotify.php:265
-#, php-format
-msgid "Please visit %s to approve or reject the connection request."
+#: ../../include/nav.php:180 ../../include/apps.php:133
+msgid "Matrix"
msgstr ""
-#: ../../include/enotify.php:272
-msgid "[Red:Notify] Friend suggestion received"
+#: ../../include/nav.php:180
+msgid "Your matrix"
msgstr ""
-#: ../../include/enotify.php:273
-#, php-format
-msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
+#: ../../include/nav.php:181
+msgid "Mark all matrix notifications seen"
msgstr ""
-#: ../../include/enotify.php:274
-#, php-format
-msgid ""
-"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s."
+#: ../../include/nav.php:183 ../../include/apps.php:137
+msgid "Channel Home"
msgstr ""
-#: ../../include/enotify.php:280
-msgid "Name:"
+#: ../../include/nav.php:183
+msgid "Channel home"
msgstr ""
-#: ../../include/enotify.php:281
-msgid "Photo:"
+#: ../../include/nav.php:184
+msgid "Mark all channel notifications seen"
msgstr ""
-#: ../../include/enotify.php:284
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
+#: ../../include/nav.php:187 ../../mod/connections.php:407
+msgid "Connections"
msgstr ""
-#: ../../include/enotify.php:499
-msgid "[Red:Notify]"
+#: ../../include/nav.php:190
+msgid "Notices"
msgstr ""
-#: ../../include/auth.php:130
-msgid "Logged out."
+#: ../../include/nav.php:190
+msgid "Notifications"
msgstr ""
-#: ../../include/auth.php:271
-msgid "Failed authentication"
+#: ../../include/nav.php:191
+msgid "See all notifications"
msgstr ""
-#: ../../include/auth.php:285 ../../mod/openid.php:190
-msgid "Login failed."
+#: ../../include/nav.php:192 ../../mod/notifications.php:99
+msgid "Mark all system notifications seen"
msgstr ""
-#: ../../include/network.php:613
-msgid "view full size"
+#: ../../include/nav.php:194 ../../include/apps.php:143
+msgid "Mail"
msgstr ""
-#: ../../include/contact_widgets.php:14
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/nav.php:194
+msgid "Private mail"
+msgstr ""
-#: ../../include/contact_widgets.php:19 ../../mod/admin.php:420
-msgid "Advanced"
+#: ../../include/nav.php:195
+msgid "See all private messages"
msgstr ""
-#: ../../include/contact_widgets.php:22
-msgid "Find Channels"
+#: ../../include/nav.php:196
+msgid "Mark all private messages seen"
msgstr ""
-#: ../../include/contact_widgets.php:23
-msgid "Enter name or interest"
+#: ../../include/nav.php:197
+msgid "Inbox"
msgstr ""
-#: ../../include/contact_widgets.php:24
-msgid "Connect/Follow"
+#: ../../include/nav.php:198
+msgid "Outbox"
msgstr ""
-#: ../../include/contact_widgets.php:25
-msgid "Examples: Robert Morgenstein, Fishing"
+#: ../../include/nav.php:202 ../../include/apps.php:140
+#: ../../mod/events.php:472
+msgid "Events"
msgstr ""
-#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413
-#: ../../mod/directory.php:330 ../../mod/directory.php:335
-msgid "Find"
+#: ../../include/nav.php:202
+msgid "Event Calendar"
msgstr ""
-#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59
-#: ../../mod/directory.php:334
-msgid "Channel Suggestions"
+#: ../../include/nav.php:203
+msgid "See all events"
msgstr ""
-#: ../../include/contact_widgets.php:29
-msgid "Random Profile"
+#: ../../include/nav.php:204
+msgid "Mark all events seen"
msgstr ""
-#: ../../include/contact_widgets.php:30
-msgid "Invite Friends"
+#: ../../include/nav.php:206 ../../include/apps.php:132
+#: ../../mod/manage.php:164
+msgid "Channel Manager"
msgstr ""
-#: ../../include/contact_widgets.php:32
-msgid "Advanced example: name=fred and country=iceland"
+#: ../../include/nav.php:206
+msgid "Manage Your Channels"
msgstr ""
-#: ../../include/contact_widgets.php:125
-#, php-format
-msgid "%d connection in common"
-msgid_plural "%d connections in common"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/nav.php:208
+msgid "Account/Channel Settings"
+msgstr ""
-#: ../../include/contact_widgets.php:130
-msgid "show more"
+#: ../../include/nav.php:216 ../../mod/admin.php:120
+msgid "Admin"
msgstr ""
-#: ../../include/dir_fns.php:88
-msgid "Directory Options"
+#: ../../include/nav.php:216
+msgid "Site Setup and Configuration"
msgstr ""
-#: ../../include/dir_fns.php:89
-msgid "Alphabetic"
+#: ../../include/nav.php:252
+msgid "@name, #tag, content"
msgstr ""
-#: ../../include/dir_fns.php:90
-msgid "Reverse Alphabetic"
+#: ../../include/nav.php:253
+msgid "Please wait..."
msgstr ""
-#: ../../include/dir_fns.php:91
-msgid "Newest to Oldest"
+#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243
+msgid "Tags"
msgstr ""
-#: ../../include/dir_fns.php:92
-msgid "Oldest to Newest"
+#: ../../include/taxonomy.php:287
+msgid "Keywords"
msgstr ""
-#: ../../include/dir_fns.php:93
-msgid "Public Forums Only"
+#: ../../include/taxonomy.php:308
+msgid "have"
msgstr ""
-#: ../../include/dir_fns.php:95
-msgid "Sort"
+#: ../../include/taxonomy.php:308
+msgid "has"
msgstr ""
-#: ../../include/dir_fns.php:111
-msgid "Enable Safe Search"
+#: ../../include/taxonomy.php:309
+msgid "want"
msgstr ""
-#: ../../include/dir_fns.php:113
-msgid "Disable Safe Search"
+#: ../../include/taxonomy.php:309
+msgid "wants"
msgstr ""
-#: ../../include/dir_fns.php:115
-msgid "Safe Mode"
+#: ../../include/taxonomy.php:310
+msgid "likes"
msgstr ""
-#: ../../include/group.php:26
-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/taxonomy.php:311
+msgid "dislikes"
msgstr ""
-#: ../../include/group.php:235
-msgid "Default privacy group for new contacts"
+#: ../../include/activities.php:39
+msgid " and "
msgstr ""
-#: ../../include/group.php:254 ../../mod/admin.php:740
-msgid "All Channels"
+#: ../../include/activities.php:47
+msgid "public profile"
msgstr ""
-#: ../../include/group.php:276
-msgid "edit"
+#: ../../include/activities.php:56
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr ""
-#: ../../include/group.php:298
-msgid "Collections"
+#: ../../include/activities.php:57
+#, php-format
+msgid "Visit %1$s's %2$s"
msgstr ""
-#: ../../include/group.php:299
-msgid "Edit collection"
+#: ../../include/activities.php:60
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
-#: ../../include/group.php:300
-msgid "Create a new collection"
+#: ../../include/bbcode.php:122 ../../include/bbcode.php:735
+#: ../../include/bbcode.php:738 ../../include/bbcode.php:743
+#: ../../include/bbcode.php:746 ../../include/bbcode.php:749
+#: ../../include/bbcode.php:752 ../../include/bbcode.php:757
+#: ../../include/bbcode.php:760 ../../include/bbcode.php:765
+#: ../../include/bbcode.php:768 ../../include/bbcode.php:771
+#: ../../include/bbcode.php:774
+msgid "Image/photo"
msgstr ""
-#: ../../include/group.php:301
-msgid "Channels not in any collection"
+#: ../../include/bbcode.php:161 ../../include/bbcode.php:785
+msgid "Encrypted content"
+msgstr ""
+
+#: ../../include/bbcode.php:177
+msgid "Install design element: "
+msgstr ""
+
+#: ../../include/bbcode.php:190
+msgid "QR code"
+msgstr ""
+
+#: ../../include/bbcode.php:241
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
msgstr ""
-#: ../../include/items.php:382 ../../mod/subthread.php:49
-#: ../../mod/group.php:68 ../../mod/like.php:258 ../../mod/profperm.php:23
-#: ../../index.php:389
+#: ../../include/bbcode.php:243
+msgid "post"
+msgstr ""
+
+#: ../../include/bbcode.php:485
+msgid "Different viewers will see this text differently"
+msgstr ""
+
+#: ../../include/bbcode.php:696
+msgid "$1 spoiler"
+msgstr ""
+
+#: ../../include/bbcode.php:723
+msgid "$1 wrote:"
+msgstr ""
+
+#: ../../include/items.php:399 ../../mod/like.php:270
+#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23
+#: ../../mod/bulksetclose.php:11 ../../index.php:392
msgid "Permission denied"
msgstr ""
-#: ../../include/items.php:979 ../../include/items.php:1024
+#: ../../include/items.php:1012 ../../include/items.php:1058
msgid "(Unknown)"
msgstr ""
-#: ../../include/items.php:1181
+#: ../../include/items.php:1226
msgid "Visible to anybody on the internet."
msgstr ""
-#: ../../include/items.php:1183
+#: ../../include/items.php:1228
msgid "Visible to you only."
msgstr ""
-#: ../../include/items.php:1185
+#: ../../include/items.php:1230
msgid "Visible to anybody in this network."
msgstr ""
-#: ../../include/items.php:1187
+#: ../../include/items.php:1232
msgid "Visible to anybody authenticated."
msgstr ""
-#: ../../include/items.php:1189
+#: ../../include/items.php:1234
#, php-format
msgid "Visible to anybody on %s."
msgstr ""
-#: ../../include/items.php:1191
+#: ../../include/items.php:1236
msgid "Visible to all connections."
msgstr ""
-#: ../../include/items.php:1193
+#: ../../include/items.php:1238
msgid "Visible to approved connections."
msgstr ""
-#: ../../include/items.php:1195
+#: ../../include/items.php:1240
msgid "Visible to specific connections."
msgstr ""
-#: ../../include/items.php:3993 ../../mod/display.php:32
-#: ../../mod/viewsrc.php:20 ../../mod/filestorage.php:27
-#: ../../mod/thing.php:76 ../../mod/admin.php:168 ../../mod/admin.php:901
-#: ../../mod/admin.php:1104
+#: ../../include/items.php:4051 ../../mod/thing.php:74
+#: ../../mod/display.php:36 ../../mod/filestorage.php:27
+#: ../../mod/viewsrc.php:20 ../../mod/admin.php:167 ../../mod/admin.php:984
+#: ../../mod/admin.php:1184
msgid "Item not found."
msgstr ""
-#: ../../include/items.php:4446 ../../mod/group.php:38 ../../mod/group.php:140
+#: ../../include/items.php:4124 ../../include/photos.php:26
+#: ../../include/attach.php:136 ../../include/attach.php:183
+#: ../../include/attach.php:246 ../../include/attach.php:260
+#: ../../include/attach.php:304 ../../include/attach.php:318
+#: ../../include/attach.php:343 ../../include/attach.php:539
+#: ../../include/attach.php:611 ../../include/chat.php:131
+#: ../../mod/profile.php:64 ../../mod/profile.php:72
+#: ../../mod/achievements.php:30 ../../mod/manage.php:6
+#: ../../mod/settings.php:564 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/blocks.php:69 ../../mod/blocks.php:77 ../../mod/thing.php:241
+#: ../../mod/thing.php:256 ../../mod/thing.php:290
+#: ../../mod/profile_photo.php:264 ../../mod/profile_photo.php:277
+#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/like.php:178
+#: ../../mod/events.php:219 ../../mod/group.php:9 ../../mod/setup.php:207
+#: ../../mod/common.php:35 ../../mod/connections.php:169
+#: ../../mod/photos.php:68 ../../mod/pdledit.php:21 ../../mod/authtest.php:13
+#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89
+#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/editwebpage.php:64
+#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118
+#: ../../mod/rate.php:110 ../../mod/editpost.php:13 ../../mod/invite.php:13
+#: ../../mod/invite.php:104 ../../mod/locs.php:77 ../../mod/sources.php:66
+#: ../../mod/menu.php:69 ../../mod/filestorage.php:18
+#: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88
+#: ../../mod/filestorage.php:115 ../../mod/fsuggest.php:78
+#: ../../mod/poke.php:128 ../../mod/profiles.php:188
+#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14
+#: ../../mod/webpages.php:69 ../../mod/viewconnections.php:22
+#: ../../mod/viewconnections.php:27 ../../mod/editblock.php:65
+#: ../../mod/register.php:72 ../../mod/item.php:206 ../../mod/item.php:214
+#: ../../mod/item.php:962 ../../mod/layouts.php:69 ../../mod/layouts.php:76
+#: ../../mod/layouts.php:87 ../../mod/id.php:71 ../../mod/message.php:16
+#: ../../mod/mitem.php:106 ../../mod/mood.php:111 ../../mod/connedit.php:331
+#: ../../mod/mail.php:114 ../../mod/notifications.php:66
+#: ../../mod/regmod.php:17 ../../mod/new_channel.php:68
+#: ../../mod/new_channel.php:99 ../../mod/appman.php:66
+#: ../../mod/network.php:12 ../../mod/page.php:28 ../../mod/page.php:79
+#: ../../mod/bookmarks.php:46 ../../mod/channel.php:100
+#: ../../mod/channel.php:219 ../../mod/channel.php:262
+#: ../../mod/suggest.php:26 ../../mod/service_limits.php:7
+#: ../../mod/sharedwithme.php:7 ../../index.php:190 ../../index.php:393
+msgid "Permission denied."
+msgstr ""
+
+#: ../../include/items.php:4518 ../../mod/group.php:38 ../../mod/group.php:140
+#: ../../mod/bulksetclose.php:51
msgid "Collection not found."
msgstr ""
-#: ../../include/items.php:4461
+#: ../../include/items.php:4534
msgid "Collection is empty."
msgstr ""
-#: ../../include/items.php:4468
+#: ../../include/items.php:4541
#, php-format
msgid "Collection: %s"
msgstr ""
-#: ../../include/items.php:4479
+#: ../../include/items.php:4551
#, php-format
msgid "Connection: %s"
msgstr ""
-#: ../../include/items.php:4482
+#: ../../include/items.php:4553
msgid "Connection not found."
msgstr ""
-#: ../../include/js_strings.php:5
-msgid "Delete this item?"
-msgstr ""
-
-#: ../../include/js_strings.php:8
-msgid "[-] show less"
-msgstr ""
-
-#: ../../include/js_strings.php:9
-msgid "[+] expand"
+#: ../../include/permissions.php:26
+msgid "Can view my normal stream and posts"
msgstr ""
-#: ../../include/js_strings.php:10
-msgid "[-] collapse"
+#: ../../include/permissions.php:27
+msgid "Can view my default channel profile"
msgstr ""
-#: ../../include/js_strings.php:11
-msgid "Password too short"
+#: ../../include/permissions.php:28
+msgid "Can view my photo albums"
msgstr ""
-#: ../../include/js_strings.php:12
-msgid "Passwords do not match"
+#: ../../include/permissions.php:29
+msgid "Can view my connections"
msgstr ""
-#: ../../include/js_strings.php:13 ../../mod/photos.php:39
-msgid "everybody"
+#: ../../include/permissions.php:30
+msgid "Can view my file storage"
msgstr ""
-#: ../../include/js_strings.php:14
-msgid "Secret Passphrase"
+#: ../../include/permissions.php:31
+msgid "Can view my webpages"
msgstr ""
-#: ../../include/js_strings.php:15
-msgid "Passphrase hint"
+#: ../../include/permissions.php:34
+msgid "Can send me their channel stream and posts"
msgstr ""
-#: ../../include/js_strings.php:16
-msgid "Notice: Permissions have changed but have not yet been submitted."
+#: ../../include/permissions.php:35
+msgid "Can post on my channel page (\"wall\")"
msgstr ""
-#: ../../include/js_strings.php:17
-msgid "close all"
+#: ../../include/permissions.php:36
+msgid "Can comment on or like my posts"
msgstr ""
-#: ../../include/js_strings.php:18
-msgid "Nothing new here"
+#: ../../include/permissions.php:37
+msgid "Can send me private mail messages"
msgstr ""
-#: ../../include/js_strings.php:19
-msgid "Rate This Channel (this is public)"
+#: ../../include/permissions.php:38
+msgid "Can post photos to my photo albums"
msgstr ""
-#: ../../include/js_strings.php:20 ../../mod/rate.php:144
-msgid "Rating"
+#: ../../include/permissions.php:39
+msgid "Can like/dislike stuff"
msgstr ""
-#: ../../include/js_strings.php:21
-msgid "Describe (optional)"
+#: ../../include/permissions.php:39
+msgid "Profiles and things other than posts/comments"
msgstr ""
-#: ../../include/js_strings.php:24
-msgid "timeago.prefixAgo"
+#: ../../include/permissions.php:41
+msgid "Can forward to all my channel contacts via post @mentions"
msgstr ""
-#: ../../include/js_strings.php:25
-msgid "timeago.prefixFromNow"
+#: ../../include/permissions.php:41
+msgid "Advanced - useful for creating group forum channels"
msgstr ""
-#: ../../include/js_strings.php:26
-msgid "ago"
+#: ../../include/permissions.php:42
+msgid "Can chat with me (when available)"
msgstr ""
-#: ../../include/js_strings.php:27
-msgid "from now"
+#: ../../include/permissions.php:43
+msgid "Can write to my file storage"
msgstr ""
-#: ../../include/js_strings.php:28
-msgid "less than a minute"
+#: ../../include/permissions.php:44
+msgid "Can edit my webpages"
msgstr ""
-#: ../../include/js_strings.php:29
-msgid "about a minute"
+#: ../../include/permissions.php:46
+msgid "Can source my public posts in derived channels"
msgstr ""
-#: ../../include/js_strings.php:30
-#, php-format
-msgid "%d minutes"
+#: ../../include/permissions.php:46
+msgid "Somewhat advanced - very useful in open communities"
msgstr ""
-#: ../../include/js_strings.php:31
-msgid "about an hour"
+#: ../../include/permissions.php:48
+msgid "Can administer my channel resources"
msgstr ""
-#: ../../include/js_strings.php:32
-#, php-format
-msgid "about %d hours"
+#: ../../include/permissions.php:48
+msgid "Extremely advanced. Leave this alone unless you know what you are doing"
msgstr ""
-#: ../../include/js_strings.php:33
-msgid "a day"
+#: ../../include/permissions.php:809
+msgid "Social Networking"
msgstr ""
-#: ../../include/js_strings.php:34
-#, php-format
-msgid "%d days"
+#: ../../include/permissions.php:809 ../../include/permissions.php:810
+#: ../../include/permissions.php:811
+msgid "Mostly Public"
msgstr ""
-#: ../../include/js_strings.php:35
-msgid "about a month"
+#: ../../include/permissions.php:809 ../../include/permissions.php:810
+#: ../../include/permissions.php:811
+msgid "Restricted"
msgstr ""
-#: ../../include/js_strings.php:36
-#, php-format
-msgid "%d months"
+#: ../../include/permissions.php:809 ../../include/permissions.php:810
+msgid "Private"
msgstr ""
-#: ../../include/js_strings.php:37
-msgid "about a year"
+#: ../../include/permissions.php:810
+msgid "Community Forum"
msgstr ""
-#: ../../include/js_strings.php:38
-#, php-format
-msgid "%d years"
+#: ../../include/permissions.php:811
+msgid "Feed Republish"
msgstr ""
-#: ../../include/js_strings.php:39
-msgid " "
+#: ../../include/permissions.php:812
+msgid "Special Purpose"
msgstr ""
-#: ../../include/js_strings.php:40
-msgid "timeago.numbers"
+#: ../../include/permissions.php:812
+msgid "Celebrity/Soapbox"
msgstr ""
-#: ../../include/account.php:23
-msgid "Not a valid email address"
+#: ../../include/permissions.php:812
+msgid "Group Repository"
msgstr ""
-#: ../../include/account.php:25
-msgid "Your email domain is not among those allowed on this site"
+#: ../../include/permissions.php:813 ../../include/profile_selectors.php:6
+#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:61
+#: ../../include/profile_selectors.php:97
+msgid "Other"
msgstr ""
-#: ../../include/account.php:31
-msgid "Your email address is already registered at this site."
+#: ../../include/permissions.php:813
+msgid "Custom/Expert Mode"
msgstr ""
-#: ../../include/account.php:64
-msgid "An invitation is required."
+#: ../../include/api.php:1095
+msgid "Public Timeline"
msgstr ""
-#: ../../include/account.php:68
-msgid "Invitation could not be verified."
+#: ../../include/photos.php:94
+#, php-format
+msgid "Image exceeds website size limit of %lu bytes"
msgstr ""
-#: ../../include/account.php:119
-msgid "Please enter the required information."
+#: ../../include/photos.php:101
+msgid "Image file is empty."
msgstr ""
-#: ../../include/account.php:187
-msgid "Failed to store account information."
+#: ../../include/photos.php:128 ../../mod/profile_photo.php:217
+msgid "Unable to process image"
msgstr ""
-#: ../../include/account.php:245
-#, php-format
-msgid "Registration confirmation for %s"
+#: ../../include/photos.php:199
+msgid "Photo storage failed."
msgstr ""
-#: ../../include/account.php:313
-#, php-format
-msgid "Registration request at %s"
+#: ../../include/photos.php:363
+msgid "Upload New Photos"
msgstr ""
-#: ../../include/account.php:315 ../../include/account.php:342
-#: ../../include/account.php:399
-msgid "Administrator"
+#: ../../include/zot.php:666
+msgid "Invalid data packet"
msgstr ""
-#: ../../include/account.php:337
-msgid "your registration password"
+#: ../../include/zot.php:682
+msgid "Unable to verify channel signature"
msgstr ""
-#: ../../include/account.php:340 ../../include/account.php:397
+#: ../../include/zot.php:2108
#, php-format
-msgid "Registration details for %s"
+msgid "Unable to verify site signature for %s"
msgstr ""
-#: ../../include/account.php:406
-msgid "Account approved."
+#: ../../include/oembed.php:183
+msgid "Embedded content"
msgstr ""
-#: ../../include/account.php:440
-#, php-format
-msgid "Registration revoked for %s"
+#: ../../include/oembed.php:192
+msgid "Embedding disabled"
msgstr ""
-#: ../../include/account.php:486
-msgid "Account verified. Please login."
+#: ../../include/comanche.php:34 ../../mod/admin.php:386
+#: ../../view/theme/apw/php/config.php:185
+msgid "Default"
msgstr ""
-#: ../../include/account.php:674 ../../include/account.php:676
-msgid "Click here to upgrade."
+#: ../../include/auth.php:131
+msgid "Logged out."
msgstr ""
-#: ../../include/account.php:682
-msgid "This action exceeds the limits set by your subscription plan."
+#: ../../include/auth.php:272
+msgid "Failed authentication"
msgstr ""
-#: ../../include/account.php:687
-msgid "This action is not available under your subscription plan."
+#: ../../include/auth.php:286 ../../mod/openid.php:190
+msgid "Login failed."
msgstr ""
-#: ../../include/datetime.php:35
-msgid "Miscellaneous"
-msgstr ""
+#: ../../include/contact_widgets.php:14
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/datetime.php:113
-msgid "YYYY-MM-DD or MM-DD"
+#: ../../include/contact_widgets.php:19 ../../mod/admin.php:450
+msgid "Advanced"
msgstr ""
-#: ../../include/datetime.php:212 ../../mod/events.php:583
-#: ../../mod/appman.php:91 ../../mod/appman.php:92
-msgid "Required"
+#: ../../include/contact_widgets.php:22
+msgid "Find Channels"
msgstr ""
-#: ../../include/datetime.php:231
-msgid "never"
+#: ../../include/contact_widgets.php:23
+msgid "Enter name or interest"
msgstr ""
-#: ../../include/datetime.php:237
-msgid "less than a second ago"
+#: ../../include/contact_widgets.php:24
+msgid "Connect/Follow"
msgstr ""
-#: ../../include/datetime.php:240
-msgid "year"
+#: ../../include/contact_widgets.php:25
+msgid "Examples: Robert Morgenstein, Fishing"
msgstr ""
-#: ../../include/datetime.php:240
-msgid "years"
+#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413
+#: ../../mod/directory.php:358 ../../mod/directory.php:363
+msgid "Find"
msgstr ""
-#: ../../include/datetime.php:241
-msgid "month"
+#: ../../include/contact_widgets.php:27 ../../mod/directory.php:362
+#: ../../mod/suggest.php:60
+msgid "Channel Suggestions"
msgstr ""
-#: ../../include/datetime.php:241
-msgid "months"
+#: ../../include/contact_widgets.php:29
+msgid "Random Profile"
msgstr ""
-#: ../../include/datetime.php:242
-msgid "week"
+#: ../../include/contact_widgets.php:30
+msgid "Invite Friends"
msgstr ""
-#: ../../include/datetime.php:242
-msgid "weeks"
+#: ../../include/contact_widgets.php:32
+msgid "Advanced example: name=fred and country=iceland"
msgstr ""
-#: ../../include/datetime.php:243
-msgid "day"
-msgstr ""
+#: ../../include/contact_widgets.php:125
+#, php-format
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/datetime.php:243
-msgid "days"
+#: ../../include/contact_widgets.php:130
+msgid "show more"
msgstr ""
-#: ../../include/datetime.php:244
-msgid "hour"
+#: ../../include/acl_selectors.php:240
+msgid "Visible to your default audience"
msgstr ""
-#: ../../include/datetime.php:244
-msgid "hours"
+#: ../../include/acl_selectors.php:241
+msgid "Show"
msgstr ""
-#: ../../include/datetime.php:245
-msgid "minute"
+#: ../../include/acl_selectors.php:242
+msgid "Don't show"
msgstr ""
-#: ../../include/datetime.php:245
-msgid "minutes"
+#: ../../include/acl_selectors.php:248 ../../mod/events.php:654
+#: ../../mod/photos.php:559 ../../mod/photos.php:922 ../../mod/chat.php:209
+#: ../../mod/filestorage.php:147
+msgid "Permissions"
msgstr ""
-#: ../../include/datetime.php:246
-msgid "second"
+#: ../../include/attach.php:241 ../../include/attach.php:299
+msgid "Item was not found."
msgstr ""
-#: ../../include/datetime.php:246
-msgid "seconds"
+#: ../../include/attach.php:356
+msgid "No source file."
msgstr ""
-#: ../../include/datetime.php:255
-#, php-format
-msgid "%1$d %2$s ago"
+#: ../../include/attach.php:374
+msgid "Cannot locate file to replace"
msgstr ""
-#: ../../include/datetime.php:463
-#, php-format
-msgid "%1$s's birthday"
+#: ../../include/attach.php:392
+msgid "Cannot locate file to revise/update"
msgstr ""
-#: ../../include/datetime.php:464
+#: ../../include/attach.php:403
#, php-format
-msgid "Happy Birthday %1$s"
-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."
+msgid "File exceeds size limit of %d"
msgstr ""
-#: ../../include/chat.php:126
-msgid "Room is full"
+#: ../../include/attach.php:415
+#, php-format
+msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
msgstr ""
-#: ../../include/follow.php:28
-msgid "Channel is blocked on this site."
+#: ../../include/attach.php:498
+msgid "File upload failed. Possible system limit or action terminated."
msgstr ""
-#: ../../include/follow.php:33
-msgid "Channel location missing."
+#: ../../include/attach.php:510
+msgid "Stored file could not be verified. Upload failed."
msgstr ""
-#: ../../include/follow.php:83
-msgid "Response from remote channel was incomplete."
+#: ../../include/attach.php:554 ../../include/attach.php:571
+msgid "Path not available."
msgstr ""
-#: ../../include/follow.php:100
-msgid "Channel was deleted and no longer exists."
+#: ../../include/attach.php:616
+msgid "Empty pathname"
msgstr ""
-#: ../../include/follow.php:135 ../../include/follow.php:197
-msgid "Protocol disabled."
+#: ../../include/attach.php:632
+msgid "duplicate filename or path"
msgstr ""
-#: ../../include/follow.php:170
-msgid "Channel discovery failed."
+#: ../../include/attach.php:656
+msgid "Path not found."
msgstr ""
-#: ../../include/follow.php:186
-msgid "local account not found."
+#: ../../include/attach.php:707
+msgid "mkdir failed."
msgstr ""
-#: ../../include/follow.php:215
-msgid "Cannot connect to yourself."
+#: ../../include/attach.php:711
+msgid "database storage failed."
msgstr ""
-#: ../../include/identity.php:31 ../../mod/item.php:1071
+#: ../../include/identity.php:33
msgid "Unable to obtain identity information from database"
msgstr ""
-#: ../../include/identity.php:66
+#: ../../include/identity.php:67
msgid "Empty name"
msgstr ""
-#: ../../include/identity.php:68
+#: ../../include/identity.php:70
msgid "Name too long"
msgstr ""
-#: ../../include/identity.php:169
+#: ../../include/identity.php:186
msgid "No account identifier"
msgstr ""
-#: ../../include/identity.php:182
+#: ../../include/identity.php:198
msgid "Nickname is required."
msgstr ""
-#: ../../include/identity.php:196
+#: ../../include/identity.php:212
msgid "Reserved nickname. Please choose another."
msgstr ""
-#: ../../include/identity.php:201 ../../include/dimport.php:34
+#: ../../include/identity.php:217 ../../include/dimport.php:34
msgid ""
"Nickname has unsupported characters or is already being used on this site."
msgstr ""
-#: ../../include/identity.php:283
+#: ../../include/identity.php:292
msgid "Unable to retrieve created identity"
msgstr ""
-#: ../../include/identity.php:343
+#: ../../include/identity.php:350
msgid "Default Profile"
msgstr ""
-#: ../../include/identity.php:643
+#: ../../include/identity.php:630
msgid "Requested channel is not available."
msgstr ""
-#: ../../include/identity.php:691 ../../mod/achievements.php:11
-#: ../../mod/blocks.php:29 ../../mod/profile.php:16 ../../mod/webpages.php:29
-#: ../../mod/editblock.php:29 ../../mod/editlayout.php:28
-#: ../../mod/editwebpage.php:28 ../../mod/hcard.php:8
-#: ../../mod/filestorage.php:53 ../../mod/layouts.php:29
-#: ../../mod/connect.php:13
+#: ../../include/identity.php:677 ../../mod/profile.php:16
+#: ../../mod/achievements.php:11 ../../mod/blocks.php:29
+#: ../../mod/connect.php:13 ../../mod/hcard.php:8 ../../mod/editlayout.php:28
+#: ../../mod/editwebpage.php:28 ../../mod/filestorage.php:54
+#: ../../mod/webpages.php:29 ../../mod/editblock.php:29
+#: ../../mod/layouts.php:29
msgid "Requested profile is not available."
msgstr ""
-#: ../../include/identity.php:854 ../../mod/profiles.php:774
+#: ../../include/identity.php:836 ../../mod/profiles.php:774
msgid "Change profile photo"
msgstr ""
-#: ../../include/identity.php:861
+#: ../../include/identity.php:842
msgid "Profiles"
msgstr ""
-#: ../../include/identity.php:861
+#: ../../include/identity.php:842
msgid "Manage/edit profiles"
msgstr ""
-#: ../../include/identity.php:862 ../../mod/profiles.php:775
+#: ../../include/identity.php:843 ../../mod/profiles.php:775
msgid "Create New Profile"
msgstr ""
-#: ../../include/identity.php:865 ../../include/nav.php:95
-msgid "Edit Profile"
-msgstr ""
-
-#: ../../include/identity.php:878 ../../mod/profiles.php:786
+#: ../../include/identity.php:858 ../../mod/profiles.php:786
msgid "Profile Image"
msgstr ""
-#: ../../include/identity.php:881
+#: ../../include/identity.php:861
msgid "visible to everybody"
msgstr ""
-#: ../../include/identity.php:882 ../../mod/profiles.php:669
+#: ../../include/identity.php:862 ../../mod/profiles.php:669
#: ../../mod/profiles.php:790
msgid "Edit visibility"
msgstr ""
-#: ../../include/identity.php:898 ../../include/identity.php:1139
+#: ../../include/identity.php:878 ../../include/identity.php:1117
msgid "Gender:"
msgstr ""
-#: ../../include/identity.php:899 ../../include/identity.php:1183
+#: ../../include/identity.php:879 ../../include/identity.php:1161
msgid "Status:"
msgstr ""
-#: ../../include/identity.php:900 ../../include/identity.php:1194
+#: ../../include/identity.php:880 ../../include/identity.php:1172
msgid "Homepage:"
msgstr ""
-#: ../../include/identity.php:901
+#: ../../include/identity.php:881
msgid "Online Now"
msgstr ""
-#: ../../include/identity.php:983 ../../include/identity.php:1063
-#: ../../mod/ping.php:329
+#: ../../include/identity.php:964 ../../include/identity.php:1042
+#: ../../mod/ping.php:324
msgid "g A l F d"
msgstr ""
-#: ../../include/identity.php:984 ../../include/identity.php:1064
+#: ../../include/identity.php:965 ../../include/identity.php:1043
msgid "F d"
msgstr ""
-#: ../../include/identity.php:1029 ../../include/identity.php:1104
-#: ../../mod/ping.php:351
+#: ../../include/identity.php:1010 ../../include/identity.php:1082
+#: ../../mod/ping.php:346
msgid "[today]"
msgstr ""
-#: ../../include/identity.php:1041
+#: ../../include/identity.php:1021
msgid "Birthday Reminders"
msgstr ""
-#: ../../include/identity.php:1042
+#: ../../include/identity.php:1022
msgid "Birthdays this week:"
msgstr ""
-#: ../../include/identity.php:1097
+#: ../../include/identity.php:1075
msgid "[No description]"
msgstr ""
-#: ../../include/identity.php:1115
+#: ../../include/identity.php:1093
msgid "Event Reminders"
msgstr ""
-#: ../../include/identity.php:1116
+#: ../../include/identity.php:1094
msgid "Events this week:"
msgstr ""
-#: ../../include/identity.php:1137 ../../mod/settings.php:1025
+#: ../../include/identity.php:1107 ../../include/identity.php:1224
+#: ../../include/apps.php:138 ../../mod/profperm.php:112
+msgid "Profile"
+msgstr ""
+
+#: ../../include/identity.php:1115 ../../mod/settings.php:1045
msgid "Full Name:"
msgstr ""
-#: ../../include/identity.php:1144
+#: ../../include/identity.php:1122
msgid "Like this channel"
msgstr ""
-#: ../../include/identity.php:1168
+#: ../../include/identity.php:1146
msgid "j F, Y"
msgstr ""
-#: ../../include/identity.php:1169
+#: ../../include/identity.php:1147
msgid "j F"
msgstr ""
-#: ../../include/identity.php:1176
+#: ../../include/identity.php:1154
msgid "Birthday:"
msgstr ""
-#: ../../include/identity.php:1180
+#: ../../include/identity.php:1158
msgid "Age:"
msgstr ""
-#: ../../include/identity.php:1189
+#: ../../include/identity.php:1167
#, php-format
msgid "for %1$d %2$s"
msgstr ""
-#: ../../include/identity.php:1192 ../../mod/profiles.php:691
+#: ../../include/identity.php:1170 ../../mod/profiles.php:691
msgid "Sexual Preference:"
msgstr ""
-#: ../../include/identity.php:1196 ../../mod/profiles.php:693
+#: ../../include/identity.php:1174 ../../mod/profiles.php:693
msgid "Hometown:"
msgstr ""
-#: ../../include/identity.php:1198
+#: ../../include/identity.php:1176
msgid "Tags:"
msgstr ""
-#: ../../include/identity.php:1200 ../../mod/profiles.php:694
+#: ../../include/identity.php:1178 ../../mod/profiles.php:694
msgid "Political Views:"
msgstr ""
-#: ../../include/identity.php:1202
+#: ../../include/identity.php:1180
msgid "Religion:"
msgstr ""
-#: ../../include/identity.php:1204
+#: ../../include/identity.php:1182
msgid "About:"
msgstr ""
-#: ../../include/identity.php:1206
+#: ../../include/identity.php:1184
msgid "Hobbies/Interests:"
msgstr ""
-#: ../../include/identity.php:1208 ../../mod/profiles.php:697
+#: ../../include/identity.php:1186 ../../mod/profiles.php:697
msgid "Likes:"
msgstr ""
-#: ../../include/identity.php:1210 ../../mod/profiles.php:698
+#: ../../include/identity.php:1188 ../../mod/profiles.php:698
msgid "Dislikes:"
msgstr ""
-#: ../../include/identity.php:1212
+#: ../../include/identity.php:1190
msgid "Contact information and Social Networks:"
msgstr ""
-#: ../../include/identity.php:1214
+#: ../../include/identity.php:1192
msgid "My other channels:"
msgstr ""
-#: ../../include/identity.php:1216
+#: ../../include/identity.php:1194
msgid "Musical interests:"
msgstr ""
-#: ../../include/identity.php:1218
+#: ../../include/identity.php:1196
msgid "Books, literature:"
msgstr ""
-#: ../../include/identity.php:1220
+#: ../../include/identity.php:1198
msgid "Television:"
msgstr ""
-#: ../../include/identity.php:1222
+#: ../../include/identity.php:1200
msgid "Film/dance/culture/entertainment:"
msgstr ""
-#: ../../include/identity.php:1224
+#: ../../include/identity.php:1202
msgid "Love/Romance:"
msgstr ""
-#: ../../include/identity.php:1226
+#: ../../include/identity.php:1204
msgid "Work/employment:"
msgstr ""
-#: ../../include/identity.php:1228
+#: ../../include/identity.php:1206
msgid "School/education:"
msgstr ""
-#: ../../include/identity.php:1248
+#: ../../include/identity.php:1226
msgid "Like this thing"
msgstr ""
-#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1549
-msgid "Logout"
-msgstr ""
-
-#: ../../include/nav.php:87 ../../include/nav.php:120
-msgid "End this session"
-msgstr ""
-
-#: ../../include/nav.php:90 ../../include/nav.php:151
-msgid "Home"
-msgstr ""
-
-#: ../../include/nav.php:90
-msgid "Your posts and conversations"
-msgstr ""
-
-#: ../../include/nav.php:91
-msgid "Your profile page"
-msgstr ""
-
-#: ../../include/nav.php:93
-msgid "Edit Profiles"
-msgstr ""
-
-#: ../../include/nav.php:93
-msgid "Manage/Edit profiles"
-msgstr ""
-
-#: ../../include/nav.php:95
-msgid "Edit your profile"
-msgstr ""
-
-#: ../../include/nav.php:97
-msgid "Your photos"
-msgstr ""
-
-#: ../../include/nav.php:98
-msgid "Your files"
-msgstr ""
-
-#: ../../include/nav.php:103
-msgid "Your chatrooms"
-msgstr ""
-
-#: ../../include/nav.php:109
-msgid "Your bookmarks"
-msgstr ""
-
-#: ../../include/nav.php:113
-msgid "Your webpages"
-msgstr ""
-
-#: ../../include/nav.php:117
-msgid "Sign in"
-msgstr ""
-
-#: ../../include/nav.php:134
-#, php-format
-msgid "%s - click to logout"
-msgstr ""
-
-#: ../../include/nav.php:137
-msgid "Remote authentication"
-msgstr ""
-
-#: ../../include/nav.php:137
-msgid "Click to authenticate to your home hub"
-msgstr ""
-
-#: ../../include/nav.php:151
-msgid "Home Page"
-msgstr ""
-
-#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1526
-msgid "Register"
-msgstr ""
-
-#: ../../include/nav.php:155
-msgid "Create an account"
-msgstr ""
-
-#: ../../include/nav.php:160
-msgid "Help and documentation"
-msgstr ""
-
-#: ../../include/nav.php:163
-msgid "Applications, utilities, links, games"
-msgstr ""
-
-#: ../../include/nav.php:165
-msgid "Search site content"
-msgstr ""
-
-#: ../../include/nav.php:168
-msgid "Channel Directory"
-msgstr ""
-
-#: ../../include/nav.php:182
-msgid "Your matrix"
-msgstr ""
-
-#: ../../include/nav.php:183
-msgid "Mark all matrix notifications seen"
-msgstr ""
-
-#: ../../include/nav.php:185
-msgid "Channel home"
-msgstr ""
-
-#: ../../include/nav.php:186
-msgid "Mark all channel notifications seen"
-msgstr ""
-
-#: ../../include/nav.php:189 ../../mod/connections.php:407
-msgid "Connections"
-msgstr ""
-
-#: ../../include/nav.php:192
-msgid "Notices"
-msgstr ""
-
-#: ../../include/nav.php:192
-msgid "Notifications"
-msgstr ""
-
-#: ../../include/nav.php:193
-msgid "See all notifications"
-msgstr ""
-
-#: ../../include/nav.php:194 ../../mod/notifications.php:99
-msgid "Mark all system notifications seen"
-msgstr ""
-
-#: ../../include/nav.php:196
-msgid "Private mail"
-msgstr ""
-
-#: ../../include/nav.php:197
-msgid "See all private messages"
-msgstr ""
-
-#: ../../include/nav.php:198
-msgid "Mark all private messages seen"
-msgstr ""
-
-#: ../../include/nav.php:199
-msgid "Inbox"
-msgstr ""
-
-#: ../../include/nav.php:200
-msgid "Outbox"
-msgstr ""
-
-#: ../../include/nav.php:204
-msgid "Event Calendar"
-msgstr ""
-
-#: ../../include/nav.php:205
-msgid "See all events"
-msgstr ""
-
-#: ../../include/nav.php:206
-msgid "Mark all events seen"
-msgstr ""
-
-#: ../../include/nav.php:208
-msgid "Manage Your Channels"
-msgstr ""
-
-#: ../../include/nav.php:210
-msgid "Account/Channel Settings"
-msgstr ""
-
-#: ../../include/nav.php:218 ../../mod/admin.php:123
-msgid "Admin"
-msgstr ""
-
-#: ../../include/nav.php:218
-msgid "Site Setup and Configuration"
-msgstr ""
-
-#: ../../include/nav.php:254
-msgid "@name, #tag, content"
-msgstr ""
-
-#: ../../include/nav.php:255
-msgid "Please wait..."
-msgstr ""
-
-#: ../../include/Contact.php:124
-msgid "New window"
-msgstr ""
-
-#: ../../include/Contact.php:125
-msgid "Open the selected location in a different window or browser tab"
-msgstr ""
-
-#: ../../include/Contact.php:215 ../../mod/admin.php:651
-#, php-format
-msgid "User '%s' deleted"
-msgstr ""
-
#: ../../include/profile_selectors.php:6
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:23 ../../mod/id.php:103
msgid "Male"
msgstr ""
#: ../../include/profile_selectors.php:6
-#: ../../include/profile_selectors.php:23
+#: ../../include/profile_selectors.php:23 ../../mod/id.php:105
msgid "Female"
msgstr ""
@@ -3694,1882 +3761,1831 @@ msgstr ""
msgid "Ask me"
msgstr ""
-#: ../../include/zot.php:673
-msgid "Invalid data packet"
-msgstr ""
-
-#: ../../include/zot.php:689
-msgid "Unable to verify channel signature"
+#: ../../include/apps.php:128
+msgid "Site Admin"
msgstr ""
-#: ../../include/zot.php:1933
-#, php-format
-msgid "Unable to verify site signature for %s"
+#: ../../include/apps.php:130
+msgid "Address Book"
msgstr ""
-#: ../../mod/setup.php:166
-msgid "Red Matrix Server - Setup"
+#: ../../include/apps.php:144 ../../mod/mood.php:130
+msgid "Mood"
msgstr ""
-#: ../../mod/setup.php:172
-msgid "Could not connect to database."
+#: ../../include/apps.php:148
+msgid "Probe"
msgstr ""
-#: ../../mod/setup.php:176
-msgid ""
-"Could not connect to specified site URL. Possible SSL certificate or DNS "
-"issue."
+#: ../../include/apps.php:149
+msgid "Suggest"
msgstr ""
-#: ../../mod/setup.php:183
-msgid "Could not create table."
+#: ../../include/apps.php:150
+msgid "Random Channel"
msgstr ""
-#: ../../mod/setup.php:189
-msgid "Your site database has been installed."
+#: ../../include/apps.php:151
+msgid "Invite"
msgstr ""
-#: ../../mod/setup.php:194
-msgid ""
-"You may need to import the file \"install/schema_xxx.sql\" manually using a "
-"database client."
+#: ../../include/apps.php:152
+msgid "Features"
msgstr ""
-#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662
-msgid "Please see the file \"install/INSTALL.txt\"."
+#: ../../include/apps.php:153 ../../mod/id.php:28
+msgid "Language"
msgstr ""
-#: ../../mod/setup.php:261
-msgid "System check"
+#: ../../include/apps.php:154
+msgid "Post"
msgstr ""
-#: ../../mod/setup.php:265 ../../mod/events.php:449 ../../mod/photos.php:836
-msgid "Next"
+#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18
+#: ../../mod/id.php:19
+msgid "Profile Photo"
msgstr ""
-#: ../../mod/setup.php:266
-msgid "Check again"
+#: ../../include/apps.php:247 ../../mod/settings.php:84
+#: ../../mod/settings.php:608
+msgid "Update"
msgstr ""
-#: ../../mod/setup.php:289
-msgid "Database connection"
+#: ../../include/apps.php:247
+msgid "Install"
msgstr ""
-#: ../../mod/setup.php:290
-msgid ""
-"In order to install Red Matrix we need to know how to connect to your "
-"database."
+#: ../../include/apps.php:252
+msgid "Purchase"
msgstr ""
-#: ../../mod/setup.php:291
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+#: ../../include/chat.php:23
+msgid "Missing room name"
msgstr ""
-#: ../../mod/setup.php:292
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+#: ../../include/chat.php:32
+msgid "Duplicate room name"
msgstr ""
-#: ../../mod/setup.php:296
-msgid "Database Server Name"
+#: ../../include/chat.php:82 ../../include/chat.php:90
+msgid "Invalid room specifier."
msgstr ""
-#: ../../mod/setup.php:296
-msgid "Default is localhost"
+#: ../../include/chat.php:120
+msgid "Room not found."
msgstr ""
-#: ../../mod/setup.php:297
-msgid "Database Port"
+#: ../../include/chat.php:141
+msgid "Room is full"
msgstr ""
-#: ../../mod/setup.php:297
-msgid "Communication port number - use 0 for default"
+#: ../../mod/achievements.php:34
+msgid "Some blurb about what to do when you're new here"
msgstr ""
-#: ../../mod/setup.php:298
-msgid "Database Login Name"
+#: ../../mod/manage.php:136
+#, php-format
+msgid "You have created %1$.0f of %2$.0f allowed channels."
msgstr ""
-#: ../../mod/setup.php:299
-msgid "Database Login Password"
+#: ../../mod/manage.php:144
+msgid "Create a new channel"
msgstr ""
-#: ../../mod/setup.php:300
-msgid "Database Name"
+#: ../../mod/manage.php:165
+msgid "Current Channel"
msgstr ""
-#: ../../mod/setup.php:301
-msgid "Database Type"
+#: ../../mod/manage.php:167
+msgid "Switch to one of your channels by selecting it."
msgstr ""
-#: ../../mod/setup.php:303 ../../mod/setup.php:347
-msgid "Site administrator email address"
+#: ../../mod/manage.php:168
+msgid "Default Channel"
msgstr ""
-#: ../../mod/setup.php:303 ../../mod/setup.php:347
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
+#: ../../mod/manage.php:169
+msgid "Make Default"
msgstr ""
-#: ../../mod/setup.php:304 ../../mod/setup.php:349
-msgid "Website URL"
+#: ../../mod/manage.php:172
+#, php-format
+msgid "%d new messages"
msgstr ""
-#: ../../mod/setup.php:304 ../../mod/setup.php:349
-msgid "Please use SSL (https) URL if available."
+#: ../../mod/manage.php:173
+#, php-format
+msgid "%d new introductions"
msgstr ""
-#: ../../mod/setup.php:307 ../../mod/setup.php:352
-msgid "Please select a default timezone for your website"
+#: ../../mod/manage.php:175
+msgid "Delegated Channels"
msgstr ""
-#: ../../mod/setup.php:335
-msgid "Site settings"
+#: ../../mod/settings.php:76
+msgid "Name is required"
msgstr ""
-#: ../../mod/setup.php:395
-msgid "Could not find a command line version of PHP in the web server PATH."
+#: ../../mod/settings.php:80
+msgid "Key and Secret are required"
msgstr ""
-#: ../../mod/setup.php:396
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron."
+#: ../../mod/settings.php:124
+msgid "Diaspora Policy Settings updated."
msgstr ""
-#: ../../mod/setup.php:400
-msgid "PHP executable path"
+#: ../../mod/settings.php:232
+msgid "Passwords do not match. Password unchanged."
msgstr ""
-#: ../../mod/setup.php:400
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
+#: ../../mod/settings.php:236
+msgid "Empty passwords are not allowed. Password unchanged."
msgstr ""
-#: ../../mod/setup.php:405
-msgid "Command line PHP"
+#: ../../mod/settings.php:250
+msgid "Password changed."
msgstr ""
-#: ../../mod/setup.php:414
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
+#: ../../mod/settings.php:252
+msgid "Password update failed. Please try again."
msgstr ""
-#: ../../mod/setup.php:415
-msgid "This is required for message delivery to work."
+#: ../../mod/settings.php:266
+msgid "Not valid email."
msgstr ""
-#: ../../mod/setup.php:417
-msgid "PHP register_argc_argv"
+#: ../../mod/settings.php:269
+msgid "Protected email address. Cannot change to that email."
msgstr ""
-#: ../../mod/setup.php:438
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: ../../mod/settings.php:278
+msgid "System failure storing new email. Please try again."
msgstr ""
-#: ../../mod/setup.php:439
-msgid ""
-"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
-"installation.php\"."
+#: ../../mod/settings.php:517
+msgid "Settings updated."
msgstr ""
-#: ../../mod/setup.php:441
-msgid "Generate encryption keys"
+#: ../../mod/settings.php:573 ../../mod/api.php:106 ../../mod/photos.php:556
+#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
+#: ../../mod/admin.php:424 ../../mod/removeme.php:60
+#: ../../view/theme/redbasic/php/config.php:102
+#: ../../view/theme/redbasic/php/config.php:127 ../../boot.php:1544
+#: ../../wppost/wppost.php:80 ../../wppost/wppost.php:96
+#: ../../wppost/wppost.php:100
+msgid "No"
msgstr ""
-#: ../../mod/setup.php:448
-msgid "libCurl PHP module"
+#: ../../mod/settings.php:573 ../../mod/api.php:105 ../../mod/photos.php:556
+#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159
+#: ../../mod/admin.php:426 ../../mod/removeme.php:60
+#: ../../view/theme/redbasic/php/config.php:102
+#: ../../view/theme/redbasic/php/config.php:127 ../../boot.php:1544
+#: ../../wppost/wppost.php:80 ../../wppost/wppost.php:96
+#: ../../wppost/wppost.php:100
+msgid "Yes"
msgstr ""
-#: ../../mod/setup.php:449
-msgid "GD graphics PHP module"
+#: ../../mod/settings.php:581 ../../mod/settings.php:607
+#: ../../mod/settings.php:643
+msgid "Add application"
msgstr ""
-#: ../../mod/setup.php:450
-msgid "OpenSSL PHP module"
+#: ../../mod/settings.php:584
+msgid "Name of application"
msgstr ""
-#: ../../mod/setup.php:451
-msgid "mysqli or postgres PHP module"
+#: ../../mod/settings.php:585 ../../mod/settings.php:611
+msgid "Consumer Key"
msgstr ""
-#: ../../mod/setup.php:452
-msgid "mb_string PHP module"
+#: ../../mod/settings.php:585 ../../mod/settings.php:586
+msgid "Automatically generated - change if desired. Max length 20"
msgstr ""
-#: ../../mod/setup.php:453
-msgid "mcrypt PHP module"
+#: ../../mod/settings.php:586 ../../mod/settings.php:612
+msgid "Consumer Secret"
msgstr ""
-#: ../../mod/setup.php:458 ../../mod/setup.php:460
-msgid "Apache mod_rewrite module"
+#: ../../mod/settings.php:587 ../../mod/settings.php:613
+msgid "Redirect"
msgstr ""
-#: ../../mod/setup.php:458
+#: ../../mod/settings.php:587
msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr ""
-
-#: ../../mod/setup.php:464 ../../mod/setup.php:467
-msgid "proc_open"
+"Redirect URI - leave blank unless your application specifically requires this"
msgstr ""
-#: ../../mod/setup.php:464
-msgid ""
-"Error: proc_open is required but is either not installed or has been "
-"disabled in php.ini"
+#: ../../mod/settings.php:588 ../../mod/settings.php:614
+msgid "Icon url"
msgstr ""
-#: ../../mod/setup.php:472
-msgid "Error: libCURL PHP module required but not installed."
+#: ../../mod/settings.php:588
+msgid "Optional"
msgstr ""
-#: ../../mod/setup.php:476
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
+#: ../../mod/settings.php:599
+msgid "You can't edit this application."
msgstr ""
-#: ../../mod/setup.php:480
-msgid "Error: openssl PHP module required but not installed."
+#: ../../mod/settings.php:642
+msgid "Connected Apps"
msgstr ""
-#: ../../mod/setup.php:484
-msgid ""
-"Error: mysqli or postgres PHP module required but neither are installed."
+#: ../../mod/settings.php:646
+msgid "Client key starts with"
msgstr ""
-#: ../../mod/setup.php:488
-msgid "Error: mb_string PHP module required but not installed."
+#: ../../mod/settings.php:647
+msgid "No name"
msgstr ""
-#: ../../mod/setup.php:492
-msgid "Error: mcrypt PHP module required but not installed."
+#: ../../mod/settings.php:648
+msgid "Remove authorization"
msgstr ""
-#: ../../mod/setup.php:508
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\" "
-"in the top folder of your web server and it is unable to do so."
+#: ../../mod/settings.php:662
+msgid "No feature settings configured"
msgstr ""
-#: ../../mod/setup.php:509
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
+#: ../../mod/settings.php:678
+msgid "Feature/Addon Settings"
msgstr ""
-#: ../../mod/setup.php:510
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Red top folder."
+#: ../../mod/settings.php:680
+msgid "Settings for the built-in Diaspora emulator"
msgstr ""
-#: ../../mod/setup.php:511
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation. "
-"Please see the file \"install/INSTALL.txt\" for instructions."
+#: ../../mod/settings.php:681
+msgid "Allow any Diaspora member to comment on your public posts"
msgstr ""
-#: ../../mod/setup.php:514
-msgid ".htconfig.php is writable"
+#: ../../mod/settings.php:682
+msgid "Diaspora Policy Settings"
msgstr ""
-#: ../../mod/setup.php:524
-msgid ""
-"Red uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
+#: ../../mod/settings.php:683
+msgid "Prevent your hashtags from being redirected to other sites"
msgstr ""
-#: ../../mod/setup.php:525
-#, php-format
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory %s under the Red top level folder."
+#: ../../mod/settings.php:707
+msgid "Account Settings"
msgstr ""
-#: ../../mod/setup.php:526 ../../mod/setup.php:544
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has "
-"write access to this folder."
+#: ../../mod/settings.php:708
+msgid "Enter New Password:"
msgstr ""
-#: ../../mod/setup.php:527
-#, php-format
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"%s only--not the template files (.tpl) that it contains."
+#: ../../mod/settings.php:709
+msgid "Confirm New Password:"
msgstr ""
-#: ../../mod/setup.php:530
-#, php-format
-msgid "%s is writable"
+#: ../../mod/settings.php:709
+msgid "Leave password fields blank unless changing"
msgstr ""
-#: ../../mod/setup.php:543
-msgid ""
-"Red uses the store directory to save uploaded files. The web server needs to "
-"have write access to the store directory under the Red top level folder"
+#: ../../mod/settings.php:711 ../../mod/settings.php:1046
+msgid "Email Address:"
msgstr ""
-#: ../../mod/setup.php:547
-msgid "store is writable"
+#: ../../mod/settings.php:712 ../../mod/removeaccount.php:61
+msgid "Remove Account"
msgstr ""
-#: ../../mod/setup.php:577
-msgid ""
-"SSL certificate cannot be validated. Fix certificate or disable https access "
-"to this site."
+#: ../../mod/settings.php:713
+msgid "Remove this account including all its channels"
msgstr ""
-#: ../../mod/setup.php:578
-msgid ""
-"If you have https access to your website or allow connections to TCP port "
-"443 (the https: port), you MUST use a browser-valid certificate. You MUST "
-"NOT use self-signed certificates!"
+#: ../../mod/settings.php:729
+msgid "Off"
msgstr ""
-#: ../../mod/setup.php:579
-msgid ""
-"This restriction is incorporated because public posts from you may for "
-"example contain references to images on your own hub."
+#: ../../mod/settings.php:729
+msgid "On"
msgstr ""
-#: ../../mod/setup.php:580
-msgid ""
-"If your certificate is not recognized, members of other sites (who may "
-"themselves have valid certificates) will get a warning message on their own "
-"site complaining about security issues."
+#: ../../mod/settings.php:736
+msgid "Additional Features"
msgstr ""
-#: ../../mod/setup.php:581
-msgid ""
-"This can cause usability issues elsewhere (not just on your own site) so we "
-"must insist on this requirement."
+#: ../../mod/settings.php:760
+msgid "Connector Settings"
msgstr ""
-#: ../../mod/setup.php:582
-msgid ""
-"Providers are available that issue free certificates which are browser-valid."
+#: ../../mod/settings.php:799
+msgid "No special theme for mobile devices"
msgstr ""
-#: ../../mod/setup.php:584
-msgid "SSL certificate validation"
+#: ../../mod/settings.php:802
+#, php-format
+msgid "%s - (Experimental)"
msgstr ""
-#: ../../mod/setup.php:590
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-"Test: "
+#: ../../mod/settings.php:805 ../../mod/admin.php:396
+msgid "mobile"
msgstr ""
-#: ../../mod/setup.php:592
-msgid "Url rewrite is working"
+#: ../../mod/settings.php:841
+msgid "Display Settings"
msgstr ""
-#: ../../mod/setup.php:602
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
+#: ../../mod/settings.php:847
+msgid "Display Theme:"
msgstr ""
-#: ../../mod/setup.php:625
-msgid "Errors encountered creating database tables."
+#: ../../mod/settings.php:848
+msgid "Mobile Theme:"
msgstr ""
-#: ../../mod/setup.php:660
-msgid "<h1>What next</h1>"
+#: ../../mod/settings.php:849
+msgid "Enable user zoom on mobile devices"
msgstr ""
-#: ../../mod/setup.php:661
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
+#: ../../mod/settings.php:850
+msgid "Update browser every xx seconds"
msgstr ""
-#: ../../mod/register.php:44
-msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
+#: ../../mod/settings.php:850
+msgid "Minimum of 10 seconds, no maximum"
msgstr ""
-#: ../../mod/register.php:50
-msgid ""
-"Please indicate acceptance of the Terms of Service. Registration failed."
+#: ../../mod/settings.php:851
+msgid "Maximum number of conversations to load at any time:"
msgstr ""
-#: ../../mod/register.php:84
-msgid "Passwords do not match."
+#: ../../mod/settings.php:851
+msgid "Maximum of 100 items"
msgstr ""
-#: ../../mod/register.php:117
-msgid ""
-"Registration successful. Please check your email for validation instructions."
+#: ../../mod/settings.php:852
+msgid "Show emoticons (smilies) as images"
msgstr ""
-#: ../../mod/register.php:123
-msgid "Your registration is pending approval by the site owner."
+#: ../../mod/settings.php:853
+msgid "Link post titles to source"
msgstr ""
-#: ../../mod/register.php:126
-msgid "Your registration can not be processed."
+#: ../../mod/settings.php:854
+msgid "System Page Layout Editor - (advanced)"
msgstr ""
-#: ../../mod/register.php:163
-msgid "Registration on this site/hub is by approval only."
+#: ../../mod/settings.php:857
+msgid "Use blog/list mode on channel page"
msgstr ""
-#: ../../mod/register.php:164
-msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>"
+#: ../../mod/settings.php:857 ../../mod/settings.php:858
+msgid "(comments displayed separately)"
msgstr ""
-#: ../../mod/register.php:174
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
+#: ../../mod/settings.php:858
+msgid "Use blog/list mode on matrix page"
msgstr ""
-#: ../../mod/register.php:185
-msgid "Terms of Service"
+#: ../../mod/settings.php:859
+msgid "Channel page max height of content (in pixels)"
msgstr ""
-#: ../../mod/register.php:191
-#, php-format
-msgid "I accept the %s for this website"
+#: ../../mod/settings.php:859 ../../mod/settings.php:860
+msgid "click to expand content exceeding this height"
msgstr ""
-#: ../../mod/register.php:193
-#, php-format
-msgid "I am over 13 years of age and accept the %s for this website"
+#: ../../mod/settings.php:860
+msgid "Matrix page max height of content (in pixels)"
msgstr ""
-#: ../../mod/register.php:207 ../../mod/admin.php:417
-msgid "Registration"
+#: ../../mod/settings.php:894
+msgid "Nobody except yourself"
msgstr ""
-#: ../../mod/register.php:212
-msgid "Membership on this site is by invitation only."
+#: ../../mod/settings.php:895
+msgid "Only those you specifically allow"
msgstr ""
-#: ../../mod/register.php:213
-msgid "Please enter your invitation code"
+#: ../../mod/settings.php:896
+msgid "Approved connections"
msgstr ""
-#: ../../mod/register.php:216
-msgid "Your email address"
+#: ../../mod/settings.php:897
+msgid "Any connections"
msgstr ""
-#: ../../mod/register.php:217
-msgid "Choose a password"
+#: ../../mod/settings.php:898
+msgid "Anybody on this website"
msgstr ""
-#: ../../mod/register.php:218
-msgid "Please re-enter your password"
+#: ../../mod/settings.php:899
+msgid "Anybody in this network"
msgstr ""
-#: ../../mod/network.php:84
-msgid "No such group"
+#: ../../mod/settings.php:900
+msgid "Anybody authenticated"
msgstr ""
-#: ../../mod/network.php:122
-msgid "Search Results For:"
+#: ../../mod/settings.php:901
+msgid "Anybody on the internet"
msgstr ""
-#: ../../mod/network.php:176
-msgid "Collection is empty"
+#: ../../mod/settings.php:975
+msgid "Publish your default profile in the network directory"
msgstr ""
-#: ../../mod/network.php:184
-msgid "Collection: "
+#: ../../mod/settings.php:980
+msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
-#: ../../mod/network.php:197
-msgid "Connection: "
+#: ../../mod/settings.php:984 ../../mod/profile_photo.php:366
+msgid "or"
msgstr ""
-#: ../../mod/network.php:200
-msgid "Invalid connection."
+#: ../../mod/settings.php:989
+msgid "Your channel address is"
msgstr ""
-#: ../../mod/achievements.php:34
-msgid "Some blurb about what to do when you're new here"
+#: ../../mod/settings.php:1037
+msgid "Channel Settings"
msgstr ""
-#: ../../mod/home.php:48
-msgid "Red Matrix - &quot;The Network&quot;"
+#: ../../mod/settings.php:1044
+msgid "Basic Settings"
msgstr ""
-#: ../../mod/home.php:101
-#, php-format
-msgid "Welcome to %s"
+#: ../../mod/settings.php:1047
+msgid "Your Timezone:"
msgstr ""
-#: ../../mod/suggest.php:35
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
+#: ../../mod/settings.php:1048
+msgid "Default Post Location:"
msgstr ""
-#: ../../mod/uexport.php:33 ../../mod/uexport.php:34
-msgid "Export Channel"
+#: ../../mod/settings.php:1048
+msgid "Geographical location to display on your posts"
msgstr ""
-#: ../../mod/uexport.php:35
-msgid ""
-"Export your basic channel information to a small file. This acts as a "
-"backup of your connections, permissions, profile and basic data, which can "
-"be used to import your data to a new hub, but\tdoes not contain your content."
+#: ../../mod/settings.php:1049
+msgid "Use Browser Location:"
msgstr ""
-#: ../../mod/uexport.php:36
-msgid "Export Content"
+#: ../../mod/settings.php:1051
+msgid "Adult Content"
msgstr ""
-#: ../../mod/uexport.php:37
+#: ../../mod/settings.php:1051
msgid ""
-"Export your channel information and all the content to a JSON backup. This "
-"backs up all of your connections, permissions, profile data and all of your "
-"content, but is generally not suitable for importing a channel to a new hub "
-"as this file may be VERY large. Please be patient - it may take several "
-"minutes for this download to begin."
+"This channel frequently or regularly publishes adult content. (Please tag "
+"any adult material and/or nudity with #NSFW)"
msgstr ""
-#: ../../mod/post.php:229
-msgid ""
-"Remote authentication blocked. You are logged into this site locally. Please "
-"logout and retry."
+#: ../../mod/settings.php:1053
+msgid "Security and Privacy Settings"
msgstr ""
-#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180
-#, php-format
-msgid "Welcome %s. Remote authentication successful."
+#: ../../mod/settings.php:1055
+msgid "Your permissions are already configured. Click to view/adjust"
msgstr ""
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
+#: ../../mod/settings.php:1057
+msgid "Hide my online presence"
msgstr ""
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
+#: ../../mod/settings.php:1057
+msgid "Prevents displaying in your profile that you are online"
msgstr ""
-#: ../../mod/api.php:89
-msgid "Please login to continue."
+#: ../../mod/settings.php:1059
+msgid "Simple Privacy Settings:"
msgstr ""
-#: ../../mod/api.php:104
+#: ../../mod/settings.php:1060
msgid ""
-"Do you want to authorize this application to access your posts and contacts, "
-"and/or create new posts for you?"
+"Very Public - <em>extremely permissive (should be used with caution)</em>"
msgstr ""
-#: ../../mod/api.php:105 ../../mod/settings.php:955 ../../mod/settings.php:960
-#: ../../mod/settings.php:1045 ../../mod/admin.php:396
-msgid "Yes"
+#: ../../mod/settings.php:1061
+msgid ""
+"Typical - <em>default public, privacy when desired (similar to social "
+"network permissions but with improved privacy)</em>"
msgstr ""
-#: ../../mod/api.php:106 ../../mod/settings.php:955 ../../mod/settings.php:960
-#: ../../mod/settings.php:1045 ../../mod/admin.php:394
-msgid "No"
+#: ../../mod/settings.php:1062
+msgid "Private - <em>default private, never open or public</em>"
msgstr ""
-#: ../../mod/events.php:85
-msgid "Event can not end before it has started."
+#: ../../mod/settings.php:1063
+msgid "Blocked - <em>default blocked to/from everybody</em>"
msgstr ""
-#: ../../mod/events.php:90
-msgid "Event title and start time are required."
+#: ../../mod/settings.php:1065
+msgid "Allow others to tag your posts"
msgstr ""
-#: ../../mod/events.php:104
-msgid "Event not found."
+#: ../../mod/settings.php:1065
+msgid ""
+"Often used by the community to retro-actively flag inappropriate content"
msgstr ""
-#: ../../mod/events.php:373
-msgid "l, F j"
+#: ../../mod/settings.php:1067
+msgid "Advanced Privacy Settings"
msgstr ""
-#: ../../mod/events.php:395
-msgid "Edit event"
+#: ../../mod/settings.php:1069
+msgid "Expire other channel content after this many days"
msgstr ""
-#: ../../mod/events.php:447
-msgid "Create New Event"
+#: ../../mod/settings.php:1069
+msgid "0 or blank prevents expiration"
msgstr ""
-#: ../../mod/events.php:448 ../../mod/photos.php:827
-msgid "Previous"
+#: ../../mod/settings.php:1070
+msgid "Maximum Friend Requests/Day:"
msgstr ""
-#: ../../mod/events.php:450
-msgid "Export"
+#: ../../mod/settings.php:1070
+msgid "May reduce spam activity"
msgstr ""
-#: ../../mod/events.php:575
-msgid "Event details"
+#: ../../mod/settings.php:1071
+msgid "Default Post Permissions"
msgstr ""
-#: ../../mod/events.php:576
-msgid "Starting date and Title are required."
+#: ../../mod/settings.php:1072 ../../mod/mitem.php:161 ../../mod/mitem.php:204
+msgid "(click to open/close)"
msgstr ""
-#: ../../mod/events.php:578
-msgid "Categories (comma-separated list)"
+#: ../../mod/settings.php:1076
+msgid "Channel permissions category:"
msgstr ""
-#: ../../mod/events.php:580
-msgid "Event Starts:"
+#: ../../mod/settings.php:1082
+msgid "Maximum private messages per day from unknown people:"
msgstr ""
-#: ../../mod/events.php:587
-msgid "Finish date/time is not known or not relevant"
+#: ../../mod/settings.php:1082
+msgid "Useful to reduce spamming"
msgstr ""
-#: ../../mod/events.php:589
-msgid "Event Finishes:"
+#: ../../mod/settings.php:1085
+msgid "Notification Settings"
msgstr ""
-#: ../../mod/events.php:591 ../../mod/events.php:592
-msgid "Adjust for viewer timezone"
+#: ../../mod/settings.php:1086
+msgid "By default post a status message when:"
msgstr ""
-#: ../../mod/events.php:593
-msgid "Description:"
+#: ../../mod/settings.php:1087
+msgid "accepting a friend request"
msgstr ""
-#: ../../mod/events.php:597
-msgid "Title:"
+#: ../../mod/settings.php:1088
+msgid "joining a forum/community"
msgstr ""
-#: ../../mod/events.php:599
-msgid "Share this event"
+#: ../../mod/settings.php:1089
+msgid "making an <em>interesting</em> profile change"
msgstr ""
-#: ../../mod/attach.php:9
-msgid "Item not available."
+#: ../../mod/settings.php:1090
+msgid "Send a notification email when:"
msgstr ""
-#: ../../mod/probe.php:23 ../../mod/probe.php:29
-#, php-format
-msgid "Fetching URL returns error: %1$s"
+#: ../../mod/settings.php:1091
+msgid "You receive a connection request"
msgstr ""
-#: ../../mod/blocks.php:99
-msgid "Block Name"
+#: ../../mod/settings.php:1092
+msgid "Your connections are confirmed"
msgstr ""
-#: ../../mod/block.php:27 ../../mod/page.php:33
-msgid "Invalid item."
+#: ../../mod/settings.php:1093
+msgid "Someone writes on your profile wall"
msgstr ""
-#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45
-msgid "Channel not found."
+#: ../../mod/settings.php:1094
+msgid "Someone writes a followup comment"
msgstr ""
-#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:79
-#: ../../mod/page.php:81 ../../index.php:241
-msgid "Page not found."
+#: ../../mod/settings.php:1095
+msgid "You receive a private message"
msgstr ""
-#: ../../mod/mitem.php:24 ../../mod/menu.php:108
-msgid "Menu not found."
+#: ../../mod/settings.php:1096
+msgid "You receive a friend suggestion"
msgstr ""
-#: ../../mod/mitem.php:67
-msgid "Menu element updated."
+#: ../../mod/settings.php:1097
+msgid "You are tagged in a post"
msgstr ""
-#: ../../mod/mitem.php:71
-msgid "Unable to update menu element."
+#: ../../mod/settings.php:1098
+msgid "You are poked/prodded/etc. in a post"
msgstr ""
-#: ../../mod/mitem.php:77
-msgid "Menu element added."
+#: ../../mod/settings.php:1101
+msgid "Show visual notifications including:"
msgstr ""
-#: ../../mod/mitem.php:81
-msgid "Unable to add menu element."
+#: ../../mod/settings.php:1103
+msgid "Unseen matrix activity"
msgstr ""
-#: ../../mod/mitem.php:111 ../../mod/menu.php:136 ../../mod/xchan.php:37
-msgid "Not found."
+#: ../../mod/settings.php:1104
+msgid "Unseen channel activity"
msgstr ""
-#: ../../mod/mitem.php:127
-msgid "Manage Menu Elements"
+#: ../../mod/settings.php:1105
+msgid "Unseen private messages"
msgstr ""
-#: ../../mod/mitem.php:130
-msgid "Edit menu"
+#: ../../mod/settings.php:1105 ../../mod/settings.php:1110
+#: ../../mod/settings.php:1111 ../../mod/settings.php:1112
+msgid "Recommended"
msgstr ""
-#: ../../mod/mitem.php:133
-msgid "Edit element"
+#: ../../mod/settings.php:1106
+msgid "Upcoming events"
msgstr ""
-#: ../../mod/mitem.php:134
-msgid "Drop element"
+#: ../../mod/settings.php:1107
+msgid "Events today"
msgstr ""
-#: ../../mod/mitem.php:135
-msgid "New element"
+#: ../../mod/settings.php:1108
+msgid "Upcoming birthdays"
msgstr ""
-#: ../../mod/mitem.php:136
-msgid "Edit this menu container"
+#: ../../mod/settings.php:1108
+msgid "Not available in all themes"
msgstr ""
-#: ../../mod/mitem.php:137
-msgid "Add menu element"
+#: ../../mod/settings.php:1109
+msgid "System (personal) notifications"
msgstr ""
-#: ../../mod/mitem.php:138
-msgid "Delete this menu item"
+#: ../../mod/settings.php:1110
+msgid "System info messages"
msgstr ""
-#: ../../mod/mitem.php:139
-msgid "Edit this menu item"
+#: ../../mod/settings.php:1111
+msgid "System critical alerts"
msgstr ""
-#: ../../mod/mitem.php:158
-msgid "New Menu Element"
+#: ../../mod/settings.php:1112
+msgid "New connections"
msgstr ""
-#: ../../mod/mitem.php:160 ../../mod/mitem.php:203
-msgid "Menu Item Permissions"
+#: ../../mod/settings.php:1113
+msgid "System Registrations"
msgstr ""
-#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1052
-msgid "(click to open/close)"
+#: ../../mod/settings.php:1114
+msgid ""
+"Also show new wall posts, private messages and connections under Notices"
msgstr ""
-#: ../../mod/mitem.php:163 ../../mod/mitem.php:207
-msgid "Link text"
+#: ../../mod/settings.php:1116
+msgid "Notify me of events this many days in advance"
msgstr ""
-#: ../../mod/mitem.php:164 ../../mod/mitem.php:208
-msgid "URL of link"
+#: ../../mod/settings.php:1116
+msgid "Must be greater than 0"
msgstr ""
-#: ../../mod/mitem.php:165 ../../mod/mitem.php:209
-msgid "Use RedMatrix magic-auth if available"
+#: ../../mod/settings.php:1118
+msgid "Advanced Account/Page Type Settings"
msgstr ""
-#: ../../mod/mitem.php:166 ../../mod/mitem.php:210
-msgid "Open link in new window"
+#: ../../mod/settings.php:1119
+msgid "Change the behaviour of this account for special situations"
msgstr ""
-#: ../../mod/mitem.php:168 ../../mod/mitem.php:212
-msgid "Order in list"
+#: ../../mod/settings.php:1122
+msgid ""
+"Please enable expert mode (in <a href=\"settings/features\">Settings > "
+"Additional features</a>) to adjust!"
msgstr ""
-#: ../../mod/mitem.php:168 ../../mod/mitem.php:212
-msgid "Higher numbers will sink to bottom of listing"
+#: ../../mod/settings.php:1123
+msgid "Miscellaneous Settings"
msgstr ""
-#: ../../mod/mitem.php:181
-msgid "Menu item not found."
+#: ../../mod/settings.php:1125
+msgid "Personal menu to display in your channel pages"
msgstr ""
-#: ../../mod/mitem.php:190
-msgid "Menu item deleted."
+#: ../../mod/settings.php:1126 ../../mod/removeme.php:61
+msgid "Remove Channel"
msgstr ""
-#: ../../mod/mitem.php:192
-msgid "Menu item could not be deleted."
+#: ../../mod/settings.php:1127
+msgid "Remove this channel."
msgstr ""
-#: ../../mod/mitem.php:201
-msgid "Edit Menu Element"
+#: ../../mod/xchan.php:6
+msgid "Xchan Lookup"
msgstr ""
-#: ../../mod/mitem.php:213 ../../mod/menu.php:130
-msgid "Modify"
+#: ../../mod/xchan.php:9
+msgid "Lookup xchan beginning with (or webbie): "
msgstr ""
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
+#: ../../mod/xchan.php:37 ../../mod/menu.php:147 ../../mod/mitem.php:111
+msgid "Not found."
msgstr ""
-#: ../../mod/rpost.php:97 ../../mod/editpost.php:42
-msgid "Edit post"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
msgstr ""
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
msgstr ""
-#: ../../mod/delegate.php:121
-msgid "Delegate Page Management"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
msgstr ""
-#: ../../mod/delegate.php:123
+#: ../../mod/api.php:104
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"
+"Do you want to authorize this application to access your posts and contacts, "
+"and/or create new posts for you?"
msgstr ""
-#: ../../mod/delegate.php:130 ../../mod/photos.php:873 ../../mod/tagrm.php:133
-msgid "Remove"
+#: ../../mod/blocks.php:96
+msgid "Block Name"
msgstr ""
-#: ../../mod/delegate.php:131
-msgid "Add"
+#: ../../mod/follow.php:25
+msgid "Channel added."
msgstr ""
-#: ../../mod/delegate.php:132
-msgid "No entries."
+#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94
+msgid "Tag removed"
msgstr ""
-#: ../../mod/rbmark.php:88
-msgid "Select a bookmark folder"
+#: ../../mod/tagrm.php:119
+msgid "Remove Item Tag"
msgstr ""
-#: ../../mod/rbmark.php:93
-msgid "Save Bookmark"
+#: ../../mod/tagrm.php:121
+msgid "Select a tag to remove: "
msgstr ""
-#: ../../mod/rbmark.php:94
-msgid "URL of bookmark"
+#: ../../mod/tagrm.php:133 ../../mod/photos.php:875
+msgid "Remove"
msgstr ""
-#: ../../mod/rbmark.php:95 ../../mod/appman.php:93
-msgid "Description"
+#: ../../mod/connect.php:56 ../../mod/connect.php:104
+msgid "Continue"
msgstr ""
-#: ../../mod/rbmark.php:99
-msgid "Or enter new bookmark folder name"
+#: ../../mod/connect.php:85
+msgid "Premium Channel Setup"
msgstr ""
-#: ../../mod/pubsites.php:16
-msgid "Public Sites"
+#: ../../mod/connect.php:87
+msgid "Enable premium channel connection restrictions"
msgstr ""
-#: ../../mod/pubsites.php:19
+#: ../../mod/connect.php:88
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."
+"Please enter your restrictions or conditions, such as paypal receipt, usage "
+"guidelines, etc."
msgstr ""
-#: ../../mod/pubsites.php:25
-msgid "Site URL"
+#: ../../mod/connect.php:90 ../../mod/connect.php:110
+msgid ""
+"This channel may require additional steps or acknowledgement of the "
+"following conditions prior to connecting:"
msgstr ""
-#: ../../mod/pubsites.php:25
-msgid "Access Type"
+#: ../../mod/connect.php:91
+msgid ""
+"Potential connections will then see the following text before proceeding:"
msgstr ""
-#: ../../mod/pubsites.php:25
-msgid "Registration Policy"
+#: ../../mod/connect.php:92 ../../mod/connect.php:113
+msgid ""
+"By continuing, I certify that I have complied with any instructions provided "
+"on this page."
msgstr ""
-#: ../../mod/pubsites.php:25 ../../mod/profiles.php:454
-msgid "Location"
+#: ../../mod/connect.php:101
+msgid "(No specific instructions have been provided by the channel owner.)"
msgstr ""
-#: ../../mod/channel.php:25 ../../mod/chat.php:19
-msgid "You must be logged in to see this page."
+#: ../../mod/connect.php:109
+msgid "Restricted or Premium Channel"
msgstr ""
-#: ../../mod/channel.php:87
-msgid "Insufficient permissions. Request redirected to profile page."
+#: ../../mod/thing.php:94
+msgid "Thing updated"
msgstr ""
-#: ../../mod/cloud.php:120
-msgid "RedMatrix - Guests: Username: {your email address}, Password: +++"
+#: ../../mod/thing.php:153
+msgid "Object store: failed"
msgstr ""
-#: ../../mod/regmod.php:11
-msgid "Please login."
+#: ../../mod/thing.php:157
+msgid "Thing added"
msgstr ""
-#: ../../mod/chat.php:167
-msgid "Room not found"
+#: ../../mod/thing.php:175
+#, php-format
+msgid "OBJ: %1$s %2$s %3$s"
msgstr ""
-#: ../../mod/chat.php:178
-msgid "Leave Room"
+#: ../../mod/thing.php:226
+msgid "Show Thing"
msgstr ""
-#: ../../mod/chat.php:179
-msgid "Delete This Room"
+#: ../../mod/thing.php:233
+msgid "item not found."
msgstr ""
-#: ../../mod/chat.php:180
-msgid "I am away right now"
+#: ../../mod/thing.php:261
+msgid "Edit Thing"
msgstr ""
-#: ../../mod/chat.php:181
-msgid "I am online"
+#: ../../mod/thing.php:263 ../../mod/thing.php:310
+msgid "Select a profile"
msgstr ""
-#: ../../mod/chat.php:183
-msgid "Bookmark this room"
+#: ../../mod/thing.php:267 ../../mod/thing.php:313
+msgid "Post an activity"
msgstr ""
-#: ../../mod/chat.php:207 ../../mod/chat.php:229
-msgid "New Chatroom"
+#: ../../mod/thing.php:267 ../../mod/thing.php:313
+msgid "Only sends to viewers of the applicable profile"
msgstr ""
-#: ../../mod/chat.php:208
-msgid "Chatroom Name"
+#: ../../mod/thing.php:269 ../../mod/thing.php:315
+msgid "Name of thing e.g. something"
msgstr ""
-#: ../../mod/chat.php:225
-#, php-format
-msgid "%1$s's Chatrooms"
+#: ../../mod/thing.php:271 ../../mod/thing.php:316
+msgid "URL of thing (optional)"
msgstr ""
-#: ../../mod/chatsvc.php:111
-msgid "Away"
+#: ../../mod/thing.php:273 ../../mod/thing.php:317
+msgid "URL for photo of thing (optional)"
msgstr ""
-#: ../../mod/chatsvc.php:115
-msgid "Online"
+#: ../../mod/thing.php:308
+msgid "Add Thing to your Profile"
msgstr ""
-#: ../../mod/rmagic.php:38
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
+#: ../../mod/attach.php:9
+msgid "Item not available."
msgstr ""
-#: ../../mod/rmagic.php:38
-msgid "The error message was:"
+#: ../../mod/probe.php:23 ../../mod/probe.php:29
+#, php-format
+msgid "Fetching URL returns error: %1$s"
msgstr ""
-#: ../../mod/rmagic.php:42
-msgid "Authentication failed."
+#: ../../mod/home.php:53
+msgid "Red Matrix - &quot;The Network&quot;"
msgstr ""
-#: ../../mod/rmagic.php:82
-msgid "Remote Authentication"
+#: ../../mod/home.php:124
+#, php-format
+msgid "Welcome to %s"
msgstr ""
-#: ../../mod/rmagic.php:83
-msgid "Enter your channel address (e.g. channel@example.com)"
+#: ../../mod/profile_photo.php:108
+msgid "Image uploaded but image cropping failed."
msgstr ""
-#: ../../mod/rmagic.php:84
-msgid "Authenticate"
+#: ../../mod/profile_photo.php:162
+msgid "Image resize failed."
msgstr ""
-#: ../../mod/removeme.php:29
+#: ../../mod/profile_photo.php:206
msgid ""
-"Channel removals are not allowed within 48 hours of changing the account "
-"password."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
msgstr ""
-#: ../../mod/removeme.php:57
-msgid "Remove This Channel"
+#: ../../mod/profile_photo.php:233
+#, php-format
+msgid "Image exceeds size limit of %d"
msgstr ""
-#: ../../mod/removeme.php:58
-msgid ""
-"This will completely remove this channel from the network. Once this has "
-"been done it is not recoverable."
+#: ../../mod/profile_photo.php:242
+msgid "Unable to process image."
msgstr ""
-#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59
-msgid "Please enter your password for verification:"
+#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340
+msgid "Photo not available."
msgstr ""
-#: ../../mod/removeme.php:60
-msgid "Remove this channel and all its clones from the network"
+#: ../../mod/profile_photo.php:359
+msgid "Upload File:"
msgstr ""
-#: ../../mod/removeme.php:60
-msgid ""
-"By default only the instance of the channel located on this hub will be "
-"removed from the network"
+#: ../../mod/profile_photo.php:360
+msgid "Select a profile:"
msgstr ""
-#: ../../mod/removeme.php:61
-msgid "Remove Channel"
+#: ../../mod/profile_photo.php:361
+msgid "Upload Profile Photo"
msgstr ""
-#: ../../mod/search.php:13 ../../mod/photos.php:429 ../../mod/display.php:9
-#: ../../mod/viewconnections.php:17 ../../mod/directory.php:22
-#: ../../mod/ratings.php:81
-msgid "Public access denied."
+#: ../../mod/profile_photo.php:366
+msgid "skip this step"
msgstr ""
-#: ../../mod/common.php:10
-msgid "No channel."
+#: ../../mod/profile_photo.php:366
+msgid "select a photo from your photo albums"
msgstr ""
-#: ../../mod/common.php:39
-msgid "Common connections"
+#: ../../mod/profile_photo.php:382
+msgid "Crop Image"
msgstr ""
-#: ../../mod/common.php:44
-msgid "No connections in common."
+#: ../../mod/profile_photo.php:383
+msgid "Please adjust the image cropping for optimum viewing."
msgstr ""
-#: ../../mod/lostpass.php:15
-msgid "No valid account found."
+#: ../../mod/profile_photo.php:385
+msgid "Done Editing"
msgstr ""
-#: ../../mod/lostpass.php:29
-msgid "Password reset request issued. Check your email."
+#: ../../mod/profile_photo.php:428
+msgid "Image uploaded successfully."
msgstr ""
-#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
-#, php-format
-msgid "Site Member (%s)"
+#: ../../mod/profile_photo.php:430
+msgid "Image upload failed."
msgstr ""
-#: ../../mod/lostpass.php:40
+#: ../../mod/profile_photo.php:439
#, php-format
-msgid "Password reset requested at %s"
-msgstr ""
-
-#: ../../mod/lostpass.php:63
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
+msgid "Image size reduction [%s] failed."
msgstr ""
-#: ../../mod/lostpass.php:85 ../../boot.php:1558
-msgid "Password Reset"
+#: ../../mod/block.php:27 ../../mod/page.php:33
+msgid "Invalid item."
msgstr ""
-#: ../../mod/lostpass.php:86
-msgid "Your password has been reset as requested."
+#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45
+msgid "Channel not found."
msgstr ""
-#: ../../mod/lostpass.php:87
-msgid "Your new password is"
+#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:106
+#: ../../mod/page.php:82 ../../index.php:241
+msgid "Page not found."
msgstr ""
-#: ../../mod/lostpass.php:88
-msgid "Save or copy your new password - and then"
+#: ../../mod/like.php:15
+msgid "Like/Dislike"
msgstr ""
-#: ../../mod/lostpass.php:89
-msgid "click here to login"
+#: ../../mod/like.php:20
+msgid "This action is restricted to members."
msgstr ""
-#: ../../mod/lostpass.php:90
+#: ../../mod/like.php:21
msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr ""
-
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has changed at %s"
-msgstr ""
-
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
+"Please <a href=\"rmagic\">login with your RedMatrix ID</a> or <a href="
+"\"register\">register as a new RedMatrix member</a> to continue."
msgstr ""
-#: ../../mod/lostpass.php:123
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
+#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166
+msgid "Invalid request."
msgstr ""
-#: ../../mod/lostpass.php:124
-msgid "Email Address"
+#: ../../mod/like.php:143
+msgid "thing"
msgstr ""
-#: ../../mod/lostpass.php:125
-msgid "Reset"
+#: ../../mod/like.php:189
+msgid "Channel unavailable."
msgstr ""
-#: ../../mod/item.php:163
-msgid "Unable to locate original post."
+#: ../../mod/like.php:228
+msgid "Previous action reversed."
msgstr ""
-#: ../../mod/item.php:422
-msgid "Empty post discarded."
+#: ../../mod/like.php:398
+#, php-format
+msgid "%1$s agrees with %2$s's %3$s"
msgstr ""
-#: ../../mod/item.php:464
-msgid "Executable content type not permitted to this channel."
+#: ../../mod/like.php:400
+#, php-format
+msgid "%1$s doesn't agree with %2$s's %3$s"
msgstr ""
-#: ../../mod/item.php:858
-msgid "System error. Post not saved."
+#: ../../mod/like.php:402
+#, php-format
+msgid "%1$s abstains from a decision on %2$s's %3$s"
msgstr ""
-#: ../../mod/item.php:1076
+#: ../../mod/like.php:404
#, php-format
-msgid "You have reached your limit of %1$.0f top level posts."
+msgid "%1$s is attending %2$s's %3$s"
msgstr ""
-#: ../../mod/item.php:1082
+#: ../../mod/like.php:406
#, php-format
-msgid "You have reached your limit of %1$.0f webpages."
+msgid "%1$s is not attending %2$s's %3$s"
msgstr ""
-#: ../../mod/connections.php:37 ../../mod/connedit.php:75
-msgid "Could not access contact record."
+#: ../../mod/like.php:408
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
msgstr ""
-#: ../../mod/connections.php:51 ../../mod/connedit.php:99
-msgid "Could not locate selected profile."
+#: ../../mod/like.php:492
+msgid "Action completed."
msgstr ""
-#: ../../mod/connections.php:94 ../../mod/connedit.php:204
-msgid "Connection updated."
+#: ../../mod/like.php:493
+msgid "Thank you."
msgstr ""
-#: ../../mod/connections.php:96 ../../mod/connedit.php:206
-msgid "Failed to update connection record."
+#: ../../mod/events.php:87
+msgid "Event can not end before it has started."
msgstr ""
-#: ../../mod/connections.php:192 ../../mod/connections.php:293
-msgid "Blocked"
+#: ../../mod/events.php:89 ../../mod/events.php:98 ../../mod/events.php:116
+msgid "Unable to generate preview."
msgstr ""
-#: ../../mod/connections.php:197 ../../mod/connections.php:300
-msgid "Ignored"
+#: ../../mod/events.php:96
+msgid "Event title and start time are required."
msgstr ""
-#: ../../mod/connections.php:202 ../../mod/connections.php:314
-msgid "Hidden"
+#: ../../mod/events.php:114
+msgid "Event not found."
msgstr ""
-#: ../../mod/connections.php:207 ../../mod/connections.php:307
-msgid "Archived"
+#: ../../mod/events.php:396
+msgid "l, F j"
msgstr ""
-#: ../../mod/connections.php:231 ../../mod/connections.php:246
-msgid "All"
+#: ../../mod/events.php:418
+msgid "Edit event"
msgstr ""
-#: ../../mod/connections.php:271
-msgid "Suggest new connections"
+#: ../../mod/events.php:419
+msgid "Delete event"
msgstr ""
-#: ../../mod/connections.php:274
-msgid "New Connections"
+#: ../../mod/events.php:473
+msgid "Create New Event"
msgstr ""
-#: ../../mod/connections.php:277
-msgid "Show pending (new) connections"
+#: ../../mod/events.php:474 ../../mod/photos.php:827
+msgid "Previous"
msgstr ""
-#: ../../mod/connections.php:280 ../../mod/profperm.php:139
-msgid "All Connections"
+#: ../../mod/events.php:475 ../../mod/setup.php:265 ../../mod/photos.php:836
+msgid "Next"
msgstr ""
-#: ../../mod/connections.php:283
-msgid "Show all connections"
+#: ../../mod/events.php:476
+msgid "Export"
msgstr ""
-#: ../../mod/connections.php:286
-msgid "Unblocked"
+#: ../../mod/events.php:504
+msgid "Event removed"
msgstr ""
-#: ../../mod/connections.php:289
-msgid "Only show unblocked connections"
+#: ../../mod/events.php:507
+msgid "Failed to remove event"
msgstr ""
-#: ../../mod/connections.php:296
-msgid "Only show blocked connections"
+#: ../../mod/events.php:627
+msgid "Event details"
msgstr ""
-#: ../../mod/connections.php:303
-msgid "Only show ignored connections"
+#: ../../mod/events.php:628
+msgid "Starting date and Title are required."
msgstr ""
-#: ../../mod/connections.php:310
-msgid "Only show archived connections"
+#: ../../mod/events.php:630
+msgid "Categories (comma-separated list)"
msgstr ""
-#: ../../mod/connections.php:317
-msgid "Only show hidden connections"
+#: ../../mod/events.php:632
+msgid "Event Starts:"
msgstr ""
-#: ../../mod/connections.php:372
-#, php-format
-msgid "%1$s [%2$s]"
+#: ../../mod/events.php:639
+msgid "Finish date/time is not known or not relevant"
msgstr ""
-#: ../../mod/connections.php:373
-msgid "Edit connection"
+#: ../../mod/events.php:641
+msgid "Event Finishes:"
msgstr ""
-#: ../../mod/connections.php:411
-msgid "Search your connections"
+#: ../../mod/events.php:643 ../../mod/events.php:644
+msgid "Adjust for viewer timezone"
msgstr ""
-#: ../../mod/connections.php:412
-msgid "Finding: "
+#: ../../mod/events.php:643
+msgid ""
+"Important for events that happen in a particular place. Not practical for "
+"global holidays."
msgstr ""
-#: ../../mod/editblock.php:79 ../../mod/editblock.php:95
-#: ../../mod/editpost.php:20 ../../mod/editlayout.php:78
-#: ../../mod/editwebpage.php:77
-msgid "Item not found"
+#: ../../mod/events.php:645
+msgid "Description:"
msgstr ""
-#: ../../mod/editblock.php:115
-msgid "Edit Block"
+#: ../../mod/events.php:649
+msgid "Title:"
msgstr ""
-#: ../../mod/editblock.php:125
-msgid "Delete block?"
+#: ../../mod/events.php:651
+msgid "Share this event"
msgstr ""
-#: ../../mod/editblock.php:147 ../../mod/editpost.php:116
-#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178
-msgid "Insert YouTube video"
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
msgstr ""
-#: ../../mod/editblock.php:148 ../../mod/editpost.php:117
-#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179
-msgid "Insert Vorbis [.ogg] video"
+#: ../../mod/pubsites.php:16
+msgid "Public Sites"
msgstr ""
-#: ../../mod/editblock.php:149 ../../mod/editpost.php:118
-#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180
-msgid "Insert Vorbis [.ogg] audio"
+#: ../../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/editblock.php:183
-msgid "Delete Block"
+#: ../../mod/pubsites.php:25
+msgid "Rate this hub"
msgstr ""
-#: ../../mod/settings.php:73
-msgid "Name is required"
+#: ../../mod/pubsites.php:26
+msgid "Site URL"
msgstr ""
-#: ../../mod/settings.php:77
-msgid "Key and Secret are required"
+#: ../../mod/pubsites.php:26
+msgid "Access Type"
msgstr ""
-#: ../../mod/settings.php:222
-msgid "Passwords do not match. Password unchanged."
+#: ../../mod/pubsites.php:26
+msgid "Registration Policy"
msgstr ""
-#: ../../mod/settings.php:226
-msgid "Empty passwords are not allowed. Password unchanged."
+#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454
+msgid "Location"
msgstr ""
-#: ../../mod/settings.php:240
-msgid "Password changed."
+#: ../../mod/pubsites.php:26
+msgid "View hub ratings"
msgstr ""
-#: ../../mod/settings.php:242
-msgid "Password update failed. Please try again."
+#: ../../mod/pubsites.php:30
+msgid "Rate"
msgstr ""
-#: ../../mod/settings.php:256
-msgid "Not valid email."
+#: ../../mod/pubsites.php:31
+msgid "View ratings"
msgstr ""
-#: ../../mod/settings.php:259
-msgid "Protected email address. Cannot change to that email."
+#: ../../mod/rpost.php:105 ../../mod/editpost.php:42
+msgid "Edit post"
msgstr ""
-#: ../../mod/settings.php:268
-msgid "System failure storing new email. Please try again."
+#: ../../mod/dav.php:121
+msgid "RedMatrix channel"
msgstr ""
-#: ../../mod/settings.php:507
-msgid "Settings updated."
+#: ../../mod/group.php:20
+msgid "Collection created."
msgstr ""
-#: ../../mod/settings.php:576 ../../mod/settings.php:602
-#: ../../mod/settings.php:638
-msgid "Add application"
+#: ../../mod/group.php:26
+msgid "Could not create collection."
msgstr ""
-#: ../../mod/settings.php:579
-msgid "Name of application"
+#: ../../mod/group.php:54
+msgid "Collection updated."
msgstr ""
-#: ../../mod/settings.php:580 ../../mod/settings.php:606
-msgid "Consumer Key"
+#: ../../mod/group.php:86
+msgid "Create a collection of channels."
msgstr ""
-#: ../../mod/settings.php:580 ../../mod/settings.php:581
-msgid "Automatically generated - change if desired. Max length 20"
+#: ../../mod/group.php:87 ../../mod/group.php:183
+msgid "Collection Name: "
msgstr ""
-#: ../../mod/settings.php:581 ../../mod/settings.php:607
-msgid "Consumer Secret"
+#: ../../mod/group.php:89 ../../mod/group.php:186
+msgid "Members are visible to other channels"
msgstr ""
-#: ../../mod/settings.php:582 ../../mod/settings.php:608
-msgid "Redirect"
+#: ../../mod/group.php:107
+msgid "Collection removed."
msgstr ""
-#: ../../mod/settings.php:582
-msgid ""
-"Redirect URI - leave blank unless your application specifically requires this"
+#: ../../mod/group.php:109
+msgid "Unable to remove collection."
msgstr ""
-#: ../../mod/settings.php:583 ../../mod/settings.php:609
-msgid "Icon url"
+#: ../../mod/group.php:182
+msgid "Collection Editor"
msgstr ""
-#: ../../mod/settings.php:583
-msgid "Optional"
+#: ../../mod/group.php:196 ../../mod/bulksetclose.php:89
+msgid "Members"
msgstr ""
-#: ../../mod/settings.php:594
-msgid "You can't edit this application."
+#: ../../mod/group.php:198 ../../mod/bulksetclose.php:91
+msgid "All Connected Channels"
msgstr ""
-#: ../../mod/settings.php:637
-msgid "Connected Apps"
+#: ../../mod/group.php:233 ../../mod/bulksetclose.php:126
+msgid "Click on a channel to add or remove."
msgstr ""
-#: ../../mod/settings.php:641
-msgid "Client key starts with"
+#: ../../mod/siteinfo.php:112
+#, php-format
+msgid "Version %s"
msgstr ""
-#: ../../mod/settings.php:642
-msgid "No name"
+#: ../../mod/siteinfo.php:133
+msgid "Installed plugins/addons/apps:"
msgstr ""
-#: ../../mod/settings.php:643
-msgid "Remove authorization"
+#: ../../mod/siteinfo.php:146
+msgid "No installed plugins/addons/apps"
msgstr ""
-#: ../../mod/settings.php:654
-msgid "No feature settings configured"
+#: ../../mod/siteinfo.php:155
+msgid "Red"
msgstr ""
-#: ../../mod/settings.php:662
-msgid "Feature Settings"
+#: ../../mod/siteinfo.php:156
+msgid ""
+"This is a hub of redmatrix - a global cooperative network of decentralized "
+"privacy enhanced websites."
msgstr ""
-#: ../../mod/settings.php:685
-msgid "Account Settings"
+#: ../../mod/siteinfo.php:158
+msgid "Tag: "
msgstr ""
-#: ../../mod/settings.php:686
-msgid "Password Settings"
+#: ../../mod/siteinfo.php:160
+msgid "Last background fetch: "
msgstr ""
-#: ../../mod/settings.php:687
-msgid "New Password:"
+#: ../../mod/siteinfo.php:163
+msgid "Running at web location"
msgstr ""
-#: ../../mod/settings.php:688
-msgid "Confirm:"
+#: ../../mod/siteinfo.php:164
+msgid ""
+"Please visit <a href=\"https://redmatrix.me\">redmatrix.me</a> to learn more "
+"about the Red Matrix."
msgstr ""
-#: ../../mod/settings.php:688
-msgid "Leave password fields blank unless changing"
+#: ../../mod/siteinfo.php:165
+msgid "Bug reports and issues: please visit"
msgstr ""
-#: ../../mod/settings.php:690 ../../mod/settings.php:1026
-msgid "Email Address:"
+#: ../../mod/siteinfo.php:168
+msgid ""
+"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"
msgstr ""
-#: ../../mod/settings.php:691 ../../mod/removeaccount.php:61
-msgid "Remove Account"
+#: ../../mod/siteinfo.php:170
+msgid "Site Administrators"
msgstr ""
-#: ../../mod/settings.php:692
-msgid "Remove this account from this server including all its channels"
+#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61
+msgid "Help:"
msgstr ""
-#: ../../mod/settings.php:693 ../../mod/settings.php:1107
-msgid "Warning: This action is permanent and cannot be reversed."
+#: ../../mod/help.php:76 ../../index.php:238
+msgid "Not Found"
msgstr ""
-#: ../../mod/settings.php:709
-msgid "Off"
+#: ../../mod/setup.php:166
+msgid "Red Matrix Server - Setup"
msgstr ""
-#: ../../mod/settings.php:709
-msgid "On"
+#: ../../mod/setup.php:172
+msgid "Could not connect to database."
msgstr ""
-#: ../../mod/settings.php:716
-msgid "Additional Features"
+#: ../../mod/setup.php:176
+msgid ""
+"Could not connect to specified site URL. Possible SSL certificate or DNS "
+"issue."
msgstr ""
-#: ../../mod/settings.php:740
-msgid "Connector Settings"
+#: ../../mod/setup.php:183
+msgid "Could not create table."
msgstr ""
-#: ../../mod/settings.php:779
-msgid "No special theme for mobile devices"
+#: ../../mod/setup.php:189
+msgid "Your site database has been installed."
msgstr ""
-#: ../../mod/settings.php:782
-#, php-format
-msgid "%s - (Experimental)"
+#: ../../mod/setup.php:194
+msgid ""
+"You may need to import the file \"install/schema_xxx.sql\" manually using a "
+"database client."
msgstr ""
-#: ../../mod/settings.php:785 ../../mod/admin.php:367
-msgid "mobile"
+#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662
+msgid "Please see the file \"install/INSTALL.txt\"."
msgstr ""
-#: ../../mod/settings.php:821
-msgid "Display Settings"
+#: ../../mod/setup.php:261
+msgid "System check"
msgstr ""
-#: ../../mod/settings.php:827
-msgid "Display Theme:"
+#: ../../mod/setup.php:266
+msgid "Check again"
msgstr ""
-#: ../../mod/settings.php:828
-msgid "Mobile Theme:"
+#: ../../mod/setup.php:289
+msgid "Database connection"
msgstr ""
-#: ../../mod/settings.php:829
-msgid "Enable user zoom on mobile devices"
+#: ../../mod/setup.php:290
+msgid ""
+"In order to install Red Matrix we need to know how to connect to your "
+"database."
msgstr ""
-#: ../../mod/settings.php:830
-msgid "Update browser every xx seconds"
+#: ../../mod/setup.php:291
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
msgstr ""
-#: ../../mod/settings.php:830
-msgid "Minimum of 10 seconds, no maximum"
+#: ../../mod/setup.php:292
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
msgstr ""
-#: ../../mod/settings.php:831
-msgid "Maximum number of conversations to load at any time:"
+#: ../../mod/setup.php:296
+msgid "Database Server Name"
msgstr ""
-#: ../../mod/settings.php:831
-msgid "Maximum of 100 items"
+#: ../../mod/setup.php:296
+msgid "Default is localhost"
msgstr ""
-#: ../../mod/settings.php:832
-msgid "Don't show emoticons"
+#: ../../mod/setup.php:297
+msgid "Database Port"
msgstr ""
-#: ../../mod/settings.php:833
-msgid "Link post titles to source"
+#: ../../mod/setup.php:297
+msgid "Communication port number - use 0 for default"
msgstr ""
-#: ../../mod/settings.php:834
-msgid "System Page Layout Editor - (advanced)"
+#: ../../mod/setup.php:298
+msgid "Database Login Name"
msgstr ""
-#: ../../mod/settings.php:837
-msgid "Use blog/list mode on channel page"
+#: ../../mod/setup.php:299
+msgid "Database Login Password"
msgstr ""
-#: ../../mod/settings.php:837 ../../mod/settings.php:838
-msgid "(comments displayed separately)"
+#: ../../mod/setup.php:300
+msgid "Database Name"
msgstr ""
-#: ../../mod/settings.php:838
-msgid "Use blog/list mode on matrix page"
+#: ../../mod/setup.php:301
+msgid "Database Type"
msgstr ""
-#: ../../mod/settings.php:839
-msgid "Channel page max height of content (in pixels)"
+#: ../../mod/setup.php:303 ../../mod/setup.php:347
+msgid "Site administrator email address"
msgstr ""
-#: ../../mod/settings.php:839 ../../mod/settings.php:840
-msgid "click to expand content exceeding this height"
+#: ../../mod/setup.php:303 ../../mod/setup.php:347
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
msgstr ""
-#: ../../mod/settings.php:840
-msgid "Matrix page max height of content (in pixels)"
+#: ../../mod/setup.php:304 ../../mod/setup.php:349
+msgid "Website URL"
msgstr ""
-#: ../../mod/settings.php:874
-msgid "Nobody except yourself"
+#: ../../mod/setup.php:304 ../../mod/setup.php:349
+msgid "Please use SSL (https) URL if available."
msgstr ""
-#: ../../mod/settings.php:875
-msgid "Only those you specifically allow"
+#: ../../mod/setup.php:307 ../../mod/setup.php:352
+msgid "Please select a default timezone for your website"
msgstr ""
-#: ../../mod/settings.php:876
-msgid "Approved connections"
+#: ../../mod/setup.php:335
+msgid "Site settings"
msgstr ""
-#: ../../mod/settings.php:877
-msgid "Any connections"
+#: ../../mod/setup.php:395
+msgid "Could not find a command line version of PHP in the web server PATH."
msgstr ""
-#: ../../mod/settings.php:878
-msgid "Anybody on this website"
+#: ../../mod/setup.php:396
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron."
msgstr ""
-#: ../../mod/settings.php:879
-msgid "Anybody in this network"
+#: ../../mod/setup.php:400
+msgid "PHP executable path"
msgstr ""
-#: ../../mod/settings.php:880
-msgid "Anybody authenticated"
+#: ../../mod/setup.php:400
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
msgstr ""
-#: ../../mod/settings.php:881
-msgid "Anybody on the internet"
+#: ../../mod/setup.php:405
+msgid "Command line PHP"
msgstr ""
-#: ../../mod/settings.php:955
-msgid "Publish your default profile in the network directory"
+#: ../../mod/setup.php:414
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
msgstr ""
-#: ../../mod/settings.php:960
-msgid "Allow us to suggest you as a potential friend to new members?"
+#: ../../mod/setup.php:415
+msgid "This is required for message delivery to work."
msgstr ""
-#: ../../mod/settings.php:964 ../../mod/profile_photo.php:366
-msgid "or"
+#: ../../mod/setup.php:417
+msgid "PHP register_argc_argv"
msgstr ""
-#: ../../mod/settings.php:969
-msgid "Your channel address is"
+#: ../../mod/setup.php:438
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
msgstr ""
-#: ../../mod/settings.php:1017
-msgid "Channel Settings"
+#: ../../mod/setup.php:439
+msgid ""
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
msgstr ""
-#: ../../mod/settings.php:1024
-msgid "Basic Settings"
+#: ../../mod/setup.php:441
+msgid "Generate encryption keys"
msgstr ""
-#: ../../mod/settings.php:1027
-msgid "Your Timezone:"
+#: ../../mod/setup.php:448
+msgid "libCurl PHP module"
msgstr ""
-#: ../../mod/settings.php:1028
-msgid "Default Post Location:"
+#: ../../mod/setup.php:449
+msgid "GD graphics PHP module"
msgstr ""
-#: ../../mod/settings.php:1028
-msgid "Geographical location to display on your posts"
+#: ../../mod/setup.php:450
+msgid "OpenSSL PHP module"
msgstr ""
-#: ../../mod/settings.php:1029
-msgid "Use Browser Location:"
+#: ../../mod/setup.php:451
+msgid "mysqli or postgres PHP module"
msgstr ""
-#: ../../mod/settings.php:1031
-msgid "Adult Content"
+#: ../../mod/setup.php:452
+msgid "mb_string PHP module"
msgstr ""
-#: ../../mod/settings.php:1031
-msgid ""
-"This channel frequently or regularly publishes adult content. (Please tag "
-"any adult material and/or nudity with #NSFW)"
+#: ../../mod/setup.php:453
+msgid "mcrypt PHP module"
msgstr ""
-#: ../../mod/settings.php:1033
-msgid "Security and Privacy Settings"
+#: ../../mod/setup.php:458 ../../mod/setup.php:460
+msgid "Apache mod_rewrite module"
msgstr ""
-#: ../../mod/settings.php:1035
-msgid "Your permissions are already configured. Click to view/adjust"
+#: ../../mod/setup.php:458
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr ""
-#: ../../mod/settings.php:1037
-msgid "Hide my online presence"
+#: ../../mod/setup.php:464 ../../mod/setup.php:467
+msgid "proc_open"
msgstr ""
-#: ../../mod/settings.php:1037
-msgid "Prevents displaying in your profile that you are online"
+#: ../../mod/setup.php:464
+msgid ""
+"Error: proc_open is required but is either not installed or has been "
+"disabled in php.ini"
msgstr ""
-#: ../../mod/settings.php:1039
-msgid "Simple Privacy Settings:"
+#: ../../mod/setup.php:472
+msgid "Error: libCURL PHP module required but not installed."
msgstr ""
-#: ../../mod/settings.php:1040
+#: ../../mod/setup.php:476
msgid ""
-"Very Public - <em>extremely permissive (should be used with caution)</em>"
+"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr ""
-#: ../../mod/settings.php:1041
-msgid ""
-"Typical - <em>default public, privacy when desired (similar to social "
-"network permissions but with improved privacy)</em>"
+#: ../../mod/setup.php:480
+msgid "Error: openssl PHP module required but not installed."
msgstr ""
-#: ../../mod/settings.php:1042
-msgid "Private - <em>default private, never open or public</em>"
+#: ../../mod/setup.php:484
+msgid ""
+"Error: mysqli or postgres PHP module required but neither are installed."
msgstr ""
-#: ../../mod/settings.php:1043
-msgid "Blocked - <em>default blocked to/from everybody</em>"
+#: ../../mod/setup.php:488
+msgid "Error: mb_string PHP module required but not installed."
msgstr ""
-#: ../../mod/settings.php:1045
-msgid "Allow others to tag your posts"
+#: ../../mod/setup.php:492
+msgid "Error: mcrypt PHP module required but not installed."
msgstr ""
-#: ../../mod/settings.php:1045
+#: ../../mod/setup.php:508
msgid ""
-"Often used by the community to retro-actively flag inappropriate content"
+"The web installer needs to be able to create a file called \".htconfig.php\" "
+"in the top folder of your web server and it is unable to do so."
msgstr ""
-#: ../../mod/settings.php:1047
-msgid "Advanced Privacy Settings"
+#: ../../mod/setup.php:509
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
msgstr ""
-#: ../../mod/settings.php:1049
-msgid "Expire other channel content after this many days"
+#: ../../mod/setup.php:510
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Red top folder."
msgstr ""
-#: ../../mod/settings.php:1049
-msgid "0 or blank prevents expiration"
+#: ../../mod/setup.php:511
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation. "
+"Please see the file \"install/INSTALL.txt\" for instructions."
msgstr ""
-#: ../../mod/settings.php:1050
-msgid "Maximum Friend Requests/Day:"
+#: ../../mod/setup.php:514
+msgid ".htconfig.php is writable"
msgstr ""
-#: ../../mod/settings.php:1050
-msgid "May reduce spam activity"
+#: ../../mod/setup.php:524
+msgid ""
+"Red uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
msgstr ""
-#: ../../mod/settings.php:1051
-msgid "Default Post Permissions"
+#: ../../mod/setup.php:525
+#, php-format
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory %s under the Red top level folder."
msgstr ""
-#: ../../mod/settings.php:1056
-msgid "Channel permissions category:"
+#: ../../mod/setup.php:526 ../../mod/setup.php:544
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has "
+"write access to this folder."
msgstr ""
-#: ../../mod/settings.php:1062
-msgid "Maximum private messages per day from unknown people:"
+#: ../../mod/setup.php:527
+#, php-format
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"%s only--not the template files (.tpl) that it contains."
msgstr ""
-#: ../../mod/settings.php:1062
-msgid "Useful to reduce spamming"
+#: ../../mod/setup.php:530
+#, php-format
+msgid "%s is writable"
msgstr ""
-#: ../../mod/settings.php:1065
-msgid "Notification Settings"
+#: ../../mod/setup.php:543
+msgid ""
+"Red uses the store directory to save uploaded files. The web server needs to "
+"have write access to the store directory under the Red top level folder"
msgstr ""
-#: ../../mod/settings.php:1066
-msgid "By default post a status message when:"
+#: ../../mod/setup.php:547
+msgid "store is writable"
msgstr ""
-#: ../../mod/settings.php:1067
-msgid "accepting a friend request"
+#: ../../mod/setup.php:577
+msgid ""
+"SSL certificate cannot be validated. Fix certificate or disable https access "
+"to this site."
msgstr ""
-#: ../../mod/settings.php:1068
-msgid "joining a forum/community"
+#: ../../mod/setup.php:578
+msgid ""
+"If you have https access to your website or allow connections to TCP port "
+"443 (the https: port), you MUST use a browser-valid certificate. You MUST "
+"NOT use self-signed certificates!"
msgstr ""
-#: ../../mod/settings.php:1069
-msgid "making an <em>interesting</em> profile change"
+#: ../../mod/setup.php:579
+msgid ""
+"This restriction is incorporated because public posts from you may for "
+"example contain references to images on your own hub."
msgstr ""
-#: ../../mod/settings.php:1070
-msgid "Send a notification email when:"
+#: ../../mod/setup.php:580
+msgid ""
+"If your certificate is not recognized, members of other sites (who may "
+"themselves have valid certificates) will get a warning message on their own "
+"site complaining about security issues."
msgstr ""
-#: ../../mod/settings.php:1071
-msgid "You receive a connection request"
+#: ../../mod/setup.php:581
+msgid ""
+"This can cause usability issues elsewhere (not just on your own site) so we "
+"must insist on this requirement."
msgstr ""
-#: ../../mod/settings.php:1072
-msgid "Your connections are confirmed"
+#: ../../mod/setup.php:582
+msgid ""
+"Providers are available that issue free certificates which are browser-valid."
msgstr ""
-#: ../../mod/settings.php:1073
-msgid "Someone writes on your profile wall"
+#: ../../mod/setup.php:584
+msgid "SSL certificate validation"
msgstr ""
-#: ../../mod/settings.php:1074
-msgid "Someone writes a followup comment"
+#: ../../mod/setup.php:590
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+"Test: "
msgstr ""
-#: ../../mod/settings.php:1075
-msgid "You receive a private message"
+#: ../../mod/setup.php:592
+msgid "Url rewrite is working"
msgstr ""
-#: ../../mod/settings.php:1076
-msgid "You receive a friend suggestion"
+#: ../../mod/setup.php:602
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
msgstr ""
-#: ../../mod/settings.php:1077
-msgid "You are tagged in a post"
+#: ../../mod/setup.php:625
+msgid "Errors encountered creating database tables."
msgstr ""
-#: ../../mod/settings.php:1078
-msgid "You are poked/prodded/etc. in a post"
+#: ../../mod/setup.php:660
+msgid "<h1>What next</h1>"
msgstr ""
-#: ../../mod/settings.php:1081
-msgid "Show visual notifications including:"
+#: ../../mod/setup.php:661
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
msgstr ""
-#: ../../mod/settings.php:1083
-msgid "Unseen matrix activity"
+#: ../../mod/common.php:10
+msgid "No channel."
msgstr ""
-#: ../../mod/settings.php:1084
-msgid "Unseen channel activity"
+#: ../../mod/common.php:39
+msgid "Common connections"
msgstr ""
-#: ../../mod/settings.php:1085
-msgid "Unseen private messages"
+#: ../../mod/common.php:44
+msgid "No connections in common."
msgstr ""
-#: ../../mod/settings.php:1085 ../../mod/settings.php:1090
-#: ../../mod/settings.php:1091 ../../mod/settings.php:1092
-msgid "Recommended"
+#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21
+msgid "This site is not a directory server"
msgstr ""
-#: ../../mod/settings.php:1086
-msgid "Upcoming events"
+#: ../../mod/connections.php:37 ../../mod/connedit.php:75
+msgid "Could not access contact record."
msgstr ""
-#: ../../mod/settings.php:1087
-msgid "Events today"
+#: ../../mod/connections.php:51 ../../mod/connedit.php:99
+msgid "Could not locate selected profile."
msgstr ""
-#: ../../mod/settings.php:1088
-msgid "Upcoming birthdays"
+#: ../../mod/connections.php:94 ../../mod/connedit.php:214
+msgid "Connection updated."
msgstr ""
-#: ../../mod/settings.php:1088
-msgid "Not available in all themes"
+#: ../../mod/connections.php:96 ../../mod/connedit.php:216
+msgid "Failed to update connection record."
msgstr ""
-#: ../../mod/settings.php:1089
-msgid "System (personal) notifications"
+#: ../../mod/connections.php:192 ../../mod/connections.php:293
+msgid "Blocked"
msgstr ""
-#: ../../mod/settings.php:1090
-msgid "System info messages"
+#: ../../mod/connections.php:197 ../../mod/connections.php:300
+msgid "Ignored"
msgstr ""
-#: ../../mod/settings.php:1091
-msgid "System critical alerts"
+#: ../../mod/connections.php:202 ../../mod/connections.php:314
+msgid "Hidden"
msgstr ""
-#: ../../mod/settings.php:1092
-msgid "New connections"
+#: ../../mod/connections.php:207 ../../mod/connections.php:307
+msgid "Archived"
msgstr ""
-#: ../../mod/settings.php:1093
-msgid "System Registrations"
+#: ../../mod/connections.php:271
+msgid "Suggest new connections"
msgstr ""
-#: ../../mod/settings.php:1094
-msgid ""
-"Also show new wall posts, private messages and connections under Notices"
+#: ../../mod/connections.php:274
+msgid "New Connections"
msgstr ""
-#: ../../mod/settings.php:1096
-msgid "Notify me of events this many days in advance"
+#: ../../mod/connections.php:277
+msgid "Show pending (new) connections"
msgstr ""
-#: ../../mod/settings.php:1096
-msgid "Must be greater than 0"
+#: ../../mod/connections.php:280 ../../mod/profperm.php:139
+msgid "All Connections"
msgstr ""
-#: ../../mod/settings.php:1098
-msgid "Advanced Account/Page Type Settings"
+#: ../../mod/connections.php:283
+msgid "Show all connections"
msgstr ""
-#: ../../mod/settings.php:1099
-msgid "Change the behaviour of this account for special situations"
+#: ../../mod/connections.php:286
+msgid "Unblocked"
msgstr ""
-#: ../../mod/settings.php:1102
-msgid ""
-"Please enable expert mode (in <a href=\"settings/features\">Settings > "
-"Additional features</a>) to adjust!"
+#: ../../mod/connections.php:289
+msgid "Only show unblocked connections"
msgstr ""
-#: ../../mod/settings.php:1103
-msgid "Miscellaneous Settings"
+#: ../../mod/connections.php:296
+msgid "Only show blocked connections"
msgstr ""
-#: ../../mod/settings.php:1105
-msgid "Personal menu to display in your channel pages"
+#: ../../mod/connections.php:303
+msgid "Only show ignored connections"
msgstr ""
-#: ../../mod/settings.php:1106
-msgid "Remove this channel"
+#: ../../mod/connections.php:310
+msgid "Only show archived connections"
msgstr ""
-#: ../../mod/filer.php:49
-msgid "- select -"
+#: ../../mod/connections.php:317
+msgid "Only show hidden connections"
msgstr ""
-#: ../../mod/siteinfo.php:93
+#: ../../mod/connections.php:372
#, php-format
-msgid "Version %s"
-msgstr ""
-
-#: ../../mod/siteinfo.php:114
-msgid "Installed plugins/addons/apps:"
-msgstr ""
-
-#: ../../mod/siteinfo.php:127
-msgid "No installed plugins/addons/apps"
+msgid "%1$s [%2$s]"
msgstr ""
-#: ../../mod/siteinfo.php:136
-msgid "Red"
+#: ../../mod/connections.php:373
+msgid "Edit connection"
msgstr ""
-#: ../../mod/siteinfo.php:137
-msgid ""
-"This is a hub of the Red Matrix - a global cooperative network of "
-"decentralized privacy enhanced websites."
+#: ../../mod/connections.php:411
+msgid "Search your connections"
msgstr ""
-#: ../../mod/siteinfo.php:139
-msgid "Tag: "
+#: ../../mod/connections.php:412
+msgid "Finding: "
msgstr ""
-#: ../../mod/siteinfo.php:141
-msgid "Last background fetch: "
+#: ../../mod/impel.php:33
+msgid "webpage"
msgstr ""
-#: ../../mod/siteinfo.php:144
-msgid "Running at web location"
+#: ../../mod/impel.php:38
+msgid "block"
msgstr ""
-#: ../../mod/siteinfo.php:145
-msgid ""
-"Please visit <a href=\"https://redmatrix.me\">RedMatrix.me</a> to learn more "
-"about the Red Matrix."
+#: ../../mod/impel.php:43
+msgid "layout"
msgstr ""
-#: ../../mod/siteinfo.php:146
-msgid "Bug reports and issues: please visit"
+#: ../../mod/impel.php:117
+#, php-format
+msgid "%s element installed"
msgstr ""
-#: ../../mod/siteinfo.php:149
-msgid ""
-"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"
+#: ../../mod/tagger.php:96
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr ""
-#: ../../mod/siteinfo.php:151
-msgid "Site Administrators"
+#: ../../mod/cloud.php:120
+msgid "RedMatrix - Guests: Username: {your email address}, Password: +++"
msgstr ""
#: ../../mod/photos.php:77
@@ -5584,10 +5600,16 @@ msgstr ""
msgid "Delete Album"
msgstr ""
-#: ../../mod/photos.php:159 ../../mod/photos.php:926
+#: ../../mod/photos.php:159 ../../mod/photos.php:930
msgid "Delete Photo"
msgstr ""
+#: ../../mod/photos.php:429 ../../mod/search.php:13 ../../mod/display.php:13
+#: ../../mod/ratings.php:82 ../../mod/directory.php:47
+#: ../../mod/viewconnections.php:17
+msgid "Public access denied."
+msgstr ""
+
#: ../../mod/photos.php:440
msgid "No photos selected"
msgstr ""
@@ -5610,24 +5632,24 @@ msgstr ""
msgid "Upload Photos"
msgstr ""
-#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:911
+#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:915
msgid "Enter a new album name"
msgstr ""
-#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:912
+#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:916
msgid "or select an existing one (doubleclick)"
msgstr ""
#: ../../mod/photos.php:556
-msgid "Do not show a status post for this upload"
+msgid "Create a status post for this upload"
msgstr ""
#: ../../mod/photos.php:584
msgid "Album name could not be decoded"
msgstr ""
-#: ../../mod/photos.php:625 ../../mod/photos.php:1135
-#: ../../mod/photos.php:1151
+#: ../../mod/photos.php:625 ../../mod/photos.php:1157
+#: ../../mod/photos.php:1173
msgid "Contact Photos"
msgstr ""
@@ -5639,7 +5661,7 @@ msgstr ""
msgid "Show Oldest First"
msgstr ""
-#: ../../mod/photos.php:675 ../../mod/photos.php:1183
+#: ../../mod/photos.php:675 ../../mod/photos.php:1205
msgid "View Photo"
msgstr ""
@@ -5667,290 +5689,296 @@ msgstr ""
msgid "View Full Size"
msgstr ""
-#: ../../mod/photos.php:905
+#: ../../mod/photos.php:909
msgid "Edit photo"
msgstr ""
-#: ../../mod/photos.php:907
+#: ../../mod/photos.php:911
msgid "Rotate CW (right)"
msgstr ""
-#: ../../mod/photos.php:908
+#: ../../mod/photos.php:912
msgid "Rotate CCW (left)"
msgstr ""
-#: ../../mod/photos.php:915
+#: ../../mod/photos.php:919
msgid "Caption"
msgstr ""
-#: ../../mod/photos.php:917
+#: ../../mod/photos.php:921
msgid "Add a Tag"
msgstr ""
-#: ../../mod/photos.php:921
+#: ../../mod/photos.php:925
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com"
msgstr ""
-#: ../../mod/photos.php:924
+#: ../../mod/photos.php:928
msgid "Flag as adult in album view"
msgstr ""
-#: ../../mod/photos.php:1101
+#: ../../mod/photos.php:1120
msgid "In This Photo:"
msgstr ""
-#: ../../mod/photos.php:1189
-msgid "View Album"
-msgstr ""
-
-#: ../../mod/photos.php:1212
-msgid "Recent Photos"
+#: ../../mod/photos.php:1125
+msgid "Map"
msgstr ""
-#: ../../mod/acl.php:228
-msgid "network"
+#: ../../mod/photos.php:1211
+msgid "View Album"
msgstr ""
-#: ../../mod/acl.php:238
-msgid "RSS"
+#: ../../mod/photos.php:1234
+msgid "Recent Photos"
msgstr ""
-#: ../../mod/poke.php:159
-msgid "Poke/Prod"
+#: ../../mod/match.php:22
+msgid "Profile Match"
msgstr ""
-#: ../../mod/poke.php:160
-msgid "poke, prod or do other things to somebody"
+#: ../../mod/match.php:31
+msgid "No keywords to match. Please add keywords to your default profile."
msgstr ""
-#: ../../mod/poke.php:161
-msgid "Recipient"
+#: ../../mod/match.php:63
+msgid "is interested in:"
msgstr ""
-#: ../../mod/poke.php:162
-msgid "Choose what you wish to do to recipient"
+#: ../../mod/match.php:70
+msgid "No matches"
msgstr ""
-#: ../../mod/poke.php:165
-msgid "Make this post private"
+#: ../../mod/chatsvc.php:111
+msgid "Away"
msgstr ""
-#: ../../mod/manage.php:138
-#, php-format
-msgid "You have created %1$.0f of %2$.0f allowed channels."
+#: ../../mod/chatsvc.php:115
+msgid "Online"
msgstr ""
-#: ../../mod/manage.php:146
-msgid "Create a new channel"
+#: ../../mod/rbmark.php:88
+msgid "Select a bookmark folder"
msgstr ""
-#: ../../mod/manage.php:151
-msgid "Current Channel"
+#: ../../mod/rbmark.php:93
+msgid "Save Bookmark"
msgstr ""
-#: ../../mod/manage.php:153
-msgid "Switch to one of your channels by selecting it."
+#: ../../mod/rbmark.php:94
+msgid "URL of bookmark"
msgstr ""
-#: ../../mod/manage.php:154
-msgid "Default Channel"
+#: ../../mod/rbmark.php:95 ../../mod/appman.php:93
+msgid "Description"
msgstr ""
-#: ../../mod/manage.php:155
-msgid "Make Default"
+#: ../../mod/rbmark.php:99
+msgid "Or enter new bookmark folder name"
msgstr ""
-#: ../../mod/manage.php:158
-#, php-format
-msgid "%d new messages"
+#: ../../mod/notify.php:53 ../../mod/notifications.php:94
+msgid "No more system notifications."
msgstr ""
-#: ../../mod/manage.php:159
-#, php-format
-msgid "%d new introductions"
+#: ../../mod/notify.php:57 ../../mod/notifications.php:98
+msgid "System Notifications"
msgstr ""
-#: ../../mod/dirsearch.php:20 ../../mod/regdir.php:22
-msgid "This site is not a directory server"
+#: ../../mod/acl.php:231
+msgid "network"
msgstr ""
-#: ../../mod/bookmarks.php:38
-msgid "Bookmark added"
+#: ../../mod/acl.php:241
+msgid "RSS"
msgstr ""
-#: ../../mod/bookmarks.php:60
-msgid "My Bookmarks"
+#: ../../mod/pdledit.php:13
+msgid "Layout updated."
msgstr ""
-#: ../../mod/bookmarks.php:71
-msgid "My Connections Bookmarks"
+#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53
+msgid "Edit System Page Description"
msgstr ""
-#: ../../mod/editpost.php:31
-msgid "Item is not editable"
+#: ../../mod/pdledit.php:48
+msgid "Layout not found."
msgstr ""
-#: ../../mod/editpost.php:53
-msgid "Delete item?"
+#: ../../mod/pdledit.php:54
+msgid "Module Name:"
msgstr ""
-#: ../../mod/group.php:20
-msgid "Collection created."
+#: ../../mod/pdledit.php:55 ../../mod/layouts.php:108
+msgid "Layout Help"
msgstr ""
-#: ../../mod/group.php:26
-msgid "Could not create collection."
+#: ../../mod/filer.php:49
+msgid "- select -"
msgstr ""
-#: ../../mod/group.php:54
-msgid "Collection updated."
+#: ../../mod/import.php:25
+#, php-format
+msgid "Your service plan only allows %d channels."
msgstr ""
-#: ../../mod/group.php:86
-msgid "Create a collection of channels."
+#: ../../mod/import.php:51
+msgid "Nothing to import."
msgstr ""
-#: ../../mod/group.php:87 ../../mod/group.php:183
-msgid "Collection Name: "
+#: ../../mod/import.php:75
+msgid "Unable to download data from old server"
msgstr ""
-#: ../../mod/group.php:89 ../../mod/group.php:186
-msgid "Members are visible to other channels"
+#: ../../mod/import.php:81
+msgid "Imported file is empty."
msgstr ""
-#: ../../mod/group.php:107
-msgid "Collection removed."
+#: ../../mod/import.php:106
+msgid ""
+"Cannot create a duplicate channel identifier on this system. Import failed."
msgstr ""
-#: ../../mod/group.php:109
-msgid "Unable to remove collection."
+#: ../../mod/import.php:127
+msgid "Unable to create a unique channel address. Import failed."
msgstr ""
-#: ../../mod/group.php:182
-msgid "Collection Editor"
+#: ../../mod/import.php:147
+msgid "Channel clone failed. Import failed."
msgstr ""
-#: ../../mod/group.php:196
-msgid "Members"
+#: ../../mod/import.php:157
+msgid "Cloned channel not found. Import failed."
msgstr ""
-#: ../../mod/group.php:198
-msgid "All Connected Channels"
+#: ../../mod/import.php:475
+msgid "Import completed."
msgstr ""
-#: ../../mod/group.php:233
-msgid "Click on a channel to add or remove."
+#: ../../mod/import.php:487
+msgid "You must be logged in to use this feature."
msgstr ""
-#: ../../mod/ping.php:266
-msgid "sent you a private message"
+#: ../../mod/import.php:492
+msgid "Import Channel"
msgstr ""
-#: ../../mod/ping.php:319
-msgid "added your channel"
+#: ../../mod/import.php:493
+msgid ""
+"Use this form to import an existing channel from a different server/hub. You "
+"may retrieve the channel identity from the old server/hub via the network or "
+"provide an export file. Only identity and connections/relationships will be "
+"imported. Importation of content is not yet available."
msgstr ""
-#: ../../mod/ping.php:360
-msgid "posted an event"
+#: ../../mod/import.php:494
+msgid "File to Upload"
msgstr ""
-#: ../../mod/editlayout.php:108
-msgid "Edit Layout"
+#: ../../mod/import.php:495
+msgid "Or provide the old server/hub details"
msgstr ""
-#: ../../mod/editlayout.php:117
-msgid "Delete layout?"
+#: ../../mod/import.php:496
+msgid "Your old identity address (xyz@example.com)"
msgstr ""
-#: ../../mod/editlayout.php:178
-msgid "Delete Layout"
+#: ../../mod/import.php:497
+msgid "Your old login email address"
msgstr ""
-#: ../../mod/sources.php:32
-msgid "Failed to create source. No channel selected."
+#: ../../mod/import.php:498
+msgid "Your old login password"
msgstr ""
-#: ../../mod/sources.php:45
-msgid "Source created."
+#: ../../mod/import.php:499
+msgid ""
+"For either option, please choose whether to make this hub your new primary "
+"address, or whether your old location should continue this role. You will be "
+"able to post from either location, but only one can be marked as the primary "
+"location for files, photos, and media."
msgstr ""
-#: ../../mod/sources.php:57
-msgid "Source updated."
+#: ../../mod/import.php:500
+msgid "Make this hub my primary location"
msgstr ""
-#: ../../mod/sources.php:82
-msgid "*"
+#: ../../mod/import.php:501
+msgid "Import existing posts if possible"
msgstr ""
-#: ../../mod/sources.php:89
-msgid "Manage remote sources of content for your channel."
+#: ../../mod/editlayout.php:78 ../../mod/editwebpage.php:77
+#: ../../mod/editpost.php:20 ../../mod/editblock.php:79
+#: ../../mod/editblock.php:95
+msgid "Item not found"
msgstr ""
-#: ../../mod/sources.php:90 ../../mod/sources.php:100
-msgid "New Source"
+#: ../../mod/editlayout.php:108
+msgid "Edit Layout"
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/editlayout.php:117
+msgid "Delete layout?"
msgstr ""
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Only import content with these words (one per line)"
+#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:185
+#: ../../mod/editpost.php:122 ../../mod/editblock.php:153
+msgid "Insert YouTube video"
msgstr ""
-#: ../../mod/sources.php:102 ../../mod/sources.php:134
-msgid "Leave blank to import all public content"
+#: ../../mod/editlayout.php:149 ../../mod/editwebpage.php:186
+#: ../../mod/editpost.php:123 ../../mod/editblock.php:154
+msgid "Insert Vorbis [.ogg] video"
msgstr ""
-#: ../../mod/sources.php:103 ../../mod/sources.php:137
-#: ../../mod/new_channel.php:112
-msgid "Channel Name"
+#: ../../mod/editlayout.php:150 ../../mod/editwebpage.php:187
+#: ../../mod/editpost.php:124 ../../mod/editblock.php:155
+msgid "Insert Vorbis [.ogg] audio"
msgstr ""
-#: ../../mod/sources.php:123 ../../mod/sources.php:150
-msgid "Source not found."
+#: ../../mod/editlayout.php:183
+msgid "Delete Layout"
msgstr ""
-#: ../../mod/sources.php:130
-msgid "Edit Source"
+#: ../../mod/chat.php:19 ../../mod/channel.php:25
+msgid "You must be logged in to see this page."
msgstr ""
-#: ../../mod/sources.php:131
-msgid "Delete Source"
+#: ../../mod/chat.php:167
+msgid "Room not found"
msgstr ""
-#: ../../mod/sources.php:158
-msgid "Source removed"
+#: ../../mod/chat.php:178
+msgid "Leave Room"
msgstr ""
-#: ../../mod/sources.php:160
-msgid "Unable to remove source."
+#: ../../mod/chat.php:179
+msgid "Delete This Room"
msgstr ""
-#: ../../mod/follow.php:25
-msgid "Channel added."
+#: ../../mod/chat.php:180
+msgid "I am away right now"
msgstr ""
-#: ../../mod/pdledit.php:13
-msgid "Layout updated."
+#: ../../mod/chat.php:181
+msgid "I am online"
msgstr ""
-#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53
-msgid "Edit System Page Description"
+#: ../../mod/chat.php:183
+msgid "Bookmark this room"
msgstr ""
-#: ../../mod/pdledit.php:48
-msgid "Layout not found."
+#: ../../mod/chat.php:207 ../../mod/chat.php:229
+msgid "New Chatroom"
msgstr ""
-#: ../../mod/pdledit.php:54
-msgid "Module Name:"
+#: ../../mod/chat.php:208
+msgid "Chatroom Name"
msgstr ""
-#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107
-msgid "Layout Help"
+#: ../../mod/chat.php:225
+#, php-format
+msgid "%1$s's Chatrooms"
msgstr ""
#: ../../mod/editwebpage.php:140
@@ -5961,175 +5989,114 @@ msgstr ""
msgid "Delete webpage?"
msgstr ""
-#: ../../mod/editwebpage.php:215
-msgid "Delete Webpage"
-msgstr ""
-
-#: ../../mod/impel.php:33
-msgid "webpage"
-msgstr ""
-
-#: ../../mod/impel.php:38
-msgid "block"
-msgstr ""
-
-#: ../../mod/impel.php:43
-msgid "layout"
+#: ../../mod/editwebpage.php:171
+msgid "Page link title"
msgstr ""
-#: ../../mod/impel.php:117
-#, php-format
-msgid "%s element installed"
+#: ../../mod/editwebpage.php:222
+msgid "Delete Webpage"
msgstr ""
-#: ../../mod/profile_photo.php:108
-msgid "Image uploaded but image cropping failed."
+#: ../../mod/dirsearch.php:29
+msgid "This directory server requires an access token"
msgstr ""
-#: ../../mod/profile_photo.php:162
-msgid "Image resize failed."
+#: ../../mod/lostpass.php:15
+msgid "No valid account found."
msgstr ""
-#: ../../mod/profile_photo.php:206
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
+#: ../../mod/lostpass.php:29
+msgid "Password reset request issued. Check your email."
msgstr ""
-#: ../../mod/profile_photo.php:233
+#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr ""
-
-#: ../../mod/profile_photo.php:242
-msgid "Unable to process image."
-msgstr ""
-
-#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340
-msgid "Photo not available."
-msgstr ""
-
-#: ../../mod/profile_photo.php:359
-msgid "Upload File:"
-msgstr ""
-
-#: ../../mod/profile_photo.php:360
-msgid "Select a profile:"
-msgstr ""
-
-#: ../../mod/profile_photo.php:361
-msgid "Upload Profile Photo"
-msgstr ""
-
-#: ../../mod/profile_photo.php:366
-msgid "skip this step"
-msgstr ""
-
-#: ../../mod/profile_photo.php:366
-msgid "select a photo from your photo albums"
-msgstr ""
-
-#: ../../mod/profile_photo.php:382
-msgid "Crop Image"
+msgid "Site Member (%s)"
msgstr ""
-#: ../../mod/profile_photo.php:383
-msgid "Please adjust the image cropping for optimum viewing."
+#: ../../mod/lostpass.php:40
+#, php-format
+msgid "Password reset requested at %s"
msgstr ""
-#: ../../mod/profile_photo.php:385
-msgid "Done Editing"
+#: ../../mod/lostpass.php:63
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
msgstr ""
-#: ../../mod/profile_photo.php:428
-msgid "Image uploaded successfully."
+#: ../../mod/lostpass.php:85 ../../boot.php:1548
+msgid "Password Reset"
msgstr ""
-#: ../../mod/profile_photo.php:430
-msgid "Image upload failed."
+#: ../../mod/lostpass.php:86
+msgid "Your password has been reset as requested."
msgstr ""
-#: ../../mod/profile_photo.php:439
-#, php-format
-msgid "Image size reduction [%s] failed."
+#: ../../mod/lostpass.php:87
+msgid "Your new password is"
msgstr ""
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
+#: ../../mod/lostpass.php:88
+msgid "Save or copy your new password - and then"
msgstr ""
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
+#: ../../mod/lostpass.php:89
+msgid "click here to login"
msgstr ""
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
+#: ../../mod/lostpass.php:90
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
msgstr ""
-#: ../../mod/fsuggest.php:99
+#: ../../mod/lostpass.php:107
#, php-format
-msgid "Suggest a friend for %s"
-msgstr ""
-
-#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61
-msgid "Help:"
-msgstr ""
-
-#: ../../mod/help.php:76 ../../index.php:238
-msgid "Not Found"
-msgstr ""
-
-#: ../../mod/like.php:15
-msgid "Like/Dislike"
+msgid "Your password has changed at %s"
msgstr ""
-#: ../../mod/like.php:20
-msgid "This action is restricted to members."
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
msgstr ""
-#: ../../mod/like.php:21
+#: ../../mod/lostpass.php:123
msgid ""
-"Please <a href=\"rmagic\">login with your RedMatrix ID</a> or <a href="
-"\"register\">register as a new RedMatrix member</a> to continue."
-msgstr ""
-
-#: ../../mod/like.php:89 ../../mod/like.php:116 ../../mod/like.php:154
-msgid "Invalid request."
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
msgstr ""
-#: ../../mod/like.php:131
-msgid "thing"
+#: ../../mod/lostpass.php:124
+msgid "Email Address"
msgstr ""
-#: ../../mod/like.php:177
-msgid "Channel unavailable."
+#: ../../mod/lostpass.php:125
+msgid "Reset"
msgstr ""
-#: ../../mod/like.php:216
-msgid "Previous action reversed."
+#: ../../mod/rate.php:157
+msgid "Website:"
msgstr ""
-#: ../../mod/like.php:352
+#: ../../mod/rate.php:160
#, php-format
-msgid "%1$s agrees with %2$s's %3$s"
+msgid "Remote Channel [%s] (not yet known on this site)"
msgstr ""
-#: ../../mod/like.php:354
-#, php-format
-msgid "%1$s doesn't agree with %2$s's %3$s"
+#: ../../mod/rate.php:161 ../../mod/connedit.php:663
+msgid "Rating (this information is public)"
msgstr ""
-#: ../../mod/like.php:356
-#, php-format
-msgid "%1$s abstains from a decision on %2$s's %3$s"
+#: ../../mod/rate.php:162 ../../mod/connedit.php:664
+msgid "Optionally explain your rating (this information is public)"
msgstr ""
-#: ../../mod/like.php:442
-msgid "Action completed."
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
msgstr ""
-#: ../../mod/like.php:443
-msgid "Thank you."
+#: ../../mod/editpost.php:53
+msgid "Delete item?"
msgstr ""
#: ../../mod/invite.php:25
@@ -6201,1361 +6168,1588 @@ msgstr ""
msgid "3. Click [Connect]"
msgstr ""
-#: ../../mod/filestorage.php:81
-msgid "Permission Denied."
+#: ../../mod/locs.php:21 ../../mod/locs.php:52
+msgid "Location not found."
msgstr ""
-#: ../../mod/filestorage.php:97
-msgid "File not found."
+#: ../../mod/locs.php:56
+msgid "Primary location cannot be removed."
msgstr ""
-#: ../../mod/filestorage.php:140
-msgid "Edit file permissions"
+#: ../../mod/locs.php:88
+msgid "No locations found."
msgstr ""
-#: ../../mod/filestorage.php:149
-msgid "Set/edit permissions"
+#: ../../mod/locs.php:101
+msgid "Manage Channel Locations"
msgstr ""
-#: ../../mod/filestorage.php:150
-msgid "Include all files and sub folders"
+#: ../../mod/locs.php:102
+msgid "Location (address)"
msgstr ""
-#: ../../mod/filestorage.php:151
-msgid "Return to file list"
+#: ../../mod/locs.php:103
+msgid "Primary Location"
msgstr ""
-#: ../../mod/filestorage.php:153
-msgid "Copy/paste this code to attach file to a post"
+#: ../../mod/locs.php:104
+msgid "Drop location"
msgstr ""
-#: ../../mod/filestorage.php:154
-msgid "Copy/paste this URL to link file from a web page"
+#: ../../mod/sources.php:32
+msgid "Failed to create source. No channel selected."
msgstr ""
-#: ../../mod/filestorage.php:156
-msgid "Attach this file to a new post"
+#: ../../mod/sources.php:45
+msgid "Source created."
msgstr ""
-#: ../../mod/filestorage.php:157
-msgid "Show URL to this file"
+#: ../../mod/sources.php:57
+msgid "Source updated."
msgstr ""
-#: ../../mod/filestorage.php:158
-msgid "Do not show in shared with me folder of your connections"
+#: ../../mod/sources.php:82
+msgid "*"
msgstr ""
-#: ../../mod/dav.php:121
-msgid "RedMatrix channel"
+#: ../../mod/sources.php:89
+msgid "Manage remote sources of content for your channel."
msgstr ""
-#: ../../mod/lockview.php:31
-msgid "Remote privacy information not available."
+#: ../../mod/sources.php:90 ../../mod/sources.php:100
+msgid "New Source"
msgstr ""
-#: ../../mod/lockview.php:52
-msgid "Visible to:"
+#: ../../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/import.php:25
-#, php-format
-msgid "Your service plan only allows %d channels."
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Only import content with these words (one per line)"
msgstr ""
-#: ../../mod/import.php:51
-msgid "Nothing to import."
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Leave blank to import all public content"
msgstr ""
-#: ../../mod/import.php:75
-msgid "Unable to download data from old server"
+#: ../../mod/sources.php:103 ../../mod/sources.php:137
+#: ../../mod/new_channel.php:112
+msgid "Channel Name"
msgstr ""
-#: ../../mod/import.php:81
-msgid "Imported file is empty."
+#: ../../mod/sources.php:123 ../../mod/sources.php:150
+msgid "Source not found."
msgstr ""
-#: ../../mod/import.php:106
-msgid ""
-"Cannot create a duplicate channel identifier on this system. Import failed."
+#: ../../mod/sources.php:130
+msgid "Edit Source"
msgstr ""
-#: ../../mod/import.php:127
-msgid "Unable to create a unique channel address. Import failed."
+#: ../../mod/sources.php:131
+msgid "Delete Source"
msgstr ""
-#: ../../mod/import.php:147
-msgid "Channel clone failed. Import failed."
+#: ../../mod/sources.php:158
+msgid "Source removed"
msgstr ""
-#: ../../mod/import.php:157
-msgid "Cloned channel not found. Import failed."
+#: ../../mod/sources.php:160
+msgid "Unable to remove source."
msgstr ""
-#: ../../mod/import.php:475
-msgid "Import completed."
+#: ../../mod/menu.php:40
+msgid "Menu updated."
msgstr ""
-#: ../../mod/import.php:487
-msgid "You must be logged in to use this feature."
+#: ../../mod/menu.php:44
+msgid "Unable to update menu."
msgstr ""
-#: ../../mod/import.php:492
-msgid "Import Channel"
+#: ../../mod/menu.php:49
+msgid "Menu created."
msgstr ""
-#: ../../mod/import.php:493
-msgid ""
-"Use this form to import an existing channel from a different server/hub. You "
-"may retrieve the channel identity from the old server/hub via the network or "
-"provide an export file. Only identity and connections/relationships will be "
-"imported. Importation of content is not yet available."
+#: ../../mod/menu.php:53
+msgid "Unable to create menu."
msgstr ""
-#: ../../mod/import.php:494
-msgid "File to Upload"
+#: ../../mod/menu.php:84
+msgid "Manage Menus"
msgstr ""
-#: ../../mod/import.php:495
-msgid "Or provide the old server/hub details"
+#: ../../mod/menu.php:87
+msgid "Drop"
msgstr ""
-#: ../../mod/import.php:496
-msgid "Your old identity address (xyz@example.com)"
+#: ../../mod/menu.php:89
+msgid "Bookmarks allowed"
msgstr ""
-#: ../../mod/import.php:497
-msgid "Your old login email address"
+#: ../../mod/menu.php:90
+msgid "Create a new menu"
msgstr ""
-#: ../../mod/import.php:498
-msgid "Your old login password"
+#: ../../mod/menu.php:91
+msgid "Delete this menu"
msgstr ""
-#: ../../mod/import.php:499
-msgid ""
-"For either option, please choose whether to make this hub your new primary "
-"address, or whether your old location should continue this role. You will be "
-"able to post from either location, but only one can be marked as the primary "
-"location for files, photos, and media."
+#: ../../mod/menu.php:92 ../../mod/menu.php:136
+msgid "Edit menu contents"
msgstr ""
-#: ../../mod/import.php:500
-msgid "Make this hub my primary location"
+#: ../../mod/menu.php:93
+msgid "Edit this menu"
msgstr ""
-#: ../../mod/import.php:501
-msgid "Import existing posts if possible"
+#: ../../mod/menu.php:105
+msgid "New Menu"
msgstr ""
-#: ../../mod/locs.php:21 ../../mod/locs.php:52
-msgid "Location not found."
+#: ../../mod/menu.php:106 ../../mod/menu.php:137
+msgid "Menu name"
msgstr ""
-#: ../../mod/locs.php:56
-msgid "Primary location cannot be removed."
+#: ../../mod/menu.php:106 ../../mod/menu.php:137
+msgid "Must be unique, only seen by you"
msgstr ""
-#: ../../mod/locs.php:88
-msgid "No locations found."
+#: ../../mod/menu.php:107 ../../mod/menu.php:138
+msgid "Menu title"
msgstr ""
-#: ../../mod/locs.php:101
-msgid "Manage Channel Locations"
+#: ../../mod/menu.php:107 ../../mod/menu.php:138
+msgid "Menu title as seen by others"
msgstr ""
-#: ../../mod/locs.php:102
-msgid "Location (address)"
+#: ../../mod/menu.php:108 ../../mod/menu.php:139
+msgid "Allow bookmarks"
msgstr ""
-#: ../../mod/locs.php:103
-msgid "Primary Location"
+#: ../../mod/menu.php:108 ../../mod/menu.php:139
+msgid "Menu may be used to store saved bookmarks"
msgstr ""
-#: ../../mod/locs.php:104
-msgid "Drop location"
+#: ../../mod/menu.php:119 ../../mod/mitem.php:24
+msgid "Menu not found."
msgstr ""
-#: ../../mod/thing.php:96
-msgid "Thing updated"
+#: ../../mod/menu.php:125
+msgid "Menu deleted."
msgstr ""
-#: ../../mod/thing.php:156
-msgid "Object store: failed"
+#: ../../mod/menu.php:127
+msgid "Menu could not be deleted."
msgstr ""
-#: ../../mod/thing.php:160
-msgid "Thing added"
+#: ../../mod/menu.php:133
+msgid "Edit Menu"
msgstr ""
-#: ../../mod/thing.php:180
-#, php-format
-msgid "OBJ: %1$s %2$s %3$s"
+#: ../../mod/menu.php:135
+msgid "Add or remove entries to this menu"
msgstr ""
-#: ../../mod/thing.php:232
-msgid "Show Thing"
+#: ../../mod/menu.php:141 ../../mod/mitem.php:213
+msgid "Modify"
msgstr ""
-#: ../../mod/thing.php:239
-msgid "item not found."
+#: ../../mod/filestorage.php:82
+msgid "Permission Denied."
msgstr ""
-#: ../../mod/thing.php:270
-msgid "Edit Thing"
+#: ../../mod/filestorage.php:98
+msgid "File not found."
msgstr ""
-#: ../../mod/thing.php:272 ../../mod/thing.php:319
-msgid "Select a profile"
+#: ../../mod/filestorage.php:141
+msgid "Edit file permissions"
msgstr ""
-#: ../../mod/thing.php:276 ../../mod/thing.php:322
-msgid "Post an activity"
+#: ../../mod/filestorage.php:150
+msgid "Set/edit permissions"
msgstr ""
-#: ../../mod/thing.php:276 ../../mod/thing.php:322
-msgid "Only sends to viewers of the applicable profile"
+#: ../../mod/filestorage.php:151
+msgid "Include all files and sub folders"
msgstr ""
-#: ../../mod/thing.php:278 ../../mod/thing.php:324
-msgid "Name of thing e.g. something"
+#: ../../mod/filestorage.php:152
+msgid "Return to file list"
msgstr ""
-#: ../../mod/thing.php:280 ../../mod/thing.php:325
-msgid "URL of thing (optional)"
+#: ../../mod/filestorage.php:154
+msgid "Copy/paste this code to attach file to a post"
msgstr ""
-#: ../../mod/thing.php:282 ../../mod/thing.php:326
-msgid "URL for photo of thing (optional)"
+#: ../../mod/filestorage.php:155
+msgid "Copy/paste this URL to link file from a web page"
msgstr ""
-#: ../../mod/thing.php:317
-msgid "Add Thing to your Profile"
+#: ../../mod/filestorage.php:157
+msgid "Share this file"
msgstr ""
-#: ../../mod/layouts.php:110
-msgid "Help with this feature"
+#: ../../mod/filestorage.php:158
+msgid "Show URL to this file"
msgstr ""
-#: ../../mod/layouts.php:130
-msgid "Layout Name"
+#: ../../mod/filestorage.php:159
+msgid "Notify your contacts about this file"
msgstr ""
-#: ../../mod/tagger.php:96
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr ""
+
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr ""
+
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr ""
+
+#: ../../mod/fsuggest.php:99
#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgid "Suggest a friend for %s"
msgstr ""
-#: ../../mod/connedit.php:252
-msgid "is now connected to"
+#: ../../mod/magic.php:69
+msgid "Hub not found."
msgstr ""
-#: ../../mod/connedit.php:365
-msgid "Could not access address book record."
+#: ../../mod/poke.php:159
+msgid "Poke/Prod"
msgstr ""
-#: ../../mod/connedit.php:379
-msgid "Refresh failed - channel is currently unavailable."
+#: ../../mod/poke.php:160
+msgid "poke, prod or do other things to somebody"
msgstr ""
-#: ../../mod/connedit.php:386
-msgid "Channel has been unblocked"
+#: ../../mod/poke.php:161
+msgid "Recipient"
msgstr ""
-#: ../../mod/connedit.php:387
-msgid "Channel has been blocked"
+#: ../../mod/poke.php:162
+msgid "Choose what you wish to do to recipient"
msgstr ""
-#: ../../mod/connedit.php:391 ../../mod/connedit.php:403
-#: ../../mod/connedit.php:415 ../../mod/connedit.php:427
-#: ../../mod/connedit.php:443
-msgid "Unable to set address book parameters."
+#: ../../mod/poke.php:165
+msgid "Make this post private"
msgstr ""
-#: ../../mod/connedit.php:398
-msgid "Channel has been unignored"
+#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
+msgid "Invalid profile identifier."
msgstr ""
-#: ../../mod/connedit.php:399
-msgid "Channel has been ignored"
+#: ../../mod/profperm.php:110
+msgid "Profile Visibility Editor"
msgstr ""
-#: ../../mod/connedit.php:410
-msgid "Channel has been unarchived"
+#: ../../mod/profperm.php:114
+msgid "Click on a contact to add or remove."
msgstr ""
-#: ../../mod/connedit.php:411
-msgid "Channel has been archived"
+#: ../../mod/profperm.php:123
+msgid "Visible To"
msgstr ""
-#: ../../mod/connedit.php:422
-msgid "Channel has been unhidden"
+#: ../../mod/lockview.php:31
+msgid "Remote privacy information not available."
msgstr ""
-#: ../../mod/connedit.php:423
-msgid "Channel has been hidden"
+#: ../../mod/lockview.php:52
+msgid "Visible to:"
msgstr ""
-#: ../../mod/connedit.php:438
-msgid "Channel has been approved"
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:174
+#: ../../mod/profiles.php:231 ../../mod/profiles.php:600
+msgid "Profile not found."
msgstr ""
-#: ../../mod/connedit.php:439
-msgid "Channel has been unapproved"
+#: ../../mod/profiles.php:38
+msgid "Profile deleted."
msgstr ""
-#: ../../mod/connedit.php:467
-msgid "Connection has been removed."
+#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
+msgid "Profile-"
msgstr ""
-#: ../../mod/connedit.php:487
-#, php-format
-msgid "View %s's profile"
+#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
+msgid "New profile created."
msgstr ""
-#: ../../mod/connedit.php:491
-msgid "Refresh Permissions"
+#: ../../mod/profiles.php:98
+msgid "Profile unavailable to clone."
msgstr ""
-#: ../../mod/connedit.php:494
-msgid "Fetch updated permissions"
+#: ../../mod/profiles.php:136
+msgid "Profile unavailable to export."
msgstr ""
-#: ../../mod/connedit.php:498
-msgid "Recent Activity"
+#: ../../mod/profiles.php:241
+msgid "Profile Name is required."
msgstr ""
-#: ../../mod/connedit.php:501
-msgid "View recent posts and comments"
+#: ../../mod/profiles.php:404
+msgid "Marital Status"
msgstr ""
-#: ../../mod/connedit.php:507 ../../mod/connedit.php:694
-#: ../../mod/admin.php:737
-msgid "Unblock"
+#: ../../mod/profiles.php:408
+msgid "Romantic Partner"
msgstr ""
-#: ../../mod/connedit.php:507 ../../mod/connedit.php:694
-#: ../../mod/admin.php:736
-msgid "Block"
+#: ../../mod/profiles.php:412
+msgid "Likes"
msgstr ""
-#: ../../mod/connedit.php:510
-msgid "Block (or Unblock) all communications with this connection"
+#: ../../mod/profiles.php:416
+msgid "Dislikes"
msgstr ""
-#: ../../mod/connedit.php:514 ../../mod/connedit.php:695
-msgid "Unignore"
+#: ../../mod/profiles.php:420
+msgid "Work/Employment"
msgstr ""
-#: ../../mod/connedit.php:514 ../../mod/connedit.php:695
-#: ../../mod/notifications.php:51
-msgid "Ignore"
+#: ../../mod/profiles.php:423
+msgid "Religion"
msgstr ""
-#: ../../mod/connedit.php:517
-msgid "Ignore (or Unignore) all inbound communications from this connection"
+#: ../../mod/profiles.php:427
+msgid "Political Views"
msgstr ""
-#: ../../mod/connedit.php:520
-msgid "Unarchive"
+#: ../../mod/profiles.php:431 ../../mod/id.php:33
+msgid "Gender"
msgstr ""
-#: ../../mod/connedit.php:520
-msgid "Archive"
+#: ../../mod/profiles.php:435
+msgid "Sexual Preference"
msgstr ""
-#: ../../mod/connedit.php:523
-msgid ""
-"Archive (or Unarchive) this connection - mark channel dead but keep content"
+#: ../../mod/profiles.php:439
+msgid "Homepage"
msgstr ""
-#: ../../mod/connedit.php:526
-msgid "Unhide"
+#: ../../mod/profiles.php:443
+msgid "Interests"
msgstr ""
-#: ../../mod/connedit.php:526
-msgid "Hide"
+#: ../../mod/profiles.php:447 ../../mod/admin.php:953
+msgid "Address"
msgstr ""
-#: ../../mod/connedit.php:529
-msgid "Hide or Unhide this connection from your other connections"
+#: ../../mod/profiles.php:537
+msgid "Profile updated."
msgstr ""
-#: ../../mod/connedit.php:536
-msgid "Delete this connection"
+#: ../../mod/profiles.php:626
+msgid "Hide your contact/friend list from viewers of this profile?"
msgstr ""
-#: ../../mod/connedit.php:611 ../../mod/connedit.php:649
-msgid "Approve this connection"
+#: ../../mod/profiles.php:666
+msgid "Edit Profile Details"
msgstr ""
-#: ../../mod/connedit.php:611
-msgid "Accept connection to allow communication"
+#: ../../mod/profiles.php:668
+msgid "View this profile"
msgstr ""
-#: ../../mod/connedit.php:627
-#, php-format
-msgid "Connections: settings for %s"
+#: ../../mod/profiles.php:670
+msgid "Change Profile Photo"
msgstr ""
-#: ../../mod/connedit.php:628
-msgid "Apply these permissions automatically"
+#: ../../mod/profiles.php:671
+msgid "Create a new profile using these settings"
msgstr ""
-#: ../../mod/connedit.php:632
-msgid "Apply the permissions indicated on this page to all new connections."
+#: ../../mod/profiles.php:672
+msgid "Clone this profile"
msgstr ""
-#: ../../mod/connedit.php:636
-msgid "Slide to adjust your degree of friendship"
+#: ../../mod/profiles.php:673
+msgid "Delete this profile"
msgstr ""
-#: ../../mod/connedit.php:637 ../../mod/rate.php:147
-msgid "Rating (this information is public)"
+#: ../../mod/profiles.php:675
+msgid "Import profile from file"
msgstr ""
-#: ../../mod/connedit.php:638 ../../mod/rate.php:148
-msgid "Optionally explain your rating (this information is public)"
+#: ../../mod/profiles.php:676
+msgid "Export profile to file"
msgstr ""
-#: ../../mod/connedit.php:645
-msgid ""
-"Default permissions for your channel type have (just) been applied. They "
-"have not yet been submitted. Please review the permissions on this page and "
-"make any desired changes at this time. This new connection may <em>not</em> "
-"be able to communicate with you until you submit this page, which will "
-"install and apply the selected permissions."
+#: ../../mod/profiles.php:677
+msgid "Profile Name:"
msgstr ""
-#: ../../mod/connedit.php:648
-msgid "inherited"
+#: ../../mod/profiles.php:678
+msgid "Your Full Name:"
msgstr ""
-#: ../../mod/connedit.php:651
-msgid "Connection has no individual permissions!"
+#: ../../mod/profiles.php:679
+msgid "Title/Description:"
msgstr ""
-#: ../../mod/connedit.php:652
-msgid ""
-"This may be appropriate based on your <a href=\"settings\">privacy settings</"
-"a>, though you may wish to review the \"Advanced Permissions\"."
+#: ../../mod/profiles.php:680
+msgid "Your Gender:"
msgstr ""
-#: ../../mod/connedit.php:654
-msgid "Profile Visibility"
+#: ../../mod/profiles.php:681
+msgid "Birthday :"
msgstr ""
-#: ../../mod/connedit.php:655
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
+#: ../../mod/profiles.php:682
+msgid "Street Address:"
msgstr ""
-#: ../../mod/connedit.php:656
-msgid "Contact Information / Notes"
+#: ../../mod/profiles.php:683
+msgid "Locality/City:"
msgstr ""
-#: ../../mod/connedit.php:657
-msgid "Edit contact notes"
+#: ../../mod/profiles.php:684
+msgid "Postal/Zip Code:"
msgstr ""
-#: ../../mod/connedit.php:659
-msgid "Their Settings"
+#: ../../mod/profiles.php:685
+msgid "Country:"
msgstr ""
-#: ../../mod/connedit.php:660
-msgid "My Settings"
+#: ../../mod/profiles.php:686
+msgid "Region/State:"
msgstr ""
-#: ../../mod/connedit.php:662
-msgid ""
-"Default permissions for this channel type have (just) been applied. They "
-"have <em>not</em> been saved and there are currently no stored default "
-"permissions. Please review/edit the applied settings and click [Submit] to "
-"finalize."
+#: ../../mod/profiles.php:687
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr ""
-#: ../../mod/connedit.php:663
-msgid "Clear/Disable Automatic Permissions"
+#: ../../mod/profiles.php:688
+msgid "Who: (if applicable)"
msgstr ""
-#: ../../mod/connedit.php:664
-msgid "Forum Members"
+#: ../../mod/profiles.php:689
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr ""
-#: ../../mod/connedit.php:665
-msgid "Soapbox"
+#: ../../mod/profiles.php:690
+msgid "Since [date]:"
msgstr ""
-#: ../../mod/connedit.php:666
-msgid "Full Sharing (typical social network permissions)"
+#: ../../mod/profiles.php:692
+msgid "Homepage URL:"
msgstr ""
-#: ../../mod/connedit.php:667
-msgid "Cautious Sharing "
+#: ../../mod/profiles.php:695
+msgid "Religious Views:"
msgstr ""
-#: ../../mod/connedit.php:668
-msgid "Follow Only"
+#: ../../mod/profiles.php:696
+msgid "Keywords:"
msgstr ""
-#: ../../mod/connedit.php:669
-msgid "Individual Permissions"
+#: ../../mod/profiles.php:699
+msgid "Example: fishing photography software"
msgstr ""
-#: ../../mod/connedit.php:670
-msgid ""
-"Some permissions may be inherited from your channel <a href=\"settings"
-"\">privacy settings</a>, which have higher priority than individual "
-"settings. Changing those inherited settings on this page will have no effect."
+#: ../../mod/profiles.php:700
+msgid "Used in directory listings"
msgstr ""
-#: ../../mod/connedit.php:671
-msgid "Advanced Permissions"
+#: ../../mod/profiles.php:701
+msgid "Tell us about yourself..."
msgstr ""
-#: ../../mod/connedit.php:672
-msgid "Simple Permissions (select one and submit)"
+#: ../../mod/profiles.php:702
+msgid "Hobbies/Interests"
+msgstr ""
+
+#: ../../mod/profiles.php:703
+msgid "Contact information and Social Networks"
+msgstr ""
+
+#: ../../mod/profiles.php:704
+msgid "My other channels"
+msgstr ""
+
+#: ../../mod/profiles.php:705
+msgid "Musical interests"
+msgstr ""
+
+#: ../../mod/profiles.php:706
+msgid "Books, literature"
+msgstr ""
+
+#: ../../mod/profiles.php:707
+msgid "Television"
msgstr ""
-#: ../../mod/connedit.php:676
+#: ../../mod/profiles.php:708
+msgid "Film/dance/culture/entertainment"
+msgstr ""
+
+#: ../../mod/profiles.php:709
+msgid "Love/romance"
+msgstr ""
+
+#: ../../mod/profiles.php:710
+msgid "Work/employment"
+msgstr ""
+
+#: ../../mod/profiles.php:711
+msgid "School/education"
+msgstr ""
+
+#: ../../mod/profiles.php:717
+msgid "This is your default profile."
+msgstr ""
+
+#: ../../mod/profiles.php:728 ../../mod/directory.php:214
+msgid "Age: "
+msgstr ""
+
+#: ../../mod/profiles.php:771
+msgid "Edit/Manage Profiles"
+msgstr ""
+
+#: ../../mod/profiles.php:772
+msgid "Add profile things"
+msgstr ""
+
+#: ../../mod/profiles.php:773
+msgid "Include desirable objects in your profile"
+msgstr ""
+
+#: ../../mod/ratings.php:69
+msgid "No ratings"
+msgstr ""
+
+#: ../../mod/ratings.php:99
+msgid "Ratings"
+msgstr ""
+
+#: ../../mod/ratings.php:100
+msgid "Rating: "
+msgstr ""
+
+#: ../../mod/ratings.php:101
+msgid "Website: "
+msgstr ""
+
+#: ../../mod/ratings.php:103
+msgid "Description: "
+msgstr ""
+
+#: ../../mod/viewsrc.php:38
+msgid "Source of Item"
+msgstr ""
+
+#: ../../mod/webpages.php:184
+msgid "Page Title"
+msgstr ""
+
+#: ../../mod/openid.php:26
+msgid "OpenID protocol error. No ID returned."
+msgstr ""
+
+#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:286
#, php-format
-msgid "Visit %s's profile - %s"
+msgid "Welcome %s. Remote authentication successful."
msgstr ""
-#: ../../mod/connedit.php:677
-msgid "Block/Unblock contact"
+#: ../../mod/directory.php:220
+#, php-format
+msgid "%d rating"
+msgid_plural "%d ratings"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/directory.php:232
+msgid "Gender: "
msgstr ""
-#: ../../mod/connedit.php:678
-msgid "Ignore contact"
+#: ../../mod/directory.php:234
+msgid "Status: "
msgstr ""
-#: ../../mod/connedit.php:679
-msgid "Repair URL settings"
+#: ../../mod/directory.php:236
+msgid "Homepage: "
msgstr ""
-#: ../../mod/connedit.php:680
-msgid "View conversations"
+#: ../../mod/directory.php:239
+msgid "Hometown: "
msgstr ""
-#: ../../mod/connedit.php:682
-msgid "Delete contact"
+#: ../../mod/directory.php:241
+msgid "About: "
msgstr ""
-#: ../../mod/connedit.php:686
-msgid "Last update:"
+#: ../../mod/directory.php:299
+msgid "Public Forum:"
msgstr ""
-#: ../../mod/connedit.php:688
-msgid "Update public posts"
+#: ../../mod/directory.php:302
+msgid "Keywords: "
msgstr ""
-#: ../../mod/connedit.php:690
-msgid "Update now"
+#: ../../mod/directory.php:307
+#, php-format
+msgid "Common connections: %s"
msgstr ""
-#: ../../mod/connedit.php:696
-msgid "Currently blocked"
+#: ../../mod/directory.php:359
+msgid "Finding:"
msgstr ""
-#: ../../mod/connedit.php:697
-msgid "Currently ignored"
+#: ../../mod/directory.php:364
+msgid "next page"
msgstr ""
-#: ../../mod/connedit.php:698
-msgid "Currently archived"
+#: ../../mod/directory.php:364
+msgid "previous page"
msgstr ""
-#: ../../mod/connedit.php:699
-msgid "Currently pending"
+#: ../../mod/directory.php:381
+msgid "No entries (some entries may be hidden)."
msgstr ""
-#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94
-msgid "Tag removed"
+#: ../../mod/uexport.php:33 ../../mod/uexport.php:34
+msgid "Export Channel"
msgstr ""
-#: ../../mod/tagrm.php:119
-msgid "Remove Item Tag"
+#: ../../mod/uexport.php:35
+msgid ""
+"Export your basic channel information to a small file. This acts as a "
+"backup of your connections, permissions, profile and basic data, which can "
+"be used to import your data to a new hub, but\tdoes not contain your content."
msgstr ""
-#: ../../mod/tagrm.php:121
-msgid "Select a tag to remove: "
+#: ../../mod/uexport.php:36
+msgid "Export Content"
+msgstr ""
+
+#: ../../mod/uexport.php:37
+msgid ""
+"Export your channel information and all the content to a JSON backup. This "
+"backs up all of your connections, permissions, profile data and all of your "
+"content, but is generally not suitable for importing a channel to a new hub "
+"as this file may be VERY large. Please be patient - it may take several "
+"minutes for this download to begin."
+msgstr ""
+
+#: ../../mod/viewconnections.php:62
+msgid "No connections."
+msgstr ""
+
+#: ../../mod/viewconnections.php:75
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr ""
+
+#: ../../mod/zfinger.php:23
+msgid "invalid target signature"
msgstr ""
#: ../../mod/admin.php:52
msgid "Theme settings updated."
msgstr ""
-#: ../../mod/admin.php:97 ../../mod/admin.php:415
+#: ../../mod/admin.php:93 ../../mod/admin.php:445
msgid "Site"
msgstr ""
-#: ../../mod/admin.php:98
+#: ../../mod/admin.php:94
msgid "Accounts"
msgstr ""
-#: ../../mod/admin.php:99 ../../mod/admin.php:863
+#: ../../mod/admin.php:95 ../../mod/admin.php:945
msgid "Channels"
msgstr ""
-#: ../../mod/admin.php:100 ../../mod/admin.php:954 ../../mod/admin.php:996
+#: ../../mod/admin.php:96 ../../mod/admin.php:1036 ../../mod/admin.php:1076
msgid "Plugins"
msgstr ""
-#: ../../mod/admin.php:101 ../../mod/admin.php:1159 ../../mod/admin.php:1195
+#: ../../mod/admin.php:97 ../../mod/admin.php:1236 ../../mod/admin.php:1270
msgid "Themes"
msgstr ""
-#: ../../mod/admin.php:102 ../../mod/admin.php:517
-msgid "Server"
+#: ../../mod/admin.php:98
+msgid "Inspect queue"
msgstr ""
-#: ../../mod/admin.php:103
+#: ../../mod/admin.php:100
msgid "Profile Config"
msgstr ""
-#: ../../mod/admin.php:104
+#: ../../mod/admin.php:101
msgid "DB updates"
msgstr ""
-#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1282
+#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1355
msgid "Logs"
msgstr ""
-#: ../../mod/admin.php:124
+#: ../../mod/admin.php:121
msgid "Plugin Features"
msgstr ""
-#: ../../mod/admin.php:126
+#: ../../mod/admin.php:123
msgid "User registrations waiting for confirmation"
msgstr ""
-#: ../../mod/admin.php:206
+#: ../../mod/admin.php:200
+msgid "# Accounts"
+msgstr ""
+
+#: ../../mod/admin.php:201
+msgid "# blocked accounts"
+msgstr ""
+
+#: ../../mod/admin.php:202
+msgid "# expired accounts"
+msgstr ""
+
+#: ../../mod/admin.php:203
+msgid "# expiring accounts"
+msgstr ""
+
+#: ../../mod/admin.php:216
+msgid "# Channels"
+msgstr ""
+
+#: ../../mod/admin.php:217
+msgid "# primary"
+msgstr ""
+
+#: ../../mod/admin.php:218
+msgid "# clones"
+msgstr ""
+
+#: ../../mod/admin.php:224
msgid "Message queues"
msgstr ""
-#: ../../mod/admin.php:211 ../../mod/admin.php:414 ../../mod/admin.php:516
-#: ../../mod/admin.php:726 ../../mod/admin.php:862 ../../mod/admin.php:953
-#: ../../mod/admin.php:995 ../../mod/admin.php:1158 ../../mod/admin.php:1194
-#: ../../mod/admin.php:1281
+#: ../../mod/admin.php:240 ../../mod/admin.php:444 ../../mod/admin.php:539
+#: ../../mod/admin.php:808 ../../mod/admin.php:944 ../../mod/admin.php:1035
+#: ../../mod/admin.php:1075 ../../mod/admin.php:1235 ../../mod/admin.php:1269
+#: ../../mod/admin.php:1354
msgid "Administration"
msgstr ""
-#: ../../mod/admin.php:212
+#: ../../mod/admin.php:241
msgid "Summary"
msgstr ""
-#: ../../mod/admin.php:214
-msgid "Registered users"
+#: ../../mod/admin.php:244
+msgid "Registered accounts"
msgstr ""
-#: ../../mod/admin.php:216 ../../mod/admin.php:520
+#: ../../mod/admin.php:245 ../../mod/admin.php:543
msgid "Pending registrations"
msgstr ""
-#: ../../mod/admin.php:217
-msgid "Version"
+#: ../../mod/admin.php:246
+msgid "Registered channels"
msgstr ""
-#: ../../mod/admin.php:219 ../../mod/admin.php:521
+#: ../../mod/admin.php:247 ../../mod/admin.php:544
msgid "Active plugins"
msgstr ""
-#: ../../mod/admin.php:330
+#: ../../mod/admin.php:248
+msgid "Version"
+msgstr ""
+
+#: ../../mod/admin.php:359
msgid "Site settings updated."
msgstr ""
-#: ../../mod/admin.php:369
+#: ../../mod/admin.php:398
msgid "experimental"
msgstr ""
-#: ../../mod/admin.php:371
+#: ../../mod/admin.php:400
msgid "unsupported"
msgstr ""
-#: ../../mod/admin.php:395
+#: ../../mod/admin.php:425
msgid "Yes - with approval"
msgstr ""
-#: ../../mod/admin.php:401
+#: ../../mod/admin.php:431
msgid "My site is not a public server"
msgstr ""
-#: ../../mod/admin.php:402
+#: ../../mod/admin.php:432
msgid "My site has paid access only"
msgstr ""
-#: ../../mod/admin.php:403
+#: ../../mod/admin.php:433
msgid "My site has free access only"
msgstr ""
-#: ../../mod/admin.php:404
+#: ../../mod/admin.php:434
msgid "My site offers free accounts with optional paid upgrades"
msgstr ""
-#: ../../mod/admin.php:418
+#: ../../mod/admin.php:447 ../../mod/register.php:207
+msgid "Registration"
+msgstr ""
+
+#: ../../mod/admin.php:448
msgid "File upload"
msgstr ""
-#: ../../mod/admin.php:419
+#: ../../mod/admin.php:449
msgid "Policies"
msgstr ""
-#: ../../mod/admin.php:424
+#: ../../mod/admin.php:454
msgid "Site name"
msgstr ""
-#: ../../mod/admin.php:425
+#: ../../mod/admin.php:455
msgid "Banner/Logo"
msgstr ""
-#: ../../mod/admin.php:426
+#: ../../mod/admin.php:456
msgid "Administrator Information"
msgstr ""
-#: ../../mod/admin.php:426
+#: ../../mod/admin.php:456
msgid ""
"Contact information for site administrators. Displayed on siteinfo page. "
"BBCode can be used here"
msgstr ""
-#: ../../mod/admin.php:427
+#: ../../mod/admin.php:457
msgid "System language"
msgstr ""
-#: ../../mod/admin.php:428
+#: ../../mod/admin.php:458
msgid "System theme"
msgstr ""
-#: ../../mod/admin.php:428
+#: ../../mod/admin.php:458
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr ""
-#: ../../mod/admin.php:429
+#: ../../mod/admin.php:459
msgid "Mobile system theme"
msgstr ""
-#: ../../mod/admin.php:429
+#: ../../mod/admin.php:459
msgid "Theme for mobile devices"
msgstr ""
-#: ../../mod/admin.php:431
+#: ../../mod/admin.php:461
msgid "Enable Diaspora Protocol"
msgstr ""
-#: ../../mod/admin.php:431
+#: ../../mod/admin.php:461
msgid "Communicate with Diaspora and Friendica - experimental"
msgstr ""
-#: ../../mod/admin.php:432
+#: ../../mod/admin.php:462
msgid "Allow Feeds as Connections"
msgstr ""
-#: ../../mod/admin.php:432
+#: ../../mod/admin.php:462
msgid "(Heavy system resource usage)"
msgstr ""
-#: ../../mod/admin.php:433
+#: ../../mod/admin.php:463
msgid "Maximum image size"
msgstr ""
-#: ../../mod/admin.php:433
+#: ../../mod/admin.php:463
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr ""
-#: ../../mod/admin.php:434
+#: ../../mod/admin.php:464
msgid "Does this site allow new member registration?"
msgstr ""
-#: ../../mod/admin.php:435
+#: ../../mod/admin.php:465
msgid "Which best describes the types of account offered by this hub?"
msgstr ""
-#: ../../mod/admin.php:436
+#: ../../mod/admin.php:466
msgid "Register text"
msgstr ""
-#: ../../mod/admin.php:436
+#: ../../mod/admin.php:466
msgid "Will be displayed prominently on the registration page."
msgstr ""
-#: ../../mod/admin.php:437
+#: ../../mod/admin.php:467
msgid "Accounts abandoned after x days"
msgstr ""
-#: ../../mod/admin.php:437
+#: ../../mod/admin.php:467
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr ""
-#: ../../mod/admin.php:438
+#: ../../mod/admin.php:468
msgid "Allowed friend domains"
msgstr ""
-#: ../../mod/admin.php:438
+#: ../../mod/admin.php:468
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:439
+#: ../../mod/admin.php:469
msgid "Allowed email domains"
msgstr ""
-#: ../../mod/admin.php:439
+#: ../../mod/admin.php:469
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:440
+#: ../../mod/admin.php:470
msgid "Not allowed email domains"
msgstr ""
-#: ../../mod/admin.php:440
+#: ../../mod/admin.php:470
msgid ""
"Comma separated list of domains which are not allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains, unless allowed domains have been defined."
msgstr ""
-#: ../../mod/admin.php:441
+#: ../../mod/admin.php:471
msgid "Block public"
msgstr ""
-#: ../../mod/admin.php:441
+#: ../../mod/admin.php:471
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr ""
-#: ../../mod/admin.php:442
+#: ../../mod/admin.php:472
msgid "Verify Email Addresses"
msgstr ""
-#: ../../mod/admin.php:442
+#: ../../mod/admin.php:472
msgid ""
"Check to verify email addresses used in account registration (recommended)."
msgstr ""
-#: ../../mod/admin.php:443
+#: ../../mod/admin.php:473
msgid "Force publish"
msgstr ""
-#: ../../mod/admin.php:443
+#: ../../mod/admin.php:473
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
-#: ../../mod/admin.php:444
+#: ../../mod/admin.php:474
msgid "Disable discovery tab"
msgstr ""
-#: ../../mod/admin.php:444
+#: ../../mod/admin.php:474
msgid ""
"Remove the tab in the network view with public content pulled from sources "
"chosen for this site."
msgstr ""
-#: ../../mod/admin.php:445
+#: ../../mod/admin.php:475
msgid "No login on Homepage"
msgstr ""
-#: ../../mod/admin.php:445
+#: ../../mod/admin.php:475
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:447
+#: ../../mod/admin.php:477
msgid "Proxy user"
msgstr ""
-#: ../../mod/admin.php:448
+#: ../../mod/admin.php:478
msgid "Proxy URL"
msgstr ""
-#: ../../mod/admin.php:449
+#: ../../mod/admin.php:479
msgid "Network timeout"
msgstr ""
-#: ../../mod/admin.php:449
+#: ../../mod/admin.php:479
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
-#: ../../mod/admin.php:450
+#: ../../mod/admin.php:480
msgid "Delivery interval"
msgstr ""
-#: ../../mod/admin.php:450
+#: ../../mod/admin.php:480
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:451
+#: ../../mod/admin.php:481
msgid "Poll interval"
msgstr ""
-#: ../../mod/admin.php:451
+#: ../../mod/admin.php:481
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr ""
-#: ../../mod/admin.php:452
+#: ../../mod/admin.php:482
msgid "Maximum Load Average"
msgstr ""
-#: ../../mod/admin.php:452
+#: ../../mod/admin.php:482
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
-#: ../../mod/admin.php:508
+#: ../../mod/admin.php:483
+msgid "Expiration period in days for imported (matrix/network) content"
+msgstr ""
+
+#: ../../mod/admin.php:483
+msgid "0 for no expiration of imported content"
+msgstr ""
+
+#: ../../mod/admin.php:531
msgid "No server found"
msgstr ""
-#: ../../mod/admin.php:515 ../../mod/admin.php:740
+#: ../../mod/admin.php:538 ../../mod/admin.php:822
msgid "ID"
msgstr ""
-#: ../../mod/admin.php:515
+#: ../../mod/admin.php:538
msgid "for channel"
msgstr ""
-#: ../../mod/admin.php:515
+#: ../../mod/admin.php:538
msgid "on server"
msgstr ""
-#: ../../mod/admin.php:515
+#: ../../mod/admin.php:538
msgid "Status"
msgstr ""
-#: ../../mod/admin.php:536
+#: ../../mod/admin.php:540
+msgid "Server"
+msgstr ""
+
+#: ../../mod/admin.php:557
msgid "Update has been marked successful"
msgstr ""
-#: ../../mod/admin.php:546
+#: ../../mod/admin.php:567
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr ""
-#: ../../mod/admin.php:549
+#: ../../mod/admin.php:570
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
-#: ../../mod/admin.php:553
+#: ../../mod/admin.php:574
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
-#: ../../mod/admin.php:556
+#: ../../mod/admin.php:577
#, php-format
msgid "Update function %s could not be found."
msgstr ""
-#: ../../mod/admin.php:571
+#: ../../mod/admin.php:593
msgid "No failed updates."
msgstr ""
-#: ../../mod/admin.php:575
+#: ../../mod/admin.php:597
msgid "Failed Updates"
msgstr ""
-#: ../../mod/admin.php:577
+#: ../../mod/admin.php:599
msgid "Mark success (if update was manually applied)"
msgstr ""
-#: ../../mod/admin.php:578
+#: ../../mod/admin.php:600
msgid "Attempt to execute this update step automatically"
msgstr ""
-#: ../../mod/admin.php:604
+#: ../../mod/admin.php:632
+msgid "Queue Statistics"
+msgstr ""
+
+#: ../../mod/admin.php:633
+msgid "Total Entries"
+msgstr ""
+
+#: ../../mod/admin.php:634
+msgid "Priority"
+msgstr ""
+
+#: ../../mod/admin.php:635
+msgid "Destination URL"
+msgstr ""
+
+#: ../../mod/admin.php:636
+msgid "Mark hub permanently offline"
+msgstr ""
+
+#: ../../mod/admin.php:637
+msgid "Empty queue for this hub"
+msgstr ""
+
+#: ../../mod/admin.php:638
+msgid "Last known contact"
+msgstr ""
+
+#: ../../mod/admin.php:674
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
-#: ../../mod/admin.php:611
+#: ../../mod/admin.php:682
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] ""
msgstr[1] ""
-#: ../../mod/admin.php:640
+#: ../../mod/admin.php:718
msgid "Account not found"
msgstr ""
-#: ../../mod/admin.php:660
+#: ../../mod/admin.php:738
#, php-format
-msgid "User '%s' unblocked"
+msgid "User '%s' blocked"
msgstr ""
-#: ../../mod/admin.php:660
+#: ../../mod/admin.php:746
#, php-format
-msgid "User '%s' blocked"
+msgid "User '%s' unblocked"
msgstr ""
-#: ../../mod/admin.php:727 ../../mod/admin.php:739
+#: ../../mod/admin.php:809 ../../mod/admin.php:821
msgid "Users"
msgstr ""
-#: ../../mod/admin.php:729 ../../mod/admin.php:865
+#: ../../mod/admin.php:811 ../../mod/admin.php:947
msgid "select all"
msgstr ""
-#: ../../mod/admin.php:730
+#: ../../mod/admin.php:812
msgid "User registrations waiting for confirm"
msgstr ""
-#: ../../mod/admin.php:731
+#: ../../mod/admin.php:813
msgid "Request date"
msgstr ""
-#: ../../mod/admin.php:732
+#: ../../mod/admin.php:814
msgid "No registrations."
msgstr ""
-#: ../../mod/admin.php:733
+#: ../../mod/admin.php:815
msgid "Approve"
msgstr ""
-#: ../../mod/admin.php:734
+#: ../../mod/admin.php:816
msgid "Deny"
msgstr ""
-#: ../../mod/admin.php:740
+#: ../../mod/admin.php:818 ../../mod/connedit.php:517
+#: ../../mod/connedit.php:720
+msgid "Block"
+msgstr ""
+
+#: ../../mod/admin.php:819 ../../mod/connedit.php:517
+#: ../../mod/connedit.php:720
+msgid "Unblock"
+msgstr ""
+
+#: ../../mod/admin.php:822
msgid "Register date"
msgstr ""
-#: ../../mod/admin.php:740
+#: ../../mod/admin.php:822
msgid "Last login"
msgstr ""
-#: ../../mod/admin.php:740
+#: ../../mod/admin.php:822
msgid "Expires"
msgstr ""
-#: ../../mod/admin.php:740
+#: ../../mod/admin.php:822
msgid "Service Class"
msgstr ""
-#: ../../mod/admin.php:742
+#: ../../mod/admin.php:824
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
-#: ../../mod/admin.php:743
+#: ../../mod/admin.php:825
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:776
+#: ../../mod/admin.php:859
#, php-format
msgid "%s channel censored/uncensored"
msgid_plural "%s channels censored/uncensored"
msgstr[0] ""
msgstr[1] ""
-#: ../../mod/admin.php:783
+#: ../../mod/admin.php:866
#, php-format
msgid "%s channel deleted"
msgid_plural "%s channels deleted"
msgstr[0] ""
msgstr[1] ""
-#: ../../mod/admin.php:802
+#: ../../mod/admin.php:886
msgid "Channel not found"
msgstr ""
-#: ../../mod/admin.php:813
+#: ../../mod/admin.php:897
#, php-format
msgid "Channel '%s' deleted"
msgstr ""
-#: ../../mod/admin.php:824
+#: ../../mod/admin.php:908
#, php-format
msgid "Channel '%s' uncensored"
msgstr ""
-#: ../../mod/admin.php:824
+#: ../../mod/admin.php:908
#, php-format
msgid "Channel '%s' censored"
msgstr ""
-#: ../../mod/admin.php:867
+#: ../../mod/admin.php:949
msgid "Censor"
msgstr ""
-#: ../../mod/admin.php:868
+#: ../../mod/admin.php:950
msgid "Uncensor"
msgstr ""
-#: ../../mod/admin.php:871
+#: ../../mod/admin.php:953
msgid "UID"
msgstr ""
-#: ../../mod/admin.php:871 ../../mod/profiles.php:447
-msgid "Address"
-msgstr ""
-
-#: ../../mod/admin.php:873
+#: ../../mod/admin.php:955
msgid ""
"Selected channels will be deleted!\\n\\nEverything that was posted in these "
"channels on this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
-#: ../../mod/admin.php:874
+#: ../../mod/admin.php:956
msgid ""
"The channel {0} will be deleted!\\n\\nEverything that was posted in this "
"channel on this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
-#: ../../mod/admin.php:913
+#: ../../mod/admin.php:996
#, php-format
msgid "Plugin %s disabled."
msgstr ""
-#: ../../mod/admin.php:917
+#: ../../mod/admin.php:1000
#, php-format
msgid "Plugin %s enabled."
msgstr ""
-#: ../../mod/admin.php:927 ../../mod/admin.php:1129
+#: ../../mod/admin.php:1010 ../../mod/admin.php:1208
msgid "Disable"
msgstr ""
-#: ../../mod/admin.php:929 ../../mod/admin.php:1131
+#: ../../mod/admin.php:1013 ../../mod/admin.php:1210
msgid "Enable"
msgstr ""
-#: ../../mod/admin.php:955 ../../mod/admin.php:1160
+#: ../../mod/admin.php:1037 ../../mod/admin.php:1237
msgid "Toggle"
msgstr ""
-#: ../../mod/admin.php:963 ../../mod/admin.php:1170
+#: ../../mod/admin.php:1045 ../../mod/admin.php:1247
msgid "Author: "
msgstr ""
-#: ../../mod/admin.php:964 ../../mod/admin.php:1171
+#: ../../mod/admin.php:1046 ../../mod/admin.php:1248
msgid "Maintainer: "
msgstr ""
-#: ../../mod/admin.php:1093
+#: ../../mod/admin.php:1173
msgid "No themes found."
msgstr ""
-#: ../../mod/admin.php:1152
+#: ../../mod/admin.php:1229
msgid "Screenshot"
msgstr ""
-#: ../../mod/admin.php:1200
+#: ../../mod/admin.php:1275
msgid "[Experimental]"
msgstr ""
-#: ../../mod/admin.php:1201
+#: ../../mod/admin.php:1276
msgid "[Unsupported]"
msgstr ""
-#: ../../mod/admin.php:1228
+#: ../../mod/admin.php:1300
msgid "Log settings updated."
msgstr ""
-#: ../../mod/admin.php:1284
+#: ../../mod/admin.php:1357
msgid "Clear"
msgstr ""
-#: ../../mod/admin.php:1290
+#: ../../mod/admin.php:1363
msgid "Debugging"
msgstr ""
-#: ../../mod/admin.php:1291
+#: ../../mod/admin.php:1364
msgid "Log file"
msgstr ""
-#: ../../mod/admin.php:1291
+#: ../../mod/admin.php:1364
msgid ""
"Must be writable by web server. Relative to your Red top-level directory."
msgstr ""
-#: ../../mod/admin.php:1292
+#: ../../mod/admin.php:1365
msgid "Log level"
msgstr ""
-#: ../../mod/admin.php:1339
+#: ../../mod/admin.php:1411
msgid "New Profile Field"
msgstr ""
-#: ../../mod/admin.php:1340 ../../mod/admin.php:1361
+#: ../../mod/admin.php:1412 ../../mod/admin.php:1432
msgid "Field nickname"
msgstr ""
-#: ../../mod/admin.php:1340 ../../mod/admin.php:1361
+#: ../../mod/admin.php:1412 ../../mod/admin.php:1432
msgid "System name of field"
msgstr ""
-#: ../../mod/admin.php:1341 ../../mod/admin.php:1362
+#: ../../mod/admin.php:1413 ../../mod/admin.php:1433
msgid "Input type"
msgstr ""
-#: ../../mod/admin.php:1342 ../../mod/admin.php:1363
+#: ../../mod/admin.php:1414 ../../mod/admin.php:1434
msgid "Field Name"
msgstr ""
-#: ../../mod/admin.php:1342 ../../mod/admin.php:1363
+#: ../../mod/admin.php:1414 ../../mod/admin.php:1434
msgid "Label on profile pages"
msgstr ""
-#: ../../mod/admin.php:1343 ../../mod/admin.php:1364
+#: ../../mod/admin.php:1415 ../../mod/admin.php:1435
msgid "Help text"
msgstr ""
-#: ../../mod/admin.php:1343 ../../mod/admin.php:1364
+#: ../../mod/admin.php:1415 ../../mod/admin.php:1435
msgid "Additional info (optional)"
msgstr ""
-#: ../../mod/admin.php:1354
+#: ../../mod/admin.php:1425
msgid "Field definition not found"
msgstr ""
-#: ../../mod/admin.php:1360
+#: ../../mod/admin.php:1431
msgid "Edit Profile Field"
msgstr ""
-#: ../../mod/menu.php:31
-msgid "Menu updated."
+#: ../../mod/oexchange.php:23
+msgid "Unable to find your hub."
msgstr ""
-#: ../../mod/menu.php:35
-msgid "Unable to update menu."
+#: ../../mod/oexchange.php:37
+msgid "Post successful."
msgstr ""
-#: ../../mod/menu.php:40
-msgid "Menu created."
+#: ../../mod/editblock.php:115
+msgid "Edit Block"
msgstr ""
-#: ../../mod/menu.php:44
-msgid "Unable to create menu."
+#: ../../mod/editblock.php:125
+msgid "Delete block?"
msgstr ""
-#: ../../mod/menu.php:76
-msgid "Manage Menus"
+#: ../../mod/editblock.php:189
+msgid "Delete Block"
msgstr ""
-#: ../../mod/menu.php:79
-msgid "Drop"
+#: ../../mod/register.php:44
+msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
msgstr ""
-#: ../../mod/menu.php:81
-msgid "Bookmarks allowed"
+#: ../../mod/register.php:50
+msgid ""
+"Please indicate acceptance of the Terms of Service. Registration failed."
msgstr ""
-#: ../../mod/menu.php:82
-msgid "Create a new menu"
+#: ../../mod/register.php:84
+msgid "Passwords do not match."
msgstr ""
-#: ../../mod/menu.php:83
-msgid "Delete this menu"
+#: ../../mod/register.php:117
+msgid ""
+"Registration successful. Please check your email for validation instructions."
msgstr ""
-#: ../../mod/menu.php:84 ../../mod/menu.php:125
-msgid "Edit menu contents"
+#: ../../mod/register.php:123
+msgid "Your registration is pending approval by the site owner."
msgstr ""
-#: ../../mod/menu.php:85
-msgid "Edit this menu"
+#: ../../mod/register.php:126
+msgid "Your registration can not be processed."
msgstr ""
-#: ../../mod/menu.php:96
-msgid "New Menu"
+#: ../../mod/register.php:163
+msgid "Registration on this site/hub is by approval only."
msgstr ""
-#: ../../mod/menu.php:97 ../../mod/menu.php:126
-msgid "Menu name"
+#: ../../mod/register.php:164
+msgid "<a href=\"pubsites\">Register at another affiliated site/hub</a>"
msgstr ""
-#: ../../mod/menu.php:97 ../../mod/menu.php:126
-msgid "Must be unique, only seen by you"
+#: ../../mod/register.php:174
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
msgstr ""
-#: ../../mod/menu.php:98 ../../mod/menu.php:127
-msgid "Menu title"
+#: ../../mod/register.php:185
+msgid "Terms of Service"
msgstr ""
-#: ../../mod/menu.php:98 ../../mod/menu.php:127
-msgid "Menu title as seen by others"
+#: ../../mod/register.php:191
+#, php-format
+msgid "I accept the %s for this website"
msgstr ""
-#: ../../mod/menu.php:99 ../../mod/menu.php:128
-msgid "Allow bookmarks"
+#: ../../mod/register.php:193
+#, php-format
+msgid "I am over 13 years of age and accept the %s for this website"
msgstr ""
-#: ../../mod/menu.php:99 ../../mod/menu.php:128
-msgid "Menu may be used to store saved bookmarks"
+#: ../../mod/register.php:212
+msgid "Membership on this site is by invitation only."
msgstr ""
-#: ../../mod/menu.php:114
-msgid "Menu deleted."
+#: ../../mod/register.php:213
+msgid "Please enter your invitation code"
msgstr ""
-#: ../../mod/menu.php:116
-msgid "Menu could not be deleted."
+#: ../../mod/register.php:216
+msgid "Your email address"
msgstr ""
-#: ../../mod/menu.php:122
-msgid "Edit Menu"
+#: ../../mod/register.php:217
+msgid "Choose a password"
msgstr ""
-#: ../../mod/menu.php:124
-msgid "Add or remove entries to this menu"
+#: ../../mod/register.php:218
+msgid "Please re-enter your password"
msgstr ""
-#: ../../mod/match.php:16
-msgid "Profile Match"
+#: ../../mod/removeaccount.php:30
+msgid ""
+"Account removals are not allowed within 48 hours of changing the account "
+"password."
msgstr ""
-#: ../../mod/match.php:24
-msgid "No keywords to match. Please add keywords to your default profile."
+#: ../../mod/removeaccount.php:57
+msgid "Remove This Account"
msgstr ""
-#: ../../mod/match.php:61
-msgid "is interested in:"
+#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58
+msgid "WARNING: "
msgstr ""
-#: ../../mod/match.php:69
-msgid "No matches"
+#: ../../mod/removeaccount.php:58
+msgid ""
+"This account and all its channels will be completely removed from the "
+"network. "
msgstr ""
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
+#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58
+msgid "This action is permanent and can not be undone!"
msgstr ""
-#: ../../mod/notifications.php:35
-msgid "Discard"
+#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59
+msgid "Please enter your password for verification:"
msgstr ""
-#: ../../mod/notifications.php:94 ../../mod/notify.php:53
-msgid "No more system notifications."
+#: ../../mod/removeaccount.php:60
+msgid ""
+"Remove this account, all its channels and all its channel clones from the "
+"network"
msgstr ""
-#: ../../mod/notifications.php:98 ../../mod/notify.php:57
-msgid "System Notifications"
+#: ../../mod/removeaccount.php:60
+msgid ""
+"By default only the instances of the channels located on this hub will be "
+"removed from the network"
+msgstr ""
+
+#: ../../mod/item.php:174
+msgid "Unable to locate original post."
+msgstr ""
+
+#: ../../mod/item.php:437
+msgid "Empty post discarded."
+msgstr ""
+
+#: ../../mod/item.php:479
+msgid "Executable content type not permitted to this channel."
+msgstr ""
+
+#: ../../mod/item.php:885
+msgid "System error. Post not saved."
+msgstr ""
+
+#: ../../mod/item.php:1103
+msgid "Unable to obtain post information from database."
+msgstr ""
+
+#: ../../mod/item.php:1110
+#, php-format
+msgid "You have reached your limit of %1$.0f top level posts."
+msgstr ""
+
+#: ../../mod/item.php:1117
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
msgstr ""
#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25
@@ -7564,186 +7758,196 @@ msgstr ""
msgid "[Embedded content - reload page to view]"
msgstr ""
-#: ../../mod/connect.php:56 ../../mod/connect.php:104
-msgid "Continue"
+#: ../../mod/layouts.php:111
+msgid "Help with this feature"
msgstr ""
-#: ../../mod/connect.php:85
-msgid "Premium Channel Setup"
+#: ../../mod/layouts.php:131
+msgid "Layout Name"
msgstr ""
-#: ../../mod/connect.php:87
-msgid "Enable premium channel connection restrictions"
+#: ../../mod/id.php:11
+msgid "First Name"
msgstr ""
-#: ../../mod/connect.php:88
-msgid ""
-"Please enter your restrictions or conditions, such as paypal receipt, usage "
-"guidelines, etc."
+#: ../../mod/id.php:12
+msgid "Last Name"
msgstr ""
-#: ../../mod/connect.php:90 ../../mod/connect.php:110
-msgid ""
-"This channel may require additional steps or acknowledgement of the "
-"following conditions prior to connecting:"
+#: ../../mod/id.php:13
+msgid "Nickname"
msgstr ""
-#: ../../mod/connect.php:91
-msgid ""
-"Potential connections will then see the following text before proceeding:"
+#: ../../mod/id.php:14
+msgid "Full Name"
msgstr ""
-#: ../../mod/connect.php:92 ../../mod/connect.php:113
-msgid ""
-"By continuing, I certify that I have complied with any instructions provided "
-"on this page."
+#: ../../mod/id.php:20
+msgid "Profile Photo 16px"
msgstr ""
-#: ../../mod/connect.php:101
-msgid "(No specific instructions have been provided by the channel owner.)"
+#: ../../mod/id.php:21
+msgid "Profile Photo 32px"
msgstr ""
-#: ../../mod/connect.php:109
-msgid "Restricted or Premium Channel"
+#: ../../mod/id.php:22
+msgid "Profile Photo 48px"
msgstr ""
-#: ../../mod/appman.php:28 ../../mod/appman.php:44
-msgid "App installed."
+#: ../../mod/id.php:23
+msgid "Profile Photo 64px"
msgstr ""
-#: ../../mod/appman.php:37
-msgid "Malformed app."
+#: ../../mod/id.php:24
+msgid "Profile Photo 80px"
msgstr ""
-#: ../../mod/appman.php:80
-msgid "Embed code"
+#: ../../mod/id.php:25
+msgid "Profile Photo 128px"
msgstr ""
-#: ../../mod/appman.php:86
-msgid "Edit App"
+#: ../../mod/id.php:26
+msgid "Timezone"
msgstr ""
-#: ../../mod/appman.php:86
-msgid "Create App"
+#: ../../mod/id.php:27
+msgid "Homepage URL"
msgstr ""
-#: ../../mod/appman.php:91
-msgid "Name of app"
+#: ../../mod/id.php:29
+msgid "Birth Year"
msgstr ""
-#: ../../mod/appman.php:92
-msgid "Location (URL) of app"
+#: ../../mod/id.php:30
+msgid "Birth Month"
msgstr ""
-#: ../../mod/appman.php:94
-msgid "Photo icon URL"
+#: ../../mod/id.php:31
+msgid "Birth Day"
msgstr ""
-#: ../../mod/appman.php:94
-msgid "80 x 80 pixels - optional"
+#: ../../mod/id.php:32
+msgid "Birthdate"
msgstr ""
-#: ../../mod/appman.php:95
-msgid "Version ID"
+#: ../../mod/message.php:41
+msgid "Conversation removed."
msgstr ""
-#: ../../mod/appman.php:96
-msgid "Price of app"
+#: ../../mod/message.php:56
+msgid "No messages."
msgstr ""
-#: ../../mod/appman.php:97
-msgid "Location (URL) to purchase app"
+#: ../../mod/message.php:72 ../../mod/mail.php:336
+msgid "Delete conversation"
msgstr ""
-#: ../../mod/mood.php:132
-msgid "Set your current mood and tell your friends"
+#: ../../mod/message.php:74
+msgid "D, d M Y - g:i A"
msgstr ""
-#: ../../mod/mail.php:33
-msgid "Unable to lookup recipient."
+#: ../../mod/mitem.php:67
+msgid "Menu element updated."
msgstr ""
-#: ../../mod/mail.php:41
-msgid "Unable to communicate with requested channel."
+#: ../../mod/mitem.php:71
+msgid "Unable to update menu element."
msgstr ""
-#: ../../mod/mail.php:48
-msgid "Cannot verify requested channel."
+#: ../../mod/mitem.php:77
+msgid "Menu element added."
msgstr ""
-#: ../../mod/mail.php:74
-msgid "Selected channel has private message restrictions. Send failed."
+#: ../../mod/mitem.php:81
+msgid "Unable to add menu element."
msgstr ""
-#: ../../mod/mail.php:139
-msgid "Message deleted."
+#: ../../mod/mitem.php:127
+msgid "Manage Menu Elements"
msgstr ""
-#: ../../mod/mail.php:156
-msgid "Message recalled."
+#: ../../mod/mitem.php:130
+msgid "Edit menu"
msgstr ""
-#: ../../mod/mail.php:225
-msgid "Send Private Message"
+#: ../../mod/mitem.php:133
+msgid "Edit element"
msgstr ""
-#: ../../mod/mail.php:226 ../../mod/mail.php:343
-msgid "To:"
+#: ../../mod/mitem.php:134
+msgid "Drop element"
msgstr ""
-#: ../../mod/mail.php:231 ../../mod/mail.php:345
-msgid "Subject:"
+#: ../../mod/mitem.php:135
+msgid "New element"
msgstr ""
-#: ../../mod/mail.php:242
-msgid "Send"
+#: ../../mod/mitem.php:136
+msgid "Edit this menu container"
msgstr ""
-#: ../../mod/mail.php:269
-msgid "Message not found."
+#: ../../mod/mitem.php:137
+msgid "Add menu element"
msgstr ""
-#: ../../mod/mail.php:312
-msgid "Delete message"
+#: ../../mod/mitem.php:138
+msgid "Delete this menu item"
msgstr ""
-#: ../../mod/mail.php:313
-msgid "Recall message"
+#: ../../mod/mitem.php:139
+msgid "Edit this menu item"
msgstr ""
-#: ../../mod/mail.php:315
-msgid "Message has been recalled."
+#: ../../mod/mitem.php:158
+msgid "New Menu Element"
msgstr ""
-#: ../../mod/mail.php:332
-msgid "Private Conversation"
+#: ../../mod/mitem.php:160 ../../mod/mitem.php:203
+msgid "Menu Item Permissions"
msgstr ""
-#: ../../mod/mail.php:336 ../../mod/message.php:72
-msgid "Delete conversation"
+#: ../../mod/mitem.php:163 ../../mod/mitem.php:207
+msgid "Link text"
msgstr ""
-#: ../../mod/mail.php:338
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
+#: ../../mod/mitem.php:164 ../../mod/mitem.php:208
+msgid "URL of link"
msgstr ""
-#: ../../mod/mail.php:342
-msgid "Send Reply"
+#: ../../mod/mitem.php:165 ../../mod/mitem.php:209
+msgid "Use RedMatrix magic-auth if available"
msgstr ""
-#: ../../mod/viewconnections.php:58
-msgid "No connections."
+#: ../../mod/mitem.php:166 ../../mod/mitem.php:210
+msgid "Open link in new window"
msgstr ""
-#: ../../mod/viewconnections.php:71
-#, php-format
-msgid "Visit %s's profile [%s]"
+#: ../../mod/mitem.php:168 ../../mod/mitem.php:212
+msgid "Order in list"
msgstr ""
-#: ../../mod/magic.php:70
-msgid "Hub not found."
+#: ../../mod/mitem.php:168 ../../mod/mitem.php:212
+msgid "Higher numbers will sink to bottom of listing"
+msgstr ""
+
+#: ../../mod/mitem.php:181
+msgid "Menu item not found."
+msgstr ""
+
+#: ../../mod/mitem.php:190
+msgid "Menu item deleted."
+msgstr ""
+
+#: ../../mod/mitem.php:192
+msgid "Menu item could not be deleted."
+msgstr ""
+
+#: ../../mod/mitem.php:201
+msgid "Edit Menu Element"
+msgstr ""
+
+#: ../../mod/mood.php:131
+msgid "Set your current mood and tell your friends"
msgstr ""
#: ../../mod/vote.php:97
@@ -7754,483 +7958,638 @@ msgstr ""
msgid "Average Rating"
msgstr ""
-#: ../../mod/openid.php:26
-msgid "OpenID protocol error. No ID returned."
+#: ../../mod/removeme.php:29
+msgid ""
+"Channel removals are not allowed within 48 hours of changing the account "
+"password."
msgstr ""
-#: ../../mod/wall_upload.php:35
-msgid "Wall Photos"
+#: ../../mod/removeme.php:57
+msgid "Remove This Channel"
msgstr ""
-#: ../../mod/message.php:41
-msgid "Conversation removed."
+#: ../../mod/removeme.php:58
+msgid "This channel will be completely removed from the network. "
msgstr ""
-#: ../../mod/message.php:56
-msgid "No messages."
+#: ../../mod/removeme.php:60
+msgid "Remove this channel and all its clones from the network"
msgstr ""
-#: ../../mod/message.php:74
-msgid "D, d M Y - g:i A"
+#: ../../mod/removeme.php:60
+msgid ""
+"By default only the instance of the channel located on this hub will be "
+"removed from the network"
msgstr ""
-#: ../../mod/new_channel.php:109
-msgid "Add a Channel"
+#: ../../mod/connedit.php:262
+msgid "is now connected to"
msgstr ""
-#: ../../mod/new_channel.php:110
-msgid ""
-"A channel is your own collection of related web pages. A channel can be used "
-"to hold social network profiles, blogs, conversation groups and forums, "
-"celebrity pages, and much more. You may create as many channels as your "
-"service provider allows."
+#: ../../mod/connedit.php:375
+msgid "Could not access address book record."
msgstr ""
-#: ../../mod/new_channel.php:113
-msgid ""
-"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation "
-"Group\" "
+#: ../../mod/connedit.php:389
+msgid "Refresh failed - channel is currently unavailable."
msgstr ""
-#: ../../mod/new_channel.php:114
-msgid "Choose a short nickname"
+#: ../../mod/connedit.php:396
+msgid "Channel has been unblocked"
msgstr ""
-#: ../../mod/new_channel.php:115
-msgid ""
-"Your nickname will be used to create an easily remembered channel address "
-"(like an email address) which you can share with others."
+#: ../../mod/connedit.php:397
+msgid "Channel has been blocked"
msgstr ""
-#: ../../mod/new_channel.php:116
-msgid ""
-"Or <a href=\"import\">import an existing channel</a> from another location"
+#: ../../mod/connedit.php:401 ../../mod/connedit.php:413
+#: ../../mod/connedit.php:425 ../../mod/connedit.php:437
+#: ../../mod/connedit.php:453
+msgid "Unable to set address book parameters."
msgstr ""
-#: ../../mod/new_channel.php:118
-msgid ""
-"Please choose a channel type (such as social networking or community forum) "
-"and privacy requirements so we can select the best permissions for you"
+#: ../../mod/connedit.php:408
+msgid "Channel has been unignored"
msgstr ""
-#: ../../mod/new_channel.php:119
-msgid "Channel Type"
+#: ../../mod/connedit.php:409
+msgid "Channel has been ignored"
msgstr ""
-#: ../../mod/new_channel.php:119
-msgid "Read more about roles"
+#: ../../mod/connedit.php:420
+msgid "Channel has been unarchived"
msgstr ""
-#: ../../mod/xchan.php:6
-msgid "Xchan Lookup"
+#: ../../mod/connedit.php:421
+msgid "Channel has been archived"
msgstr ""
-#: ../../mod/xchan.php:9
-msgid "Lookup xchan beginning with (or webbie): "
+#: ../../mod/connedit.php:432
+msgid "Channel has been unhidden"
msgstr ""
-#: ../../mod/zfinger.php:23
-msgid "invalid target signature"
+#: ../../mod/connedit.php:433
+msgid "Channel has been hidden"
msgstr ""
-#: ../../mod/rate.php:146
-#, php-format
-msgid "Remote Channel [%s] (not yet known on this site)"
+#: ../../mod/connedit.php:448
+msgid "Channel has been approved"
msgstr ""
-#: ../../mod/oexchange.php:23
-msgid "Unable to find your hub."
+#: ../../mod/connedit.php:449
+msgid "Channel has been unapproved"
msgstr ""
-#: ../../mod/oexchange.php:37
-msgid "Post successful."
+#: ../../mod/connedit.php:477
+msgid "Connection has been removed."
msgstr ""
-#: ../../mod/directory.php:188 ../../mod/profiles.php:728
-msgid "Age: "
+#: ../../mod/connedit.php:497
+#, php-format
+msgid "View %s's profile"
msgstr ""
-#: ../../mod/directory.php:194
-#, php-format
-msgid "%d rating"
-msgid_plural "%d ratings"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../mod/connedit.php:501
+msgid "Refresh Permissions"
+msgstr ""
-#: ../../mod/directory.php:206
-msgid "Gender: "
+#: ../../mod/connedit.php:504
+msgid "Fetch updated permissions"
msgstr ""
-#: ../../mod/directory.php:208
-msgid "Status: "
+#: ../../mod/connedit.php:508
+msgid "Recent Activity"
msgstr ""
-#: ../../mod/directory.php:210
-msgid "Homepage: "
+#: ../../mod/connedit.php:511
+msgid "View recent posts and comments"
msgstr ""
-#: ../../mod/directory.php:213
-msgid "Hometown: "
+#: ../../mod/connedit.php:520
+msgid "Block (or Unblock) all communications with this connection"
msgstr ""
-#: ../../mod/directory.php:215
-msgid "About: "
+#: ../../mod/connedit.php:524 ../../mod/connedit.php:721
+msgid "Unignore"
msgstr ""
-#: ../../mod/directory.php:273
-msgid "Public Forum:"
+#: ../../mod/connedit.php:524 ../../mod/connedit.php:721
+#: ../../mod/notifications.php:51
+msgid "Ignore"
msgstr ""
-#: ../../mod/directory.php:276
-msgid "Keywords: "
+#: ../../mod/connedit.php:527
+msgid "Ignore (or Unignore) all inbound communications from this connection"
msgstr ""
-#: ../../mod/directory.php:331
-msgid "Finding:"
+#: ../../mod/connedit.php:530
+msgid "Unarchive"
msgstr ""
-#: ../../mod/directory.php:336
-msgid "next page"
+#: ../../mod/connedit.php:530
+msgid "Archive"
msgstr ""
-#: ../../mod/directory.php:336
-msgid "previous page"
+#: ../../mod/connedit.php:533
+msgid ""
+"Archive (or Unarchive) this connection - mark channel dead but keep content"
msgstr ""
-#: ../../mod/directory.php:353
-msgid "No entries (some entries may be hidden)."
+#: ../../mod/connedit.php:536
+msgid "Unhide"
msgstr ""
-#: ../../mod/ratings.php:68
-msgid "No ratings"
+#: ../../mod/connedit.php:536
+msgid "Hide"
msgstr ""
-#: ../../mod/ratings.php:94
-msgid "Ratings"
+#: ../../mod/connedit.php:539
+msgid "Hide or Unhide this connection from your other connections"
msgstr ""
-#: ../../mod/ratings.php:95
-msgid "Rating: "
+#: ../../mod/connedit.php:546
+msgid "Delete this connection"
msgstr ""
-#: ../../mod/ratings.php:96
-msgid "Description: "
+#: ../../mod/connedit.php:637 ../../mod/connedit.php:675
+msgid "Approve this connection"
msgstr ""
-#: ../../mod/profiles.php:18 ../../mod/profiles.php:174
-#: ../../mod/profiles.php:231 ../../mod/profiles.php:600
-msgid "Profile not found."
+#: ../../mod/connedit.php:637
+msgid "Accept connection to allow communication"
msgstr ""
-#: ../../mod/profiles.php:38
-msgid "Profile deleted."
+#: ../../mod/connedit.php:653
+#, php-format
+msgid "Connections: settings for %s"
msgstr ""
-#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
-msgid "Profile-"
+#: ../../mod/connedit.php:654
+msgid "Apply these permissions automatically"
msgstr ""
-#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
-msgid "New profile created."
+#: ../../mod/connedit.php:658
+msgid "Apply the permissions indicated on this page to all new connections."
msgstr ""
-#: ../../mod/profiles.php:98
-msgid "Profile unavailable to clone."
+#: ../../mod/connedit.php:662
+msgid "Slide to adjust your degree of friendship"
msgstr ""
-#: ../../mod/profiles.php:136
-msgid "Profile unavailable to export."
+#: ../../mod/connedit.php:671
+msgid ""
+"Default permissions for your channel type have (just) been applied. They "
+"have not yet been submitted. Please review the permissions on this page and "
+"make any desired changes at this time. This new connection may <em>not</em> "
+"be able to communicate with you until you submit this page, which will "
+"install and apply the selected permissions."
msgstr ""
-#: ../../mod/profiles.php:241
-msgid "Profile Name is required."
+#: ../../mod/connedit.php:674
+msgid "inherited"
msgstr ""
-#: ../../mod/profiles.php:404
-msgid "Marital Status"
+#: ../../mod/connedit.php:677
+msgid "Connection has no individual permissions!"
msgstr ""
-#: ../../mod/profiles.php:408
-msgid "Romantic Partner"
+#: ../../mod/connedit.php:678
+msgid ""
+"This may be appropriate based on your <a href=\"settings\">privacy settings</"
+"a>, though you may wish to review the \"Advanced Permissions\"."
msgstr ""
-#: ../../mod/profiles.php:412
-msgid "Likes"
+#: ../../mod/connedit.php:680
+msgid "Profile Visibility"
msgstr ""
-#: ../../mod/profiles.php:416
-msgid "Dislikes"
+#: ../../mod/connedit.php:681
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
msgstr ""
-#: ../../mod/profiles.php:420
-msgid "Work/Employment"
+#: ../../mod/connedit.php:682
+msgid "Contact Information / Notes"
msgstr ""
-#: ../../mod/profiles.php:423
-msgid "Religion"
+#: ../../mod/connedit.php:683
+msgid "Edit contact notes"
msgstr ""
-#: ../../mod/profiles.php:427
-msgid "Political Views"
+#: ../../mod/connedit.php:685
+msgid "Their Settings"
msgstr ""
-#: ../../mod/profiles.php:431
-msgid "Gender"
+#: ../../mod/connedit.php:686
+msgid "My Settings"
msgstr ""
-#: ../../mod/profiles.php:435
-msgid "Sexual Preference"
+#: ../../mod/connedit.php:688
+msgid ""
+"Default permissions for this channel type have (just) been applied. They "
+"have <em>not</em> been saved and there are currently no stored default "
+"permissions. Please review/edit the applied settings and click [Submit] to "
+"finalize."
msgstr ""
-#: ../../mod/profiles.php:439
-msgid "Homepage"
+#: ../../mod/connedit.php:689
+msgid "Clear/Disable Automatic Permissions"
msgstr ""
-#: ../../mod/profiles.php:443
-msgid "Interests"
+#: ../../mod/connedit.php:690
+msgid "Forum Members"
msgstr ""
-#: ../../mod/profiles.php:537
-msgid "Profile updated."
+#: ../../mod/connedit.php:691
+msgid "Soapbox"
msgstr ""
-#: ../../mod/profiles.php:626
-msgid "Hide your contact/friend list from viewers of this profile?"
+#: ../../mod/connedit.php:692
+msgid "Full Sharing (typical social network permissions)"
msgstr ""
-#: ../../mod/profiles.php:666
-msgid "Edit Profile Details"
+#: ../../mod/connedit.php:693
+msgid "Cautious Sharing "
msgstr ""
-#: ../../mod/profiles.php:668
-msgid "View this profile"
+#: ../../mod/connedit.php:694
+msgid "Follow Only"
msgstr ""
-#: ../../mod/profiles.php:670
-msgid "Change Profile Photo"
+#: ../../mod/connedit.php:695
+msgid "Individual Permissions"
msgstr ""
-#: ../../mod/profiles.php:671
-msgid "Create a new profile using these settings"
+#: ../../mod/connedit.php:696
+msgid ""
+"Some permissions may be inherited from your channel <a href=\"settings"
+"\">privacy settings</a>, which have higher priority than individual "
+"settings. Changing those inherited settings on this page will have no effect."
msgstr ""
-#: ../../mod/profiles.php:672
-msgid "Clone this profile"
+#: ../../mod/connedit.php:697
+msgid "Advanced Permissions"
msgstr ""
-#: ../../mod/profiles.php:673
-msgid "Delete this profile"
+#: ../../mod/connedit.php:698
+msgid "Simple Permissions (select one and submit)"
msgstr ""
-#: ../../mod/profiles.php:675
-msgid "Import profile from file"
+#: ../../mod/connedit.php:702
+#, php-format
+msgid "Visit %s's profile - %s"
msgstr ""
-#: ../../mod/profiles.php:676
-msgid "Export profile to file"
+#: ../../mod/connedit.php:703
+msgid "Block/Unblock contact"
msgstr ""
-#: ../../mod/profiles.php:677
-msgid "Profile Name:"
+#: ../../mod/connedit.php:704
+msgid "Ignore contact"
msgstr ""
-#: ../../mod/profiles.php:678
-msgid "Your Full Name:"
+#: ../../mod/connedit.php:705
+msgid "Repair URL settings"
msgstr ""
-#: ../../mod/profiles.php:679
-msgid "Title/Description:"
+#: ../../mod/connedit.php:706
+msgid "View conversations"
msgstr ""
-#: ../../mod/profiles.php:680
-msgid "Your Gender:"
+#: ../../mod/connedit.php:708
+msgid "Delete contact"
msgstr ""
-#: ../../mod/profiles.php:681
-msgid "Birthday :"
+#: ../../mod/connedit.php:712
+msgid "Last update:"
msgstr ""
-#: ../../mod/profiles.php:682
-msgid "Street Address:"
+#: ../../mod/connedit.php:714
+msgid "Update public posts"
msgstr ""
-#: ../../mod/profiles.php:683
-msgid "Locality/City:"
+#: ../../mod/connedit.php:716
+msgid "Update now"
msgstr ""
-#: ../../mod/profiles.php:684
-msgid "Postal/Zip Code:"
+#: ../../mod/connedit.php:722
+msgid "Currently blocked"
msgstr ""
-#: ../../mod/profiles.php:685
-msgid "Country:"
+#: ../../mod/connedit.php:723
+msgid "Currently ignored"
msgstr ""
-#: ../../mod/profiles.php:686
-msgid "Region/State:"
+#: ../../mod/connedit.php:724
+msgid "Currently archived"
msgstr ""
-#: ../../mod/profiles.php:687
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+#: ../../mod/connedit.php:725
+msgid "Currently pending"
msgstr ""
-#: ../../mod/profiles.php:688
-msgid "Who: (if applicable)"
+#: ../../mod/rmagic.php:40
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
msgstr ""
-#: ../../mod/profiles.php:689
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/rmagic.php:40
+msgid "The error message was:"
msgstr ""
-#: ../../mod/profiles.php:690
-msgid "Since [date]:"
+#: ../../mod/rmagic.php:44
+msgid "Authentication failed."
msgstr ""
-#: ../../mod/profiles.php:692
-msgid "Homepage URL:"
+#: ../../mod/rmagic.php:84
+msgid "Remote Authentication"
msgstr ""
-#: ../../mod/profiles.php:695
-msgid "Religious Views:"
+#: ../../mod/rmagic.php:85
+msgid "Enter your channel address (e.g. channel@example.com)"
msgstr ""
-#: ../../mod/profiles.php:696
-msgid "Keywords:"
+#: ../../mod/rmagic.php:86
+msgid "Authenticate"
msgstr ""
-#: ../../mod/profiles.php:699
-msgid "Example: fishing photography software"
+#: ../../mod/mail.php:33
+msgid "Unable to lookup recipient."
msgstr ""
-#: ../../mod/profiles.php:700
-msgid "Used in directory listings"
+#: ../../mod/mail.php:41
+msgid "Unable to communicate with requested channel."
msgstr ""
-#: ../../mod/profiles.php:701
-msgid "Tell us about yourself..."
+#: ../../mod/mail.php:48
+msgid "Cannot verify requested channel."
msgstr ""
-#: ../../mod/profiles.php:702
-msgid "Hobbies/Interests"
+#: ../../mod/mail.php:74
+msgid "Selected channel has private message restrictions. Send failed."
msgstr ""
-#: ../../mod/profiles.php:703
-msgid "Contact information and Social Networks"
+#: ../../mod/mail.php:139
+msgid "Message deleted."
msgstr ""
-#: ../../mod/profiles.php:704
-msgid "My other channels"
+#: ../../mod/mail.php:156
+msgid "Message recalled."
msgstr ""
-#: ../../mod/profiles.php:705
-msgid "Musical interests"
+#: ../../mod/mail.php:225
+msgid "Send Private Message"
msgstr ""
-#: ../../mod/profiles.php:706
-msgid "Books, literature"
+#: ../../mod/mail.php:226 ../../mod/mail.php:343
+msgid "To:"
msgstr ""
-#: ../../mod/profiles.php:707
-msgid "Television"
+#: ../../mod/mail.php:231 ../../mod/mail.php:345
+msgid "Subject:"
msgstr ""
-#: ../../mod/profiles.php:708
-msgid "Film/dance/culture/entertainment"
+#: ../../mod/mail.php:242
+msgid "Send"
msgstr ""
-#: ../../mod/profiles.php:709
-msgid "Love/romance"
+#: ../../mod/mail.php:269
+msgid "Message not found."
msgstr ""
-#: ../../mod/profiles.php:710
-msgid "Work/employment"
+#: ../../mod/mail.php:312
+msgid "Delete message"
msgstr ""
-#: ../../mod/profiles.php:711
-msgid "School/education"
+#: ../../mod/mail.php:313
+msgid "Recall message"
msgstr ""
-#: ../../mod/profiles.php:717
-msgid "This is your default profile."
+#: ../../mod/mail.php:315
+msgid "Message has been recalled."
msgstr ""
-#: ../../mod/profiles.php:771
-msgid "Edit/Manage Profiles"
+#: ../../mod/mail.php:332
+msgid "Private Conversation"
msgstr ""
-#: ../../mod/profiles.php:772
-msgid "Add profile things"
+#: ../../mod/mail.php:338
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
msgstr ""
-#: ../../mod/profiles.php:773
-msgid "Include desirable objects in your profile"
+#: ../../mod/mail.php:342
+msgid "Send Reply"
msgstr ""
-#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
-msgid "Invalid profile identifier."
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
msgstr ""
-#: ../../mod/profperm.php:110
-msgid "Profile Visibility Editor"
+#: ../../mod/notifications.php:35
+msgid "Discard"
msgstr ""
-#: ../../mod/profperm.php:114
-msgid "Click on a contact to add or remove."
+#: ../../mod/regmod.php:11
+msgid "Please login."
msgstr ""
-#: ../../mod/profperm.php:123
-msgid "Visible To"
+#: ../../mod/post.php:235
+msgid ""
+"Remote authentication blocked. You are logged into this site locally. Please "
+"logout and retry."
msgstr ""
-#: ../../mod/poll.php:64
-msgid "Poll"
+#: ../../mod/new_channel.php:109
+msgid "Add a Channel"
msgstr ""
-#: ../../mod/poll.php:69
-msgid "View Results"
+#: ../../mod/new_channel.php:110
+msgid ""
+"A channel is your own collection of related web pages. A channel can be used "
+"to hold social network profiles, blogs, conversation groups and forums, "
+"celebrity pages, and much more. You may create as many channels as your "
+"service provider allows."
msgstr ""
-#: ../../mod/removeaccount.php:30
+#: ../../mod/new_channel.php:113
msgid ""
-"Account removals are not allowed within 48 hours of changing the account "
-"password."
+"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation "
+"Group\" "
msgstr ""
-#: ../../mod/removeaccount.php:57
-msgid "Remove This Account"
+#: ../../mod/new_channel.php:114
+msgid "Choose a short nickname"
msgstr ""
-#: ../../mod/removeaccount.php:58
+#: ../../mod/new_channel.php:115
msgid ""
-"This will completely remove this account including all its channels from the "
-"network. Once this has been done it is not recoverable."
+"Your nickname will be used to create an easily remembered channel address "
+"(like an email address) which you can share with others."
msgstr ""
-#: ../../mod/removeaccount.php:60
+#: ../../mod/new_channel.php:116
msgid ""
-"Remove this account, all its channels and all its channel clones from the "
-"network"
+"Or <a href=\"import\">import an existing channel</a> from another location"
msgstr ""
-#: ../../mod/removeaccount.php:60
+#: ../../mod/new_channel.php:118
msgid ""
-"By default only the instances of the channels located on this hub will be "
-"removed from the network"
+"Please choose a channel type (such as social networking or community forum) "
+"and privacy requirements so we can select the best permissions for you"
+msgstr ""
+
+#: ../../mod/new_channel.php:119
+msgid "Channel Type"
+msgstr ""
+
+#: ../../mod/new_channel.php:119
+msgid "Read more about roles"
+msgstr ""
+
+#: ../../mod/appman.php:28 ../../mod/appman.php:44
+msgid "App installed."
+msgstr ""
+
+#: ../../mod/appman.php:37
+msgid "Malformed app."
+msgstr ""
+
+#: ../../mod/appman.php:80
+msgid "Embed code"
+msgstr ""
+
+#: ../../mod/appman.php:86
+msgid "Edit App"
+msgstr ""
+
+#: ../../mod/appman.php:86
+msgid "Create App"
+msgstr ""
+
+#: ../../mod/appman.php:91
+msgid "Name of app"
+msgstr ""
+
+#: ../../mod/appman.php:92
+msgid "Location (URL) of app"
+msgstr ""
+
+#: ../../mod/appman.php:94
+msgid "Photo icon URL"
+msgstr ""
+
+#: ../../mod/appman.php:94
+msgid "80 x 80 pixels - optional"
+msgstr ""
+
+#: ../../mod/appman.php:95
+msgid "Version ID"
+msgstr ""
+
+#: ../../mod/appman.php:96
+msgid "Price of app"
+msgstr ""
+
+#: ../../mod/appman.php:97
+msgid "Location (URL) to purchase app"
+msgstr ""
+
+#: ../../mod/ping.php:263
+msgid "sent you a private message"
+msgstr ""
+
+#: ../../mod/ping.php:314
+msgid "added your channel"
+msgstr ""
+
+#: ../../mod/ping.php:355
+msgid "posted an event"
+msgstr ""
+
+#: ../../mod/network.php:91
+msgid "No such group"
+msgstr ""
+
+#: ../../mod/network.php:129
+msgid "No such channel"
+msgstr ""
+
+#: ../../mod/network.php:143
+msgid "Search Results For:"
+msgstr ""
+
+#: ../../mod/network.php:198
+msgid "Collection is empty"
+msgstr ""
+
+#: ../../mod/network.php:207
+msgid "Collection: "
+msgstr ""
+
+#: ../../mod/network.php:226
+msgid "Connection: "
+msgstr ""
+
+#: ../../mod/network.php:233
+msgid "Invalid connection."
+msgstr ""
+
+#: ../../mod/page.php:119
+msgid "Ipsum Lorem"
+msgstr ""
+
+#: ../../mod/bookmarks.php:38
+msgid "Bookmark added"
+msgstr ""
+
+#: ../../mod/bookmarks.php:60
+msgid "My Bookmarks"
+msgstr ""
+
+#: ../../mod/bookmarks.php:71
+msgid "My Connections Bookmarks"
+msgstr ""
+
+#: ../../mod/channel.php:97
+msgid "Insufficient permissions. Request redirected to profile page."
+msgstr ""
+
+#: ../../mod/suggest.php:35
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr ""
+
+#: ../../mod/poll.php:64
+msgid "Poll"
+msgstr ""
+
+#: ../../mod/poll.php:69
+msgid "View Results"
msgstr ""
#: ../../mod/service_limits.php:19
msgid "No service class restrictions found."
msgstr ""
-#: ../../mod/sharedwithme.php:99
+#: ../../mod/sharedwithme.php:94
msgid "Files: shared with me"
msgstr ""
-#: ../../mod/sharedwithme.php:103
+#: ../../mod/sharedwithme.php:96
+msgid "NEW"
+msgstr ""
+
+#: ../../mod/sharedwithme.php:99
msgid "Remove all files"
msgstr ""
-#: ../../mod/sharedwithme.php:104
+#: ../../mod/sharedwithme.php:100
msgid "Remove this file"
msgstr ""
@@ -8248,17 +8607,16 @@ msgid "Monospace"
msgstr ""
#: ../../view/theme/apw/php/config.php:259
-#: ../../view/theme/redbasic/php/config.php:102
+#: ../../view/theme/redbasic/php/config.php:100
msgid "Theme settings"
msgstr ""
#: ../../view/theme/apw/php/config.php:260
-#: ../../view/theme/redbasic/php/config.php:103
msgid "Set scheme"
msgstr ""
#: ../../view/theme/apw/php/config.php:261
-#: ../../view/theme/redbasic/php/config.php:124
+#: ../../view/theme/redbasic/php/config.php:122
msgid "Set font-size for posts and comments"
msgstr ""
@@ -8378,165 +8736,231 @@ msgstr ""
msgid "Right offset of the aside element"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:84
+#: ../../view/theme/redbasic/php/config.php:82
msgid "Light (Red Matrix default)"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:104
+#: ../../view/theme/redbasic/php/config.php:101
+msgid "Select scheme"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:102
msgid "Narrow navbar"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:105
+#: ../../view/theme/redbasic/php/config.php:103
msgid "Navigation bar background color"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:106
+#: ../../view/theme/redbasic/php/config.php:104
msgid "Navigation bar gradient top color"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:107
+#: ../../view/theme/redbasic/php/config.php:105
msgid "Navigation bar gradient bottom color"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:108
+#: ../../view/theme/redbasic/php/config.php:106
msgid "Navigation active button gradient top color"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:109
+#: ../../view/theme/redbasic/php/config.php:107
msgid "Navigation active button gradient bottom color"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:110
+#: ../../view/theme/redbasic/php/config.php:108
msgid "Navigation bar border color "
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:111
+#: ../../view/theme/redbasic/php/config.php:109
msgid "Navigation bar icon color "
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:112
+#: ../../view/theme/redbasic/php/config.php:110
msgid "Navigation bar active icon color "
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:113
+#: ../../view/theme/redbasic/php/config.php:111
msgid "link color"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:114
+#: ../../view/theme/redbasic/php/config.php:112
msgid "Set font-color for banner"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:115
+#: ../../view/theme/redbasic/php/config.php:113
msgid "Set the background color"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:116
+#: ../../view/theme/redbasic/php/config.php:114
msgid "Set the background image"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:117
+#: ../../view/theme/redbasic/php/config.php:115
msgid "Set the background color of items"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:118
+#: ../../view/theme/redbasic/php/config.php:116
msgid "Set the background color of comments"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:119
+#: ../../view/theme/redbasic/php/config.php:117
msgid "Set the border color of comments"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:120
+#: ../../view/theme/redbasic/php/config.php:118
msgid "Set the indent for comments"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:121
+#: ../../view/theme/redbasic/php/config.php:119
msgid "Set the basic color for item icons"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:122
+#: ../../view/theme/redbasic/php/config.php:120
msgid "Set the hover color for item icons"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:123
+#: ../../view/theme/redbasic/php/config.php:121
msgid "Set font-size for the entire application"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:125
+#: ../../view/theme/redbasic/php/config.php:121
+msgid "Example: 14px"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:123
msgid "Set font-color for posts and comments"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:126
+#: ../../view/theme/redbasic/php/config.php:124
msgid "Set radius of corners"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:127
+#: ../../view/theme/redbasic/php/config.php:125
msgid "Set shadow depth of photos"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:128
-msgid "Set maximum width of conversation regions"
+#: ../../view/theme/redbasic/php/config.php:126
+msgid "Set maximum width of content region in pixel"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:129
-msgid "Center conversation regions"
+#: ../../view/theme/redbasic/php/config.php:126
+msgid "Leave empty for default width"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:130
+#: ../../view/theme/redbasic/php/config.php:127
+msgid "Center page content"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:128
msgid "Set minimum opacity of nav bar - to hide it"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:131
+#: ../../view/theme/redbasic/php/config.php:129
msgid "Set size of conversation author photo"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:132
+#: ../../view/theme/redbasic/php/config.php:130
msgid "Set size of followup author photos"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:133
-msgid "Sloppy photo albums"
+#: ../../randpost/randpost.php:96
+msgid "You're welcome."
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:133
-msgid "Are you a clean desk or a messy desk person?"
+#: ../../randpost/randpost.php:97
+msgid "Ah shucks..."
msgstr ""
-#: ../../boot.php:1355
+#: ../../randpost/randpost.php:98
+msgid "Don't mention it."
+msgstr ""
+
+#: ../../randpost/randpost.php:99
+msgid "&lt;blush&gt;"
+msgstr ""
+
+#: ../../boot.php:1345
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
-#: ../../boot.php:1358
+#: ../../boot.php:1348
#, php-format
msgid "Update Error at %s"
msgstr ""
-#: ../../boot.php:1525
+#: ../../boot.php:1515
msgid ""
"Create an account to access services and applications within the Red Matrix"
msgstr ""
-#: ../../boot.php:1553
+#: ../../boot.php:1543
msgid "Password"
msgstr ""
-#: ../../boot.php:1554
+#: ../../boot.php:1544
msgid "Remember me"
msgstr ""
-#: ../../boot.php:1557
+#: ../../boot.php:1547
msgid "Forgot your password?"
msgstr ""
-#: ../../boot.php:1650
-msgid "permission denied"
+#: ../../boot.php:2166
+msgid "toggle mobile"
msgstr ""
-#: ../../boot.php:1651
-msgid "Got Zot?"
+#: ../../boot.php:2301
+msgid "Website SSL certificate is not valid. Please correct."
msgstr ""
-#: ../../boot.php:2134
-msgid "toggle mobile"
+#: ../../boot.php:2304
+#, php-format
+msgid "[red] Website SSL error for %s"
+msgstr ""
+
+#: ../../boot.php:2341
+msgid "Cron/Scheduled tasks not running."
+msgstr ""
+
+#: ../../boot.php:2345
+#, php-format
+msgid "[red] Cron tasks not running on %s"
+msgstr ""
+
+#: ../../wppost/wppost.php:43
+msgid "Post to WordPress"
+msgstr ""
+
+#: ../../wppost/wppost.php:80
+msgid "Enable WordPress Post Plugin"
+msgstr ""
+
+#: ../../wppost/wppost.php:84
+msgid "WordPress username"
+msgstr ""
+
+#: ../../wppost/wppost.php:88
+msgid "WordPress password"
+msgstr ""
+
+#: ../../wppost/wppost.php:92
+msgid "WordPress API URL"
+msgstr ""
+
+#: ../../wppost/wppost.php:96
+msgid "Post to WordPress by default"
+msgstr ""
+
+#: ../../wppost/wppost.php:100
+msgid "Forward comments (requires post_to_red plugin)"
+msgstr ""
+
+#: ../../wppost/wppost.php:104
+msgid "WordPress Post Settings"
+msgstr ""
+
+#: ../../wppost/wppost.php:119
+msgid "Wordpress Settings saved."
msgstr ""
diff --git a/util/shredder/readme b/util/shredder/readme
new file mode 100644
index 000000000..44ed6f45c
--- /dev/null
+++ b/util/shredder/readme
@@ -0,0 +1,11 @@
+http://kmkeen.com/jshon/
+
+
+
+Jshon was made to be part of the usual text processing pipeline. However, every single -u is printed out to its own line. Most shell tools expect fields to be tab separated, and newlines between sets of fields. The paste tool does this. However, paste breaks down on blank lines so use sed to pad out the empty lines.
+
+jshon ... | sed 's/^$/-/' | paste -s -d "\t\t\n" | ....
+
+The arguments need a little explaining.
+-s is mysteriously needed for paste to correctly handle input.
+-d is less obvious from the manpage, because it can take multiple characters which are looped through. The above example concatenates every three lines together.
diff --git a/util/update_addon_repo b/util/update_addon_repo
new file mode 100755
index 000000000..c6c2c4a47
--- /dev/null
+++ b/util/update_addon_repo
@@ -0,0 +1,39 @@
+#!/bin/sh -f
+
+if [ $# -ne 1 ]; then
+ echo usage: $0 repository
+ echo "Repositories:"
+ ls extend/addon
+ exit 1
+fi
+
+cd extend/addon/$1
+
+if [ -d .git ] ; then
+ git pull
+fi
+
+cd ../../..
+
+filelist=(`ls extend/addon/$1`)
+
+cd addon
+
+for a in "${filelist[@]}" ; do
+ base=`basename $a`
+ if [ $base = '.git' ]; then
+# echo 'ignoring git'
+ continue;
+ fi
+ if [ ! -d ../extend/theme/$1/$base ]; then
+# echo $a 'not a directory'
+ continue;
+ fi
+ if [ -x $base ]; then
+# echo $base 'file exists'
+ continue;
+ fi
+
+ echo linking $base
+ ln -s ../extend/theme/$1/$base $base
+done
diff --git a/util/update_theme_repo b/util/update_theme_repo
new file mode 100755
index 000000000..443b26591
--- /dev/null
+++ b/util/update_theme_repo
@@ -0,0 +1,42 @@
+#!/bin/sh -f
+
+
+if [ $# -ne 1 ]; then
+ echo usage: $0 repository
+ echo "Repositories:"
+ ls extend/theme
+ exit 1
+fi
+
+cd extend/theme/$1
+
+if [ -d .git ] ; then
+ git pull
+fi
+
+cd ../../..
+
+filelist=(`ls extend/theme/$1`)
+
+cd view/theme
+
+for a in "${filelist[@]}" ; do
+ base=`basename $a`
+ if [ $base = '.git' ]; then
+# echo 'ignoring git'
+ continue;
+ fi
+ if [ ! -d ../../extend/theme/$1/$base ]; then
+# echo $a 'not a directory'
+ continue;
+ fi
+ if [ -x $base ]; then
+# echo $base 'file exists'
+ continue;
+ fi
+
+ echo linking $base
+ ln -s ../../extend/theme/$1/$base $base
+done
+
+
diff --git a/util/zotsh/README.txt b/util/zotsh/README.txt
new file mode 100644
index 000000000..5d03aec2c
--- /dev/null
+++ b/util/zotsh/README.txt
@@ -0,0 +1,109 @@
+ZotSH - v.0.0.2
+
+Client for browsing RedDAVs.
+
+Install
+-------
+
+ZotSH requires 'requests'(1).
+Please refer to requests docs on how to install it (2)
+
+Extract somewere and launch zotsh.py
+
+
+Description
+-----------
+
+ZotSH is a command line WebDAV client for RedMatrix.
+It knows how to magic-auth to remote hubs using Zot.
+
+ZotSH uses 'easywebdav' library (0) with small modifications
+to 'zotify' it. (See easywebdav/LICENSE)
+
+
+
+Commands
+--------
+
+host <hostname>
+ Authenticate to 'hostname' and switch to it
+
+cd <dirname|..>
+ changhe remote dir
+
+
+ls [path] [-a] [-l] [-d]
+ list remote files in current dir if 'path' not defined
+ -a list all, show hidden dot-files
+ -l list verbose
+ -d list only dirs
+
+exists <path>
+ Check existence of 'path'
+
+mkdir <name>
+ Create directory 'name'
+
+mkdirs <path>
+ Create parent directories to path, if they don't exists
+
+rmdir <name>
+ Delete directory 'name'
+
+delete <path>
+ Delete file 'path'
+
+upload <local_path> [remote_path]
+ Upload local file 'local_paht' to 'remote_paht'
+
+download <remote_path> [local_path]
+ Download remote file 'remote_path' and save it as 'local_path'
+
+cat <remote_paht>
+ Print content of 'remote_path'
+
+pwd
+ Print current path
+
+lcd
+lpwd
+lls
+ Local file management
+
+quit
+help
+
+
+
+Config
+------
+
+Create a .zotshrc file in your home or in same folder with zotsh.py:
+
+
+ [zotsh]
+ host = https://yourhost.com/
+ username = your_username
+ password = your_password
+
+
+Optionally adds
+
+ verify_ssl = false
+
+to skip verification of ssl certs
+
+
+Changelog
+----------
+0.0.2 Fix "CommandNotFound" exception, new 'cat' command
+
+0.0.1 First release
+
+
+Links
+-----
+
+_0 : https://github.com/amnong/easywebdav
+_1 : http://docs.python-requests.org/en/latest/
+_2 : http://docs.python-requests.org/en/latest/user/install/ \ No newline at end of file
diff --git a/util/zotsh/easywebdav/LICENSE b/util/zotsh/easywebdav/LICENSE
new file mode 100644
index 000000000..4f24108f8
--- /dev/null
+++ b/util/zotsh/easywebdav/LICENSE
@@ -0,0 +1,5 @@
+Copyright (c) 2012 year, Amnon Grossman
+
+Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/util/zotsh/easywebdav/__init__.py b/util/zotsh/easywebdav/__init__.py
new file mode 100644
index 000000000..3bc2cad2a
--- /dev/null
+++ b/util/zotsh/easywebdav/__init__.py
@@ -0,0 +1,5 @@
+from .client import *
+
+def connect(*args, **kwargs):
+ """connect(host, port=0, auth=None, username=None, password=None, protocol='http', path="/")"""
+ return Client(*args, **kwargs)
diff --git a/util/zotsh/easywebdav/__init__.pyc b/util/zotsh/easywebdav/__init__.pyc
new file mode 100644
index 000000000..b609b06c1
--- /dev/null
+++ b/util/zotsh/easywebdav/__init__.pyc
Binary files differ
diff --git a/util/zotsh/easywebdav/__version__.py b/util/zotsh/easywebdav/__version__.py
new file mode 100644
index 000000000..d293e3a30
--- /dev/null
+++ b/util/zotsh/easywebdav/__version__.py
@@ -0,0 +1 @@
+__version__ = "1.2.0"
diff --git a/util/zotsh/easywebdav/__version__.pyc b/util/zotsh/easywebdav/__version__.pyc
new file mode 100644
index 000000000..5da5a28ec
--- /dev/null
+++ b/util/zotsh/easywebdav/__version__.pyc
Binary files differ
diff --git a/util/zotsh/easywebdav/client.py b/util/zotsh/easywebdav/client.py
new file mode 100644
index 000000000..da7bf325a
--- /dev/null
+++ b/util/zotsh/easywebdav/client.py
@@ -0,0 +1,202 @@
+import requests
+import platform
+from numbers import Number
+import xml.etree.cElementTree as xml
+from collections import namedtuple
+
+py_majversion, py_minversion, py_revversion = platform.python_version_tuple()
+
+if py_majversion == '2':
+ from httplib import responses as HTTP_CODES
+ from urlparse import urlparse
+else:
+ from http.client import responses as HTTP_CODES
+ from urllib.parse import urlparse
+
+DOWNLOAD_CHUNK_SIZE_BYTES = 1 * 1024 * 1024
+
+class WebdavException(Exception):
+ pass
+
+class ConnectionFailed(WebdavException):
+ pass
+
+
+def codestr(code):
+ return HTTP_CODES.get(code, 'UNKNOWN')
+
+
+File = namedtuple('File', ['name', 'size', 'mtime', 'ctime', 'contenttype'])
+
+
+def prop(elem, name, default=None):
+ child = elem.find('.//{DAV:}' + name)
+ return default if child is None else child.text
+
+
+def elem2file(elem):
+ return File(
+ prop(elem, 'href'),
+ int(prop(elem, 'getcontentlength', 0)),
+ prop(elem, 'getlastmodified', ''),
+ prop(elem, 'creationdate', ''),
+ prop(elem, 'getcontenttype', ''),
+ )
+
+
+class OperationFailed(WebdavException):
+ _OPERATIONS = dict(
+ HEAD = "get header",
+ GET = "download",
+ PUT = "upload",
+ DELETE = "delete",
+ MKCOL = "create directory",
+ PROPFIND = "list directory",
+ )
+
+ def __init__(self, method, path, expected_code, actual_code):
+ self.method = method
+ self.path = path
+ self.expected_code = expected_code
+ self.actual_code = actual_code
+ operation_name = self._OPERATIONS[method]
+ self.reason = 'Failed to {operation_name} "{path}"'.format(**locals())
+ expected_codes = (expected_code,) if isinstance(expected_code, Number) else expected_code
+ expected_codes_str = ", ".join('{0} {1}'.format(code, codestr(code)) for code in expected_codes)
+ actual_code_str = codestr(actual_code)
+ msg = '''\
+{self.reason}.
+ Operation : {method} {path}
+ Expected code : {expected_codes_str}
+ Actual code : {actual_code} {actual_code_str}'''.format(**locals())
+ super(OperationFailed, self).__init__(msg)
+
+class Client(object):
+ def __init__(self, host, port=0, auth=None, username=None, password=None,
+ protocol='http', verify_ssl=True, path=None, cert=None, session=None):
+ if not port:
+ port = 443 if protocol == 'https' else 80
+ self.baseurl = '{0}://{1}:{2}'.format(protocol, host, port)
+ if path:
+ self.baseurl = '{0}/{1}'.format(self.baseurl, path)
+ self.cwd = '/'
+ if session is None:
+ self.session = requests.session()
+ else:
+ self.session = session
+ self.session.verify = verify_ssl
+ self.session.stream = True
+
+ if cert:
+ self.session.cert = cert
+
+ if auth:
+ self.session.auth = auth
+ elif username and password:
+ self.session.auth = (username, password)
+
+ def _send(self, method, path, expected_code, **kwargs):
+ url = self._get_url(path).strip(".")
+ #~ print self.session
+ #~ print self.session.verify
+ #~ print self.session.params
+ #~ print self.session.cookies
+ response = self.session.request(method, url, allow_redirects=False, **kwargs)
+ #~ print response.request.method
+ #~ print response.request.url
+ if isinstance(expected_code, Number) and response.status_code != expected_code \
+ or not isinstance(expected_code, Number) and response.status_code not in expected_code:
+ raise OperationFailed(method, path, expected_code, response.status_code)
+ return response
+
+ def _get_url(self, path):
+ path = str(path).strip()
+ if path.startswith('/'):
+ return self.baseurl + path
+ return "".join((self.baseurl, self.cwd, path))
+
+ def cd(self, path):
+ path = path.strip()
+ if not path:
+ return
+ stripped_path = '/'.join(part for part in path.split('/') if part) + '/'
+
+ if stripped_path == '/':
+ self.cwd = stripped_path
+ elif path.startswith('/'):
+ self.cwd = '/' + stripped_path
+ elif stripped_path == "./":
+ return
+ elif stripped_path == "../":
+ self.cwd ='/'.join( self.cwd.split('/')[:-2] ) + '/'
+ else:
+ self.cwd += stripped_path
+
+ def mkdir(self, path, safe=False):
+ expected_codes = 201 if not safe else (201, 301, 405)
+ self._send('MKCOL', path, expected_codes)
+
+ def mkdirs(self, path):
+ dirs = [d for d in path.split('/') if d]
+ if not dirs:
+ return
+ if path.startswith('/'):
+ dirs[0] = '/' + dirs[0]
+ old_cwd = self.cwd
+ try:
+ for dir in dirs:
+ try:
+ self.mkdir(dir, safe=True)
+ except Exception as e:
+ if e.actual_code == 409:
+ raise
+ finally:
+ self.cd(dir)
+ finally:
+ self.cd(old_cwd)
+
+ def rmdir(self, path, safe=False):
+ path = str(path).rstrip('/') + '/'
+ expected_codes = 204 if not safe else (204, 404)
+ self._send('DELETE', path, expected_codes)
+
+ def delete(self, path):
+ self._send('DELETE', path, 204)
+
+ def upload(self, local_path_or_fileobj, remote_path):
+ if isinstance(local_path_or_fileobj, basestring):
+ with open(local_path_or_fileobj, 'rb') as f:
+ self._upload(f, remote_path)
+ else:
+ self._upload(local_path_or_fileobj, remote_path)
+
+ def _upload(self, fileobj, remote_path):
+ self._send('PUT', remote_path, (200, 201, 204), data=fileobj)
+
+ def download(self, remote_path, local_path_or_fileobj):
+ response = self._send('GET', remote_path, 200, stream=True)
+ if isinstance(local_path_or_fileobj, basestring):
+ with open(local_path_or_fileobj, 'wb') as f:
+ self._download(f, response)
+ else:
+ self._download(local_path_or_fileobj, response)
+
+ def _download(self, fileobj, response):
+ for chunk in response.iter_content(DOWNLOAD_CHUNK_SIZE_BYTES):
+ fileobj.write(chunk)
+
+ def ls(self, remote_path='.'):
+ headers = {'Depth': '1'}
+ response = self._send('PROPFIND', remote_path, (207, 301), headers=headers)
+
+ # Redirect
+ if response.status_code == 301:
+ url = urlparse(response.headers['location'])
+ return self.ls(url.path)
+
+ tree = xml.fromstring(response.content)
+ return [elem2file(elem) for elem in tree.findall('{DAV:}response')]
+
+ def exists(self, remote_path):
+ response = self._send('HEAD', remote_path, (200, 301, 404))
+ return True if response.status_code != 404 else False
diff --git a/util/zotsh/easywebdav/client.pyc b/util/zotsh/easywebdav/client.pyc
new file mode 100644
index 000000000..4c42d2603
--- /dev/null
+++ b/util/zotsh/easywebdav/client.pyc
Binary files differ
diff --git a/util/zotsh/zotsh.py b/util/zotsh/zotsh.py
new file mode 100755
index 000000000..36506b39d
--- /dev/null
+++ b/util/zotsh/zotsh.py
@@ -0,0 +1,324 @@
+#!/usr/bin/env python2
+import sys, os
+import ConfigParser
+import requests
+from requests.auth import HTTPBasicAuth
+import easywebdav
+import easywebdav.__version__ as easywebdavversion
+
+__version__= "0.0.2"
+
+SERVER = None
+USER = None
+PASSWD = None
+VERIFY_SSL=True
+
+#####################################################
+
+class CommandNotFound(Exception):
+ pass
+
+class ZotSH(object):
+ commands = ['cd','ls','exists','mkdir','mkdirs','rmdir','delete','upload','download',
+ 'host', 'pwd','cat',
+ 'lcd','lpwd', 'lls',
+ 'quit', 'help']
+ def __init__(self, host, session=None, davclient=None):
+ self.sessions = {}
+ self.host = host
+ self.session = session
+ self.davclient = davclient
+
+
+ @property
+ def host(self):
+ return self._host
+
+ @host.setter
+ def host(self, host):
+ self._host = host
+ self._hostname = host.replace("https:","").replace("/","")
+
+ @property
+ def hostname(self):
+ return self._hostname
+
+ @hostname.setter
+ def hostname(self, hostname):
+ self._host = "https://%s/" % (hostname)
+ self._hostname = hostname
+
+ @property
+ def session(self):
+ return self._session
+
+ @session.setter
+ def session(self, session):
+ self._session = session
+ self.davclient = easywebdav.connect( self.hostname, protocol='https', session=session, path="cloud", verify_ssl=VERIFY_SSL)
+
+ @property
+ def PS1(self):
+ if self.davclient is None:
+ return "[!]> "
+ return "%s:%s> " % (self.hostname, self.davclient.cwd)
+
+ def get_host_session(self, host=None):
+ #~ if host is None:
+ #~ host = self.host
+ #~ if not host.startswith("https"):
+ #~ host = "https://%s/" % (host)
+ #~ if host in self.sessions:
+ #~ session = self.sessions[host]
+ #~ else:
+ #~ session = requests.Session()
+ #~ self.sessions[host] = session
+ #~ if not host == SERVER
+ #~ session.params.update({'davguest':1})
+ #~ return session
+
+ if self.session is None:
+ session = requests.Session()
+ #session.params.update({'davguest':1})
+ else:
+ session = self.session
+ session.params.update({'davguest': (not host == SERVER) })
+ return session
+
+ def do(self, command, *args):
+ if not command in self.commands:
+ raise CommandNotFound("Unknow command '%s'" % command)
+
+ cmd = getattr(self, "cmd_%s"%command, None)
+ if cmd is None:
+ cmd = getattr(self.davclient, command)
+
+ return cmd(*args)
+
+ def cmd_exists(self, *args):
+ if (len(args)==0):
+ return
+ return self.davclient.exists(args[0])
+
+ def cmd_mkdir(self, *args):
+ if (len(args)==0):
+ return
+ return self.davclient.mkdir(args[0])
+
+ def cmd_mkdirs(self, *args):
+ if (len(args)==0):
+ return
+ return self.davclient.mkdirs(args[0])
+
+ def cmd_rmdir(self, *args):
+ if (len(args)==0):
+ return
+ return self.davclient.rmdir(args[0])
+
+ def cmd_delete(self, *args):
+ if (len(args)==0):
+ return
+ return self.davclient.delete(args[0])
+
+ def cmd_upload(self, *args):
+ if (len(args)==0):
+ return
+ args = list(args)
+ if (len(args)==1):
+ args.append(args[0])
+
+ return self.davclient.upload(args[0], args[1])
+
+ def cmd_download(self, *args):
+ if (len(args)==0):
+ return
+ args = list(args)
+ if (len(args)==1):
+ args.append(args[0])
+
+ return self.davclient.download(args[0], args[1])
+
+ def cmd_host(self, *args):
+ if (len(args)==0):
+ return
+ newhostname = args[0]
+ newhost = "https://%s/" % newhostname
+ if newhostname == "~" or newhost == SERVER:
+ # bach to home server
+ self.host = SERVER
+ self.session = self.get_host_session(SERVER)
+ return
+
+ session_remote = self.get_host_session(newhost)
+ session_home = self.get_host_session(SERVER)
+
+ # call /magic on SERVER
+ r = session_home.get(
+ SERVER + "magic",
+ params={'dest': newhost},
+ allow_redirects=False,
+ verify=VERIFY_SSL )
+
+ if not 'location' in r.headers:
+ raise Exception("Cannot start magic auth to '%s'" % newhostname)
+ auth_url = r.headers['location']
+
+
+ # call auth_url with "test" param
+
+ r = session_remote.get(
+ auth_url,
+ params={'test': 1 },
+ verify=VERIFY_SSL )
+
+ if r.json()['success']:
+ self.hostname = newhostname
+ self.session = session_remote
+ else:
+ raise Exception("Cannot magic auth to '%s'" % newhostname)
+
+
+ def cmd_pwd(self, *args):
+ return "%s%s" % ( self.davclient.baseurl, self.davclient.cwd )
+
+ def cmd_ls(self, *args):
+ extra_args = ["-a", "-l", "-d"]
+
+ show_hidden = "-a" in args
+ show_list = "-l" in args
+ show_only_dir = "-d" in args
+ args = [ a for a in args if not a in extra_args ]
+
+
+ r = self.davclient.ls(*args)
+ l = max([ len(str(f.size)) for f in r ] + [7,])
+
+ def _fmt(type, size, name):
+ if show_list:
+ return "%s %*d %s" % (type, l, f.size , name)
+ else:
+ return name
+
+ if show_hidden :
+ print _fmt('d', 0, "./")
+ if self.davclient.cwd!="/":
+ print _fmt('d', 0, "../")
+
+ for f in r:
+ name = f.name.replace("/cloud"+self.davclient.cwd,"")
+ type = "-"
+ if name.endswith("/"):
+ type = "d"
+ if name!="":
+ if show_hidden or not name.startswith("."):
+ if not show_only_dir or type=="d":
+ print _fmt(type, f.size , name)
+
+ def cmd_lpwd(self, *args):
+ return os.getcwd()
+
+ def cmd_lcd(self, *args):
+ if (len(args)==0):
+ return
+ os.chdir(args[0])
+
+ def cmd_lls(self, *args):
+ for f in os.listdir(os.getcwd()):
+ if os.path.isdir(f):
+ f=f+"/"
+ print f
+
+ def cmd_help(self, *args):
+ print "ZotSH",__version__
+ print
+ print "Commands:"
+ for c in self.commands:
+ print "\t",c
+ print
+ print "easywebdav", easywebdavversion.__version__, "(mod)"
+ print "requests", requests.__version__
+
+ def cmd_cat(self,*args):
+ if (len(args)==0):
+ return
+ rfile = args[0]
+ resp = self.davclient._send('GET', rfile, (200,))
+ print resp.text
+
+def load_conf():
+ global SERVER,USER,PASSWD,VERIFY_SSL
+ homedir = os.getenv("HOME")
+ if homedir is None:
+ homedir = os.path.join(os.getenv("HOMEDRIVE"), os.getenv("HOMEPATH"))
+
+ optsfile = ".zotshrc"
+ if not os.path.isfile(optsfile):
+ optsfile = os.path.join(homedir, ".zotshrc")
+
+ if not os.path.isfile(optsfile):
+ print "Please create a configuration file called '.zotshrc':"
+ print "[zotsh]"
+ print "host = https://yourhost.com/"
+ print "username = your_username"
+ print "password = your_password"
+ sys.exit(-1)
+
+ config = ConfigParser.ConfigParser()
+ config.read(optsfile)
+ SERVER = config.get('zotsh', 'host')
+ USER = config.get('zotsh', 'username')
+ PASSWD = config.get('zotsh', 'password')
+ if config.has_option('zotsh', 'verify_ssl'):
+ VERIFY_SSL = config.getboolean('zotsh', 'verify_ssl')
+
+
+def zotsh():
+
+ zotsh = ZotSH( SERVER)
+
+ session_home = zotsh.get_host_session()
+
+ #~ #login on home server
+ print "loggin in..."
+ r = session_home.get(
+ SERVER + "api/account/verify_credentials",
+ auth=HTTPBasicAuth(USER, PASSWD),
+ verify=VERIFY_SSL )
+
+ print "Hi", r.json()['name']
+
+ zotsh.session = session_home
+
+ # command loop
+ input = raw_input(zotsh.PS1)
+ while (input != "quit"):
+ input = input.strip()
+ if len(input)>0:
+ toks = [ x.strip() for x in input.split(" ") ]
+
+ command = toks[0]
+ args = toks[1:]
+ try:
+ ret = zotsh.do(command, *args)
+ except easywebdav.client.OperationFailed, e:
+ print e
+ except CommandNotFound, e:
+ print e
+ else:
+ if ret is not None:
+ print ret
+
+
+ input = raw_input(zotsh.PS1)
+
+
+
+
+if __name__=="__main__":
+ load_conf()
+ zotsh()
+ sys.exit()
+
+
+
+