From b16f93883077a3637d055a4c70a28ef0c994efec Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 22 Nov 2014 12:26:04 -0800 Subject: [PATCH] random block widget --- doc/Widgets.md | 7 + include/widgets.php | 41 + util/messages.po | 6799 ++++++++++++++++++++++--------------------- version.inc | 2 +- 4 files changed, 3461 insertions(+), 3388 deletions(-) diff --git a/doc/Widgets.md b/doc/Widgets.md index 2c5625156..68f9e4cea 100644 --- a/doc/Widgets.md +++ b/doc/Widgets.md @@ -90,5 +90,12 @@ Some/many of these widgets have restrictions which may restrict the type of page * album - album name (very strongly recommended if you have lots of photos) * scale - typically 0 (original size), 1 (640px), or 2 (320px) * style - CSS style string + * channel_id - if not your own +
 
+ +* random_block - display a random block element from your webpage design tools collection. Permissions are honoured. + * args: + * contains - only return blocks which include the contains string in the block name + * channel_id - if not your own
 
diff --git a/include/widgets.php b/include/widgets.php index 076a8fa91..a25139558 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -874,3 +874,44 @@ function widget_photo_rand($arr) { return $o; } + + +function widget_random_block($arr) { + + $channel_id = 0; + if(array_key_exists('channel_id',$arr) && intval($arr['channel_id'])) + $channel_id = intval($arr['channel_id']); + if(! $channel_id) + $channel_id = get_app()->profile_uid; + if(! $channel_id) + return ''; + + if(array_key_exists('contains',$arr)) + $contains = $arr['contains']; + + $o = ''; + + require_once('include/security.php'); + $sql_options = item_permissions_sql($channel_id); + + $randfunc = db_getfunc('RAND'); + + $r = q("select item.* from item left join item_id on item.id = item_id.iid + where item.uid = %d and sid like '%s' and service = 'BUILDBLOCK' and + item_restrict = %d $sql_options order by $randfunc limit 1", + intval($channel_id), + dbesc('%' . $contains . '%'), + intval(ITEM_BUILDBLOCK) + ); + + if($r) { + $o = '
'; + if($r[0]['title']) + $o .= '

' . $r[0]['title'] . '

'; + $o .= prepare_text($r[0]['body'],$r[0]['mimetype']); + $o .= '
'; + + } + return $o; + +} \ No newline at end of file diff --git a/util/messages.po b/util/messages.po index 0ebff50f2..e59fdd1fa 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2014-11-14.859\n" +"Project-Id-Version: 2014-11-21.866\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-11-14 00:04-0800\n" +"POT-Creation-Date: 2014-11-21 00:03-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,21 +17,21 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../include/dba/dba_driver.php:132 +#: ../../include/dba/dba_driver.php:136 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "" #: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 -#: ../../mod/photos.php:91 ../../mod/photos.php:654 #: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:423 +#: ../../mod/profile_photo.php:423 ../../mod/photos.php:91 +#: ../../mod/photos.php:654 msgid "Profile Photos" msgstr "" -#: ../../include/conversation.php:120 ../../include/diaspora.php:1923 -#: ../../include/text.php:1747 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:45 ../../mod/like.php:298 +#: ../../include/conversation.php:120 ../../include/text.php:1747 +#: ../../include/diaspora.php:1928 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/like.php:290 ../../mod/tagger.php:45 msgid "photo" msgstr "" @@ -44,9 +44,9 @@ msgstr "" msgid "channel" msgstr "" -#: ../../include/conversation.php:148 ../../include/diaspora.php:1923 -#: ../../include/text.php:1753 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/tagger.php:53 ../../mod/like.php:298 +#: ../../include/conversation.php:148 ../../include/text.php:1753 +#: ../../include/diaspora.php:1928 ../../mod/subthread.php:72 +#: ../../mod/subthread.php:174 ../../mod/like.php:290 ../../mod/tagger.php:53 msgid "status" msgstr "" @@ -55,13 +55,13 @@ msgstr "" msgid "comment" msgstr "" -#: ../../include/conversation.php:164 ../../include/diaspora.php:1952 -#: ../../mod/like.php:344 +#: ../../include/conversation.php:164 ../../include/diaspora.php:1957 +#: ../../mod/like.php:336 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../include/conversation.php:167 ../../mod/like.php:346 +#: ../../include/conversation.php:167 ../../mod/like.php:338 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "" @@ -86,471 +86,503 @@ msgctxt "mood" msgid "%1$s is %2$s" msgstr "" -#: ../../include/conversation.php:637 ../../include/ItemObject.php:126 +#: ../../include/conversation.php:633 ../../include/ItemObject.php:126 msgid "Select" msgstr "" -#: ../../include/conversation.php:638 ../../include/RedDAV/RedBrowser.php:251 +#: ../../include/conversation.php:634 ../../include/RedDAV/RedBrowser.php:251 #: ../../include/apps.php:250 ../../include/ItemObject.php:120 -#: ../../mod/photos.php:1069 ../../mod/connedit.php:476 -#: ../../mod/thing.php:234 ../../mod/settings.php:612 ../../mod/group.php:176 -#: ../../mod/admin.php:730 ../../mod/admin.php:861 +#: ../../mod/settings.php:626 ../../mod/connedit.php:476 +#: ../../mod/thing.php:234 ../../mod/group.php:176 ../../mod/admin.php:730 +#: ../../mod/admin.php:861 ../../mod/photos.php:1070 msgid "Delete" msgstr "" -#: ../../include/conversation.php:645 ../../include/ItemObject.php:89 +#: ../../include/conversation.php:641 ../../include/ItemObject.php:89 msgid "Private Message" msgstr "" -#: ../../include/conversation.php:652 ../../include/ItemObject.php:194 +#: ../../include/conversation.php:648 ../../include/ItemObject.php:194 msgid "Message signature validated" msgstr "" -#: ../../include/conversation.php:653 ../../include/ItemObject.php:195 +#: ../../include/conversation.php:649 ../../include/ItemObject.php:195 msgid "Message signature incorrect" msgstr "" -#: ../../include/conversation.php:674 +#: ../../include/conversation.php:670 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: ../../include/conversation.php:689 +#: ../../include/conversation.php:685 msgid "Categories:" msgstr "" -#: ../../include/conversation.php:690 +#: ../../include/conversation.php:686 msgid "Filed under:" msgstr "" -#: ../../include/conversation.php:698 ../../include/ItemObject.php:265 +#: ../../include/conversation.php:694 ../../include/ItemObject.php:266 #, php-format msgid " from %s" msgstr "" -#: ../../include/conversation.php:701 ../../include/ItemObject.php:268 +#: ../../include/conversation.php:697 ../../include/ItemObject.php:269 #, php-format msgid "last edited: %s" msgstr "" -#: ../../include/conversation.php:702 ../../include/ItemObject.php:269 +#: ../../include/conversation.php:698 ../../include/ItemObject.php:270 #, php-format msgid "Expires: %s" msgstr "" -#: ../../include/conversation.php:717 +#: ../../include/conversation.php:713 msgid "View in context" msgstr "" -#: ../../include/conversation.php:719 ../../include/conversation.php:1153 -#: ../../include/ItemObject.php:310 ../../mod/photos.php:977 -#: ../../mod/editblock.php:152 ../../mod/editlayout.php:148 -#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:183 -#: ../../mod/mail.php:234 ../../mod/mail.php:349 +#: ../../include/conversation.php:715 ../../include/conversation.php:1137 +#: ../../include/ItemObject.php:317 ../../mod/editblock.php:152 +#: ../../mod/editlayout.php:148 ../../mod/editpost.php:121 +#: ../../mod/editwebpage.php:183 ../../mod/mail.php:238 ../../mod/mail.php:353 +#: ../../mod/photos.php:978 msgid "Please wait" msgstr "" -#: ../../include/conversation.php:843 +#: ../../include/conversation.php:831 msgid "remove" msgstr "" -#: ../../include/conversation.php:847 ../../include/nav.php:257 +#: ../../include/conversation.php:835 ../../include/nav.php:257 msgid "Loading..." msgstr "" -#: ../../include/conversation.php:848 +#: ../../include/conversation.php:836 msgid "Delete Selected Items" msgstr "" -#: ../../include/conversation.php:942 +#: ../../include/conversation.php:926 msgid "View Source" msgstr "" -#: ../../include/conversation.php:943 +#: ../../include/conversation.php:927 msgid "Follow Thread" msgstr "" -#: ../../include/conversation.php:944 +#: ../../include/conversation.php:928 msgid "View Status" msgstr "" -#: ../../include/conversation.php:945 ../../include/nav.php:99 +#: ../../include/conversation.php:929 ../../include/nav.php:99 #: ../../mod/connedit.php:429 ../../mod/connedit.php:544 msgid "View Profile" msgstr "" -#: ../../include/conversation.php:946 +#: ../../include/conversation.php:930 msgid "View Photos" msgstr "" -#: ../../include/conversation.php:947 +#: ../../include/conversation.php:931 msgid "Matrix Activity" msgstr "" -#: ../../include/conversation.php:948 ../../include/widgets.php:135 -#: ../../include/widgets.php:175 ../../include/Contact.php:107 -#: ../../include/identity.php:840 ../../mod/directory.php:224 -#: ../../mod/suggest.php:51 ../../mod/match.php:62 +#: ../../include/conversation.php:932 ../../include/identity.php:840 +#: ../../include/widgets.php:135 ../../include/widgets.php:175 +#: ../../include/Contact.php:107 ../../mod/suggest.php:51 +#: ../../mod/match.php:62 ../../mod/directory.php:224 msgid "Connect" msgstr "" -#: ../../include/conversation.php:949 +#: ../../include/conversation.php:933 msgid "Edit Contact" msgstr "" -#: ../../include/conversation.php:950 +#: ../../include/conversation.php:934 msgid "Send PM" msgstr "" -#: ../../include/conversation.php:951 ../../include/apps.php:143 +#: ../../include/conversation.php:935 ../../include/apps.php:143 msgid "Poke" msgstr "" -#: ../../include/conversation.php:1003 ../../include/RedDAV/RedBrowser.php:163 +#: ../../include/conversation.php:987 ../../include/RedDAV/RedBrowser.php:163 #: ../../include/apps.php:331 ../../include/apps.php:382 -#: ../../mod/photos.php:713 ../../mod/photos.php:1131 -#: ../../mod/connedit.php:512 +#: ../../mod/connedit.php:512 ../../mod/photos.php:713 +#: ../../mod/photos.php:1132 msgid "Unknown" msgstr "" -#: ../../include/conversation.php:1024 +#: ../../include/conversation.php:1008 #, php-format msgid "%s likes this." msgstr "" -#: ../../include/conversation.php:1024 +#: ../../include/conversation.php:1008 #, php-format msgid "%s doesn't like this." msgstr "" -#: ../../include/conversation.php:1028 +#: ../../include/conversation.php:1012 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1030 +#: ../../include/conversation.php:1014 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1036 +#: ../../include/conversation.php:1020 msgid "and" msgstr "" -#: ../../include/conversation.php:1039 +#: ../../include/conversation.php:1023 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1040 +#: ../../include/conversation.php:1024 #, php-format msgid "%s like this." msgstr "" -#: ../../include/conversation.php:1040 +#: ../../include/conversation.php:1024 #, php-format msgid "%s don't like this." msgstr "" -#: ../../include/conversation.php:1097 +#: ../../include/conversation.php:1081 msgid "Visible to everybody" msgstr "" -#: ../../include/conversation.php:1098 ../../mod/mail.php:170 -#: ../../mod/mail.php:282 +#: ../../include/conversation.php:1082 ../../mod/mail.php:171 +#: ../../mod/mail.php:286 msgid "Please enter a link URL:" msgstr "" -#: ../../include/conversation.php:1099 +#: ../../include/conversation.php:1083 msgid "Please enter a video link/URL:" msgstr "" -#: ../../include/conversation.php:1100 +#: ../../include/conversation.php:1084 msgid "Please enter an audio link/URL:" msgstr "" -#: ../../include/conversation.php:1101 +#: ../../include/conversation.php:1085 msgid "Tag term:" msgstr "" -#: ../../include/conversation.php:1102 ../../mod/filer.php:49 +#: ../../include/conversation.php:1086 ../../mod/filer.php:49 msgid "Save to Folder:" msgstr "" -#: ../../include/conversation.php:1103 +#: ../../include/conversation.php:1087 msgid "Where are you right now?" msgstr "" -#: ../../include/conversation.php:1104 ../../mod/editpost.php:52 -#: ../../mod/mail.php:171 ../../mod/mail.php:283 +#: ../../include/conversation.php:1088 ../../mod/editpost.php:52 +#: ../../mod/mail.php:172 ../../mod/mail.php:287 msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../include/conversation.php:1114 ../../include/page_widgets.php:40 -#: ../../include/ItemObject.php:608 ../../mod/photos.php:997 -#: ../../mod/webpages.php:166 ../../mod/editblock.php:173 -#: ../../mod/editlayout.php:168 ../../mod/editpost.php:140 -#: ../../mod/editwebpage.php:205 +#: ../../include/conversation.php:1098 ../../include/page_widgets.php:40 +#: ../../include/ItemObject.php:630 ../../mod/webpages.php:166 +#: ../../mod/editblock.php:173 ../../mod/editlayout.php:168 +#: ../../mod/editpost.php:140 ../../mod/editwebpage.php:205 +#: ../../mod/photos.php:998 msgid "Preview" msgstr "" -#: ../../include/conversation.php:1128 ../../mod/photos.php:976 -#: ../../mod/editblock.php:198 ../../mod/editlayout.php:193 -#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168 +#: ../../include/conversation.php:1112 ../../mod/editblock.php:198 +#: ../../mod/editlayout.php:193 ../../mod/editwebpage.php:230 +#: ../../mod/layouts.php:168 ../../mod/photos.php:977 msgid "Share" msgstr "" -#: ../../include/conversation.php:1130 ../../mod/editwebpage.php:170 +#: ../../include/conversation.php:1114 ../../mod/editwebpage.php:170 msgid "Page link title" msgstr "" -#: ../../include/conversation.php:1133 +#: ../../include/conversation.php:1117 msgid "Post as" msgstr "" -#: ../../include/conversation.php:1134 ../../mod/editblock.php:144 +#: ../../include/conversation.php:1118 ../../mod/editblock.php:144 #: ../../mod/editlayout.php:140 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:175 ../../mod/mail.php:231 ../../mod/mail.php:345 +#: ../../mod/editwebpage.php:175 ../../mod/mail.php:235 ../../mod/mail.php:349 msgid "Upload photo" msgstr "" -#: ../../include/conversation.php:1135 +#: ../../include/conversation.php:1119 msgid "upload photo" msgstr "" -#: ../../include/conversation.php:1136 ../../mod/editblock.php:145 +#: ../../include/conversation.php:1120 ../../mod/editblock.php:145 #: ../../mod/editlayout.php:141 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:176 ../../mod/mail.php:232 ../../mod/mail.php:346 +#: ../../mod/editwebpage.php:176 ../../mod/mail.php:236 ../../mod/mail.php:350 msgid "Attach file" msgstr "" -#: ../../include/conversation.php:1137 +#: ../../include/conversation.php:1121 msgid "attach file" msgstr "" -#: ../../include/conversation.php:1138 ../../mod/editblock.php:146 +#: ../../include/conversation.php:1122 ../../mod/editblock.php:146 #: ../../mod/editlayout.php:142 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:177 ../../mod/mail.php:233 ../../mod/mail.php:347 +#: ../../mod/editwebpage.php:177 ../../mod/mail.php:237 ../../mod/mail.php:351 msgid "Insert web link" msgstr "" -#: ../../include/conversation.php:1139 +#: ../../include/conversation.php:1123 msgid "web link" msgstr "" -#: ../../include/conversation.php:1140 +#: ../../include/conversation.php:1124 msgid "Insert video link" msgstr "" -#: ../../include/conversation.php:1141 +#: ../../include/conversation.php:1125 msgid "video link" msgstr "" -#: ../../include/conversation.php:1142 +#: ../../include/conversation.php:1126 msgid "Insert audio link" msgstr "" -#: ../../include/conversation.php:1143 +#: ../../include/conversation.php:1127 msgid "audio link" msgstr "" -#: ../../include/conversation.php:1144 ../../mod/editblock.php:150 +#: ../../include/conversation.php:1128 ../../mod/editblock.php:150 #: ../../mod/editlayout.php:146 ../../mod/editpost.php:119 #: ../../mod/editwebpage.php:181 msgid "Set your location" msgstr "" -#: ../../include/conversation.php:1145 +#: ../../include/conversation.php:1129 msgid "set location" msgstr "" -#: ../../include/conversation.php:1146 ../../mod/editblock.php:151 +#: ../../include/conversation.php:1130 ../../mod/editblock.php:151 #: ../../mod/editlayout.php:147 ../../mod/editpost.php:120 #: ../../mod/editwebpage.php:182 msgid "Clear browser location" msgstr "" -#: ../../include/conversation.php:1147 +#: ../../include/conversation.php:1131 msgid "clear location" msgstr "" -#: ../../include/conversation.php:1149 ../../mod/editblock.php:164 +#: ../../include/conversation.php:1133 ../../mod/editblock.php:164 #: ../../mod/editlayout.php:159 ../../mod/editpost.php:132 #: ../../mod/editwebpage.php:198 msgid "Set title" msgstr "" -#: ../../include/conversation.php:1152 ../../mod/events.php:563 +#: ../../include/conversation.php:1136 ../../mod/events.php:562 #: ../../mod/editblock.php:167 ../../mod/editlayout.php:162 #: ../../mod/editpost.php:134 ../../mod/editwebpage.php:200 msgid "Categories (comma-separated list)" msgstr "" -#: ../../include/conversation.php:1154 ../../mod/editblock.php:153 +#: ../../include/conversation.php:1138 ../../mod/editblock.php:153 #: ../../mod/editlayout.php:149 ../../mod/editpost.php:122 #: ../../mod/editwebpage.php:184 msgid "Permission settings" msgstr "" -#: ../../include/conversation.php:1155 +#: ../../include/conversation.php:1139 msgid "permissions" msgstr "" -#: ../../include/conversation.php:1162 ../../mod/editblock.php:161 +#: ../../include/conversation.php:1146 ../../mod/editblock.php:161 #: ../../mod/editlayout.php:156 ../../mod/editpost.php:129 #: ../../mod/editwebpage.php:193 msgid "Public post" msgstr "" -#: ../../include/conversation.php:1164 ../../mod/editblock.php:168 +#: ../../include/conversation.php:1148 ../../mod/editblock.php:168 #: ../../mod/editlayout.php:163 ../../mod/editpost.php:135 #: ../../mod/editwebpage.php:201 msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../include/conversation.php:1177 ../../mod/editblock.php:178 +#: ../../include/conversation.php:1161 ../../mod/editblock.php:178 #: ../../mod/editlayout.php:173 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:210 ../../mod/mail.php:238 ../../mod/mail.php:352 +#: ../../mod/editwebpage.php:210 ../../mod/mail.php:242 ../../mod/mail.php:356 msgid "Set expiration date" msgstr "" -#: ../../include/conversation.php:1179 ../../include/ItemObject.php:611 -#: ../../mod/editpost.php:148 ../../mod/mail.php:240 ../../mod/mail.php:354 +#: ../../include/conversation.php:1163 ../../include/ItemObject.php:633 +#: ../../mod/editpost.php:148 ../../mod/mail.php:244 ../../mod/mail.php:358 msgid "Encrypt text" msgstr "" -#: ../../include/conversation.php:1181 ../../mod/events.php:569 +#: ../../include/conversation.php:1165 ../../mod/events.php:568 #: ../../mod/editpost.php:150 msgid "OK" msgstr "" -#: ../../include/conversation.php:1182 ../../mod/events.php:568 -#: ../../mod/editpost.php:151 ../../mod/settings.php:550 -#: ../../mod/settings.php:576 ../../mod/fbrowser.php:82 +#: ../../include/conversation.php:1166 ../../mod/settings.php:564 +#: ../../mod/settings.php:590 ../../mod/events.php:567 +#: ../../mod/editpost.php:151 ../../mod/fbrowser.php:82 #: ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 msgid "Cancel" msgstr "" -#: ../../include/conversation.php:1426 +#: ../../include/conversation.php:1410 msgid "Discover" msgstr "" -#: ../../include/conversation.php:1429 +#: ../../include/conversation.php:1413 msgid "Imported public streams" msgstr "" -#: ../../include/conversation.php:1434 +#: ../../include/conversation.php:1418 msgid "Commented Order" msgstr "" -#: ../../include/conversation.php:1437 +#: ../../include/conversation.php:1421 msgid "Sort by Comment Date" msgstr "" -#: ../../include/conversation.php:1441 +#: ../../include/conversation.php:1425 msgid "Posted Order" msgstr "" -#: ../../include/conversation.php:1444 +#: ../../include/conversation.php:1428 msgid "Sort by Post Date" msgstr "" -#: ../../include/conversation.php:1449 ../../include/widgets.php:89 +#: ../../include/conversation.php:1433 ../../include/widgets.php:89 msgid "Personal" msgstr "" -#: ../../include/conversation.php:1452 +#: ../../include/conversation.php:1436 msgid "Posts that mention or involve you" msgstr "" -#: ../../include/conversation.php:1458 ../../mod/connections.php:211 +#: ../../include/conversation.php:1442 ../../mod/connections.php:211 #: ../../mod/connections.php:224 ../../mod/menu.php:80 msgid "New" msgstr "" -#: ../../include/conversation.php:1461 +#: ../../include/conversation.php:1445 msgid "Activity Stream - by date" msgstr "" -#: ../../include/conversation.php:1467 +#: ../../include/conversation.php:1451 msgid "Starred" msgstr "" -#: ../../include/conversation.php:1470 +#: ../../include/conversation.php:1454 msgid "Favourite Posts" msgstr "" -#: ../../include/conversation.php:1477 +#: ../../include/conversation.php:1461 msgid "Spam" msgstr "" -#: ../../include/conversation.php:1480 +#: ../../include/conversation.php:1464 msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/conversation.php:1520 ../../mod/admin.php:865 +#: ../../include/conversation.php:1504 ../../mod/admin.php:865 msgid "Channel" msgstr "" -#: ../../include/conversation.php:1523 +#: ../../include/conversation.php:1507 msgid "Status Messages and Posts" msgstr "" -#: ../../include/conversation.php:1532 +#: ../../include/conversation.php:1516 msgid "About" msgstr "" -#: ../../include/conversation.php:1535 +#: ../../include/conversation.php:1519 msgid "Profile Details" msgstr "" -#: ../../include/conversation.php:1541 ../../include/nav.php:105 +#: ../../include/conversation.php:1525 ../../include/nav.php:105 #: ../../include/apps.php:137 ../../mod/fbrowser.php:25 msgid "Photos" msgstr "" -#: ../../include/conversation.php:1544 ../../include/photos.php:341 +#: ../../include/conversation.php:1528 ../../include/photos.php:341 msgid "Photo Albums" msgstr "" -#: ../../include/conversation.php:1550 ../../include/RedDAV/RedBrowser.php:241 +#: ../../include/conversation.php:1534 ../../include/RedDAV/RedBrowser.php:241 #: ../../include/nav.php:106 ../../include/apps.php:133 #: ../../mod/fbrowser.php:114 msgid "Files" msgstr "" -#: ../../include/conversation.php:1553 +#: ../../include/conversation.php:1537 msgid "Files and Storage" msgstr "" -#: ../../include/conversation.php:1563 ../../include/conversation.php:1566 +#: ../../include/conversation.php:1547 ../../include/conversation.php:1550 msgid "Chatrooms" msgstr "" -#: ../../include/conversation.php:1576 ../../include/nav.php:117 +#: ../../include/conversation.php:1560 ../../include/nav.php:117 #: ../../include/apps.php:127 msgid "Bookmarks" msgstr "" -#: ../../include/conversation.php:1579 +#: ../../include/conversation.php:1563 msgid "Saved Bookmarks" msgstr "" -#: ../../include/conversation.php:1587 ../../include/nav.php:121 +#: ../../include/conversation.php:1571 ../../include/nav.php:121 #: ../../include/apps.php:134 ../../mod/webpages.php:160 msgid "Webpages" msgstr "" -#: ../../include/conversation.php:1590 +#: ../../include/conversation.php:1574 msgid "Manage Webpages" msgstr "" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "" + +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "" + +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "" + +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "" + +#: ../../include/follow.php:135 ../../include/follow.php:202 +msgid "Protocol disabled." +msgstr "" + +#: ../../include/follow.php:176 +msgid "Channel discovery failed." +msgstr "" + +#: ../../include/follow.php:192 +msgid "local account not found." +msgstr "" + +#: ../../include/follow.php:220 +msgid "Cannot connect to yourself." +msgstr "" + #: ../../include/notify.php:23 msgid "created a new post" msgstr "" @@ -560,46 +592,18 @@ msgstr "" msgid "commented on %s's post" msgstr "" -#: ../../include/dir_fns.php:56 -msgid "Sort Options" -msgstr "" - -#: ../../include/dir_fns.php:57 -msgid "Alphabetic" -msgstr "" - -#: ../../include/dir_fns.php:58 -msgid "Reverse Alphabetic" -msgstr "" - -#: ../../include/dir_fns.php:59 -msgid "Newest to Oldest" -msgstr "" - -#: ../../include/dir_fns.php:71 -msgid "Enable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:73 -msgid "Disable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:75 -msgid "Safe Mode" -msgstr "" - #: ../../include/page_widgets.php:6 msgid "New Page" msgstr "" #: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/RedDAV/RedBrowser.php:250 ../../include/menu.php:42 +#: ../../include/menu.php:42 ../../include/RedDAV/RedBrowser.php:250 #: ../../include/apps.php:249 ../../include/ItemObject.php:100 -#: ../../mod/blocks.php:132 ../../mod/connections.php:381 -#: ../../mod/connections.php:394 ../../mod/connections.php:413 -#: ../../mod/thing.php:233 ../../mod/webpages.php:162 -#: ../../mod/editblock.php:143 ../../mod/editlayout.php:139 -#: ../../mod/editpost.php:112 ../../mod/settings.php:611 +#: ../../mod/blocks.php:132 ../../mod/settings.php:625 +#: ../../mod/connections.php:381 ../../mod/connections.php:394 +#: ../../mod/connections.php:413 ../../mod/thing.php:233 +#: ../../mod/webpages.php:162 ../../mod/editblock.php:143 +#: ../../mod/editlayout.php:139 ../../mod/editpost.php:112 #: ../../mod/editwebpage.php:174 ../../mod/layouts.php:167 #: ../../mod/menu.php:78 msgid "Edit" @@ -630,65 +634,78 @@ msgstr "" msgid "Edited" msgstr "" -#: ../../include/chat.php:10 -msgid "Missing room name" +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 +msgid "Advanced" msgstr "" -#: ../../include/chat.php:19 -msgid "Duplicate room name" +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" msgstr "" -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" msgstr "" -#: ../../include/chat.php:105 -msgid "Room not found." +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" msgstr "" -#: ../../include/chat.php:116 ../../include/items.php:4013 -#: ../../include/attach.php:116 ../../include/attach.php:163 -#: ../../include/attach.php:226 ../../include/attach.php:240 -#: ../../include/attach.php:280 ../../include/attach.php:294 -#: ../../include/attach.php:318 ../../include/attach.php:511 -#: ../../include/attach.php:584 ../../include/photos.php:15 -#: ../../mod/mood.php:112 ../../mod/mitem.php:106 -#: ../../mod/achievements.php:30 ../../mod/profiles.php:179 -#: ../../mod/profiles.php:550 ../../mod/setup.php:207 ../../mod/poke.php:128 -#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/authtest.php:13 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/block.php:22 -#: ../../mod/block.php:72 ../../mod/sources.php:66 ../../mod/blocks.php:67 -#: ../../mod/blocks.php:75 ../../mod/register.php:72 ../../mod/events.php:195 -#: ../../mod/channel.php:89 ../../mod/channel.php:193 -#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/regmod.php:17 ../../mod/network.php:12 ../../mod/common.php:35 -#: ../../mod/photos.php:68 ../../mod/connections.php:169 -#: ../../mod/manage.php:6 ../../mod/connedit.php:266 ../../mod/thing.php:247 -#: ../../mod/thing.php:264 ../../mod/thing.php:299 ../../mod/webpages.php:67 -#: ../../mod/bookmarks.php:46 ../../mod/editblock.php:65 -#: ../../mod/pdledit.php:21 ../../mod/editlayout.php:64 -#: ../../mod/editlayout.php:89 ../../mod/editpost.php:13 -#: ../../mod/settings.php:526 ../../mod/editwebpage.php:64 -#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/fsuggest.php:78 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 -#: ../../mod/filestorage.php:109 ../../mod/delegate.php:6 -#: ../../mod/group.php:9 ../../mod/suggest.php:26 ../../mod/item.php:191 -#: ../../mod/item.php:199 ../../mod/item.php:971 ../../mod/like.php:154 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/locs.php:71 -#: ../../mod/layouts.php:67 ../../mod/layouts.php:74 ../../mod/layouts.php:85 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/viewsrc.php:14 ../../mod/mail.php:111 ../../mod/menu.php:61 -#: ../../mod/message.php:16 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 -#: ../../mod/page.php:28 ../../mod/page.php:78 ../../mod/appman.php:66 -#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:390 -msgid "Permission denied." +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../include/chat.php:126 -msgid "Room is full" +#: ../../include/contact_widgets.php:26 ../../mod/connections.php:412 +#: ../../mod/directory.php:267 ../../mod/directory.php:272 +msgid "Find" +msgstr "" + +#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 +msgid "Channel Suggestions" +msgstr "" + +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "" + +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "" + +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "" + +#: ../../include/contact_widgets.php:57 ../../include/features.php:73 +#: ../../include/widgets.php:303 +msgid "Saved Folders" +msgstr "" + +#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:95 +#: ../../include/widgets.php:306 +msgid "Everything" +msgstr "" + +#: ../../include/contact_widgets.php:92 ../../include/taxonomy.php:230 +#: ../../include/widgets.php:29 +msgid "Categories" +msgstr "" + +#: ../../include/contact_widgets.php:125 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:130 +msgid "show more" msgstr "" #: ../../include/oembed.php:171 @@ -699,216 +716,20 @@ msgstr "" msgid "Embedding disabled" msgstr "" -#: ../../include/widgets.php:29 ../../include/contact_widgets.php:92 -#: ../../include/taxonomy.php:230 -msgid "Categories" +#: ../../include/message.php:18 +msgid "No recipient provided." msgstr "" -#: ../../include/widgets.php:86 ../../include/nav.php:171 -#: ../../mod/apps.php:33 -msgid "Apps" +#: ../../include/message.php:23 +msgid "[no subject]" msgstr "" -#: ../../include/widgets.php:87 -msgid "System" +#: ../../include/message.php:45 +msgid "Unable to determine sender." msgstr "" -#: ../../include/widgets.php:90 -msgid "Create Personal App" -msgstr "" - -#: ../../include/widgets.php:91 -msgid "Edit Personal App" -msgstr "" - -#: ../../include/widgets.php:137 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "" - -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" -msgstr "" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "" - -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "" - -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "" - -#: ../../include/widgets.php:191 -msgid "Notes" -msgstr "" - -#: ../../include/widgets.php:193 ../../include/text.php:827 -#: ../../include/text.php:839 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 -#: ../../mod/filer.php:50 ../../mod/admin.php:1339 ../../mod/admin.php:1360 -msgid "Save" -msgstr "" - -#: ../../include/widgets.php:263 -msgid "Remove term" -msgstr "" - -#: ../../include/widgets.php:272 ../../include/features.php:58 -msgid "Saved Searches" -msgstr "" - -#: ../../include/widgets.php:273 ../../include/group.php:303 -msgid "add" -msgstr "" - -#: ../../include/widgets.php:303 ../../include/contact_widgets.php:57 -#: ../../include/features.php:72 -msgid "Saved Folders" -msgstr "" - -#: ../../include/widgets.php:306 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "" - -#: ../../include/widgets.php:352 -msgid "Archives" -msgstr "" - -#: ../../include/widgets.php:428 -msgid "Refresh" -msgstr "" - -#: ../../include/widgets.php:429 ../../mod/connedit.php:506 -msgid "Me" -msgstr "" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:508 -msgid "Best Friends" -msgstr "" - -#: ../../include/widgets.php:431 ../../include/identity.php:387 -#: ../../include/identity.php:388 ../../include/identity.php:395 -#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:509 -#: ../../mod/settings.php:304 ../../mod/settings.php:308 -#: ../../mod/settings.php:309 ../../mod/settings.php:312 -#: ../../mod/settings.php:323 -msgid "Friends" -msgstr "" - -#: ../../include/widgets.php:432 -msgid "Co-workers" -msgstr "" - -#: ../../include/widgets.php:433 ../../mod/connedit.php:510 -msgid "Former Friends" -msgstr "" - -#: ../../include/widgets.php:434 ../../mod/connedit.php:511 -msgid "Acquaintances" -msgstr "" - -#: ../../include/widgets.php:435 -msgid "Everybody" -msgstr "" - -#: ../../include/widgets.php:469 -msgid "Account settings" -msgstr "" - -#: ../../include/widgets.php:475 -msgid "Channel settings" -msgstr "" - -#: ../../include/widgets.php:481 -msgid "Additional features" -msgstr "" - -#: ../../include/widgets.php:487 -msgid "Feature settings" -msgstr "" - -#: ../../include/widgets.php:493 -msgid "Display settings" -msgstr "" - -#: ../../include/widgets.php:499 -msgid "Connected apps" -msgstr "" - -#: ../../include/widgets.php:505 -msgid "Export channel" -msgstr "" - -#: ../../include/widgets.php:511 -msgid "Export content" -msgstr "" - -#: ../../include/widgets.php:520 ../../mod/connedit.php:538 -msgid "Connection Default Permissions" -msgstr "" - -#: ../../include/widgets.php:528 -msgid "Premium Channel Settings" -msgstr "" - -#: ../../include/widgets.php:537 ../../include/features.php:49 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "" - -#: ../../include/widgets.php:548 ../../include/nav.php:218 -#: ../../include/apps.php:132 ../../mod/admin.php:951 ../../mod/admin.php:1156 -msgid "Settings" -msgstr "" - -#: ../../include/widgets.php:562 ../../mod/mail.php:124 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "" - -#: ../../include/widgets.php:567 -msgid "Check Mail" -msgstr "" - -#: ../../include/widgets.php:572 ../../include/nav.php:209 -msgid "New Message" -msgstr "" - -#: ../../include/widgets.php:648 -msgid "Chat Rooms" -msgstr "" - -#: ../../include/widgets.php:666 -msgid "Bookmarked Chatrooms" -msgstr "" - -#: ../../include/widgets.php:684 -msgid "Suggested Chatrooms" -msgstr "" - -#: ../../include/zot.php:664 -msgid "Invalid data packet" -msgstr "" - -#: ../../include/zot.php:680 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../include/zot.php:1799 -#, php-format -msgid "Unable to verify site signature for %s" +#: ../../include/message.php:200 +msgid "Stored post could not be verified." msgstr "" #: ../../include/activities.php:39 @@ -934,6 +755,29 @@ msgstr "" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" +#: ../../include/acl_selectors.php:240 +msgid "Visible to your default audience" +msgstr "" + +#: ../../include/acl_selectors.php:241 +msgid "Show" +msgstr "" + +#: ../../include/acl_selectors.php:242 +msgid "Don't show" +msgstr "" + +#: ../../include/acl_selectors.php:248 ../../mod/events.php:584 +#: ../../mod/chat.php:209 ../../mod/filestorage.php:137 +#: ../../mod/photos.php:588 ../../mod/photos.php:950 +msgid "Permissions" +msgstr "" + +#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:312 +#: ../../mod/photos.php:1149 +msgid "Close" +msgstr "" + #: ../../include/bb2diaspora.php:384 msgid "Attachments:" msgstr "" @@ -954,12 +798,112 @@ msgstr "" msgid "Finishes:" msgstr "" -#: ../../include/bb2diaspora.php:485 ../../include/event.php:40 -#: ../../include/identity.php:891 ../../mod/directory.php:159 -#: ../../mod/events.php:579 +#: ../../include/bb2diaspora.php:485 ../../include/identity.php:891 +#: ../../include/event.php:40 ../../mod/events.php:578 +#: ../../mod/directory.php:159 msgid "Location:" msgstr "" +#: ../../include/attach.php:116 ../../include/attach.php:163 +#: ../../include/attach.php:226 ../../include/attach.php:240 +#: ../../include/attach.php:280 ../../include/attach.php:294 +#: ../../include/attach.php:318 ../../include/attach.php:511 +#: ../../include/attach.php:584 ../../include/photos.php:15 +#: ../../include/items.php:4018 ../../include/chat.php:116 +#: ../../mod/mood.php:112 ../../mod/mitem.php:106 +#: ../../mod/achievements.php:30 ../../mod/register.php:72 +#: ../../mod/sources.php:66 ../../mod/poke.php:128 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/authtest.php:13 ../../mod/profile.php:64 +#: ../../mod/profile.php:72 ../../mod/block.php:22 ../../mod/block.php:72 +#: ../../mod/blocks.php:67 ../../mod/blocks.php:75 ../../mod/setup.php:207 +#: ../../mod/settings.php:540 ../../mod/events.php:195 +#: ../../mod/channel.php:89 ../../mod/channel.php:198 +#: ../../mod/channel.php:241 ../../mod/chat.php:90 ../../mod/chat.php:95 +#: ../../mod/regmod.php:17 ../../mod/common.php:35 ../../mod/like.php:154 +#: ../../mod/connections.php:169 ../../mod/connedit.php:266 +#: ../../mod/thing.php:247 ../../mod/thing.php:264 ../../mod/thing.php:299 +#: ../../mod/webpages.php:67 ../../mod/bookmarks.php:46 +#: ../../mod/profiles.php:179 ../../mod/profiles.php:550 +#: ../../mod/editblock.php:65 ../../mod/pdledit.php:21 +#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 +#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:64 +#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 +#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 +#: ../../mod/item.php:191 ../../mod/item.php:199 ../../mod/item.php:971 +#: ../../mod/fsuggest.php:78 ../../mod/filestorage.php:18 +#: ../../mod/filestorage.php:67 ../../mod/filestorage.php:82 +#: ../../mod/filestorage.php:109 ../../mod/delegate.php:6 +#: ../../mod/group.php:9 ../../mod/suggest.php:26 ../../mod/locs.php:71 +#: ../../mod/mail.php:111 ../../mod/invite.php:13 ../../mod/invite.php:104 +#: ../../mod/manage.php:6 ../../mod/layouts.php:67 ../../mod/layouts.php:74 +#: ../../mod/layouts.php:85 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:14 +#: ../../mod/network.php:12 ../../mod/menu.php:61 ../../mod/message.php:16 +#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 +#: ../../mod/notifications.php:66 ../../mod/page.php:28 ../../mod/page.php:78 +#: ../../mod/photos.php:68 ../../mod/appman.php:66 +#: ../../mod/service_limits.php:7 ../../index.php:190 ../../index.php:390 +msgid "Permission denied." +msgstr "" + +#: ../../include/attach.php:221 ../../include/attach.php:275 +msgid "Item was not found." +msgstr "" + +#: ../../include/attach.php:331 +msgid "No source file." +msgstr "" + +#: ../../include/attach.php:348 +msgid "Cannot locate file to replace" +msgstr "" + +#: ../../include/attach.php:366 +msgid "Cannot locate file to revise/update" +msgstr "" + +#: ../../include/attach.php:377 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "" + +#: ../../include/attach.php:389 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "" + +#: ../../include/attach.php:472 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "" + +#: ../../include/attach.php:484 +msgid "Stored file could not be verified. Upload failed." +msgstr "" + +#: ../../include/attach.php:526 ../../include/attach.php:543 +msgid "Path not available." +msgstr "" + +#: ../../include/attach.php:589 +msgid "Empty pathname" +msgstr "" + +#: ../../include/attach.php:605 +msgid "duplicate filename or path" +msgstr "" + +#: ../../include/attach.php:629 +msgid "Path not found." +msgstr "" + +#: ../../include/attach.php:680 +msgid "mkdir failed." +msgstr "" + +#: ../../include/attach.php:684 +msgid "database storage failed." +msgstr "" + #: ../../include/RedDAV/RedBrowser.php:106 #: ../../include/RedDAV/RedBrowser.php:249 msgid "parent" @@ -999,8 +943,8 @@ msgstr "" msgid "%1$s used of %2$s (%3$s%)" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:551 -#: ../../mod/settings.php:577 ../../mod/admin.php:866 +#: ../../include/RedDAV/RedBrowser.php:245 ../../mod/settings.php:565 +#: ../../mod/settings.php:591 ../../mod/admin.php:866 msgid "Name" msgstr "" @@ -1033,8 +977,8 @@ msgstr "" msgid "Upload file" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/photos.php:738 -#: ../../mod/photos.php:1245 ../../mod/profile_photo.php:361 +#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/profile_photo.php:361 +#: ../../mod/photos.php:738 ../../mod/photos.php:1246 msgid "Upload" msgstr "" @@ -1043,36 +987,257 @@ msgstr "" msgid "%1$s's bookmarks" msgstr "" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." +#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1486 +msgid "Logout" msgstr "" -#: ../../include/follow.php:33 -msgid "Channel location missing." +#: ../../include/nav.php:95 ../../include/nav.php:128 +msgid "End this session" msgstr "" -#: ../../include/follow.php:82 -msgid "Response from remote channel was incomplete." +#: ../../include/nav.php:98 ../../include/nav.php:159 +msgid "Home" msgstr "" -#: ../../include/follow.php:99 -msgid "Channel was deleted and no longer exists." +#: ../../include/nav.php:98 +msgid "Your posts and conversations" msgstr "" -#: ../../include/follow.php:135 ../../include/follow.php:202 -msgid "Protocol disabled." +#: ../../include/nav.php:99 +msgid "Your profile page" msgstr "" -#: ../../include/follow.php:176 -msgid "Channel discovery failed." +#: ../../include/nav.php:101 +msgid "Edit Profiles" msgstr "" -#: ../../include/follow.php:192 -msgid "local account not found." +#: ../../include/nav.php:101 +msgid "Manage/Edit profiles" msgstr "" -#: ../../include/follow.php:220 -msgid "Cannot connect to yourself." +#: ../../include/nav.php:103 ../../include/identity.php:864 +msgid "Edit Profile" +msgstr "" + +#: ../../include/nav.php:103 +msgid "Edit your profile" +msgstr "" + +#: ../../include/nav.php:105 +msgid "Your photos" +msgstr "" + +#: ../../include/nav.php:106 +msgid "Your files" +msgstr "" + +#: ../../include/nav.php:111 ../../include/apps.php:144 +msgid "Chat" +msgstr "" + +#: ../../include/nav.php:111 +msgid "Your chatrooms" +msgstr "" + +#: ../../include/nav.php:117 +msgid "Your bookmarks" +msgstr "" + +#: ../../include/nav.php:121 +msgid "Your webpages" +msgstr "" + +#: ../../include/nav.php:125 ../../include/apps.php:129 ../../boot.php:1487 +msgid "Login" +msgstr "" + +#: ../../include/nav.php:125 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:142 +#, php-format +msgid "%s - click to logout" +msgstr "" + +#: ../../include/nav.php:145 +msgid "Remote authentication" +msgstr "" + +#: ../../include/nav.php:145 +msgid "Click to authenticate to your home hub" +msgstr "" + +#: ../../include/nav.php:159 +msgid "Home Page" +msgstr "" + +#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1465 +msgid "Register" +msgstr "" + +#: ../../include/nav.php:163 +msgid "Create an account" +msgstr "" + +#: ../../include/nav.php:168 ../../include/apps.php:140 ../../mod/help.php:58 +#: ../../mod/help.php:63 +msgid "Help" +msgstr "" + +#: ../../include/nav.php:168 +msgid "Help and documentation" +msgstr "" + +#: ../../include/nav.php:171 ../../include/widgets.php:86 +#: ../../mod/apps.php:33 +msgid "Apps" +msgstr "" + +#: ../../include/nav.php:171 +msgid "Applications, utilities, links, games" +msgstr "" + +#: ../../include/nav.php:173 ../../include/text.php:826 +#: ../../include/text.php:838 ../../include/apps.php:145 +#: ../../mod/search.php:30 +msgid "Search" +msgstr "" + +#: ../../include/nav.php:173 +msgid "Search site content" +msgstr "" + +#: ../../include/nav.php:176 ../../include/apps.php:139 +#: ../../mod/directory.php:271 +msgid "Directory" +msgstr "" + +#: ../../include/nav.php:176 +msgid "Channel Directory" +msgstr "" + +#: ../../include/nav.php:190 ../../include/apps.php:131 +msgid "Matrix" +msgstr "" + +#: ../../include/nav.php:190 +msgid "Your matrix" +msgstr "" + +#: ../../include/nav.php:191 +msgid "Mark all matrix notifications seen" +msgstr "" + +#: ../../include/nav.php:193 ../../include/apps.php:135 +msgid "Channel Home" +msgstr "" + +#: ../../include/nav.php:193 +msgid "Channel home" +msgstr "" + +#: ../../include/nav.php:194 +msgid "Mark all channel notifications seen" +msgstr "" + +#: ../../include/nav.php:197 ../../mod/connections.php:406 +msgid "Connections" +msgstr "" + +#: ../../include/nav.php:200 +msgid "Notices" +msgstr "" + +#: ../../include/nav.php:200 +msgid "Notifications" +msgstr "" + +#: ../../include/nav.php:201 +msgid "See all notifications" +msgstr "" + +#: ../../include/nav.php:202 ../../mod/notifications.php:99 +msgid "Mark all system notifications seen" +msgstr "" + +#: ../../include/nav.php:204 ../../include/apps.php:141 +msgid "Mail" +msgstr "" + +#: ../../include/nav.php:204 +msgid "Private mail" +msgstr "" + +#: ../../include/nav.php:205 +msgid "See all private messages" +msgstr "" + +#: ../../include/nav.php:206 +msgid "Mark all private messages seen" +msgstr "" + +#: ../../include/nav.php:207 +msgid "Inbox" +msgstr "" + +#: ../../include/nav.php:208 +msgid "Outbox" +msgstr "" + +#: ../../include/nav.php:209 ../../include/widgets.php:572 +msgid "New Message" +msgstr "" + +#: ../../include/nav.php:212 ../../include/apps.php:138 +#: ../../mod/events.php:431 +msgid "Events" +msgstr "" + +#: ../../include/nav.php:212 +msgid "Event Calendar" +msgstr "" + +#: ../../include/nav.php:213 +msgid "See all events" +msgstr "" + +#: ../../include/nav.php:214 +msgid "Mark all events seen" +msgstr "" + +#: ../../include/nav.php:216 ../../include/apps.php:130 +#: ../../mod/manage.php:148 +msgid "Channel Manager" +msgstr "" + +#: ../../include/nav.php:216 +msgid "Manage Your Channels" +msgstr "" + +#: ../../include/nav.php:218 ../../include/widgets.php:548 +#: ../../include/apps.php:132 ../../mod/admin.php:951 ../../mod/admin.php:1156 +msgid "Settings" +msgstr "" + +#: ../../include/nav.php:218 +msgid "Account/Channel Settings" +msgstr "" + +#: ../../include/nav.php:226 ../../mod/admin.php:123 +msgid "Admin" +msgstr "" + +#: ../../include/nav.php:226 +msgid "Site Setup and Configuration" +msgstr "" + +#: ../../include/nav.php:262 +msgid "Please wait..." +msgstr "" + +#: ../../include/network.php:590 +msgid "view full size" msgstr "" #: ../../include/comanche.php:35 ../../mod/admin.php:353 @@ -1117,7 +1282,7 @@ msgid "RSS/Atom" msgstr "" #: ../../include/contact_selectors.php:79 ../../mod/admin.php:726 -#: ../../mod/admin.php:735 ../../boot.php:1488 +#: ../../mod/admin.php:735 ../../boot.php:1489 msgid "Email" msgstr "" @@ -1145,63 +1310,470 @@ msgstr "" msgid "MySpace" msgstr "" -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" +#: ../../include/identity.php:31 ../../mod/item.php:1368 +msgid "Unable to obtain identity information from database" +msgstr "" + +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "" + +#: ../../include/identity.php:68 +msgid "Name too long" +msgstr "" + +#: ../../include/identity.php:169 +msgid "No account identifier" +msgstr "" + +#: ../../include/identity.php:182 +msgid "Nickname is required." +msgstr "" + +#: ../../include/identity.php:196 +msgid "Reserved nickname. Please choose another." +msgstr "" + +#: ../../include/identity.php:201 ../../include/dimport.php:34 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "" + +#: ../../include/identity.php:283 +msgid "Unable to retrieve created identity" +msgstr "" + +#: ../../include/identity.php:343 +msgid "Default Profile" +msgstr "" + +#: ../../include/identity.php:387 ../../include/identity.php:388 +#: ../../include/identity.php:395 ../../include/widgets.php:431 +#: ../../include/profile_selectors.php:80 ../../mod/settings.php:318 +#: ../../mod/settings.php:322 ../../mod/settings.php:323 +#: ../../mod/settings.php:326 ../../mod/settings.php:337 +#: ../../mod/connedit.php:509 +msgid "Friends" +msgstr "" + +#: ../../include/identity.php:643 +msgid "Requested channel is not available." +msgstr "" + +#: ../../include/identity.php:691 ../../mod/achievements.php:11 +#: ../../mod/profile.php:16 ../../mod/blocks.php:29 ../../mod/webpages.php:29 +#: ../../mod/editblock.php:29 ../../mod/editlayout.php:28 +#: ../../mod/connect.php:13 ../../mod/editwebpage.php:28 +#: ../../mod/filestorage.php:48 ../../mod/layouts.php:29 ../../mod/hcard.php:8 +msgid "Requested profile is not available." +msgstr "" + +#: ../../include/identity.php:854 ../../mod/profiles.php:740 +msgid "Change profile photo" +msgstr "" + +#: ../../include/identity.php:860 +msgid "Profiles" +msgstr "" + +#: ../../include/identity.php:860 +msgid "Manage/edit profiles" +msgstr "" + +#: ../../include/identity.php:861 ../../mod/profiles.php:741 +msgid "Create New Profile" +msgstr "" + +#: ../../include/identity.php:875 ../../mod/profiles.php:752 +msgid "Profile Image" +msgstr "" + +#: ../../include/identity.php:878 +msgid "visible to everybody" +msgstr "" + +#: ../../include/identity.php:879 ../../mod/profiles.php:635 +#: ../../mod/profiles.php:756 +msgid "Edit visibility" +msgstr "" + +#: ../../include/identity.php:895 ../../include/identity.php:1132 +msgid "Gender:" +msgstr "" + +#: ../../include/identity.php:896 ../../include/identity.php:1176 +msgid "Status:" +msgstr "" + +#: ../../include/identity.php:897 ../../include/identity.php:1187 +msgid "Homepage:" +msgstr "" + +#: ../../include/identity.php:898 +msgid "Online Now" +msgstr "" + +#: ../../include/identity.php:976 ../../include/identity.php:1056 +#: ../../mod/ping.php:326 +msgid "g A l F d" +msgstr "" + +#: ../../include/identity.php:977 ../../include/identity.php:1057 +msgid "F d" +msgstr "" + +#: ../../include/identity.php:1022 ../../include/identity.php:1097 +#: ../../mod/ping.php:348 +msgid "[today]" +msgstr "" + +#: ../../include/identity.php:1034 +msgid "Birthday Reminders" +msgstr "" + +#: ../../include/identity.php:1035 +msgid "Birthdays this week:" +msgstr "" + +#: ../../include/identity.php:1090 +msgid "[No description]" +msgstr "" + +#: ../../include/identity.php:1108 +msgid "Event Reminders" +msgstr "" + +#: ../../include/identity.php:1109 +msgid "Events this week:" +msgstr "" + +#: ../../include/identity.php:1122 ../../include/identity.php:1240 +#: ../../include/apps.php:136 ../../mod/profperm.php:112 +msgid "Profile" +msgstr "" + +#: ../../include/identity.php:1130 ../../mod/settings.php:1005 +msgid "Full Name:" +msgstr "" + +#: ../../include/identity.php:1137 +msgid "Like this channel" +msgstr "" + +#: ../../include/identity.php:1148 ../../include/taxonomy.php:360 +#: ../../include/ItemObject.php:146 ../../mod/photos.php:1027 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" msgstr[0] "" msgstr[1] "" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:416 -msgid "Advanced" +#: ../../include/identity.php:1161 +msgid "j F, Y" msgstr "" -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" +#: ../../include/identity.php:1162 +msgid "j F" msgstr "" -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" +#: ../../include/identity.php:1169 +msgid "Birthday:" msgstr "" -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" +#: ../../include/identity.php:1173 +msgid "Age:" msgstr "" -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: ../../include/contact_widgets.php:26 ../../mod/directory.php:267 -#: ../../mod/directory.php:272 ../../mod/connections.php:412 -msgid "Find" -msgstr "" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -msgid "Channel Suggestions" -msgstr "" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "" - -#: ../../include/contact_widgets.php:125 +#: ../../include/identity.php:1182 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "" -msgstr[1] "" +msgid "for %1$d %2$s" +msgstr "" -#: ../../include/contact_widgets.php:130 -msgid "show more" +#: ../../include/identity.php:1185 ../../mod/profiles.php:657 +msgid "Sexual Preference:" +msgstr "" + +#: ../../include/identity.php:1189 ../../mod/profiles.php:659 +msgid "Hometown:" +msgstr "" + +#: ../../include/identity.php:1191 +msgid "Tags:" +msgstr "" + +#: ../../include/identity.php:1193 ../../mod/profiles.php:660 +msgid "Political Views:" +msgstr "" + +#: ../../include/identity.php:1195 +msgid "Religion:" +msgstr "" + +#: ../../include/identity.php:1197 +msgid "About:" +msgstr "" + +#: ../../include/identity.php:1199 +msgid "Hobbies/Interests:" +msgstr "" + +#: ../../include/identity.php:1201 ../../mod/profiles.php:663 +msgid "Likes:" +msgstr "" + +#: ../../include/identity.php:1203 ../../mod/profiles.php:664 +msgid "Dislikes:" +msgstr "" + +#: ../../include/identity.php:1206 +msgid "Contact information and Social Networks:" +msgstr "" + +#: ../../include/identity.php:1208 +msgid "My other channels:" +msgstr "" + +#: ../../include/identity.php:1210 +msgid "Musical interests:" +msgstr "" + +#: ../../include/identity.php:1212 +msgid "Books, literature:" +msgstr "" + +#: ../../include/identity.php:1214 +msgid "Television:" +msgstr "" + +#: ../../include/identity.php:1216 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: ../../include/identity.php:1218 +msgid "Love/Romance:" +msgstr "" + +#: ../../include/identity.php:1220 +msgid "Work/employment:" +msgstr "" + +#: ../../include/identity.php:1222 +msgid "School/education:" +msgstr "" + +#: ../../include/identity.php:1242 +msgid "Like this thing" +msgstr "" + +#: ../../include/bbcode.php:112 ../../include/bbcode.php:653 +#: ../../include/bbcode.php:656 ../../include/bbcode.php:661 +#: ../../include/bbcode.php:664 ../../include/bbcode.php:667 +#: ../../include/bbcode.php:670 ../../include/bbcode.php:675 +#: ../../include/bbcode.php:678 ../../include/bbcode.php:683 +#: ../../include/bbcode.php:686 ../../include/bbcode.php:689 +#: ../../include/bbcode.php:692 +msgid "Image/photo" +msgstr "" + +#: ../../include/bbcode.php:147 ../../include/bbcode.php:703 +msgid "Encrypted content" +msgstr "" + +#: ../../include/bbcode.php:165 +msgid "Install design element: " +msgstr "" + +#: ../../include/bbcode.php:171 +msgid "QR code" +msgstr "" + +#: ../../include/bbcode.php:220 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "" + +#: ../../include/bbcode.php:222 +msgid "post" +msgstr "" + +#: ../../include/bbcode.php:621 +msgid "$1 spoiler" +msgstr "" + +#: ../../include/bbcode.php:641 +msgid "$1 wrote:" +msgstr "" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "" + +#: ../../include/datetime.php:142 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: ../../include/datetime.php:259 +msgid "never" +msgstr "" + +#: ../../include/datetime.php:265 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:268 +msgid "year" +msgstr "" + +#: ../../include/datetime.php:268 +msgid "years" +msgstr "" + +#: ../../include/datetime.php:269 +msgid "month" +msgstr "" + +#: ../../include/datetime.php:269 +msgid "months" +msgstr "" + +#: ../../include/datetime.php:270 +msgid "week" +msgstr "" + +#: ../../include/datetime.php:270 +msgid "weeks" +msgstr "" + +#: ../../include/datetime.php:271 +msgid "day" +msgstr "" + +#: ../../include/datetime.php:271 +msgid "days" +msgstr "" + +#: ../../include/datetime.php:272 +msgid "hour" +msgstr "" + +#: ../../include/datetime.php:272 +msgid "hours" +msgstr "" + +#: ../../include/datetime.php:273 +msgid "minute" +msgstr "" + +#: ../../include/datetime.php:273 +msgid "minutes" +msgstr "" + +#: ../../include/datetime.php:274 +msgid "second" +msgstr "" + +#: ../../include/datetime.php:274 +msgid "seconds" +msgstr "" + +#: ../../include/datetime.php:283 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: ../../include/datetime.php:491 +#, php-format +msgid "%1$s's birthday" +msgstr "" + +#: ../../include/datetime.php:492 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "" + +#: ../../include/zot.php:664 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:680 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:1818 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../include/taxonomy.php:210 +msgid "Tags" +msgstr "" + +#: ../../include/taxonomy.php:249 +msgid "Keywords" +msgstr "" + +#: ../../include/taxonomy.php:274 +msgid "have" +msgstr "" + +#: ../../include/taxonomy.php:274 +msgid "has" +msgstr "" + +#: ../../include/taxonomy.php:275 +msgid "want" +msgstr "" + +#: ../../include/taxonomy.php:275 +msgid "wants" +msgstr "" + +#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 +msgid "like" +msgstr "" + +#: ../../include/taxonomy.php:276 +msgid "likes" +msgstr "" + +#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 +msgid "dislike" +msgstr "" + +#: ../../include/taxonomy.php:277 +msgid "dislikes" +msgstr "" + +#: ../../include/api.php:1084 +msgid "Public Timeline" +msgstr "" + +#: ../../include/dir_fns.php:56 +msgid "Sort Options" +msgstr "" + +#: ../../include/dir_fns.php:57 +msgid "Alphabetic" +msgstr "" + +#: ../../include/dir_fns.php:58 +msgid "Reverse Alphabetic" +msgstr "" + +#: ../../include/dir_fns.php:59 +msgid "Newest to Oldest" +msgstr "" + +#: ../../include/dir_fns.php:71 +msgid "Enable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:73 +msgid "Disable Safe Search" +msgstr "" + +#: ../../include/dir_fns.php:75 +msgid "Safe Mode" msgstr "" #: ../../include/enotify.php:41 @@ -1438,326 +2010,335 @@ msgstr "" msgid "Channels not in any collection" msgstr "" -#: ../../include/bbcode.php:112 ../../include/bbcode.php:653 -#: ../../include/bbcode.php:656 ../../include/bbcode.php:661 -#: ../../include/bbcode.php:664 ../../include/bbcode.php:667 -#: ../../include/bbcode.php:670 ../../include/bbcode.php:675 -#: ../../include/bbcode.php:678 ../../include/bbcode.php:683 -#: ../../include/bbcode.php:686 ../../include/bbcode.php:689 -#: ../../include/bbcode.php:692 -msgid "Image/photo" +#: ../../include/group.php:303 ../../include/widgets.php:273 +msgid "add" msgstr "" -#: ../../include/bbcode.php:147 ../../include/bbcode.php:703 -msgid "Encrypted content" +#: ../../include/features.php:23 +msgid "General Features" msgstr "" -#: ../../include/bbcode.php:165 -msgid "Install design element: " +#: ../../include/features.php:25 +msgid "Content Expiration" msgstr "" -#: ../../include/bbcode.php:171 -msgid "QR code" +#: ../../include/features.php:25 +msgid "Remove posts/comments and/or private messages at a future time" msgstr "" -#: ../../include/bbcode.php:220 +#: ../../include/features.php:26 +msgid "Multiple Profiles" +msgstr "" + +#: ../../include/features.php:26 +msgid "Ability to create multiple profiles" +msgstr "" + +#: ../../include/features.php:27 +msgid "Advanced Profiles" +msgstr "" + +#: ../../include/features.php:27 +msgid "Additional profile sections and selections" +msgstr "" + +#: ../../include/features.php:28 +msgid "Profile Import/Export" +msgstr "" + +#: ../../include/features.php:28 +msgid "Save and load profile details across sites/channels" +msgstr "" + +#: ../../include/features.php:29 +msgid "Web Pages" +msgstr "" + +#: ../../include/features.php:29 +msgid "Provide managed web pages on your channel" +msgstr "" + +#: ../../include/features.php:30 +msgid "Private Notes" +msgstr "" + +#: ../../include/features.php:30 +msgid "Enables a tool to store notes and reminders" +msgstr "" + +#: ../../include/features.php:34 +msgid "Navigation Channel Select" +msgstr "" + +#: ../../include/features.php:34 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "" + +#: ../../include/features.php:38 +msgid "Extended Identity Sharing" +msgstr "" + +#: ../../include/features.php:38 +msgid "" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with sites in the matrix." +msgstr "" + +#: ../../include/features.php:39 +msgid "Expert Mode" +msgstr "" + +#: ../../include/features.php:39 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "" + +#: ../../include/features.php:40 +msgid "Premium Channel" +msgstr "" + +#: ../../include/features.php:40 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "" + +#: ../../include/features.php:45 +msgid "Post Composition Features" +msgstr "" + +#: ../../include/features.php:47 +msgid "Use Markdown" +msgstr "" + +#: ../../include/features.php:47 +msgid "Allow use of \"Markdown\" to format posts" +msgstr "" + +#: ../../include/features.php:48 +msgid "Post Preview" +msgstr "" + +#: ../../include/features.php:48 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: ../../include/features.php:49 ../../include/widgets.php:537 +#: ../../mod/sources.php:88 +msgid "Channel Sources" +msgstr "" + +#: ../../include/features.php:49 +msgid "Automatically import channel content from other channels or feeds" +msgstr "" + +#: ../../include/features.php:50 +msgid "Even More Encryption" +msgstr "" + +#: ../../include/features.php:50 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "" + +#: ../../include/features.php:51 +msgid "Flag Adult Photos" +msgstr "" + +#: ../../include/features.php:51 +msgid "Provide photo edit option to hide adult photos from default album view" +msgstr "" + +#: ../../include/features.php:56 +msgid "Network and Stream Filtering" +msgstr "" + +#: ../../include/features.php:57 +msgid "Search by Date" +msgstr "" + +#: ../../include/features.php:57 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: ../../include/features.php:58 +msgid "Collections Filter" +msgstr "" + +#: ../../include/features.php:58 +msgid "Enable widget to display Network posts only from selected collections" +msgstr "" + +#: ../../include/features.php:59 ../../include/widgets.php:272 +msgid "Saved Searches" +msgstr "" + +#: ../../include/features.php:59 +msgid "Save search terms for re-use" +msgstr "" + +#: ../../include/features.php:60 +msgid "Network Personal Tab" +msgstr "" + +#: ../../include/features.php:60 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "" + +#: ../../include/features.php:61 +msgid "Network New Tab" +msgstr "" + +#: ../../include/features.php:61 +msgid "Enable tab to display all new Network activity" +msgstr "" + +#: ../../include/features.php:62 +msgid "Affinity Tool" +msgstr "" + +#: ../../include/features.php:62 +msgid "Filter stream activity by depth of relationships" +msgstr "" + +#: ../../include/features.php:63 +msgid "Suggest Channels" +msgstr "" + +#: ../../include/features.php:63 +msgid "Show channel suggestions" +msgstr "" + +#: ../../include/features.php:68 +msgid "Post/Comment Tools" +msgstr "" + +#: ../../include/features.php:70 +msgid "Edit Sent Posts" +msgstr "" + +#: ../../include/features.php:70 +msgid "Edit and correct posts and comments after sending" +msgstr "" + +#: ../../include/features.php:71 +msgid "Tagging" +msgstr "" + +#: ../../include/features.php:71 +msgid "Ability to tag existing posts" +msgstr "" + +#: ../../include/features.php:72 +msgid "Post Categories" +msgstr "" + +#: ../../include/features.php:72 +msgid "Add categories to your posts" +msgstr "" + +#: ../../include/features.php:73 +msgid "Ability to file posts under folders" +msgstr "" + +#: ../../include/features.php:74 +msgid "Dislike Posts" +msgstr "" + +#: ../../include/features.php:74 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: ../../include/features.php:75 +msgid "Star Posts" +msgstr "" + +#: ../../include/features.php:75 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: ../../include/features.php:76 +msgid "Tag Cloud" +msgstr "" + +#: ../../include/features.php:76 +msgid "Provide a personal tag cloud on your channel page" +msgstr "" + +#: ../../include/account.php:23 +msgid "Not a valid email address" +msgstr "" + +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" +msgstr "" + +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." +msgstr "" + +#: ../../include/account.php:64 +msgid "An invitation is required." +msgstr "" + +#: ../../include/account.php:68 +msgid "Invitation could not be verified." +msgstr "" + +#: ../../include/account.php:119 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/account.php:187 +msgid "Failed to store account information." +msgstr "" + +#: ../../include/account.php:245 #, php-format -msgid "%1$s wrote the following %2$s %3$s" +msgid "Registration confirmation for %s" msgstr "" -#: ../../include/bbcode.php:222 -msgid "post" -msgstr "" - -#: ../../include/bbcode.php:621 -msgid "$1 spoiler" -msgstr "" - -#: ../../include/bbcode.php:641 -msgid "$1 wrote:" -msgstr "" - -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "" - -#: ../../include/taxonomy.php:249 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:274 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:274 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:275 -msgid "want" -msgstr "" - -#: ../../include/taxonomy.php:275 -msgid "wants" -msgstr "" - -#: ../../include/taxonomy.php:276 ../../include/ItemObject.php:221 -msgid "like" -msgstr "" - -#: ../../include/taxonomy.php:276 -msgid "likes" -msgstr "" - -#: ../../include/taxonomy.php:277 ../../include/ItemObject.php:222 -msgid "dislike" -msgstr "" - -#: ../../include/taxonomy.php:277 -msgid "dislikes" -msgstr "" - -#: ../../include/taxonomy.php:360 ../../include/identity.php:1148 -#: ../../include/ItemObject.php:146 ../../mod/photos.php:1026 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/nav.php:95 ../../include/nav.php:128 ../../boot.php:1485 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:95 ../../include/nav.php:128 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:98 ../../include/nav.php:159 -msgid "Home" -msgstr "" - -#: ../../include/nav.php:98 -msgid "Your posts and conversations" -msgstr "" - -#: ../../include/nav.php:99 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:101 -msgid "Edit Profiles" -msgstr "" - -#: ../../include/nav.php:101 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:103 ../../include/identity.php:864 -msgid "Edit Profile" -msgstr "" - -#: ../../include/nav.php:103 -msgid "Edit your profile" -msgstr "" - -#: ../../include/nav.php:105 -msgid "Your photos" -msgstr "" - -#: ../../include/nav.php:106 -msgid "Your files" -msgstr "" - -#: ../../include/nav.php:111 ../../include/apps.php:144 -msgid "Chat" -msgstr "" - -#: ../../include/nav.php:111 -msgid "Your chatrooms" -msgstr "" - -#: ../../include/nav.php:117 -msgid "Your bookmarks" -msgstr "" - -#: ../../include/nav.php:121 -msgid "Your webpages" -msgstr "" - -#: ../../include/nav.php:125 ../../include/apps.php:129 ../../boot.php:1486 -msgid "Login" -msgstr "" - -#: ../../include/nav.php:125 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:142 +#: ../../include/account.php:313 #, php-format -msgid "%s - click to logout" +msgid "Registration request at %s" msgstr "" -#: ../../include/nav.php:145 -msgid "Remote authentication" +#: ../../include/account.php:315 ../../include/account.php:342 +#: ../../include/account.php:399 +msgid "Administrator" msgstr "" -#: ../../include/nav.php:145 -msgid "Click to authenticate to your home hub" +#: ../../include/account.php:337 +msgid "your registration password" msgstr "" -#: ../../include/nav.php:159 -msgid "Home Page" +#: ../../include/account.php:340 ../../include/account.php:397 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../include/nav.php:163 ../../mod/register.php:224 ../../boot.php:1464 -msgid "Register" +#: ../../include/account.php:406 +msgid "Account approved." msgstr "" -#: ../../include/nav.php:163 -msgid "Create an account" +#: ../../include/account.php:440 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../include/nav.php:168 ../../include/apps.php:140 ../../mod/help.php:58 -#: ../../mod/help.php:63 -msgid "Help" +#: ../../include/account.php:486 +msgid "Account verified. Please login." msgstr "" -#: ../../include/nav.php:168 -msgid "Help and documentation" +#: ../../include/account.php:648 ../../include/account.php:650 +msgid "Click here to upgrade." msgstr "" -#: ../../include/nav.php:171 -msgid "Applications, utilities, links, games" +#: ../../include/account.php:656 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/nav.php:173 ../../include/text.php:826 -#: ../../include/text.php:838 ../../include/apps.php:145 -#: ../../mod/search.php:30 -msgid "Search" -msgstr "" - -#: ../../include/nav.php:173 -msgid "Search site content" -msgstr "" - -#: ../../include/nav.php:176 ../../include/apps.php:139 -#: ../../mod/directory.php:271 -msgid "Directory" -msgstr "" - -#: ../../include/nav.php:176 -msgid "Channel Directory" -msgstr "" - -#: ../../include/nav.php:190 ../../include/apps.php:131 -msgid "Matrix" -msgstr "" - -#: ../../include/nav.php:190 -msgid "Your matrix" -msgstr "" - -#: ../../include/nav.php:191 -msgid "Mark all matrix notifications seen" -msgstr "" - -#: ../../include/nav.php:193 ../../include/apps.php:135 -msgid "Channel Home" -msgstr "" - -#: ../../include/nav.php:193 -msgid "Channel home" -msgstr "" - -#: ../../include/nav.php:194 -msgid "Mark all channel notifications seen" -msgstr "" - -#: ../../include/nav.php:197 ../../mod/connections.php:406 -msgid "Connections" -msgstr "" - -#: ../../include/nav.php:200 -msgid "Notices" -msgstr "" - -#: ../../include/nav.php:200 -msgid "Notifications" -msgstr "" - -#: ../../include/nav.php:201 -msgid "See all notifications" -msgstr "" - -#: ../../include/nav.php:202 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "" - -#: ../../include/nav.php:204 ../../include/apps.php:141 -msgid "Mail" -msgstr "" - -#: ../../include/nav.php:204 -msgid "Private mail" -msgstr "" - -#: ../../include/nav.php:205 -msgid "See all private messages" -msgstr "" - -#: ../../include/nav.php:206 -msgid "Mark all private messages seen" -msgstr "" - -#: ../../include/nav.php:207 -msgid "Inbox" -msgstr "" - -#: ../../include/nav.php:208 -msgid "Outbox" -msgstr "" - -#: ../../include/nav.php:212 ../../include/apps.php:138 -#: ../../mod/events.php:431 -msgid "Events" -msgstr "" - -#: ../../include/nav.php:212 -msgid "Event Calendar" -msgstr "" - -#: ../../include/nav.php:213 -msgid "See all events" -msgstr "" - -#: ../../include/nav.php:214 -msgid "Mark all events seen" -msgstr "" - -#: ../../include/nav.php:216 ../../include/apps.php:130 -#: ../../mod/manage.php:148 -msgid "Channel Manager" -msgstr "" - -#: ../../include/nav.php:216 -msgid "Manage Your Channels" -msgstr "" - -#: ../../include/nav.php:218 -msgid "Account/Channel Settings" -msgstr "" - -#: ../../include/nav.php:226 ../../mod/admin.php:123 -msgid "Admin" -msgstr "" - -#: ../../include/nav.php:226 -msgid "Site Setup and Configuration" -msgstr "" - -#: ../../include/nav.php:262 -msgid "Please wait..." +#: ../../include/account.php:661 +msgid "This action is not available under your subscription plan." msgstr "" #: ../../include/permissions.php:13 @@ -1897,816 +2478,6 @@ msgstr "" msgid "Custom/Expert Mode" msgstr "" -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "" - -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" -msgstr "" - -#: ../../include/Contact.php:211 ../../mod/admin.php:646 -#, php-format -msgid "User '%s' deleted" -msgstr "" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "" - -#: ../../include/features.php:25 -msgid "Content Expiration" -msgstr "" - -#: ../../include/features.php:25 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "" - -#: ../../include/features.php:26 -msgid "Multiple Profiles" -msgstr "" - -#: ../../include/features.php:26 -msgid "Ability to create multiple profiles" -msgstr "" - -#: ../../include/features.php:27 -msgid "Advanced Profiles" -msgstr "" - -#: ../../include/features.php:27 -msgid "Additional profile sections and selections" -msgstr "" - -#: ../../include/features.php:28 -msgid "Profile Import/Export" -msgstr "" - -#: ../../include/features.php:28 -msgid "Save and load profile details across sites/channels" -msgstr "" - -#: ../../include/features.php:29 -msgid "Web Pages" -msgstr "" - -#: ../../include/features.php:29 -msgid "Provide managed web pages on your channel" -msgstr "" - -#: ../../include/features.php:30 -msgid "Private Notes" -msgstr "" - -#: ../../include/features.php:30 -msgid "Enables a tool to store notes and reminders" -msgstr "" - -#: ../../include/features.php:34 -msgid "Navigation Channel Select" -msgstr "" - -#: ../../include/features.php:34 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "" - -#: ../../include/features.php:38 -msgid "Extended Identity Sharing" -msgstr "" - -#: ../../include/features.php:38 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "" - -#: ../../include/features.php:39 -msgid "Expert Mode" -msgstr "" - -#: ../../include/features.php:39 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "" - -#: ../../include/features.php:40 -msgid "Premium Channel" -msgstr "" - -#: ../../include/features.php:40 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "" - -#: ../../include/features.php:45 -msgid "Post Composition Features" -msgstr "" - -#: ../../include/features.php:47 -msgid "Use Markdown" -msgstr "" - -#: ../../include/features.php:47 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "" - -#: ../../include/features.php:48 -msgid "Post Preview" -msgstr "" - -#: ../../include/features.php:48 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: ../../include/features.php:49 -msgid "Automatically import channel content from other channels or feeds" -msgstr "" - -#: ../../include/features.php:50 -msgid "Even More Encryption" -msgstr "" - -#: ../../include/features.php:50 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "" - -#: ../../include/features.php:55 -msgid "Network and Stream Filtering" -msgstr "" - -#: ../../include/features.php:56 -msgid "Search by Date" -msgstr "" - -#: ../../include/features.php:56 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: ../../include/features.php:57 -msgid "Collections Filter" -msgstr "" - -#: ../../include/features.php:57 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "" - -#: ../../include/features.php:58 -msgid "Save search terms for re-use" -msgstr "" - -#: ../../include/features.php:59 -msgid "Network Personal Tab" -msgstr "" - -#: ../../include/features.php:59 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: ../../include/features.php:60 -msgid "Network New Tab" -msgstr "" - -#: ../../include/features.php:60 -msgid "Enable tab to display all new Network activity" -msgstr "" - -#: ../../include/features.php:61 -msgid "Affinity Tool" -msgstr "" - -#: ../../include/features.php:61 -msgid "Filter stream activity by depth of relationships" -msgstr "" - -#: ../../include/features.php:62 -msgid "Suggest Channels" -msgstr "" - -#: ../../include/features.php:62 -msgid "Show channel suggestions" -msgstr "" - -#: ../../include/features.php:67 -msgid "Post/Comment Tools" -msgstr "" - -#: ../../include/features.php:69 -msgid "Edit Sent Posts" -msgstr "" - -#: ../../include/features.php:69 -msgid "Edit and correct posts and comments after sending" -msgstr "" - -#: ../../include/features.php:70 -msgid "Tagging" -msgstr "" - -#: ../../include/features.php:70 -msgid "Ability to tag existing posts" -msgstr "" - -#: ../../include/features.php:71 -msgid "Post Categories" -msgstr "" - -#: ../../include/features.php:71 -msgid "Add categories to your posts" -msgstr "" - -#: ../../include/features.php:72 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:73 -msgid "Dislike Posts" -msgstr "" - -#: ../../include/features.php:73 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: ../../include/features.php:74 -msgid "Star Posts" -msgstr "" - -#: ../../include/features.php:74 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/features.php:75 -msgid "Tag Cloud" -msgstr "" - -#: ../../include/features.php:75 -msgid "Provide a personal tag cloud on your channel page" -msgstr "" - -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "" - -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "" - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "" - -#: ../../include/account.php:648 ../../include/account.php:650 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/account.php:656 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/account.php:661 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/identity.php:31 ../../mod/item.php:1368 -msgid "Unable to obtain identity information from database" -msgstr "" - -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "" - -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "" - -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "" - -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "" - -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "" - -#: ../../include/identity.php:201 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "" - -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "" - -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "" - -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "" - -#: ../../include/identity.php:691 ../../mod/achievements.php:11 -#: ../../mod/connect.php:13 ../../mod/profile.php:16 ../../mod/blocks.php:29 -#: ../../mod/webpages.php:29 ../../mod/editblock.php:29 -#: ../../mod/editlayout.php:28 ../../mod/editwebpage.php:28 -#: ../../mod/filestorage.php:48 ../../mod/layouts.php:29 ../../mod/hcard.php:8 -msgid "Requested profile is not available." -msgstr "" - -#: ../../include/identity.php:854 ../../mod/profiles.php:740 -msgid "Change profile photo" -msgstr "" - -#: ../../include/identity.php:860 -msgid "Profiles" -msgstr "" - -#: ../../include/identity.php:860 -msgid "Manage/edit profiles" -msgstr "" - -#: ../../include/identity.php:861 ../../mod/profiles.php:741 -msgid "Create New Profile" -msgstr "" - -#: ../../include/identity.php:875 ../../mod/profiles.php:752 -msgid "Profile Image" -msgstr "" - -#: ../../include/identity.php:878 -msgid "visible to everybody" -msgstr "" - -#: ../../include/identity.php:879 ../../mod/profiles.php:635 -#: ../../mod/profiles.php:756 -msgid "Edit visibility" -msgstr "" - -#: ../../include/identity.php:895 ../../include/identity.php:1132 -msgid "Gender:" -msgstr "" - -#: ../../include/identity.php:896 ../../include/identity.php:1176 -msgid "Status:" -msgstr "" - -#: ../../include/identity.php:897 ../../include/identity.php:1187 -msgid "Homepage:" -msgstr "" - -#: ../../include/identity.php:898 -msgid "Online Now" -msgstr "" - -#: ../../include/identity.php:976 ../../include/identity.php:1056 -#: ../../mod/ping.php:318 -msgid "g A l F d" -msgstr "" - -#: ../../include/identity.php:977 ../../include/identity.php:1057 -msgid "F d" -msgstr "" - -#: ../../include/identity.php:1022 ../../include/identity.php:1097 -#: ../../mod/ping.php:340 -msgid "[today]" -msgstr "" - -#: ../../include/identity.php:1034 -msgid "Birthday Reminders" -msgstr "" - -#: ../../include/identity.php:1035 -msgid "Birthdays this week:" -msgstr "" - -#: ../../include/identity.php:1090 -msgid "[No description]" -msgstr "" - -#: ../../include/identity.php:1108 -msgid "Event Reminders" -msgstr "" - -#: ../../include/identity.php:1109 -msgid "Events this week:" -msgstr "" - -#: ../../include/identity.php:1122 ../../include/identity.php:1240 -#: ../../include/apps.php:136 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "" - -#: ../../include/identity.php:1130 ../../mod/settings.php:984 -msgid "Full Name:" -msgstr "" - -#: ../../include/identity.php:1137 -msgid "Like this channel" -msgstr "" - -#: ../../include/identity.php:1161 -msgid "j F, Y" -msgstr "" - -#: ../../include/identity.php:1162 -msgid "j F" -msgstr "" - -#: ../../include/identity.php:1169 -msgid "Birthday:" -msgstr "" - -#: ../../include/identity.php:1173 -msgid "Age:" -msgstr "" - -#: ../../include/identity.php:1182 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: ../../include/identity.php:1185 ../../mod/profiles.php:657 -msgid "Sexual Preference:" -msgstr "" - -#: ../../include/identity.php:1189 ../../mod/profiles.php:659 -msgid "Hometown:" -msgstr "" - -#: ../../include/identity.php:1191 -msgid "Tags:" -msgstr "" - -#: ../../include/identity.php:1193 ../../mod/profiles.php:660 -msgid "Political Views:" -msgstr "" - -#: ../../include/identity.php:1195 -msgid "Religion:" -msgstr "" - -#: ../../include/identity.php:1197 -msgid "About:" -msgstr "" - -#: ../../include/identity.php:1199 -msgid "Hobbies/Interests:" -msgstr "" - -#: ../../include/identity.php:1201 ../../mod/profiles.php:663 -msgid "Likes:" -msgstr "" - -#: ../../include/identity.php:1203 ../../mod/profiles.php:664 -msgid "Dislikes:" -msgstr "" - -#: ../../include/identity.php:1206 -msgid "Contact information and Social Networks:" -msgstr "" - -#: ../../include/identity.php:1208 -msgid "My other channels:" -msgstr "" - -#: ../../include/identity.php:1210 -msgid "Musical interests:" -msgstr "" - -#: ../../include/identity.php:1212 -msgid "Books, literature:" -msgstr "" - -#: ../../include/identity.php:1214 -msgid "Television:" -msgstr "" - -#: ../../include/identity.php:1216 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: ../../include/identity.php:1218 -msgid "Love/Romance:" -msgstr "" - -#: ../../include/identity.php:1220 -msgid "Work/employment:" -msgstr "" - -#: ../../include/identity.php:1222 -msgid "School/education:" -msgstr "" - -#: ../../include/identity.php:1242 -msgid "Like this thing" -msgstr "" - -#: ../../include/items.php:377 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:246 -#: ../../index.php:389 -msgid "Permission denied" -msgstr "" - -#: ../../include/items.php:964 ../../include/items.php:1009 -msgid "(Unknown)" -msgstr "" - -#: ../../include/items.php:1165 -msgid "Visible to anybody on the internet." -msgstr "" - -#: ../../include/items.php:1167 -msgid "Visible to you only." -msgstr "" - -#: ../../include/items.php:1169 -msgid "Visible to anybody in this network." -msgstr "" - -#: ../../include/items.php:1171 -msgid "Visible to anybody authenticated." -msgstr "" - -#: ../../include/items.php:1173 -#, php-format -msgid "Visible to anybody on %s." -msgstr "" - -#: ../../include/items.php:1175 -msgid "Visible to all connections." -msgstr "" - -#: ../../include/items.php:1177 -msgid "Visible to approved connections." -msgstr "" - -#: ../../include/items.php:1179 -msgid "Visible to specific connections." -msgstr "" - -#: ../../include/items.php:3946 ../../mod/thing.php:76 -#: ../../mod/display.php:32 ../../mod/filestorage.php:26 -#: ../../mod/admin.php:168 ../../mod/admin.php:896 ../../mod/admin.php:1099 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "" - -#: ../../include/items.php:4402 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "" - -#: ../../include/items.php:4417 -msgid "Collection is empty." -msgstr "" - -#: ../../include/items.php:4424 -#, php-format -msgid "Collection: %s" -msgstr "" - -#: ../../include/items.php:4435 -#, php-format -msgid "Connection: %s" -msgstr "" - -#: ../../include/items.php:4438 -msgid "Connection not found." -msgstr "" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "" - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "" - -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "" - -#: ../../include/network.php:590 -msgid "view full size" -msgstr "" - -#: ../../include/attach.php:221 ../../include/attach.php:275 -msgid "Item was not found." -msgstr "" - -#: ../../include/attach.php:331 -msgid "No source file." -msgstr "" - -#: ../../include/attach.php:348 -msgid "Cannot locate file to replace" -msgstr "" - -#: ../../include/attach.php:366 -msgid "Cannot locate file to revise/update" -msgstr "" - -#: ../../include/attach.php:377 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "" - -#: ../../include/attach.php:389 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" - -#: ../../include/attach.php:472 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "" - -#: ../../include/attach.php:484 -msgid "Stored file could not be verified. Upload failed." -msgstr "" - -#: ../../include/attach.php:526 ../../include/attach.php:543 -msgid "Path not available." -msgstr "" - -#: ../../include/attach.php:589 -msgid "Empty pathname" -msgstr "" - -#: ../../include/attach.php:605 -msgid "duplicate filename or path" -msgstr "" - -#: ../../include/attach.php:629 -msgid "Path not found." -msgstr "" - -#: ../../include/attach.php:680 -msgid "mkdir failed." -msgstr "" - -#: ../../include/attach.php:684 -msgid "database storage failed." -msgstr "" - -#: ../../include/auth.php:116 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:257 -msgid "Failed authentication" -msgstr "" - -#: ../../include/auth.php:271 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "" - -#: ../../include/datetime.php:142 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: ../../include/datetime.php:248 -msgid "never" -msgstr "" - -#: ../../include/datetime.php:254 -msgid "less than a second ago" -msgstr "" - -#: ../../include/datetime.php:257 -msgid "year" -msgstr "" - -#: ../../include/datetime.php:257 -msgid "years" -msgstr "" - -#: ../../include/datetime.php:258 -msgid "month" -msgstr "" - -#: ../../include/datetime.php:258 -msgid "months" -msgstr "" - -#: ../../include/datetime.php:259 -msgid "week" -msgstr "" - -#: ../../include/datetime.php:259 -msgid "weeks" -msgstr "" - -#: ../../include/datetime.php:260 -msgid "day" -msgstr "" - -#: ../../include/datetime.php:260 -msgid "days" -msgstr "" - -#: ../../include/datetime.php:261 -msgid "hour" -msgstr "" - -#: ../../include/datetime.php:261 -msgid "hours" -msgstr "" - -#: ../../include/datetime.php:262 -msgid "minute" -msgstr "" - -#: ../../include/datetime.php:262 -msgid "minutes" -msgstr "" - -#: ../../include/datetime.php:263 -msgid "second" -msgstr "" - -#: ../../include/datetime.php:263 -msgid "seconds" -msgstr "" - -#: ../../include/datetime.php:272 -#, php-format -msgid "%1$d %2$s ago" -msgstr "" - -#: ../../include/datetime.php:480 -#, php-format -msgid "%1$s's birthday" -msgstr "" - -#: ../../include/datetime.php:481 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "" - #: ../../include/photos.php:105 #, php-format msgid "Image exceeds website size limit of %lu bytes" @@ -2728,22 +2499,567 @@ msgstr "" msgid "Upload New Photos" msgstr "" +#: ../../include/items.php:382 ../../mod/profperm.php:23 +#: ../../mod/subthread.php:49 ../../mod/like.php:246 ../../mod/group.php:68 +#: ../../index.php:389 +msgid "Permission denied" +msgstr "" + +#: ../../include/items.php:969 ../../include/items.php:1014 +msgid "(Unknown)" +msgstr "" + +#: ../../include/items.php:1170 +msgid "Visible to anybody on the internet." +msgstr "" + +#: ../../include/items.php:1172 +msgid "Visible to you only." +msgstr "" + +#: ../../include/items.php:1174 +msgid "Visible to anybody in this network." +msgstr "" + +#: ../../include/items.php:1176 +msgid "Visible to anybody authenticated." +msgstr "" + +#: ../../include/items.php:1178 +#, php-format +msgid "Visible to anybody on %s." +msgstr "" + +#: ../../include/items.php:1180 +msgid "Visible to all connections." +msgstr "" + +#: ../../include/items.php:1182 +msgid "Visible to approved connections." +msgstr "" + +#: ../../include/items.php:1184 +msgid "Visible to specific connections." +msgstr "" + +#: ../../include/items.php:3951 ../../mod/thing.php:76 +#: ../../mod/display.php:32 ../../mod/filestorage.php:26 +#: ../../mod/admin.php:168 ../../mod/admin.php:896 ../../mod/admin.php:1099 +#: ../../mod/viewsrc.php:20 +msgid "Item not found." +msgstr "" + +#: ../../include/items.php:4409 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." +msgstr "" + +#: ../../include/items.php:4424 +msgid "Collection is empty." +msgstr "" + +#: ../../include/items.php:4431 +#, php-format +msgid "Collection: %s" +msgstr "" + +#: ../../include/items.php:4442 +#, php-format +msgid "Connection: %s" +msgstr "" + +#: ../../include/items.php:4445 +msgid "Connection not found." +msgstr "" + #: ../../include/security.php:323 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/text.php:321 +msgid "prev" +msgstr "" + +#: ../../include/text.php:323 +msgid "first" +msgstr "" + +#: ../../include/text.php:352 +msgid "last" +msgstr "" + +#: ../../include/text.php:355 +msgid "next" +msgstr "" + +#: ../../include/text.php:367 +msgid "older" +msgstr "" + +#: ../../include/text.php:369 +msgid "newer" +msgstr "" + +#: ../../include/text.php:736 +msgid "No connections" +msgstr "" + +#: ../../include/text.php:753 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/text.php:766 +msgid "View Connections" +msgstr "" + +#: ../../include/text.php:827 ../../include/text.php:839 +#: ../../include/widgets.php:193 ../../mod/filer.php:50 +#: ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 ../../mod/admin.php:1339 +#: ../../mod/admin.php:1360 +msgid "Save" +msgstr "" + +#: ../../include/text.php:905 +msgid "poke" +msgstr "" + +#: ../../include/text.php:906 +msgid "ping" +msgstr "" + +#: ../../include/text.php:906 +msgid "pinged" +msgstr "" + +#: ../../include/text.php:907 +msgid "prod" +msgstr "" + +#: ../../include/text.php:907 +msgid "prodded" +msgstr "" + +#: ../../include/text.php:908 +msgid "slap" +msgstr "" + +#: ../../include/text.php:908 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:909 +msgid "finger" +msgstr "" + +#: ../../include/text.php:909 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:910 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:910 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:919 +msgid "happy" +msgstr "" + +#: ../../include/text.php:920 +msgid "sad" +msgstr "" + +#: ../../include/text.php:921 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:922 +msgid "tired" +msgstr "" + +#: ../../include/text.php:923 +msgid "perky" +msgstr "" + +#: ../../include/text.php:924 +msgid "angry" +msgstr "" + +#: ../../include/text.php:925 +msgid "stupified" +msgstr "" + +#: ../../include/text.php:926 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:927 +msgid "interested" +msgstr "" + +#: ../../include/text.php:928 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:929 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:930 +msgid "alive" +msgstr "" + +#: ../../include/text.php:931 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:932 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:933 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:934 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:935 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:936 +msgid "depressed" +msgstr "" + +#: ../../include/text.php:937 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:938 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:939 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Monday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Tuesday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Wednesday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Thursday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Friday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Saturday" +msgstr "" + +#: ../../include/text.php:1103 +msgid "Sunday" +msgstr "" + +#: ../../include/text.php:1107 +msgid "January" +msgstr "" + +#: ../../include/text.php:1107 +msgid "February" +msgstr "" + +#: ../../include/text.php:1107 +msgid "March" +msgstr "" + +#: ../../include/text.php:1107 +msgid "April" +msgstr "" + +#: ../../include/text.php:1107 +msgid "May" +msgstr "" + +#: ../../include/text.php:1107 +msgid "June" +msgstr "" + +#: ../../include/text.php:1107 +msgid "July" +msgstr "" + +#: ../../include/text.php:1107 +msgid "August" +msgstr "" + +#: ../../include/text.php:1107 +msgid "September" +msgstr "" + +#: ../../include/text.php:1107 +msgid "October" +msgstr "" + +#: ../../include/text.php:1107 +msgid "November" +msgstr "" + +#: ../../include/text.php:1107 +msgid "December" +msgstr "" + +#: ../../include/text.php:1185 +msgid "unknown.???" +msgstr "" + +#: ../../include/text.php:1186 +msgid "bytes" +msgstr "" + +#: ../../include/text.php:1225 +msgid "remove category" +msgstr "" + +#: ../../include/text.php:1295 +msgid "remove from file" +msgstr "" + +#: ../../include/text.php:1360 ../../include/text.php:1372 +msgid "Click to open/close" +msgstr "" + +#: ../../include/text.php:1527 ../../mod/events.php:409 +msgid "Link to Source" +msgstr "" + +#: ../../include/text.php:1546 +msgid "Select a page layout: " +msgstr "" + +#: ../../include/text.php:1549 ../../include/text.php:1614 +msgid "default" +msgstr "" + +#: ../../include/text.php:1585 +msgid "Page content type: " +msgstr "" + +#: ../../include/text.php:1626 +msgid "Select an alternate language" +msgstr "" + +#: ../../include/text.php:1760 +msgid "activity" +msgstr "" + +#: ../../include/text.php:2041 +msgid "Design" +msgstr "" + +#: ../../include/text.php:2044 +msgid "Blocks" +msgstr "" + +#: ../../include/text.php:2045 +msgid "Menus" +msgstr "" + +#: ../../include/text.php:2046 +msgid "Layouts" +msgstr "" + +#: ../../include/text.php:2047 +msgid "Pages" +msgstr "" + +#: ../../include/widgets.php:87 +msgid "System" +msgstr "" + +#: ../../include/widgets.php:90 +msgid "Create Personal App" +msgstr "" + +#: ../../include/widgets.php:91 +msgid "Edit Personal App" +msgstr "" + +#: ../../include/widgets.php:137 ../../mod/suggest.php:53 +msgid "Ignore/Hide" +msgstr "" + +#: ../../include/widgets.php:143 ../../mod/connections.php:267 +msgid "Suggestions" +msgstr "" + +#: ../../include/widgets.php:144 +msgid "See more..." +msgstr "" + +#: ../../include/widgets.php:166 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "" + +#: ../../include/widgets.php:172 +msgid "Add New Connection" +msgstr "" + +#: ../../include/widgets.php:173 +msgid "Enter the channel address" +msgstr "" + +#: ../../include/widgets.php:174 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "" + +#: ../../include/widgets.php:191 +msgid "Notes" +msgstr "" + +#: ../../include/widgets.php:263 +msgid "Remove term" +msgstr "" + +#: ../../include/widgets.php:352 +msgid "Archives" +msgstr "" + +#: ../../include/widgets.php:428 +msgid "Refresh" +msgstr "" + +#: ../../include/widgets.php:429 ../../mod/connedit.php:506 +msgid "Me" +msgstr "" + +#: ../../include/widgets.php:430 ../../mod/connedit.php:508 +msgid "Best Friends" +msgstr "" + +#: ../../include/widgets.php:432 +msgid "Co-workers" +msgstr "" + +#: ../../include/widgets.php:433 ../../mod/connedit.php:510 +msgid "Former Friends" +msgstr "" + +#: ../../include/widgets.php:434 ../../mod/connedit.php:511 +msgid "Acquaintances" +msgstr "" + +#: ../../include/widgets.php:435 +msgid "Everybody" +msgstr "" + +#: ../../include/widgets.php:469 +msgid "Account settings" +msgstr "" + +#: ../../include/widgets.php:475 +msgid "Channel settings" +msgstr "" + +#: ../../include/widgets.php:481 +msgid "Additional features" +msgstr "" + +#: ../../include/widgets.php:487 +msgid "Feature settings" +msgstr "" + +#: ../../include/widgets.php:493 +msgid "Display settings" +msgstr "" + +#: ../../include/widgets.php:499 +msgid "Connected apps" +msgstr "" + +#: ../../include/widgets.php:505 +msgid "Export channel" +msgstr "" + +#: ../../include/widgets.php:511 +msgid "Export content" +msgstr "" + +#: ../../include/widgets.php:520 ../../mod/connedit.php:538 +msgid "Connection Default Permissions" +msgstr "" + +#: ../../include/widgets.php:528 +msgid "Premium Channel Settings" +msgstr "" + +#: ../../include/widgets.php:562 ../../mod/mail.php:125 +#: ../../mod/message.php:31 +msgid "Messages" +msgstr "" + +#: ../../include/widgets.php:567 +msgid "Check Mail" +msgstr "" + +#: ../../include/widgets.php:648 +msgid "Chat Rooms" +msgstr "" + +#: ../../include/widgets.php:666 +msgid "Bookmarked Chatrooms" +msgstr "" + +#: ../../include/widgets.php:684 +msgid "Suggested Chatrooms" +msgstr "" + +#: ../../include/widgets.php:813 ../../include/widgets.php:871 +msgid "photo/image" +msgstr "" + +#: ../../include/Contact.php:123 +msgid "New window" +msgstr "" + +#: ../../include/Contact.php:124 +msgid "Open the selected location in a different window or browser tab" +msgstr "" + +#: ../../include/Contact.php:211 ../../mod/admin.php:646 +#, php-format +msgid "User '%s' deleted" +msgstr "" + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:598 -#: ../../mod/photos.php:995 ../../mod/photos.php:1105 +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:620 +#: ../../mod/photos.php:996 ../../mod/photos.php:1106 msgid "Comment" msgstr "" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:332 +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:337 msgid "[+] show all" msgstr "" @@ -3100,340 +3416,6 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../include/text.php:321 -msgid "prev" -msgstr "" - -#: ../../include/text.php:323 -msgid "first" -msgstr "" - -#: ../../include/text.php:352 -msgid "last" -msgstr "" - -#: ../../include/text.php:355 -msgid "next" -msgstr "" - -#: ../../include/text.php:367 -msgid "older" -msgstr "" - -#: ../../include/text.php:369 -msgid "newer" -msgstr "" - -#: ../../include/text.php:736 -msgid "No connections" -msgstr "" - -#: ../../include/text.php:753 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/text.php:766 -msgid "View Connections" -msgstr "" - -#: ../../include/text.php:905 -msgid "poke" -msgstr "" - -#: ../../include/text.php:906 -msgid "ping" -msgstr "" - -#: ../../include/text.php:906 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:907 -msgid "prod" -msgstr "" - -#: ../../include/text.php:907 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:908 -msgid "slap" -msgstr "" - -#: ../../include/text.php:908 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:909 -msgid "finger" -msgstr "" - -#: ../../include/text.php:909 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:910 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:910 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:919 -msgid "happy" -msgstr "" - -#: ../../include/text.php:920 -msgid "sad" -msgstr "" - -#: ../../include/text.php:921 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:922 -msgid "tired" -msgstr "" - -#: ../../include/text.php:923 -msgid "perky" -msgstr "" - -#: ../../include/text.php:924 -msgid "angry" -msgstr "" - -#: ../../include/text.php:925 -msgid "stupified" -msgstr "" - -#: ../../include/text.php:926 -msgid "puzzled" -msgstr "" - -#: ../../include/text.php:927 -msgid "interested" -msgstr "" - -#: ../../include/text.php:928 -msgid "bitter" -msgstr "" - -#: ../../include/text.php:929 -msgid "cheerful" -msgstr "" - -#: ../../include/text.php:930 -msgid "alive" -msgstr "" - -#: ../../include/text.php:931 -msgid "annoyed" -msgstr "" - -#: ../../include/text.php:932 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:933 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:934 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:935 -msgid "frustrated" -msgstr "" - -#: ../../include/text.php:936 -msgid "depressed" -msgstr "" - -#: ../../include/text.php:937 -msgid "motivated" -msgstr "" - -#: ../../include/text.php:938 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:939 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:1103 -msgid "Monday" -msgstr "" - -#: ../../include/text.php:1103 -msgid "Tuesday" -msgstr "" - -#: ../../include/text.php:1103 -msgid "Wednesday" -msgstr "" - -#: ../../include/text.php:1103 -msgid "Thursday" -msgstr "" - -#: ../../include/text.php:1103 -msgid "Friday" -msgstr "" - -#: ../../include/text.php:1103 -msgid "Saturday" -msgstr "" - -#: ../../include/text.php:1103 -msgid "Sunday" -msgstr "" - -#: ../../include/text.php:1107 -msgid "January" -msgstr "" - -#: ../../include/text.php:1107 -msgid "February" -msgstr "" - -#: ../../include/text.php:1107 -msgid "March" -msgstr "" - -#: ../../include/text.php:1107 -msgid "April" -msgstr "" - -#: ../../include/text.php:1107 -msgid "May" -msgstr "" - -#: ../../include/text.php:1107 -msgid "June" -msgstr "" - -#: ../../include/text.php:1107 -msgid "July" -msgstr "" - -#: ../../include/text.php:1107 -msgid "August" -msgstr "" - -#: ../../include/text.php:1107 -msgid "September" -msgstr "" - -#: ../../include/text.php:1107 -msgid "October" -msgstr "" - -#: ../../include/text.php:1107 -msgid "November" -msgstr "" - -#: ../../include/text.php:1107 -msgid "December" -msgstr "" - -#: ../../include/text.php:1185 -msgid "unknown.???" -msgstr "" - -#: ../../include/text.php:1186 -msgid "bytes" -msgstr "" - -#: ../../include/text.php:1225 -msgid "remove category" -msgstr "" - -#: ../../include/text.php:1295 -msgid "remove from file" -msgstr "" - -#: ../../include/text.php:1360 ../../include/text.php:1372 -msgid "Click to open/close" -msgstr "" - -#: ../../include/text.php:1527 ../../mod/events.php:409 -msgid "Link to Source" -msgstr "" - -#: ../../include/text.php:1546 -msgid "Select a page layout: " -msgstr "" - -#: ../../include/text.php:1549 ../../include/text.php:1614 -msgid "default" -msgstr "" - -#: ../../include/text.php:1585 -msgid "Page content type: " -msgstr "" - -#: ../../include/text.php:1626 -msgid "Select an alternate language" -msgstr "" - -#: ../../include/text.php:1760 -msgid "activity" -msgstr "" - -#: ../../include/text.php:2041 -msgid "Design" -msgstr "" - -#: ../../include/text.php:2044 -msgid "Blocks" -msgstr "" - -#: ../../include/text.php:2045 -msgid "Menus" -msgstr "" - -#: ../../include/text.php:2046 -msgid "Layouts" -msgstr "" - -#: ../../include/text.php:2047 -msgid "Pages" -msgstr "" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "" - -#: ../../include/acl_selectors.php:248 ../../mod/events.php:585 -#: ../../mod/chat.php:209 ../../mod/photos.php:588 ../../mod/photos.php:950 -#: ../../mod/filestorage.php:137 -msgid "Permissions" -msgstr "" - -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:305 -#: ../../mod/photos.php:1148 -msgid "Close" -msgstr "" - -#: ../../include/api.php:1084 -msgid "Public Timeline" -msgstr "" - #: ../../include/apps.php:126 msgid "Site Admin" msgstr "" @@ -3479,7 +3461,7 @@ msgid "Profile Photo" msgstr "" #: ../../include/apps.php:242 ../../mod/settings.php:81 -#: ../../mod/settings.php:575 +#: ../../mod/settings.php:589 msgid "Update" msgstr "" @@ -3491,16 +3473,28 @@ msgstr "" msgid "Purchase" msgstr "" +#: ../../include/auth.php:116 +msgid "Logged out." +msgstr "" + +#: ../../include/auth.php:257 +msgid "Failed authentication" +msgstr "" + +#: ../../include/auth.php:271 ../../mod/openid.php:190 +msgid "Login failed." +msgstr "" + #: ../../include/ItemObject.php:130 msgid "Save to Folder" msgstr "" #: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:1022 ../../mod/photos.php:1034 +#: ../../mod/photos.php:1023 ../../mod/photos.php:1035 msgid "View all" msgstr "" -#: ../../include/ItemObject.php:151 ../../mod/photos.php:1031 +#: ../../include/ItemObject.php:151 ../../mod/photos.php:1032 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" @@ -3527,11 +3521,11 @@ msgstr "" msgid "Add Tag" msgstr "" -#: ../../include/ItemObject.php:221 ../../mod/photos.php:974 +#: ../../include/ItemObject.php:221 ../../mod/photos.php:975 msgid "I like this (toggle)" msgstr "" -#: ../../include/ItemObject.php:222 ../../mod/photos.php:975 +#: ../../include/ItemObject.php:222 ../../mod/photos.php:976 msgid "I don't like this (toggle)" msgstr "" @@ -3543,136 +3537,138 @@ msgstr "" msgid "share" msgstr "" -#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 -#, php-format -msgid "View %s's profile - %s" -msgstr "" - -#: ../../include/ItemObject.php:251 -msgid "to" -msgstr "" - -#: ../../include/ItemObject.php:252 -msgid "via" -msgstr "" - -#: ../../include/ItemObject.php:253 -msgid "Wall-to-Wall" -msgstr "" - -#: ../../include/ItemObject.php:254 -msgid "via Wall-To-Wall:" -msgstr "" - -#: ../../include/ItemObject.php:290 -msgid "Save Bookmarks" -msgstr "" - -#: ../../include/ItemObject.php:291 -msgid "Add to Calendar" -msgstr "" - -#: ../../include/ItemObject.php:299 ../../mod/photos.php:1142 -msgctxt "noun" -msgid "Likes" -msgstr "" - -#: ../../include/ItemObject.php:300 ../../mod/photos.php:1143 -msgctxt "noun" -msgid "Dislikes" -msgstr "" - -#: ../../include/ItemObject.php:331 +#: ../../include/ItemObject.php:236 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: ../../include/ItemObject.php:596 ../../mod/photos.php:993 -#: ../../mod/photos.php:1103 +#: ../../include/ItemObject.php:249 ../../include/ItemObject.php:250 +#, php-format +msgid "View %s's profile - %s" +msgstr "" + +#: ../../include/ItemObject.php:252 +msgid "to" +msgstr "" + +#: ../../include/ItemObject.php:253 +msgid "via" +msgstr "" + +#: ../../include/ItemObject.php:254 +msgid "Wall-to-Wall" +msgstr "" + +#: ../../include/ItemObject.php:255 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../include/ItemObject.php:291 +msgid "Save Bookmarks" +msgstr "" + +#: ../../include/ItemObject.php:292 +msgid "Add to Calendar" +msgstr "" + +#: ../../include/ItemObject.php:301 +msgid "Mark all seen" +msgstr "" + +#: ../../include/ItemObject.php:306 ../../mod/photos.php:1143 +msgctxt "noun" +msgid "Likes" +msgstr "" + +#: ../../include/ItemObject.php:307 ../../mod/photos.php:1144 +msgctxt "noun" +msgid "Dislikes" +msgstr "" + +#: ../../include/ItemObject.php:618 ../../mod/photos.php:994 +#: ../../mod/photos.php:1104 msgid "This is you" msgstr "" -#: ../../include/ItemObject.php:599 ../../mod/mood.php:135 -#: ../../mod/profiles.php:633 ../../mod/connect.php:92 ../../mod/setup.php:313 -#: ../../mod/setup.php:358 ../../mod/poke.php:166 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/events.php:587 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/photos.php:594 ../../mod/photos.php:671 -#: ../../mod/photos.php:956 ../../mod/photos.php:996 ../../mod/photos.php:1106 -#: ../../mod/connedit.php:555 ../../mod/thing.php:284 ../../mod/thing.php:327 -#: ../../mod/pdledit.php:58 ../../mod/settings.php:549 -#: ../../mod/settings.php:661 ../../mod/settings.php:690 -#: ../../mod/settings.php:714 ../../mod/settings.php:790 -#: ../../mod/settings.php:976 ../../mod/fsuggest.php:108 +#: ../../include/ItemObject.php:621 ../../mod/mood.php:135 +#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/poke.php:166 +#: ../../mod/setup.php:313 ../../mod/setup.php:358 ../../mod/settings.php:563 +#: ../../mod/settings.php:675 ../../mod/settings.php:704 +#: ../../mod/settings.php:728 ../../mod/settings.php:805 +#: ../../mod/settings.php:997 ../../mod/events.php:586 ../../mod/chat.php:177 +#: ../../mod/chat.php:211 ../../mod/connedit.php:555 ../../mod/thing.php:284 +#: ../../mod/thing.php:327 ../../mod/profiles.php:633 ../../mod/pdledit.php:58 +#: ../../mod/connect.php:92 ../../mod/fsuggest.php:108 #: ../../mod/filestorage.php:146 ../../mod/group.php:81 #: ../../mod/import.php:480 ../../mod/admin.php:412 ../../mod/admin.php:723 #: ../../mod/admin.php:859 ../../mod/admin.php:992 ../../mod/admin.php:1191 -#: ../../mod/admin.php:1278 ../../mod/invite.php:142 ../../mod/locs.php:99 -#: ../../mod/mail.php:348 ../../mod/xchan.php:11 ../../mod/appman.php:99 -#: ../../mod/poll.php:68 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/php/config.php:67 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 +#: ../../mod/admin.php:1278 ../../mod/locs.php:99 ../../mod/mail.php:352 +#: ../../mod/invite.php:142 ../../mod/xchan.php:11 ../../mod/photos.php:594 +#: ../../mod/photos.php:671 ../../mod/photos.php:957 ../../mod/photos.php:997 +#: ../../mod/photos.php:1107 ../../mod/appman.php:99 ../../mod/poll.php:68 +#: ../../view/theme/apw/php/config.php:256 #: ../../view/theme/redbasic/php/config.php:99 msgid "Submit" msgstr "" -#: ../../include/ItemObject.php:600 +#: ../../include/ItemObject.php:622 msgid "Bold" msgstr "" -#: ../../include/ItemObject.php:601 +#: ../../include/ItemObject.php:623 msgid "Italic" msgstr "" -#: ../../include/ItemObject.php:602 +#: ../../include/ItemObject.php:624 msgid "Underline" msgstr "" -#: ../../include/ItemObject.php:603 +#: ../../include/ItemObject.php:625 msgid "Quote" msgstr "" -#: ../../include/ItemObject.php:604 +#: ../../include/ItemObject.php:626 msgid "Code" msgstr "" -#: ../../include/ItemObject.php:605 +#: ../../include/ItemObject.php:627 msgid "Image" msgstr "" -#: ../../include/ItemObject.php:606 +#: ../../include/ItemObject.php:628 msgid "Link" msgstr "" -#: ../../include/ItemObject.php:607 +#: ../../include/ItemObject.php:629 msgid "Video" msgstr "" +#: ../../include/chat.php:10 +msgid "Missing room name" +msgstr "" + +#: ../../include/chat.php:19 +msgid "Duplicate room name" +msgstr "" + +#: ../../include/chat.php:68 ../../include/chat.php:76 +msgid "Invalid room specifier." +msgstr "" + +#: ../../include/chat.php:105 +msgid "Room not found." +msgstr "" + +#: ../../include/chat.php:126 +msgid "Room is full" +msgstr "" + #: ../../mod/mood.php:132 msgid "Set your current mood and tell your friends" msgstr "" -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "" - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "" - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "" - -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" -msgstr "" - #: ../../mod/mitem.php:24 ../../mod/menu.php:108 msgid "Menu not found." msgstr "" @@ -3741,7 +3737,7 @@ msgstr "" msgid "Menu Item Permissions" msgstr "" -#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1011 +#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1032 msgid "(click to open/close)" msgstr "" @@ -3793,331 +3789,256 @@ msgstr "" msgid "Some blurb about what to do when you're new here" msgstr "" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 -#: ../../mod/profiles.php:222 ../../mod/profiles.php:565 -msgid "Profile not found." +#: ../../mod/register.php:44 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." msgstr "" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." +#: ../../mod/register.php:50 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." msgstr "" -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" +#: ../../mod/register.php:84 +msgid "Passwords do not match." msgstr "" -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." +#: ../../mod/register.php:117 +msgid "" +"Registration successful. Please check your email for validation instructions." msgstr "" -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." +#: ../../mod/register.php:123 +msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." +#: ../../mod/register.php:126 +msgid "Your registration can not be processed." msgstr "" -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." +#: ../../mod/register.php:163 +msgid "Registration on this site/hub is by approval only." msgstr "" -#: ../../mod/profiles.php:378 -msgid "Marital Status" +#: ../../mod/register.php:164 +msgid "Register at another affiliated site/hub" msgstr "" -#: ../../mod/profiles.php:382 -msgid "Romantic Partner" +#: ../../mod/register.php:174 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." msgstr "" -#: ../../mod/profiles.php:386 -msgid "Likes" +#: ../../mod/register.php:185 +msgid "Terms of Service" msgstr "" -#: ../../mod/profiles.php:390 -msgid "Dislikes" +#: ../../mod/register.php:191 +#, php-format +msgid "I accept the %s for this website" msgstr "" -#: ../../mod/profiles.php:394 -msgid "Work/Employment" +#: ../../mod/register.php:193 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" msgstr "" -#: ../../mod/profiles.php:397 -msgid "Religion" +#: ../../mod/register.php:207 ../../mod/admin.php:413 +msgid "Registration" msgstr "" -#: ../../mod/profiles.php:401 -msgid "Political Views" +#: ../../mod/register.php:212 +msgid "Membership on this site is by invitation only." msgstr "" -#: ../../mod/profiles.php:405 -msgid "Gender" +#: ../../mod/register.php:213 +msgid "Please enter your invitation code" msgstr "" -#: ../../mod/profiles.php:409 -msgid "Sexual Preference" +#: ../../mod/register.php:216 +msgid "Your email address" msgstr "" -#: ../../mod/profiles.php:413 -msgid "Homepage" +#: ../../mod/register.php:217 +msgid "Choose a password" msgstr "" -#: ../../mod/profiles.php:417 -msgid "Interests" +#: ../../mod/register.php:218 +msgid "Please re-enter your password" msgstr "" -#: ../../mod/profiles.php:421 ../../mod/admin.php:866 -msgid "Address" +#: ../../mod/filer.php:49 +msgid "- select -" msgstr "" -#: ../../mod/profiles.php:428 ../../mod/pubsites.php:25 -msgid "Location" +#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 +msgid "Invalid profile identifier." msgstr "" -#: ../../mod/profiles.php:511 -msgid "Profile updated." +#: ../../mod/profperm.php:110 +msgid "Profile Visibility Editor" msgstr "" -#: ../../mod/profiles.php:590 -msgid "Hide your contact/friend list from viewers of this profile?" +#: ../../mod/profperm.php:114 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../mod/profiles.php:591 ../../mod/api.php:105 ../../mod/settings.php:916 -#: ../../mod/settings.php:921 ../../mod/settings.php:1004 +#: ../../mod/profperm.php:123 +msgid "Visible To" +msgstr "" + +#: ../../mod/profperm.php:139 ../../mod/connections.php:279 +msgid "All Connections" +msgstr "" + +#: ../../mod/sources.php:32 +msgid "Failed to create source. No channel selected." +msgstr "" + +#: ../../mod/sources.php:45 +msgid "Source created." +msgstr "" + +#: ../../mod/sources.php:57 +msgid "Source updated." +msgstr "" + +#: ../../mod/sources.php:82 +msgid "*" +msgstr "" + +#: ../../mod/sources.php:89 +msgid "Manage remote sources of content for your channel." +msgstr "" + +#: ../../mod/sources.php:90 ../../mod/sources.php:100 +msgid "New Source" +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." +msgstr "" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Only import content with these words (one per line)" +msgstr "" + +#: ../../mod/sources.php:102 ../../mod/sources.php:134 +msgid "Leave blank to import all public content" +msgstr "" + +#: ../../mod/sources.php:103 ../../mod/sources.php:137 +#: ../../mod/new_channel.php:112 +msgid "Channel Name" +msgstr "" + +#: ../../mod/sources.php:123 ../../mod/sources.php:150 +msgid "Source not found." +msgstr "" + +#: ../../mod/sources.php:130 +msgid "Edit Source" +msgstr "" + +#: ../../mod/sources.php:131 +msgid "Delete Source" +msgstr "" + +#: ../../mod/sources.php:158 +msgid "Source removed" +msgstr "" + +#: ../../mod/sources.php:160 +msgid "Unable to remove source." +msgstr "" + +#: ../../mod/poke.php:159 +msgid "Poke/Prod" +msgstr "" + +#: ../../mod/poke.php:160 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: ../../mod/poke.php:161 +msgid "Recipient" +msgstr "" + +#: ../../mod/poke.php:162 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../mod/poke.php:165 +msgid "Make this post private" +msgstr "" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "" + +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" +msgstr "" + +#: ../../mod/api.php:105 ../../mod/settings.php:937 ../../mod/settings.php:942 +#: ../../mod/settings.php:1025 ../../mod/profiles.php:591 #: ../../mod/admin.php:392 msgid "Yes" msgstr "" -#: ../../mod/profiles.php:592 ../../mod/api.php:106 ../../mod/settings.php:916 -#: ../../mod/settings.php:921 ../../mod/settings.php:1004 +#: ../../mod/api.php:106 ../../mod/settings.php:937 ../../mod/settings.php:942 +#: ../../mod/settings.php:1025 ../../mod/profiles.php:592 #: ../../mod/admin.php:390 msgid "No" msgstr "" -#: ../../mod/profiles.php:632 -msgid "Edit Profile Details" +#: ../../mod/search.php:13 ../../mod/display.php:9 +#: ../../mod/viewconnections.php:17 ../../mod/directory.php:15 +#: ../../mod/photos.php:458 +msgid "Public access denied." msgstr "" -#: ../../mod/profiles.php:634 -msgid "View this profile" +#: ../../mod/attach.php:9 +msgid "Item not available." msgstr "" -#: ../../mod/profiles.php:636 -msgid "Change Profile Photo" -msgstr "" - -#: ../../mod/profiles.php:637 -msgid "Create a new profile using these settings" -msgstr "" - -#: ../../mod/profiles.php:638 -msgid "Clone this profile" -msgstr "" - -#: ../../mod/profiles.php:639 -msgid "Delete this profile" -msgstr "" - -#: ../../mod/profiles.php:641 -msgid "Import profile from file" -msgstr "" - -#: ../../mod/profiles.php:642 -msgid "Export profile to file" -msgstr "" - -#: ../../mod/profiles.php:643 -msgid "Profile Name:" -msgstr "" - -#: ../../mod/profiles.php:644 -msgid "Your Full Name:" -msgstr "" - -#: ../../mod/profiles.php:645 -msgid "Title/Description:" -msgstr "" - -#: ../../mod/profiles.php:646 -msgid "Your Gender:" -msgstr "" - -#: ../../mod/profiles.php:647 -msgid "Birthday :" -msgstr "" - -#: ../../mod/profiles.php:648 -msgid "Street Address:" -msgstr "" - -#: ../../mod/profiles.php:649 -msgid "Locality/City:" -msgstr "" - -#: ../../mod/profiles.php:650 -msgid "Postal/Zip Code:" -msgstr "" - -#: ../../mod/profiles.php:651 -msgid "Country:" -msgstr "" - -#: ../../mod/profiles.php:652 -msgid "Region/State:" -msgstr "" - -#: ../../mod/profiles.php:653 -msgid " Marital Status:" -msgstr "" - -#: ../../mod/profiles.php:654 -msgid "Who: (if applicable)" -msgstr "" - -#: ../../mod/profiles.php:655 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" - -#: ../../mod/profiles.php:656 -msgid "Since [date]:" -msgstr "" - -#: ../../mod/profiles.php:658 -msgid "Homepage URL:" -msgstr "" - -#: ../../mod/profiles.php:661 -msgid "Religious Views:" -msgstr "" - -#: ../../mod/profiles.php:662 -msgid "Keywords:" -msgstr "" - -#: ../../mod/profiles.php:665 -msgid "Example: fishing photography software" -msgstr "" - -#: ../../mod/profiles.php:666 -msgid "Used in directory listings" -msgstr "" - -#: ../../mod/profiles.php:667 -msgid "Tell us about yourself..." -msgstr "" - -#: ../../mod/profiles.php:668 -msgid "Hobbies/Interests" -msgstr "" - -#: ../../mod/profiles.php:669 -msgid "Contact information and Social Networks" -msgstr "" - -#: ../../mod/profiles.php:670 -msgid "My other channels" -msgstr "" - -#: ../../mod/profiles.php:671 -msgid "Musical interests" -msgstr "" - -#: ../../mod/profiles.php:672 -msgid "Books, literature" -msgstr "" - -#: ../../mod/profiles.php:673 -msgid "Television" -msgstr "" - -#: ../../mod/profiles.php:674 -msgid "Film/dance/culture/entertainment" -msgstr "" - -#: ../../mod/profiles.php:675 -msgid "Love/romance" -msgstr "" - -#: ../../mod/profiles.php:676 -msgid "Work/employment" -msgstr "" - -#: ../../mod/profiles.php:677 -msgid "School/education" -msgstr "" - -#: ../../mod/profiles.php:683 -msgid "This is your default profile." -msgstr "" - -#: ../../mod/profiles.php:694 ../../mod/directory.php:148 -msgid "Age: " -msgstr "" - -#: ../../mod/profiles.php:737 -msgid "Edit/Manage Profiles" -msgstr "" - -#: ../../mod/profiles.php:738 -msgid "Add profile things" -msgstr "" - -#: ../../mod/profiles.php:739 -msgid "Include desirable objects in your profile" -msgstr "" - -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "" - -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "" - -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "" - -#: ../../mod/connect.php:87 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "" - -#: ../../mod/connect.php:89 ../../mod/connect.php:109 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "" - -#: ../../mod/connect.php:90 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "" - -#: ../../mod/connect.php:91 ../../mod/connect.php:112 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." -msgstr "" - -#: ../../mod/connect.php:100 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" - -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" -msgstr "" - -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." -msgstr "" - -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 +#: ../../mod/probe.php:23 ../../mod/probe.php:29 #, php-format -msgid "Welcome %s. Remote authentication successful." +msgid "Fetching URL returns error: %1$s" +msgstr "" + +#: ../../mod/block.php:27 ../../mod/page.php:33 +msgid "Invalid item." +msgstr "" + +#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 +msgid "Channel not found." +msgstr "" + +#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 +#: ../../mod/page.php:81 ../../index.php:241 +msgid "Page not found." +msgstr "" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../mod/blocks.php:99 +msgid "Block Name" msgstr "" #: ../../mod/setup.php:166 @@ -4507,304 +4428,552 @@ msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../mod/siteinfo.php:90 +#: ../../mod/settings.php:73 +msgid "Name is required" +msgstr "" + +#: ../../mod/settings.php:77 +msgid "Key and Secret are required" +msgstr "" + +#: ../../mod/settings.php:211 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: ../../mod/settings.php:215 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: ../../mod/settings.php:229 +msgid "Password changed." +msgstr "" + +#: ../../mod/settings.php:231 +msgid "Password update failed. Please try again." +msgstr "" + +#: ../../mod/settings.php:245 +msgid "Not valid email." +msgstr "" + +#: ../../mod/settings.php:248 +msgid "Protected email address. Cannot change to that email." +msgstr "" + +#: ../../mod/settings.php:257 +msgid "System failure storing new email. Please try again." +msgstr "" + +#: ../../mod/settings.php:493 +msgid "Settings updated." +msgstr "" + +#: ../../mod/settings.php:562 ../../mod/settings.php:588 +#: ../../mod/settings.php:624 +msgid "Add application" +msgstr "" + +#: ../../mod/settings.php:565 +msgid "Name of application" +msgstr "" + +#: ../../mod/settings.php:566 ../../mod/settings.php:592 +msgid "Consumer Key" +msgstr "" + +#: ../../mod/settings.php:566 ../../mod/settings.php:567 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "" + +#: ../../mod/settings.php:567 ../../mod/settings.php:593 +msgid "Consumer Secret" +msgstr "" + +#: ../../mod/settings.php:568 ../../mod/settings.php:594 +msgid "Redirect" +msgstr "" + +#: ../../mod/settings.php:568 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" +msgstr "" + +#: ../../mod/settings.php:569 ../../mod/settings.php:595 +msgid "Icon url" +msgstr "" + +#: ../../mod/settings.php:569 +msgid "Optional" +msgstr "" + +#: ../../mod/settings.php:580 +msgid "You can't edit this application." +msgstr "" + +#: ../../mod/settings.php:623 +msgid "Connected Apps" +msgstr "" + +#: ../../mod/settings.php:627 +msgid "Client key starts with" +msgstr "" + +#: ../../mod/settings.php:628 +msgid "No name" +msgstr "" + +#: ../../mod/settings.php:629 +msgid "Remove authorization" +msgstr "" + +#: ../../mod/settings.php:640 +msgid "No feature settings configured" +msgstr "" + +#: ../../mod/settings.php:648 +msgid "Feature Settings" +msgstr "" + +#: ../../mod/settings.php:671 +msgid "Account Settings" +msgstr "" + +#: ../../mod/settings.php:672 +msgid "Password Settings" +msgstr "" + +#: ../../mod/settings.php:673 +msgid "New Password:" +msgstr "" + +#: ../../mod/settings.php:674 +msgid "Confirm:" +msgstr "" + +#: ../../mod/settings.php:674 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: ../../mod/settings.php:676 ../../mod/settings.php:1006 +msgid "Email Address:" +msgstr "" + +#: ../../mod/settings.php:677 ../../mod/removeaccount.php:61 +msgid "Remove Account" +msgstr "" + +#: ../../mod/settings.php:678 +msgid "Remove this account from this server including all its channels" +msgstr "" + +#: ../../mod/settings.php:679 ../../mod/settings.php:1088 +msgid "Warning: This action is permanent and cannot be reversed." +msgstr "" + +#: ../../mod/settings.php:695 +msgid "Off" +msgstr "" + +#: ../../mod/settings.php:695 +msgid "On" +msgstr "" + +#: ../../mod/settings.php:702 +msgid "Additional Features" +msgstr "" + +#: ../../mod/settings.php:727 +msgid "Connector Settings" +msgstr "" + +#: ../../mod/settings.php:758 +msgid "No special theme for mobile devices" +msgstr "" + +#: ../../mod/settings.php:767 #, php-format -msgid "Version %s" +msgid "%s - (Experimental)" msgstr "" -#: ../../mod/siteinfo.php:111 -msgid "Installed plugins/addons/apps:" +#: ../../mod/settings.php:803 +msgid "Display Settings" msgstr "" -#: ../../mod/siteinfo.php:124 -msgid "No installed plugins/addons/apps" +#: ../../mod/settings.php:809 +msgid "Display Theme:" msgstr "" -#: ../../mod/siteinfo.php:132 -msgid "Red" +#: ../../mod/settings.php:810 +msgid "Mobile Theme:" msgstr "" -#: ../../mod/siteinfo.php:133 +#: ../../mod/settings.php:811 +msgid "Enable user zoom on mobile devices" +msgstr "" + +#: ../../mod/settings.php:812 +msgid "Update browser every xx seconds" +msgstr "" + +#: ../../mod/settings.php:812 +msgid "Minimum of 10 seconds, no maximum" +msgstr "" + +#: ../../mod/settings.php:813 +msgid "Maximum number of conversations to load at any time:" +msgstr "" + +#: ../../mod/settings.php:813 +msgid "Maximum of 100 items" +msgstr "" + +#: ../../mod/settings.php:814 +msgid "Don't show emoticons" +msgstr "" + +#: ../../mod/settings.php:815 +msgid "Link post titles to source" +msgstr "" + +#: ../../mod/settings.php:816 +msgid "System Page Layout Editor - (advanced)" +msgstr "" + +#: ../../mod/settings.php:819 +msgid "Use blog/list mode on channel page" +msgstr "" + +#: ../../mod/settings.php:819 ../../mod/settings.php:820 +msgid "(comments displayed separately)" +msgstr "" + +#: ../../mod/settings.php:820 +msgid "Use blog/list mode on matrix page" +msgstr "" + +#: ../../mod/settings.php:821 +msgid "Channel page max height of content (in pixels)" +msgstr "" + +#: ../../mod/settings.php:821 ../../mod/settings.php:822 +msgid "click to expand content exceeding this height" +msgstr "" + +#: ../../mod/settings.php:822 +msgid "Matrix page max height of content (in pixels)" +msgstr "" + +#: ../../mod/settings.php:856 +msgid "Nobody except yourself" +msgstr "" + +#: ../../mod/settings.php:857 +msgid "Only those you specifically allow" +msgstr "" + +#: ../../mod/settings.php:858 +msgid "Approved connections" +msgstr "" + +#: ../../mod/settings.php:859 +msgid "Any connections" +msgstr "" + +#: ../../mod/settings.php:860 +msgid "Anybody on this website" +msgstr "" + +#: ../../mod/settings.php:861 +msgid "Anybody in this network" +msgstr "" + +#: ../../mod/settings.php:862 +msgid "Anybody authenticated" +msgstr "" + +#: ../../mod/settings.php:863 +msgid "Anybody on the internet" +msgstr "" + +#: ../../mod/settings.php:937 +msgid "Publish your default profile in the network directory" +msgstr "" + +#: ../../mod/settings.php:942 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: ../../mod/settings.php:946 ../../mod/profile_photo.php:365 +msgid "or" +msgstr "" + +#: ../../mod/settings.php:951 +msgid "Your channel address is" +msgstr "" + +#: ../../mod/settings.php:995 +msgid "Channel Settings" +msgstr "" + +#: ../../mod/settings.php:1004 +msgid "Basic Settings" +msgstr "" + +#: ../../mod/settings.php:1007 +msgid "Your Timezone:" +msgstr "" + +#: ../../mod/settings.php:1008 +msgid "Default Post Location:" +msgstr "" + +#: ../../mod/settings.php:1008 +msgid "Geographical location to display on your posts" +msgstr "" + +#: ../../mod/settings.php:1009 +msgid "Use Browser Location:" +msgstr "" + +#: ../../mod/settings.php:1011 +msgid "Adult Content" +msgstr "" + +#: ../../mod/settings.php:1011 msgid "" -"This is a hub of the Red Matrix - a global cooperative network of " -"decentralized privacy enhanced websites." +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../mod/siteinfo.php:137 -msgid "Running at web location" +#: ../../mod/settings.php:1013 +msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/siteinfo.php:138 +#: ../../mod/settings.php:1015 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "" + +#: ../../mod/settings.php:1017 +msgid "Hide my online presence" +msgstr "" + +#: ../../mod/settings.php:1017 +msgid "Prevents displaying in your profile that you are online" +msgstr "" + +#: ../../mod/settings.php:1019 +msgid "Simple Privacy Settings:" +msgstr "" + +#: ../../mod/settings.php:1020 msgid "" -"Please visit GetZot.com to learn more " -"about the Red Matrix." +"Very Public - extremely permissive (should be used with caution)" msgstr "" -#: ../../mod/siteinfo.php:139 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: ../../mod/siteinfo.php:142 +#: ../../mod/settings.php:1021 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" msgstr "" -#: ../../mod/siteinfo.php:144 -msgid "Site Administrators" +#: ../../mod/settings.php:1022 +msgid "Private - default private, never open or public" msgstr "" -#: ../../mod/poke.php:159 -msgid "Poke/Prod" +#: ../../mod/settings.php:1023 +msgid "Blocked - default blocked to/from everybody" msgstr "" -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" +#: ../../mod/settings.php:1025 +msgid "Allow others to tag your posts" msgstr "" -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "" - -#: ../../mod/api.php:104 +#: ../../mod/settings.php:1025 msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +"Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../mod/attach.php:9 -msgid "Item not available." +#: ../../mod/settings.php:1027 +msgid "Advanced Privacy Settings" msgstr "" -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" +#: ../../mod/settings.php:1029 +msgid "Expire other channel content after this many days" msgstr "" -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." +#: ../../mod/settings.php:1029 +msgid "0 or blank prevents expiration" msgstr "" -#: ../../mod/block.php:39 ../../mod/wall_upload.php:28 ../../mod/page.php:45 -msgid "Channel not found." +#: ../../mod/settings.php:1030 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:70 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." +#: ../../mod/settings.php:1030 +msgid "May reduce spam activity" msgstr "" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." +#: ../../mod/settings.php:1031 +msgid "Default Post Permissions" msgstr "" -#: ../../mod/sources.php:45 -msgid "Source created." +#: ../../mod/settings.php:1036 +msgid "Channel permissions category:" msgstr "" -#: ../../mod/sources.php:57 -msgid "Source updated." +#: ../../mod/settings.php:1044 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../mod/sources.php:82 -msgid "*" +#: ../../mod/settings.php:1044 +msgid "Useful to reduce spamming" msgstr "" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." +#: ../../mod/settings.php:1047 +msgid "Notification Settings" msgstr "" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" +#: ../../mod/settings.php:1048 +msgid "By default post a status message when:" msgstr "" -#: ../../mod/sources.php:101 ../../mod/sources.php:133 +#: ../../mod/settings.php:1049 +msgid "accepting a friend request" +msgstr "" + +#: ../../mod/settings.php:1050 +msgid "joining a forum/community" +msgstr "" + +#: ../../mod/settings.php:1051 +msgid "making an interesting profile change" +msgstr "" + +#: ../../mod/settings.php:1052 +msgid "Send a notification email when:" +msgstr "" + +#: ../../mod/settings.php:1053 +msgid "You receive a connection request" +msgstr "" + +#: ../../mod/settings.php:1054 +msgid "Your connections are confirmed" +msgstr "" + +#: ../../mod/settings.php:1055 +msgid "Someone writes on your profile wall" +msgstr "" + +#: ../../mod/settings.php:1056 +msgid "Someone writes a followup comment" +msgstr "" + +#: ../../mod/settings.php:1057 +msgid "You receive a private message" +msgstr "" + +#: ../../mod/settings.php:1058 +msgid "You receive a friend suggestion" +msgstr "" + +#: ../../mod/settings.php:1059 +msgid "You are tagged in a post" +msgstr "" + +#: ../../mod/settings.php:1060 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: ../../mod/settings.php:1063 +msgid "Show visual notifications including:" +msgstr "" + +#: ../../mod/settings.php:1065 +msgid "Unseen matrix activity" +msgstr "" + +#: ../../mod/settings.php:1066 +msgid "Unseen channel activity" +msgstr "" + +#: ../../mod/settings.php:1067 +msgid "Unseen private messages" +msgstr "" + +#: ../../mod/settings.php:1067 ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 +msgid "Recommended" +msgstr "" + +#: ../../mod/settings.php:1068 +msgid "Upcoming events" +msgstr "" + +#: ../../mod/settings.php:1069 +msgid "Events today" +msgstr "" + +#: ../../mod/settings.php:1070 +msgid "Upcoming birthdays" +msgstr "" + +#: ../../mod/settings.php:1070 +msgid "Not available in all themes" +msgstr "" + +#: ../../mod/settings.php:1071 +msgid "System (personal) notifications" +msgstr "" + +#: ../../mod/settings.php:1072 +msgid "System info messages" +msgstr "" + +#: ../../mod/settings.php:1073 +msgid "System critical alerts" +msgstr "" + +#: ../../mod/settings.php:1074 +msgid "New connections" +msgstr "" + +#: ../../mod/settings.php:1075 +msgid "System Registrations" +msgstr "" + +#: ../../mod/settings.php:1077 +msgid "Notify me of events this many days in advance" +msgstr "" + +#: ../../mod/settings.php:1077 +msgid "Must be greater than 0" +msgstr "" + +#: ../../mod/settings.php:1079 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../mod/settings.php:1080 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../mod/settings.php:1083 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" msgstr "" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" +#: ../../mod/settings.php:1084 +msgid "Miscellaneous Settings" msgstr "" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" +#: ../../mod/settings.php:1086 +msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "" - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "" - -#: ../../mod/blocks.php:99 -msgid "Block Name" -msgstr "" - -#: ../../mod/search.php:13 ../../mod/directory.php:15 ../../mod/photos.php:458 -#: ../../mod/display.php:9 ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "" - -#: ../../mod/directory.php:161 -msgid "Gender: " -msgstr "" - -#: ../../mod/directory.php:163 -msgid "Status: " -msgstr "" - -#: ../../mod/directory.php:165 -msgid "Homepage: " -msgstr "" - -#: ../../mod/directory.php:168 -msgid "Hometown: " -msgstr "" - -#: ../../mod/directory.php:170 -msgid "About: " -msgstr "" - -#: ../../mod/directory.php:225 -msgid "Public Forum:" -msgstr "" - -#: ../../mod/directory.php:228 -msgid "Keywords: " -msgstr "" - -#: ../../mod/directory.php:268 -msgid "Finding:" -msgstr "" - -#: ../../mod/directory.php:273 -msgid "next page" -msgstr "" - -#: ../../mod/directory.php:273 -msgid "previous page" -msgstr "" - -#: ../../mod/directory.php:290 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "" - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "" - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation instructions." -msgstr "" - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "" - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "" - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "" - -#: ../../mod/register.php:207 ../../mod/admin.php:413 -msgid "Registration" -msgstr "" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" +#: ../../mod/settings.php:1087 +msgid "Remove this channel" msgstr "" #: ../../mod/events.php:81 @@ -4835,44 +5004,44 @@ msgstr "" msgid "Previous" msgstr "" -#: ../../mod/events.php:560 +#: ../../mod/events.php:559 msgid "Event details" msgstr "" -#: ../../mod/events.php:561 +#: ../../mod/events.php:560 msgid "Starting date and Title are required." msgstr "" -#: ../../mod/events.php:565 +#: ../../mod/events.php:564 msgid "Event Starts:" msgstr "" -#: ../../mod/events.php:565 ../../mod/events.php:581 ../../mod/appman.php:91 +#: ../../mod/events.php:564 ../../mod/events.php:580 ../../mod/appman.php:91 #: ../../mod/appman.php:92 msgid "Required" msgstr "" -#: ../../mod/events.php:571 +#: ../../mod/events.php:570 msgid "Finish date/time is not known or not relevant" msgstr "" -#: ../../mod/events.php:573 +#: ../../mod/events.php:572 msgid "Event Finishes:" msgstr "" -#: ../../mod/events.php:575 +#: ../../mod/events.php:574 msgid "Adjust for viewer timezone" msgstr "" -#: ../../mod/events.php:577 +#: ../../mod/events.php:576 msgid "Description:" msgstr "" -#: ../../mod/events.php:581 +#: ../../mod/events.php:580 msgid "Title:" msgstr "" -#: ../../mod/events.php:583 +#: ../../mod/events.php:582 msgid "Share this event" msgstr "" @@ -4901,6 +5070,10 @@ msgstr "" msgid "Registration Policy" msgstr "" +#: ../../mod/pubsites.php:25 ../../mod/profiles.php:428 +msgid "Location" +msgstr "" + #: ../../mod/channel.php:25 ../../mod/chat.php:19 msgid "You must be logged in to see this page." msgstr "" @@ -4966,11 +5139,6 @@ msgstr "" msgid "%1$s's Chatrooms" msgstr "" -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - #: ../../mod/chatsvc.php:111 msgid "Away" msgstr "" @@ -4983,28 +5151,50 @@ msgstr "" msgid "Please login." msgstr "" -#: ../../mod/network.php:79 -msgid "No such group" +#: ../../mod/siteinfo.php:90 +#, php-format +msgid "Version %s" msgstr "" -#: ../../mod/network.php:118 -msgid "Search Results For:" +#: ../../mod/siteinfo.php:111 +msgid "Installed plugins/addons/apps:" msgstr "" -#: ../../mod/network.php:172 -msgid "Collection is empty" +#: ../../mod/siteinfo.php:124 +msgid "No installed plugins/addons/apps" msgstr "" -#: ../../mod/network.php:180 -msgid "Collection: " +#: ../../mod/siteinfo.php:132 +msgid "Red" msgstr "" -#: ../../mod/network.php:193 -msgid "Connection: " +#: ../../mod/siteinfo.php:133 +msgid "" +"This is a hub of the Red Matrix - a global cooperative network of " +"decentralized privacy enhanced websites." msgstr "" -#: ../../mod/network.php:196 -msgid "Invalid connection." +#: ../../mod/siteinfo.php:137 +msgid "Running at web location" +msgstr "" + +#: ../../mod/siteinfo.php:138 +msgid "" +"Please visit GetZot.com to learn more " +"about the Red Matrix." +msgstr "" + +#: ../../mod/siteinfo.php:139 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: ../../mod/siteinfo.php:142 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" +msgstr "" + +#: ../../mod/siteinfo.php:144 +msgid "Site Administrators" msgstr "" #: ../../mod/removeme.php:29 @@ -5079,147 +5269,53 @@ msgstr "" msgid "Authenticate" msgstr "" -#: ../../mod/filer.php:49 -msgid "- select -" +#: ../../mod/like.php:15 +msgid "Like/Dislike" msgstr "" -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." +#: ../../mod/like.php:20 +msgid "This action is restricted to members." msgstr "" -#: ../../mod/photos.php:97 -msgid "Album not found." +#: ../../mod/like.php:21 +msgid "" +"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." msgstr "" -#: ../../mod/photos.php:119 ../../mod/photos.php:672 -msgid "Delete Album" +#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 +msgid "Invalid request." msgstr "" -#: ../../mod/photos.php:159 ../../mod/photos.php:957 -msgid "Delete Photo" +#: ../../mod/like.php:119 +msgid "thing" msgstr "" -#: ../../mod/photos.php:469 -msgid "No photos selected" +#: ../../mod/like.php:165 +msgid "Channel unavailable." msgstr "" -#: ../../mod/photos.php:513 -msgid "Access to this item is restricted." +#: ../../mod/like.php:204 +msgid "Previous action reversed." msgstr "" -#: ../../mod/photos.php:552 +#: ../../mod/like.php:422 +msgid "Action completed." +msgstr "" + +#: ../../mod/like.php:423 +msgid "Thank you." +msgstr "" + +#: ../../mod/post.php:229 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." +msgstr "" + +#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 #, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "" - -#: ../../mod/photos.php:555 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "" - -#: ../../mod/photos.php:579 -msgid "Upload Photos" -msgstr "" - -#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 -msgid "Enter a new album name" -msgstr "" - -#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:944 -msgid "or select an existing one (doubleclick)" -msgstr "" - -#: ../../mod/photos.php:585 -msgid "Do not show a status post for this upload" -msgstr "" - -#: ../../mod/photos.php:613 -msgid "Album name could not be decoded" -msgstr "" - -#: ../../mod/photos.php:654 ../../mod/photos.php:1166 -#: ../../mod/photos.php:1182 -msgid "Contact Photos" -msgstr "" - -#: ../../mod/photos.php:678 -msgid "Show Newest First" -msgstr "" - -#: ../../mod/photos.php:680 -msgid "Show Oldest First" -msgstr "" - -#: ../../mod/photos.php:707 ../../mod/photos.php:1214 -msgid "View Photo" -msgstr "" - -#: ../../mod/photos.php:736 -msgid "Edit Album" -msgstr "" - -#: ../../mod/photos.php:781 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../mod/photos.php:783 -msgid "Photo not available" -msgstr "" - -#: ../../mod/photos.php:841 -msgid "Use as profile photo" -msgstr "" - -#: ../../mod/photos.php:848 -msgid "Private Photo" -msgstr "" - -#: ../../mod/photos.php:863 -msgid "View Full Size" -msgstr "" - -#: ../../mod/photos.php:905 ../../mod/delegate.php:130 ../../mod/tagrm.php:133 -msgid "Remove" -msgstr "" - -#: ../../mod/photos.php:937 -msgid "Edit photo" -msgstr "" - -#: ../../mod/photos.php:939 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../mod/photos.php:940 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../mod/photos.php:947 -msgid "Caption" -msgstr "" - -#: ../../mod/photos.php:949 -msgid "Add a Tag" -msgstr "" - -#: ../../mod/photos.php:953 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "" - -#: ../../mod/photos.php:955 -msgid "Flag as adult in album view" -msgstr "" - -#: ../../mod/photos.php:1132 -msgid "In This Photo:" -msgstr "" - -#: ../../mod/photos.php:1220 -msgid "View Album" -msgstr "" - -#: ../../mod/photos.php:1243 -msgid "Recent Photos" +msgid "Welcome %s. Remote authentication successful." msgstr "" #: ../../mod/connections.php:37 ../../mod/connedit.php:64 @@ -5315,29 +5411,8 @@ msgstr "" msgid "Finding: " msgstr "" -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" - -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "" - -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "" - -#: ../../mod/manage.php:151 -msgid "Attach to one of your channels by selecting it." -msgstr "" - -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "" - -#: ../../mod/manage.php:153 -msgid "Make Default" +#: ../../mod/openid.php:26 +msgid "OpenID protocol error. No ID returned." msgstr "" #: ../../mod/rpost.php:97 ../../mod/editpost.php:42 @@ -5653,10 +5728,6 @@ msgid "" "Replies/likes to your public posts may still be visible" msgstr "" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "" - #: ../../mod/thing.php:96 msgid "Thing updated" msgstr "" @@ -5738,7 +5809,7 @@ msgid "" "Password reset failed." msgstr "" -#: ../../mod/lostpass.php:85 ../../boot.php:1494 +#: ../../mod/lostpass.php:85 ../../boot.php:1495 msgid "Password Reset" msgstr "" @@ -5807,16 +5878,261 @@ msgstr "" msgid "RedMatrix - Guests: Username: {your email address}, Password: +++" msgstr "" -#: ../../mod/ping.php:257 -msgid "sent you a private message" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:165 +#: ../../mod/profiles.php:222 ../../mod/profiles.php:565 +msgid "Profile not found." msgstr "" -#: ../../mod/ping.php:308 -msgid "added your channel" +#: ../../mod/profiles.php:38 +msgid "Profile deleted." msgstr "" -#: ../../mod/ping.php:349 -msgid "posted an event" +#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 +msgid "Profile-" +msgstr "" + +#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 +msgid "New profile created." +msgstr "" + +#: ../../mod/profiles.php:98 +msgid "Profile unavailable to clone." +msgstr "" + +#: ../../mod/profiles.php:136 +msgid "Profile unavailable to export." +msgstr "" + +#: ../../mod/profiles.php:232 +msgid "Profile Name is required." +msgstr "" + +#: ../../mod/profiles.php:378 +msgid "Marital Status" +msgstr "" + +#: ../../mod/profiles.php:382 +msgid "Romantic Partner" +msgstr "" + +#: ../../mod/profiles.php:386 +msgid "Likes" +msgstr "" + +#: ../../mod/profiles.php:390 +msgid "Dislikes" +msgstr "" + +#: ../../mod/profiles.php:394 +msgid "Work/Employment" +msgstr "" + +#: ../../mod/profiles.php:397 +msgid "Religion" +msgstr "" + +#: ../../mod/profiles.php:401 +msgid "Political Views" +msgstr "" + +#: ../../mod/profiles.php:405 +msgid "Gender" +msgstr "" + +#: ../../mod/profiles.php:409 +msgid "Sexual Preference" +msgstr "" + +#: ../../mod/profiles.php:413 +msgid "Homepage" +msgstr "" + +#: ../../mod/profiles.php:417 +msgid "Interests" +msgstr "" + +#: ../../mod/profiles.php:421 ../../mod/admin.php:866 +msgid "Address" +msgstr "" + +#: ../../mod/profiles.php:511 +msgid "Profile updated." +msgstr "" + +#: ../../mod/profiles.php:590 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "" + +#: ../../mod/profiles.php:632 +msgid "Edit Profile Details" +msgstr "" + +#: ../../mod/profiles.php:634 +msgid "View this profile" +msgstr "" + +#: ../../mod/profiles.php:636 +msgid "Change Profile Photo" +msgstr "" + +#: ../../mod/profiles.php:637 +msgid "Create a new profile using these settings" +msgstr "" + +#: ../../mod/profiles.php:638 +msgid "Clone this profile" +msgstr "" + +#: ../../mod/profiles.php:639 +msgid "Delete this profile" +msgstr "" + +#: ../../mod/profiles.php:641 +msgid "Import profile from file" +msgstr "" + +#: ../../mod/profiles.php:642 +msgid "Export profile to file" +msgstr "" + +#: ../../mod/profiles.php:643 +msgid "Profile Name:" +msgstr "" + +#: ../../mod/profiles.php:644 +msgid "Your Full Name:" +msgstr "" + +#: ../../mod/profiles.php:645 +msgid "Title/Description:" +msgstr "" + +#: ../../mod/profiles.php:646 +msgid "Your Gender:" +msgstr "" + +#: ../../mod/profiles.php:647 +msgid "Birthday :" +msgstr "" + +#: ../../mod/profiles.php:648 +msgid "Street Address:" +msgstr "" + +#: ../../mod/profiles.php:649 +msgid "Locality/City:" +msgstr "" + +#: ../../mod/profiles.php:650 +msgid "Postal/Zip Code:" +msgstr "" + +#: ../../mod/profiles.php:651 +msgid "Country:" +msgstr "" + +#: ../../mod/profiles.php:652 +msgid "Region/State:" +msgstr "" + +#: ../../mod/profiles.php:653 +msgid " Marital Status:" +msgstr "" + +#: ../../mod/profiles.php:654 +msgid "Who: (if applicable)" +msgstr "" + +#: ../../mod/profiles.php:655 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: ../../mod/profiles.php:656 +msgid "Since [date]:" +msgstr "" + +#: ../../mod/profiles.php:658 +msgid "Homepage URL:" +msgstr "" + +#: ../../mod/profiles.php:661 +msgid "Religious Views:" +msgstr "" + +#: ../../mod/profiles.php:662 +msgid "Keywords:" +msgstr "" + +#: ../../mod/profiles.php:665 +msgid "Example: fishing photography software" +msgstr "" + +#: ../../mod/profiles.php:666 +msgid "Used in directory listings" +msgstr "" + +#: ../../mod/profiles.php:667 +msgid "Tell us about yourself..." +msgstr "" + +#: ../../mod/profiles.php:668 +msgid "Hobbies/Interests" +msgstr "" + +#: ../../mod/profiles.php:669 +msgid "Contact information and Social Networks" +msgstr "" + +#: ../../mod/profiles.php:670 +msgid "My other channels" +msgstr "" + +#: ../../mod/profiles.php:671 +msgid "Musical interests" +msgstr "" + +#: ../../mod/profiles.php:672 +msgid "Books, literature" +msgstr "" + +#: ../../mod/profiles.php:673 +msgid "Television" +msgstr "" + +#: ../../mod/profiles.php:674 +msgid "Film/dance/culture/entertainment" +msgstr "" + +#: ../../mod/profiles.php:675 +msgid "Love/romance" +msgstr "" + +#: ../../mod/profiles.php:676 +msgid "Work/employment" +msgstr "" + +#: ../../mod/profiles.php:677 +msgid "School/education" +msgstr "" + +#: ../../mod/profiles.php:683 +msgid "This is your default profile." +msgstr "" + +#: ../../mod/profiles.php:694 ../../mod/directory.php:148 +msgid "Age: " +msgstr "" + +#: ../../mod/profiles.php:737 +msgid "Edit/Manage Profiles" +msgstr "" + +#: ../../mod/profiles.php:738 +msgid "Add profile things" +msgstr "" + +#: ../../mod/profiles.php:739 +msgid "Include desirable objects in your profile" msgstr "" #: ../../mod/editblock.php:79 ../../mod/editblock.php:95 @@ -5892,528 +6208,47 @@ msgstr "" msgid "Delete item?" msgstr "" -#: ../../mod/settings.php:73 -msgid "Name is required" +#: ../../mod/connect.php:55 ../../mod/connect.php:103 +msgid "Continue" msgstr "" -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" +#: ../../mod/connect.php:84 +msgid "Premium Channel Setup" msgstr "" -#: ../../mod/settings.php:197 -msgid "Passwords do not match. Password unchanged." +#: ../../mod/connect.php:86 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../mod/settings.php:201 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: ../../mod/settings.php:215 -msgid "Password changed." -msgstr "" - -#: ../../mod/settings.php:217 -msgid "Password update failed. Please try again." -msgstr "" - -#: ../../mod/settings.php:231 -msgid "Not valid email." -msgstr "" - -#: ../../mod/settings.php:234 -msgid "Protected email address. Cannot change to that email." -msgstr "" - -#: ../../mod/settings.php:243 -msgid "System failure storing new email. Please try again." -msgstr "" - -#: ../../mod/settings.php:479 -msgid "Settings updated." -msgstr "" - -#: ../../mod/settings.php:548 ../../mod/settings.php:574 -#: ../../mod/settings.php:610 -msgid "Add application" -msgstr "" - -#: ../../mod/settings.php:551 -msgid "Name of application" -msgstr "" - -#: ../../mod/settings.php:552 ../../mod/settings.php:578 -msgid "Consumer Key" -msgstr "" - -#: ../../mod/settings.php:552 ../../mod/settings.php:553 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "" - -#: ../../mod/settings.php:553 ../../mod/settings.php:579 -msgid "Consumer Secret" -msgstr "" - -#: ../../mod/settings.php:554 ../../mod/settings.php:580 -msgid "Redirect" -msgstr "" - -#: ../../mod/settings.php:554 +#: ../../mod/connect.php:87 msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../mod/settings.php:555 ../../mod/settings.php:581 -msgid "Icon url" -msgstr "" - -#: ../../mod/settings.php:555 -msgid "Optional" -msgstr "" - -#: ../../mod/settings.php:566 -msgid "You can't edit this application." -msgstr "" - -#: ../../mod/settings.php:609 -msgid "Connected Apps" -msgstr "" - -#: ../../mod/settings.php:613 -msgid "Client key starts with" -msgstr "" - -#: ../../mod/settings.php:614 -msgid "No name" -msgstr "" - -#: ../../mod/settings.php:615 -msgid "Remove authorization" -msgstr "" - -#: ../../mod/settings.php:626 -msgid "No feature settings configured" -msgstr "" - -#: ../../mod/settings.php:634 -msgid "Feature Settings" -msgstr "" - -#: ../../mod/settings.php:657 -msgid "Account Settings" -msgstr "" - -#: ../../mod/settings.php:658 -msgid "Password Settings" -msgstr "" - -#: ../../mod/settings.php:659 -msgid "New Password:" -msgstr "" - -#: ../../mod/settings.php:660 -msgid "Confirm:" -msgstr "" - -#: ../../mod/settings.php:660 -msgid "Leave password fields blank unless changing" -msgstr "" - -#: ../../mod/settings.php:662 ../../mod/settings.php:985 -msgid "Email Address:" -msgstr "" - -#: ../../mod/settings.php:663 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "" - -#: ../../mod/settings.php:664 -msgid "Remove this account from this server including all its channels" -msgstr "" - -#: ../../mod/settings.php:665 ../../mod/settings.php:1067 -msgid "Warning: This action is permanent and cannot be reversed." -msgstr "" - -#: ../../mod/settings.php:681 -msgid "Off" -msgstr "" - -#: ../../mod/settings.php:681 -msgid "On" -msgstr "" - -#: ../../mod/settings.php:688 -msgid "Additional Features" -msgstr "" - -#: ../../mod/settings.php:713 -msgid "Connector Settings" -msgstr "" - -#: ../../mod/settings.php:743 -msgid "No special theme for mobile devices" -msgstr "" - -#: ../../mod/settings.php:752 -#, php-format -msgid "%s - (Experimental)" -msgstr "" - -#: ../../mod/settings.php:788 -msgid "Display Settings" -msgstr "" - -#: ../../mod/settings.php:794 -msgid "Display Theme:" -msgstr "" - -#: ../../mod/settings.php:795 -msgid "Mobile Theme:" -msgstr "" - -#: ../../mod/settings.php:796 -msgid "Enable user zoom on mobile devices" -msgstr "" - -#: ../../mod/settings.php:797 -msgid "Update browser every xx seconds" -msgstr "" - -#: ../../mod/settings.php:797 -msgid "Minimum of 10 seconds, no maximum" -msgstr "" - -#: ../../mod/settings.php:798 -msgid "Maximum number of conversations to load at any time:" -msgstr "" - -#: ../../mod/settings.php:798 -msgid "Maximum of 100 items" -msgstr "" - -#: ../../mod/settings.php:799 -msgid "Don't show emoticons" -msgstr "" - -#: ../../mod/settings.php:800 -msgid "Link post titles to source" -msgstr "" - -#: ../../mod/settings.php:801 -msgid "System Page Layout Editor - (advanced)" -msgstr "" - -#: ../../mod/settings.php:835 -msgid "Nobody except yourself" -msgstr "" - -#: ../../mod/settings.php:836 -msgid "Only those you specifically allow" -msgstr "" - -#: ../../mod/settings.php:837 -msgid "Approved connections" -msgstr "" - -#: ../../mod/settings.php:838 -msgid "Any connections" -msgstr "" - -#: ../../mod/settings.php:839 -msgid "Anybody on this website" -msgstr "" - -#: ../../mod/settings.php:840 -msgid "Anybody in this network" -msgstr "" - -#: ../../mod/settings.php:841 -msgid "Anybody authenticated" -msgstr "" - -#: ../../mod/settings.php:842 -msgid "Anybody on the internet" -msgstr "" - -#: ../../mod/settings.php:916 -msgid "Publish your default profile in the network directory" -msgstr "" - -#: ../../mod/settings.php:921 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: ../../mod/settings.php:925 ../../mod/profile_photo.php:365 -msgid "or" -msgstr "" - -#: ../../mod/settings.php:930 -msgid "Your channel address is" -msgstr "" - -#: ../../mod/settings.php:974 -msgid "Channel Settings" -msgstr "" - -#: ../../mod/settings.php:983 -msgid "Basic Settings" -msgstr "" - -#: ../../mod/settings.php:986 -msgid "Your Timezone:" -msgstr "" - -#: ../../mod/settings.php:987 -msgid "Default Post Location:" -msgstr "" - -#: ../../mod/settings.php:987 -msgid "Geographical location to display on your posts" -msgstr "" - -#: ../../mod/settings.php:988 -msgid "Use Browser Location:" -msgstr "" - -#: ../../mod/settings.php:990 -msgid "Adult Content" -msgstr "" - -#: ../../mod/settings.php:990 +#: ../../mod/connect.php:89 ../../mod/connect.php:109 msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../mod/settings.php:992 -msgid "Security and Privacy Settings" -msgstr "" - -#: ../../mod/settings.php:994 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "" - -#: ../../mod/settings.php:996 -msgid "Hide my online presence" -msgstr "" - -#: ../../mod/settings.php:996 -msgid "Prevents displaying in your profile that you are online" -msgstr "" - -#: ../../mod/settings.php:998 -msgid "Simple Privacy Settings:" -msgstr "" - -#: ../../mod/settings.php:999 +#: ../../mod/connect.php:90 msgid "" -"Very Public - extremely permissive (should be used with caution)" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../mod/settings.php:1000 +#: ../../mod/connect.php:91 ../../mod/connect.php:112 msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../mod/settings.php:1001 -msgid "Private - default private, never open or public" +#: ../../mod/connect.php:100 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../mod/settings.php:1002 -msgid "Blocked - default blocked to/from everybody" -msgstr "" - -#: ../../mod/settings.php:1004 -msgid "Allow others to tag your posts" -msgstr "" - -#: ../../mod/settings.php:1004 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "" - -#: ../../mod/settings.php:1006 -msgid "Advanced Privacy Settings" -msgstr "" - -#: ../../mod/settings.php:1008 -msgid "Expire other channel content after this many days" -msgstr "" - -#: ../../mod/settings.php:1008 -msgid "0 or blank prevents expiration" -msgstr "" - -#: ../../mod/settings.php:1009 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: ../../mod/settings.php:1009 -msgid "May reduce spam activity" -msgstr "" - -#: ../../mod/settings.php:1010 -msgid "Default Post Permissions" -msgstr "" - -#: ../../mod/settings.php:1015 -msgid "Channel permissions category:" -msgstr "" - -#: ../../mod/settings.php:1023 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: ../../mod/settings.php:1023 -msgid "Useful to reduce spamming" -msgstr "" - -#: ../../mod/settings.php:1026 -msgid "Notification Settings" -msgstr "" - -#: ../../mod/settings.php:1027 -msgid "By default post a status message when:" -msgstr "" - -#: ../../mod/settings.php:1028 -msgid "accepting a friend request" -msgstr "" - -#: ../../mod/settings.php:1029 -msgid "joining a forum/community" -msgstr "" - -#: ../../mod/settings.php:1030 -msgid "making an interesting profile change" -msgstr "" - -#: ../../mod/settings.php:1031 -msgid "Send a notification email when:" -msgstr "" - -#: ../../mod/settings.php:1032 -msgid "You receive a connection request" -msgstr "" - -#: ../../mod/settings.php:1033 -msgid "Your connections are confirmed" -msgstr "" - -#: ../../mod/settings.php:1034 -msgid "Someone writes on your profile wall" -msgstr "" - -#: ../../mod/settings.php:1035 -msgid "Someone writes a followup comment" -msgstr "" - -#: ../../mod/settings.php:1036 -msgid "You receive a private message" -msgstr "" - -#: ../../mod/settings.php:1037 -msgid "You receive a friend suggestion" -msgstr "" - -#: ../../mod/settings.php:1038 -msgid "You are tagged in a post" -msgstr "" - -#: ../../mod/settings.php:1039 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../mod/settings.php:1042 -msgid "Show visual notifications including:" -msgstr "" - -#: ../../mod/settings.php:1044 -msgid "Unseen matrix activity" -msgstr "" - -#: ../../mod/settings.php:1045 -msgid "Unseen channel activity" -msgstr "" - -#: ../../mod/settings.php:1046 -msgid "Unseen private messages" -msgstr "" - -#: ../../mod/settings.php:1046 ../../mod/settings.php:1051 -#: ../../mod/settings.php:1052 ../../mod/settings.php:1053 -msgid "Recommended" -msgstr "" - -#: ../../mod/settings.php:1047 -msgid "Upcoming events" -msgstr "" - -#: ../../mod/settings.php:1048 -msgid "Events today" -msgstr "" - -#: ../../mod/settings.php:1049 -msgid "Upcoming birthdays" -msgstr "" - -#: ../../mod/settings.php:1049 -msgid "Not available in all themes" -msgstr "" - -#: ../../mod/settings.php:1050 -msgid "System (personal) notifications" -msgstr "" - -#: ../../mod/settings.php:1051 -msgid "System info messages" -msgstr "" - -#: ../../mod/settings.php:1052 -msgid "System critical alerts" -msgstr "" - -#: ../../mod/settings.php:1053 -msgid "New connections" -msgstr "" - -#: ../../mod/settings.php:1054 -msgid "System Registrations" -msgstr "" - -#: ../../mod/settings.php:1056 -msgid "Notify me of events this many days in advance" -msgstr "" - -#: ../../mod/settings.php:1056 -msgid "Must be greater than 0" -msgstr "" - -#: ../../mod/settings.php:1058 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../mod/settings.php:1059 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../mod/settings.php:1062 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "" - -#: ../../mod/settings.php:1063 -msgid "Miscellaneous Settings" -msgstr "" - -#: ../../mod/settings.php:1065 -msgid "Personal menu to display in your channel pages" -msgstr "" - -#: ../../mod/settings.php:1066 -msgid "Remove this channel" +#: ../../mod/connect.php:108 +msgid "Restricted or Premium Channel" msgstr "" #: ../../mod/editwebpage.php:140 @@ -6517,6 +6352,32 @@ msgstr "" msgid "Image size reduction [%s] failed." msgstr "" +#: ../../mod/item.php:159 +msgid "Unable to locate original post." +msgstr "" + +#: ../../mod/item.php:418 +msgid "Empty post discarded." +msgstr "" + +#: ../../mod/item.php:460 +msgid "Executable content type not permitted to this channel." +msgstr "" + +#: ../../mod/item.php:898 +msgid "System error. Post not saved." +msgstr "" + +#: ../../mod/item.php:1373 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "" + +#: ../../mod/item.php:1379 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "" + #: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 msgid "Contact not found." msgstr "" @@ -6578,10 +6439,6 @@ msgstr "" msgid "network" msgstr "" -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "" - #: ../../mod/delegate.php:95 msgid "No potential page delegates located." msgstr "" @@ -6609,6 +6466,10 @@ msgstr "" msgid "Potential Delegates" msgstr "" +#: ../../mod/delegate.php:130 ../../mod/tagrm.php:133 ../../mod/photos.php:905 +msgid "Remove" +msgstr "" + #: ../../mod/delegate.php:131 msgid "Add" msgstr "" @@ -6617,6 +6478,10 @@ msgstr "" msgid "No entries." msgstr "" +#: ../../mod/follow.php:25 +msgid "Channel added." +msgstr "" + #: ../../mod/group.php:20 msgid "Collection created." msgstr "" @@ -6665,6 +6530,15 @@ msgstr "" msgid "Click on a channel to add or remove." msgstr "" +#: ../../mod/home.php:48 +msgid "Red Matrix - "The Network"" +msgstr "" + +#: ../../mod/home.php:100 +#, php-format +msgid "Welcome to %s" +msgstr "" + #: ../../mod/suggest.php:35 msgid "" "No suggestions available. If this is a new site, please try again in 24 " @@ -7418,68 +7292,110 @@ msgstr "" msgid "Edit Profile Field" msgstr "" -#: ../../mod/item.php:159 -msgid "Unable to locate original post." +#: ../../mod/locs.php:19 ../../mod/locs.php:46 +msgid "Location not found." msgstr "" -#: ../../mod/item.php:418 -msgid "Empty post discarded." +#: ../../mod/locs.php:50 +msgid "Primary location cannot be removed." msgstr "" -#: ../../mod/item.php:460 -msgid "Executable content type not permitted to this channel." +#: ../../mod/locs.php:82 +msgid "No locations found." msgstr "" -#: ../../mod/item.php:898 -msgid "System error. Post not saved." +#: ../../mod/locs.php:95 +msgid "Manage Channel Locations" msgstr "" -#: ../../mod/item.php:1373 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." +#: ../../mod/locs.php:96 +msgid "Location (address)" msgstr "" -#: ../../mod/item.php:1379 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." +#: ../../mod/locs.php:97 +msgid "Primary Location" msgstr "" -#: ../../mod/like.php:15 -msgid "Like/Dislike" +#: ../../mod/locs.php:98 +msgid "Drop location" msgstr "" -#: ../../mod/like.php:20 -msgid "This action is restricted to members." +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." msgstr "" -#: ../../mod/like.php:21 +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "" + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "" + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "" + +#: ../../mod/mail.php:136 +msgid "Message deleted." +msgstr "" + +#: ../../mod/mail.php:153 +msgid "Message recalled." +msgstr "" + +#: ../../mod/mail.php:222 +msgid "Send Private Message" +msgstr "" + +#: ../../mod/mail.php:223 ../../mod/mail.php:340 +msgid "To:" +msgstr "" + +#: ../../mod/mail.php:228 ../../mod/mail.php:342 +msgid "Subject:" +msgstr "" + +#: ../../mod/mail.php:232 ../../mod/mail.php:345 ../../mod/invite.php:131 +msgid "Your message:" +msgstr "" + +#: ../../mod/mail.php:239 +msgid "Send" +msgstr "" + +#: ../../mod/mail.php:266 +msgid "Message not found." +msgstr "" + +#: ../../mod/mail.php:309 +msgid "Delete message" +msgstr "" + +#: ../../mod/mail.php:310 +msgid "Recall message" +msgstr "" + +#: ../../mod/mail.php:312 +msgid "Message has been recalled." +msgstr "" + +#: ../../mod/mail.php:329 +msgid "Private Conversation" +msgstr "" + +#: ../../mod/mail.php:333 ../../mod/message.php:72 +msgid "Delete conversation" +msgstr "" + +#: ../../mod/mail.php:335 msgid "" -"Please login with your RedMatrix ID or register as a new RedMatrix member to continue." +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "" - -#: ../../mod/like.php:119 -msgid "thing" -msgstr "" - -#: ../../mod/like.php:165 -msgid "Channel unavailable." -msgstr "" - -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "" - -#: ../../mod/like.php:430 -msgid "Action completed." -msgstr "" - -#: ../../mod/like.php:431 -msgid "Thank you." +#: ../../mod/mail.php:339 +msgid "Send Reply" msgstr "" #: ../../mod/invite.php:25 @@ -7523,10 +7439,6 @@ msgstr "" msgid "Enter email addresses, one per line:" msgstr "" -#: ../../mod/invite.php:131 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Your message:" -msgstr "" - #: ../../mod/invite.php:132 msgid "Please join my community on RedMatrix." msgstr "" @@ -7551,36 +7463,34 @@ msgstr "" msgid "3. Click [Connect]" msgstr "" -#: ../../mod/locs.php:19 ../../mod/locs.php:46 -msgid "Location not found." +#: ../../mod/manage.php:136 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../mod/locs.php:50 -msgid "Primary location cannot be removed." +#: ../../mod/manage.php:144 +msgid "Create a new channel" msgstr "" -#: ../../mod/locs.php:82 -msgid "No locations found." +#: ../../mod/manage.php:149 +msgid "Current Channel" msgstr "" -#: ../../mod/locs.php:95 -msgid "Manage Channel Locations" +#: ../../mod/manage.php:151 +msgid "Attach to one of your channels by selecting it." msgstr "" -#: ../../mod/locs.php:96 -msgid "Location (address)" +#: ../../mod/manage.php:152 +msgid "Default Channel" msgstr "" -#: ../../mod/locs.php:97 -msgid "Primary Location" -msgstr "" - -#: ../../mod/locs.php:98 -msgid "Drop location" +#: ../../mod/manage.php:153 +msgid "Make Default" msgstr "" #: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 #: ../../mod/update_network.php:23 ../../mod/update_search.php:46 +#: ../../mod/update_home.php:21 msgid "[Embedded content - reload page to view]" msgstr "" @@ -7625,81 +7535,31 @@ msgstr "" msgid "Average Rating" msgstr "" -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." +#: ../../mod/network.php:81 +msgid "No such group" msgstr "" -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." +#: ../../mod/network.php:119 +msgid "Search Results For:" msgstr "" -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." +#: ../../mod/network.php:173 +msgid "Collection is empty" msgstr "" -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." +#: ../../mod/network.php:181 +msgid "Collection: " msgstr "" -#: ../../mod/mail.php:135 -msgid "Message deleted." +#: ../../mod/network.php:194 +msgid "Connection: " msgstr "" -#: ../../mod/mail.php:152 -msgid "Message recalled." +#: ../../mod/network.php:197 +msgid "Invalid connection." msgstr "" -#: ../../mod/mail.php:218 -msgid "Send Private Message" -msgstr "" - -#: ../../mod/mail.php:219 ../../mod/mail.php:336 -msgid "To:" -msgstr "" - -#: ../../mod/mail.php:224 ../../mod/mail.php:338 -msgid "Subject:" -msgstr "" - -#: ../../mod/mail.php:235 -msgid "Send" -msgstr "" - -#: ../../mod/mail.php:262 -msgid "Message not found." -msgstr "" - -#: ../../mod/mail.php:305 -msgid "Delete message" -msgstr "" - -#: ../../mod/mail.php:306 -msgid "Recall message" -msgstr "" - -#: ../../mod/mail.php:308 -msgid "Message has been recalled." -msgstr "" - -#: ../../mod/mail.php:325 -msgid "Private Conversation" -msgstr "" - -#: ../../mod/mail.php:329 ../../mod/message.php:72 -msgid "Delete conversation" -msgstr "" - -#: ../../mod/mail.php:331 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../mod/mail.php:335 -msgid "Send Reply" -msgstr "" - -#: ../../mod/wall_upload.php:34 +#: ../../mod/wall_upload.php:35 msgid "Wall Photos" msgstr "" @@ -7862,15 +7722,6 @@ msgid "" "and privacy requirements so we can select the best permissions for you" msgstr "" -#: ../../mod/home.php:46 -msgid "Red Matrix - "The Network"" -msgstr "" - -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "" - #: ../../mod/notifications.php:26 msgid "Invalid request identifier." msgstr "" @@ -7895,6 +7746,10 @@ msgstr "" msgid "Lookup xchan beginning with (or webbie): " msgstr "" +#: ../../mod/zfinger.php:23 +msgid "invalid target signature" +msgstr "" + #: ../../mod/oexchange.php:23 msgid "Unable to find your hub." msgstr "" @@ -7903,8 +7758,195 @@ msgstr "" msgid "Post successful." msgstr "" -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" +#: ../../mod/directory.php:161 +msgid "Gender: " +msgstr "" + +#: ../../mod/directory.php:163 +msgid "Status: " +msgstr "" + +#: ../../mod/directory.php:165 +msgid "Homepage: " +msgstr "" + +#: ../../mod/directory.php:168 +msgid "Hometown: " +msgstr "" + +#: ../../mod/directory.php:170 +msgid "About: " +msgstr "" + +#: ../../mod/directory.php:225 +msgid "Public Forum:" +msgstr "" + +#: ../../mod/directory.php:228 +msgid "Keywords: " +msgstr "" + +#: ../../mod/directory.php:268 +msgid "Finding:" +msgstr "" + +#: ../../mod/directory.php:273 +msgid "next page" +msgstr "" + +#: ../../mod/directory.php:273 +msgid "previous page" +msgstr "" + +#: ../../mod/directory.php:290 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: ../../mod/photos.php:77 +msgid "Page owner information could not be retrieved." +msgstr "" + +#: ../../mod/photos.php:97 +msgid "Album not found." +msgstr "" + +#: ../../mod/photos.php:119 ../../mod/photos.php:672 +msgid "Delete Album" +msgstr "" + +#: ../../mod/photos.php:159 ../../mod/photos.php:958 +msgid "Delete Photo" +msgstr "" + +#: ../../mod/photos.php:469 +msgid "No photos selected" +msgstr "" + +#: ../../mod/photos.php:513 +msgid "Access to this item is restricted." +msgstr "" + +#: ../../mod/photos.php:552 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "" + +#: ../../mod/photos.php:555 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "" + +#: ../../mod/photos.php:579 +msgid "Upload Photos" +msgstr "" + +#: ../../mod/photos.php:583 ../../mod/photos.php:665 ../../mod/photos.php:943 +msgid "Enter a new album name" +msgstr "" + +#: ../../mod/photos.php:584 ../../mod/photos.php:666 ../../mod/photos.php:944 +msgid "or select an existing one (doubleclick)" +msgstr "" + +#: ../../mod/photos.php:585 +msgid "Do not show a status post for this upload" +msgstr "" + +#: ../../mod/photos.php:613 +msgid "Album name could not be decoded" +msgstr "" + +#: ../../mod/photos.php:654 ../../mod/photos.php:1167 +#: ../../mod/photos.php:1183 +msgid "Contact Photos" +msgstr "" + +#: ../../mod/photos.php:678 +msgid "Show Newest First" +msgstr "" + +#: ../../mod/photos.php:680 +msgid "Show Oldest First" +msgstr "" + +#: ../../mod/photos.php:707 ../../mod/photos.php:1215 +msgid "View Photo" +msgstr "" + +#: ../../mod/photos.php:736 +msgid "Edit Album" +msgstr "" + +#: ../../mod/photos.php:781 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: ../../mod/photos.php:783 +msgid "Photo not available" +msgstr "" + +#: ../../mod/photos.php:841 +msgid "Use as profile photo" +msgstr "" + +#: ../../mod/photos.php:848 +msgid "Private Photo" +msgstr "" + +#: ../../mod/photos.php:863 +msgid "View Full Size" +msgstr "" + +#: ../../mod/photos.php:937 +msgid "Edit photo" +msgstr "" + +#: ../../mod/photos.php:939 +msgid "Rotate CW (right)" +msgstr "" + +#: ../../mod/photos.php:940 +msgid "Rotate CCW (left)" +msgstr "" + +#: ../../mod/photos.php:947 +msgid "Caption" +msgstr "" + +#: ../../mod/photos.php:949 +msgid "Add a Tag" +msgstr "" + +#: ../../mod/photos.php:953 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "" + +#: ../../mod/photos.php:956 +msgid "Flag as adult in album view" +msgstr "" + +#: ../../mod/photos.php:1133 +msgid "In This Photo:" +msgstr "" + +#: ../../mod/photos.php:1221 +msgid "View Album" +msgstr "" + +#: ../../mod/photos.php:1244 +msgid "Recent Photos" +msgstr "" + +#: ../../mod/ping.php:265 +msgid "sent you a private message" +msgstr "" + +#: ../../mod/ping.php:316 +msgid "added your channel" +msgstr "" + +#: ../../mod/ping.php:357 +msgid "posted an event" msgstr "" #: ../../mod/appman.php:28 ../../mod/appman.php:44 @@ -8009,8 +8051,6 @@ msgid "Monospace" msgstr "" #: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/blogga/php/config.php:69 -#: ../../view/theme/blogga/view/theme/blog/config.php:69 #: ../../view/theme/redbasic/php/config.php:102 msgid "Theme settings" msgstr "" @@ -8141,21 +8181,6 @@ msgstr "" msgid "Right offset of the aside element" msgstr "" -#: ../../view/theme/blogga/php/config.php:47 -#: ../../view/theme/blogga/view/theme/blog/config.php:47 -msgid "None" -msgstr "" - -#: ../../view/theme/blogga/php/config.php:70 -#: ../../view/theme/blogga/view/theme/blog/config.php:70 -msgid "Header image" -msgstr "" - -#: ../../view/theme/blogga/php/config.php:71 -#: ../../view/theme/blogga/view/theme/blog/config.php:71 -msgid "Header image only on profile pages" -msgstr "" - #: ../../view/theme/redbasic/php/config.php:84 msgid "Light (Red Matrix default)" msgstr "" @@ -8280,41 +8305,41 @@ msgstr "" msgid "Are you a clean desk or a messy desk person?" msgstr "" -#: ../../boot.php:1293 +#: ../../boot.php:1294 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1296 +#: ../../boot.php:1297 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1463 +#: ../../boot.php:1464 msgid "" "Create an account to access services and applications within the Red Matrix" msgstr "" -#: ../../boot.php:1489 +#: ../../boot.php:1490 msgid "Password" msgstr "" -#: ../../boot.php:1490 +#: ../../boot.php:1491 msgid "Remember me" msgstr "" -#: ../../boot.php:1493 +#: ../../boot.php:1494 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:1567 +#: ../../boot.php:1568 msgid "permission denied" msgstr "" -#: ../../boot.php:1568 +#: ../../boot.php:1569 msgid "Got Zot?" msgstr "" -#: ../../boot.php:2030 +#: ../../boot.php:2031 msgid "toggle mobile" msgstr "" diff --git a/version.inc b/version.inc index dceda9119..eba09b708 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-11-20.865 +2014-11-22.867