From 5e4f45c03a48ae5d7cb5d98add40cf1c6a2cecd1 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 23 Jan 2014 14:35:59 -0800 Subject: mod_profperm migrated --- mod/profperm.php | 63 +- util/messages.po | 1920 +++++++++++++++++++++++++------------------------- util/run_xgettext.sh | 7 +- version.inc | 2 +- 4 files changed, 1000 insertions(+), 992 deletions(-) diff --git a/mod/profperm.php b/mod/profperm.php index b31dfc128..08838831b 100644 --- a/mod/profperm.php +++ b/mod/profperm.php @@ -1,11 +1,15 @@ user['nickname']; + $channel = $a->get_channel(); + $which = $channel['channel_address']; + $profile = $a->argv[1]; profile_load($a,$which,$profile); @@ -21,7 +25,7 @@ function profperm_content(&$a) { } - if($a->argc < 2) { + if(argc() < 2) { notice( t('Invalid profile identifier.') . EOL ); return; } @@ -35,59 +39,59 @@ function profperm_content(&$a) { $switchtotext = 400; - if(($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) { - $r = q("SELECT `id` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `self` = 0 - AND `network` = 'dfrn' AND `id` = %d AND `uid` = %d LIMIT 1", - intval($a->argv[2]), + if((argc() > 2) && intval(argv(1)) && intval(argv(2))) { + $r = q("SELECT abook_id FROM abook WHERE abook_id = %d and abook_channel = %d limit 1", + intval(argv(2)), intval(local_user()) ); - if(count($r)) - $change = intval($a->argv[2]); + if($r) + $change = intval(argv(2)); } - if(($a->argc > 1) && (intval($a->argv[1]))) { + if((argc() > 1) && (intval(argv(1)))) { $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d AND `is_default` = 0 LIMIT 1", - intval($a->argv[1]), + intval(argv(1)), intval(local_user()) ); - if(! count($r)) { + if(! $r) { notice( t('Invalid profile identifier.') . EOL ); return; } + $profile = $r[0]; - $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `profile_id` = %d", + $r = q("SELECT * FROM abook left join xchan on abook_xchan = xchan_hash WHERE abook_channel = %d AND abook_profile = %d", intval(local_user()), - intval($a->argv[1]) + intval(argv(1)) ); $ingroup = array(); - if(count($r)) + if($r) foreach($r as $member) - $ingroup[] = $member['id']; + $ingroup[] = $member['abook_id']; $members = $r; if($change) { if(in_array($change,$ingroup)) { - q("UPDATE `contact` SET `profile_id` = 0 WHERE `id` = %d AND `uid` = %d LIMIT 1", + q("UPDATE abook SET abook_profile = 0 WHERE abook_id = %d AND abook_channel = %d LIMIT 1", intval($change), intval(local_user()) ); } else { - q("UPDATE `contact` SET `profile_id` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1", - intval($a->argv[1]), + q("UPDATE abook SET abook_profile = %d WHERE abook_id = %d AND abook_channel = %d LIMIT 1", + intval(argv(1)), intval($change), intval(local_user()) ); } - $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `profile_id` = %d", + $r = q("SELECT * FROM abook left join xchan on abook_xchan = xchan_hash WHERE abook_channel = %d AND abook_profile = %d", intval(local_user()), - intval($a->argv[1]) + intval(argv(1)) ); $members = $r; @@ -95,7 +99,7 @@ function profperm_content(&$a) { $ingroup = array(); if(count($r)) foreach($r as $member) - $ingroup[] = $member['id']; + $ingroup[] = $member['abook_id']; } $o .= '

' . t('Profile Visibility Editor') . '

'; @@ -118,8 +122,8 @@ function profperm_content(&$a) { $textmode = (($switchtotext && (count($members) > $switchtotext)) ? true : false); foreach($members as $member) { - if($member['url']) { - $member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['id'] . '); return true;'; + if($member['xchan_url']) { + $member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['abook_id'] . '); return false;'; $o .= micropro($member,true,'mpprof', $textmode); } } @@ -127,20 +131,17 @@ function profperm_content(&$a) { $o .= '
'; $o .= '
'; - $o .= '

' . t("All Contacts \x28with secure profile access\x29") . '

'; + $o .= '

' . t("All Connections") . '

'; $o .= '
'; $o .= '
'; - $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 and `pending` = 0 and `self` = 0 - AND `network` = 'dfrn' ORDER BY `name` ASC", - intval(local_user()) - ); + $r = abook_connections(local_user()); - if(count($r)) { + if($r) { $textmode = (($switchtotext && (count($r) > $switchtotext)) ? true : false); foreach($r as $member) { - if(! in_array($member['id'],$ingroup)) { - $member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['id'] . '); return true;'; + if(! in_array($member['abook_id'],$ingroup)) { + $member['click'] = 'profChangeMember(' . $profile['id'] . ',' . $member['abook_id'] . '); return false;'; $o .= micropro($member,true,'mpprof',$textmode); } } diff --git a/util/messages.po b/util/messages.po index 0c3f38257..1bb13af74 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2014-01-21.564\n" +"Project-Id-Version: 2014-01-23.566\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-01-21 16:53-0800\n" +"POT-Creation-Date: 2014-01-23 02:30-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -89,7 +89,7 @@ msgstr "" msgid "Manage/Edit Profiles" msgstr "" -#: ../../include/nav.php:79 ../../include/conversation.php:1462 +#: ../../include/nav.php:79 ../../include/conversation.php:1473 #: ../../mod/fbrowser.php:25 msgid "Photos" msgstr "" @@ -152,7 +152,7 @@ msgstr "" msgid "Search site content" msgstr "" -#: ../../include/nav.php:138 ../../mod/directory.php:209 +#: ../../include/nav.php:138 ../../mod/directory.php:210 msgid "Directory" msgstr "" @@ -236,7 +236,7 @@ msgstr "" msgid "New Message" msgstr "" -#: ../../include/nav.php:171 ../../include/conversation.php:1482 +#: ../../include/nav.php:171 ../../include/conversation.php:1491 #: ../../mod/events.php:354 msgid "Events" msgstr "" @@ -296,8 +296,8 @@ msgstr "" #: ../../include/Contact.php:104 ../../include/identity.php:625 #: ../../include/widgets.php:115 ../../include/widgets.php:155 -#: ../../mod/directory.php:182 ../../mod/match.php:62 ../../mod/suggest.php:51 -#: ../../mod/dirprofile.php:165 +#: ../../mod/directory.php:183 ../../mod/match.php:62 ../../mod/suggest.php:51 +#: ../../mod/dirprofile.php:166 msgid "Connect" msgstr "" @@ -826,45 +826,6 @@ msgstr "" msgid "Pages" msgstr "" -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "" - -#: ../../include/group.php:223 -msgid "Default privacy group for new contacts" -msgstr "" - -#: ../../include/group.php:242 ../../mod/admin.php:700 -msgid "All Channels" -msgstr "" - -#: ../../include/group.php:264 -msgid "edit" -msgstr "" - -#: ../../include/group.php:285 -msgid "Collections" -msgstr "" - -#: ../../include/group.php:286 -msgid "Edit collection" -msgstr "" - -#: ../../include/group.php:287 -msgid "Create a new collection" -msgstr "" - -#: ../../include/group.php:288 -msgid "Channels not in any collection" -msgstr "" - -#: ../../include/group.php:290 ../../include/widgets.php:253 -msgid "add" -msgstr "" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "" @@ -1239,7 +1200,7 @@ msgstr "" msgid "School/education:" msgstr "" -#: ../../include/reddav.php:1012 +#: ../../include/reddav.php:1018 msgid "Edit File properties" msgstr "" @@ -1500,1608 +1461,1647 @@ msgstr "" msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/conversation.php:123 -msgid "channel" +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." msgstr "" -#: ../../include/conversation.php:161 ../../mod/like.php:134 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../include/group.php:223 +msgid "Default privacy group for new contacts" msgstr "" -#: ../../include/conversation.php:164 ../../mod/like.php:136 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../include/group.php:242 ../../mod/admin.php:700 +msgid "All Channels" msgstr "" -#: ../../include/conversation.php:201 -#, php-format -msgid "%1$s is now connected with %2$s" +#: ../../include/group.php:264 +msgid "edit" msgstr "" -#: ../../include/conversation.php:236 -#, php-format -msgid "%1$s poked %2$s" +#: ../../include/group.php:285 +msgid "Collections" msgstr "" -#: ../../include/conversation.php:258 ../../mod/mood.php:63 -#, php-format -msgid "%1$s is currently %2$s" +#: ../../include/group.php:286 +msgid "Edit collection" msgstr "" -#: ../../include/conversation.php:631 ../../include/ItemObject.php:114 -msgid "Select" +#: ../../include/group.php:287 +msgid "Create a new collection" msgstr "" -#: ../../include/conversation.php:632 ../../include/ItemObject.php:108 -#: ../../mod/thing.php:230 ../../mod/connedit.php:356 ../../mod/admin.php:695 -#: ../../mod/group.php:176 ../../mod/photos.php:1019 -#: ../../mod/filestorage.php:172 ../../mod/settings.php:570 -msgid "Delete" +#: ../../include/group.php:288 +msgid "Channels not in any collection" msgstr "" -#: ../../include/conversation.php:642 ../../include/ItemObject.php:161 -msgid "Message is verified" +#: ../../include/group.php:290 ../../include/widgets.php:253 +msgid "add" msgstr "" -#: ../../include/conversation.php:662 -#, php-format -msgid "View %s's profile @ %s" +#: ../../include/notify.php:23 +msgid "created a new post" msgstr "" -#: ../../include/conversation.php:676 -msgid "Categories:" +#: ../../include/notify.php:24 +#, php-format +msgid "commented on %s's post" msgstr "" -#: ../../include/conversation.php:677 -msgid "Filed under:" +#: ../../include/photos.php:15 ../../include/attach.php:97 +#: ../../include/attach.php:128 ../../include/attach.php:184 +#: ../../include/attach.php:199 ../../include/attach.php:232 +#: ../../include/attach.php:246 ../../include/attach.php:267 +#: ../../include/attach.php:462 ../../include/attach.php:540 +#: ../../include/items.php:3454 ../../mod/common.php:35 +#: ../../mod/events.php:140 ../../mod/thing.php:241 ../../mod/thing.php:257 +#: ../../mod/thing.php:291 ../../mod/invite.php:13 ../../mod/invite.php:104 +#: ../../mod/connedit.php:179 ../../mod/webpages.php:40 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/page.php:30 ../../mod/page.php:80 +#: ../../mod/setup.php:200 ../../mod/viewconnections.php:22 +#: ../../mod/viewconnections.php:27 ../../mod/delegate.php:6 +#: ../../mod/sources.php:62 ../../mod/mitem.php:73 ../../mod/group.php:9 +#: ../../mod/photos.php:68 ../../mod/photos.php:522 ../../mod/viewsrc.php:12 +#: ../../mod/menu.php:40 ../../mod/connections.php:167 +#: ../../mod/layouts.php:27 ../../mod/layouts.php:42 ../../mod/network.php:12 +#: ../../mod/profiles.php:152 ../../mod/profiles.php:465 +#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 +#: ../../mod/achievements.php:27 ../../mod/filestorage.php:10 +#: ../../mod/filestorage.php:59 ../../mod/filestorage.php:76 +#: ../../mod/filestorage.php:99 ../../mod/manage.php:6 +#: ../../mod/settings.php:484 ../../mod/mail.php:108 +#: ../../mod/editlayout.php:48 ../../mod/profile_photo.php:187 +#: ../../mod/profile_photo.php:200 ../../mod/editpost.php:13 +#: ../../mod/notifications.php:66 ../../mod/blocks.php:29 +#: ../../mod/blocks.php:44 ../../mod/editwebpage.php:44 +#: ../../mod/editwebpage.php:83 ../../mod/poke.php:128 +#: ../../mod/channel.php:88 ../../mod/channel.php:188 +#: ../../mod/channel.php:231 ../../mod/fsuggest.php:78 +#: ../../mod/editblock.php:48 ../../mod/suggest.php:26 +#: ../../mod/message.php:16 ../../mod/register.php:68 ../../mod/regmod.php:18 +#: ../../mod/authtest.php:13 ../../mod/item.php:182 ../../mod/item.php:190 +#: ../../mod/mood.php:119 ../../index.php:176 ../../index.php:348 +msgid "Permission denied." msgstr "" -#: ../../include/conversation.php:686 ../../include/ItemObject.php:217 +#: ../../include/photos.php:89 #, php-format -msgid " from %s" +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/conversation.php:689 ../../include/ItemObject.php:220 -#, php-format -msgid "last edited: %s" +#: ../../include/photos.php:96 +msgid "Image file is empty." msgstr "" -#: ../../include/conversation.php:704 -msgid "View in context" +#: ../../include/photos.php:123 ../../mod/profile_photo.php:147 +msgid "Unable to process image" msgstr "" -#: ../../include/conversation.php:706 ../../include/conversation.php:1119 -#: ../../include/ItemObject.php:248 ../../mod/photos.php:950 -#: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:115 -#: ../../mod/editpost.php:107 ../../mod/editwebpage.php:153 -#: ../../mod/editblock.php:129 -msgid "Please wait" +#: ../../include/photos.php:185 +msgid "Photo storage failed." msgstr "" -#: ../../include/conversation.php:833 -msgid "remove" +#: ../../include/photos.php:302 ../../include/conversation.php:1476 +msgid "Photo Albums" msgstr "" -#: ../../include/conversation.php:837 -msgid "Loading..." +#: ../../include/photos.php:306 ../../mod/photos.php:690 +#: ../../mod/photos.php:1165 +msgid "Upload New Photos" msgstr "" -#: ../../include/conversation.php:838 -msgid "Delete Selected Items" +#: ../../include/profile_selectors.php:6 +msgid "Male" msgstr "" -#: ../../include/conversation.php:929 -msgid "View Source" +#: ../../include/profile_selectors.php:6 +msgid "Female" msgstr "" -#: ../../include/conversation.php:930 -msgid "Follow Thread" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" msgstr "" -#: ../../include/conversation.php:931 -msgid "View Status" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" msgstr "" -#: ../../include/conversation.php:933 -msgid "View Photos" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" msgstr "" -#: ../../include/conversation.php:934 -msgid "Matrix Activity" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" msgstr "" -#: ../../include/conversation.php:935 -msgid "Edit Contact" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" msgstr "" -#: ../../include/conversation.php:936 -msgid "Send PM" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" msgstr "" -#: ../../include/conversation.php:937 -msgid "Poke" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" msgstr "" -#: ../../include/conversation.php:999 -#, php-format -msgid "%s likes this." +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" msgstr "" -#: ../../include/conversation.php:999 -#, php-format -msgid "%s doesn't like this." +#: ../../include/profile_selectors.php:6 +msgid "Neuter" msgstr "" -#: ../../include/conversation.php:1003 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1005 -#, 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:1011 -msgid "and" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" msgstr "" -#: ../../include/conversation.php:1014 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "" -#: ../../include/conversation.php:1015 -#, php-format -msgid "%s like this." +#: ../../include/profile_selectors.php:6 +msgid "Undecided" msgstr "" -#: ../../include/conversation.php:1015 -#, php-format -msgid "%s don't like this." +#: ../../include/profile_selectors.php:23 +msgid "Males" msgstr "" -#: ../../include/conversation.php:1065 -msgid "Visible to everybody" +#: ../../include/profile_selectors.php:23 +msgid "Females" msgstr "" -#: ../../include/conversation.php:1066 ../../mod/mail.php:171 -#: ../../mod/mail.php:269 -msgid "Please enter a link URL:" +#: ../../include/profile_selectors.php:23 +msgid "Gay" msgstr "" -#: ../../include/conversation.php:1067 -msgid "Please enter a video link/URL:" +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" msgstr "" -#: ../../include/conversation.php:1068 -msgid "Please enter an audio link/URL:" +#: ../../include/profile_selectors.php:23 +msgid "No Preference" msgstr "" -#: ../../include/conversation.php:1069 -msgid "Tag term:" +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" msgstr "" -#: ../../include/conversation.php:1070 ../../mod/filer.php:35 -msgid "Save to Folder:" +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" msgstr "" -#: ../../include/conversation.php:1071 -msgid "Where are you right now?" +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" msgstr "" -#: ../../include/conversation.php:1072 ../../mod/mail.php:172 -#: ../../mod/mail.php:270 ../../mod/editpost.php:52 -msgid "Expires YYYY-MM-DD HH:MM" +#: ../../include/profile_selectors.php:23 +msgid "Virgin" msgstr "" -#: ../../include/conversation.php:1082 ../../include/ItemObject.php:546 -#: ../../mod/webpages.php:122 ../../mod/photos.php:970 -#: ../../mod/editlayout.php:136 ../../mod/editpost.php:127 -#: ../../mod/editwebpage.php:177 ../../mod/editblock.php:151 -msgid "Preview" +#: ../../include/profile_selectors.php:23 +msgid "Deviant" msgstr "" -#: ../../include/conversation.php:1096 ../../mod/photos.php:949 -msgid "Share" +#: ../../include/profile_selectors.php:23 +msgid "Fetish" msgstr "" -#: ../../include/conversation.php:1098 ../../mod/editwebpage.php:140 -msgid "Page link title" +#: ../../include/profile_selectors.php:23 +msgid "Oodles" msgstr "" -#: ../../include/conversation.php:1100 ../../mod/mail.php:219 -#: ../../mod/mail.php:332 ../../mod/editlayout.php:107 -#: ../../mod/editpost.php:99 ../../mod/editwebpage.php:145 -#: ../../mod/editblock.php:121 -msgid "Upload photo" +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" msgstr "" -#: ../../include/conversation.php:1101 -msgid "upload photo" +#: ../../include/profile_selectors.php:42 +msgid "Single" msgstr "" -#: ../../include/conversation.php:1102 ../../mod/mail.php:220 -#: ../../mod/mail.php:333 ../../mod/editlayout.php:108 -#: ../../mod/editpost.php:100 ../../mod/editwebpage.php:146 -#: ../../mod/editblock.php:122 -msgid "Attach file" +#: ../../include/profile_selectors.php:42 +msgid "Lonely" msgstr "" -#: ../../include/conversation.php:1103 -msgid "attach file" +#: ../../include/profile_selectors.php:42 +msgid "Available" msgstr "" -#: ../../include/conversation.php:1104 ../../mod/mail.php:221 -#: ../../mod/mail.php:334 ../../mod/editlayout.php:109 -#: ../../mod/editpost.php:101 ../../mod/editwebpage.php:147 -#: ../../mod/editblock.php:123 -msgid "Insert web link" +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" msgstr "" -#: ../../include/conversation.php:1105 -msgid "web link" +#: ../../include/profile_selectors.php:42 +msgid "Has crush" msgstr "" -#: ../../include/conversation.php:1106 -msgid "Insert video link" +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" msgstr "" -#: ../../include/conversation.php:1107 -msgid "video link" +#: ../../include/profile_selectors.php:42 +msgid "Dating" msgstr "" -#: ../../include/conversation.php:1108 -msgid "Insert audio link" +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" msgstr "" -#: ../../include/conversation.php:1109 -msgid "audio link" +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" msgstr "" -#: ../../include/conversation.php:1110 ../../mod/editlayout.php:113 -#: ../../mod/editpost.php:105 ../../mod/editwebpage.php:151 -#: ../../mod/editblock.php:127 -msgid "Set your location" +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" msgstr "" -#: ../../include/conversation.php:1111 -msgid "set location" +#: ../../include/profile_selectors.php:42 +msgid "Casual" msgstr "" -#: ../../include/conversation.php:1112 ../../mod/editlayout.php:114 -#: ../../mod/editpost.php:106 ../../mod/editwebpage.php:152 -#: ../../mod/editblock.php:128 -msgid "Clear browser location" +#: ../../include/profile_selectors.php:42 +msgid "Engaged" msgstr "" -#: ../../include/conversation.php:1113 -msgid "clear location" +#: ../../include/profile_selectors.php:42 +msgid "Married" msgstr "" -#: ../../include/conversation.php:1115 ../../mod/editlayout.php:127 -#: ../../mod/editpost.php:119 ../../mod/editwebpage.php:169 -#: ../../mod/editblock.php:142 -msgid "Set title" +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" msgstr "" -#: ../../include/conversation.php:1118 ../../mod/editlayout.php:130 -#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:171 -#: ../../mod/editblock.php:145 -msgid "Categories (comma-separated list)" +#: ../../include/profile_selectors.php:42 +msgid "Partners" msgstr "" -#: ../../include/conversation.php:1120 ../../mod/editlayout.php:116 -#: ../../mod/editpost.php:108 ../../mod/editwebpage.php:154 -#: ../../mod/editblock.php:130 -msgid "Permission settings" +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" msgstr "" -#: ../../include/conversation.php:1121 -msgid "permissions" +#: ../../include/profile_selectors.php:42 +msgid "Common law" msgstr "" -#: ../../include/conversation.php:1129 ../../mod/editlayout.php:124 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:164 -#: ../../mod/editblock.php:139 -msgid "Public post" +#: ../../include/profile_selectors.php:42 +msgid "Happy" msgstr "" -#: ../../include/conversation.php:1131 ../../mod/editlayout.php:131 -#: ../../mod/editpost.php:122 ../../mod/editwebpage.php:172 -#: ../../mod/editblock.php:146 -msgid "Example: bob@example.com, mary@example.com" +#: ../../include/profile_selectors.php:42 +msgid "Not looking" msgstr "" -#: ../../include/conversation.php:1144 ../../mod/mail.php:226 -#: ../../mod/mail.php:339 ../../mod/editlayout.php:141 -#: ../../mod/editpost.php:133 ../../mod/editwebpage.php:182 -#: ../../mod/editblock.php:156 -msgid "Set expiration date" +#: ../../include/profile_selectors.php:42 +msgid "Swinger" msgstr "" -#: ../../include/conversation.php:1146 ../../include/ItemObject.php:549 -#: ../../mod/mail.php:228 ../../mod/mail.php:341 ../../mod/editpost.php:135 -msgid "Encrypt text" +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" msgstr "" -#: ../../include/conversation.php:1148 ../../mod/editpost.php:136 -msgid "OK" +#: ../../include/profile_selectors.php:42 +msgid "Separated" msgstr "" -#: ../../include/conversation.php:1149 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../mod/settings.php:508 -#: ../../mod/settings.php:534 ../../mod/editpost.php:137 -#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 -msgid "Cancel" +#: ../../include/profile_selectors.php:42 +msgid "Unstable" msgstr "" -#: ../../include/conversation.php:1376 -msgid "Commented Order" +#: ../../include/profile_selectors.php:42 +msgid "Divorced" msgstr "" -#: ../../include/conversation.php:1379 -msgid "Sort by Comment Date" +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" msgstr "" -#: ../../include/conversation.php:1382 -msgid "Posted Order" +#: ../../include/profile_selectors.php:42 +msgid "Widowed" msgstr "" -#: ../../include/conversation.php:1385 -msgid "Sort by Post Date" +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" msgstr "" -#: ../../include/conversation.php:1389 -msgid "Personal" +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" msgstr "" -#: ../../include/conversation.php:1392 -msgid "Posts that mention or involve you" +#: ../../include/profile_selectors.php:42 +msgid "Don't care" msgstr "" -#: ../../include/conversation.php:1395 ../../mod/menu.php:57 -#: ../../mod/connections.php:209 -msgid "New" +#: ../../include/profile_selectors.php:42 +msgid "Ask me" msgstr "" -#: ../../include/conversation.php:1398 -msgid "Activity Stream - by date" +#: ../../include/attach.php:179 ../../include/attach.php:227 +msgid "Item was not found." msgstr "" -#: ../../include/conversation.php:1405 -msgid "Starred" +#: ../../include/attach.php:280 +msgid "No source file." msgstr "" -#: ../../include/conversation.php:1408 -msgid "Favourite Posts" +#: ../../include/attach.php:297 +msgid "Cannot locate file to replace" msgstr "" -#: ../../include/conversation.php:1415 -msgid "Spam" +#: ../../include/attach.php:315 +msgid "Cannot locate file to revise/update" msgstr "" -#: ../../include/conversation.php:1418 -msgid "Posts flagged as SPAM" +#: ../../include/attach.php:326 +#, php-format +msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/conversation.php:1448 -msgid "Channel" +#: ../../include/attach.php:338 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/conversation.php:1451 -msgid "Status Messages and Posts" +#: ../../include/attach.php:422 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/conversation.php:1455 -msgid "About" +#: ../../include/attach.php:434 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/conversation.php:1458 -msgid "Profile Details" +#: ../../include/attach.php:478 ../../include/attach.php:495 +msgid "Path not available." msgstr "" -#: ../../include/conversation.php:1465 ../../include/photos.php:297 -msgid "Photo Albums" +#: ../../include/attach.php:545 +msgid "Empty pathname" msgstr "" -#: ../../include/conversation.php:1470 ../../mod/fbrowser.php:114 -msgid "Files" +#: ../../include/attach.php:563 +msgid "duplicate filename or path" msgstr "" -#: ../../include/conversation.php:1473 -msgid "Files and Storage" +#: ../../include/attach.php:588 +msgid "Path not found." msgstr "" -#: ../../include/conversation.php:1485 -msgid "Events and Calendar" +#: ../../include/attach.php:633 +msgid "mkdir failed." msgstr "" -#: ../../include/conversation.php:1490 -msgid "Webpages" +#: ../../include/attach.php:637 +msgid "database storage failed." msgstr "" -#: ../../include/conversation.php:1493 -msgid "Manage Webpages" +#: ../../include/taxonomy.php:210 +msgid "Tags" msgstr "" -#: ../../include/notify.php:23 -msgid "created a new post" +#: ../../include/taxonomy.php:227 +msgid "Keywords" msgstr "" -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" +#: ../../include/taxonomy.php:252 +msgid "have" msgstr "" -#: ../../include/photos.php:15 ../../include/attach.php:97 -#: ../../include/attach.php:128 ../../include/attach.php:184 -#: ../../include/attach.php:199 ../../include/attach.php:232 -#: ../../include/attach.php:246 ../../include/attach.php:267 -#: ../../include/attach.php:462 ../../include/attach.php:540 -#: ../../include/items.php:3447 ../../mod/common.php:35 -#: ../../mod/events.php:140 ../../mod/thing.php:241 ../../mod/thing.php:257 -#: ../../mod/thing.php:291 ../../mod/invite.php:13 ../../mod/invite.php:104 -#: ../../mod/connedit.php:179 ../../mod/webpages.php:40 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/page.php:30 ../../mod/page.php:80 -#: ../../mod/setup.php:200 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/delegate.php:6 -#: ../../mod/sources.php:62 ../../mod/mitem.php:73 ../../mod/group.php:9 -#: ../../mod/photos.php:68 ../../mod/photos.php:522 ../../mod/viewsrc.php:12 -#: ../../mod/menu.php:40 ../../mod/connections.php:167 -#: ../../mod/layouts.php:27 ../../mod/layouts.php:42 ../../mod/network.php:12 -#: ../../mod/profiles.php:152 ../../mod/profiles.php:465 -#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 -#: ../../mod/achievements.php:27 ../../mod/filestorage.php:10 -#: ../../mod/filestorage.php:59 ../../mod/filestorage.php:76 -#: ../../mod/filestorage.php:99 ../../mod/manage.php:6 -#: ../../mod/settings.php:484 ../../mod/mail.php:108 -#: ../../mod/editlayout.php:48 ../../mod/profile_photo.php:187 -#: ../../mod/profile_photo.php:200 ../../mod/editpost.php:13 -#: ../../mod/notifications.php:66 ../../mod/blocks.php:29 -#: ../../mod/blocks.php:44 ../../mod/editwebpage.php:44 -#: ../../mod/editwebpage.php:83 ../../mod/poke.php:128 -#: ../../mod/channel.php:88 ../../mod/channel.php:188 -#: ../../mod/channel.php:231 ../../mod/fsuggest.php:78 -#: ../../mod/editblock.php:48 ../../mod/suggest.php:26 -#: ../../mod/message.php:16 ../../mod/register.php:68 ../../mod/regmod.php:18 -#: ../../mod/authtest.php:13 ../../mod/item.php:182 ../../mod/item.php:190 -#: ../../mod/mood.php:119 ../../index.php:176 ../../index.php:348 -msgid "Permission denied." +#: ../../include/taxonomy.php:252 +msgid "has" msgstr "" -#: ../../include/photos.php:88 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" +#: ../../include/taxonomy.php:253 +msgid "want" msgstr "" -#: ../../include/photos.php:95 -msgid "Image file is empty." +#: ../../include/taxonomy.php:253 +msgid "wants" msgstr "" -#: ../../include/photos.php:122 ../../mod/profile_photo.php:147 -msgid "Unable to process image" +#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:175 +msgid "like" msgstr "" -#: ../../include/photos.php:184 -msgid "Photo storage failed." +#: ../../include/taxonomy.php:254 +msgid "likes" msgstr "" -#: ../../include/photos.php:301 ../../mod/photos.php:690 -#: ../../mod/photos.php:1165 -msgid "Upload New Photos" +#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:176 +msgid "dislike" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Male" +#: ../../include/taxonomy.php:255 +msgid "dislikes" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Female" +#: ../../include/auth.php:76 +msgid "Logged out." msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" +#: ../../include/auth.php:188 +msgid "Failed authentication" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" +#: ../../include/auth.php:203 +msgid "Login failed." msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" +#: ../../include/account.php:23 +msgid "Not a valid email address" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" +#: ../../include/account.php:25 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" +#: ../../include/account.php:31 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" +#: ../../include/account.php:64 +msgid "An invitation is required." msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" +#: ../../include/account.php:68 +msgid "Invitation could not be verified." msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" +#: ../../include/account.php:119 +msgid "Please enter the required information." msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" +#: ../../include/account.php:187 +msgid "Failed to store account information." msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" +#: ../../include/account.php:273 +#, php-format +msgid "Registration request at %s" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Other" +#: ../../include/account.php:275 ../../include/account.php:302 +#: ../../include/account.php:359 +msgid "Administrator" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" +#: ../../include/account.php:297 +msgid "your registration password" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Males" +#: ../../include/account.php:300 ../../include/account.php:357 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Females" +#: ../../include/account.php:366 +msgid "Account approved." msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Gay" +#: ../../include/account.php:400 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" +#: ../../include/dir_fns.php:15 +msgid "Sort Options" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "No Preference" +#: ../../include/dir_fns.php:16 +msgid "Alphabetic" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" +#: ../../include/dir_fns.php:17 +msgid "Reverse Alphabetic" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" +#: ../../include/dir_fns.php:18 +msgid "Newest to Oldest" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" +#: ../../include/dir_fns.php:30 +msgid "Enable Safe Search" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Virgin" +#: ../../include/dir_fns.php:32 +msgid "Disable Safe Search" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Deviant" +#: ../../include/dir_fns.php:34 +msgid "Safe Mode" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Fetish" +#: ../../include/enotify.php:40 +msgid "Red Matrix Notification" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Oodles" +#: ../../include/enotify.php:41 +msgid "redmatrix" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" +#: ../../include/enotify.php:43 +msgid "Thank You," msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Single" +#: ../../include/enotify.php:45 +#, php-format +msgid "%s Administrator" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Lonely" +#: ../../include/enotify.php:80 +#, php-format +msgid "%s " msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Available" +#: ../../include/enotify.php:84 +#, php-format +msgid "[Red:Notify] New mail received at %s" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" +#: ../../include/enotify.php:86 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Has crush" +#: ../../include/enotify.php:87 +#, php-format +msgid "%1$s sent you %2$s." msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" +#: ../../include/enotify.php:87 +msgid "a private message" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Dating" +#: ../../include/enotify.php:88 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" +#: ../../include/enotify.php:142 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" +#: ../../include/enotify.php:150 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" +#: ../../include/enotify.php:159 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Casual" +#: ../../include/enotify.php:170 +#, php-format +msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Engaged" +#: ../../include/enotify.php:171 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Married" +#: ../../include/enotify.php:174 ../../include/enotify.php:189 +#: ../../include/enotify.php:215 ../../include/enotify.php:234 +#: ../../include/enotify.php:248 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" +#: ../../include/enotify.php:180 +#, php-format +msgid "[Red:Notify] %s posted to your profile wall" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Partners" +#: ../../include/enotify.php:182 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" +#: ../../include/enotify.php:184 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Common law" +#: ../../include/enotify.php:208 +#, php-format +msgid "[Red:Notify] %s tagged you" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Happy" +#: ../../include/enotify.php:209 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Not looking" +#: ../../include/enotify.php:210 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Swinger" +#: ../../include/enotify.php:223 +#, php-format +msgid "[Red:Notify] %1$s poked you" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" +#: ../../include/enotify.php:224 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Separated" +#: ../../include/enotify.php:225 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" +#: ../../include/enotify.php:241 +#, php-format +msgid "[Red:Notify] %s tagged your post" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Widowed" +#: ../../include/enotify.php:242 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" +#: ../../include/enotify.php:243 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" +#: ../../include/enotify.php:255 +msgid "[Red:Notify] Introduction received" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Don't care" +#: ../../include/enotify.php:256 +#, php-format +msgid "%1$s, you've received an introduction from '%2$s' at %3$s" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Ask me" +#: ../../include/enotify.php:257 +#, php-format +msgid "%1$s, you've received [zrl=%2$s]an introduction[/zrl] from %3$s." msgstr "" -#: ../../include/attach.php:179 ../../include/attach.php:227 -msgid "Item was not found." +#: ../../include/enotify.php:261 ../../include/enotify.php:280 +#, php-format +msgid "You may visit their profile at %s" msgstr "" -#: ../../include/attach.php:280 -msgid "No source file." +#: ../../include/enotify.php:263 +#, php-format +msgid "Please visit %s to approve or reject the introduction." msgstr "" -#: ../../include/attach.php:297 -msgid "Cannot locate file to replace" +#: ../../include/enotify.php:270 +msgid "[Red:Notify] Friend suggestion received" msgstr "" -#: ../../include/attach.php:315 -msgid "Cannot locate file to revise/update" +#: ../../include/enotify.php:271 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" msgstr "" -#: ../../include/attach.php:326 +#: ../../include/enotify.php:272 #, php-format -msgid "File exceeds size limit of %d" +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." msgstr "" -#: ../../include/attach.php:338 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +#: ../../include/enotify.php:278 +msgid "Name:" msgstr "" -#: ../../include/attach.php:422 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../include/enotify.php:279 +msgid "Photo:" msgstr "" -#: ../../include/attach.php:434 -msgid "Stored file could not be verified. Upload failed." +#: ../../include/enotify.php:282 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../include/attach.php:478 ../../include/attach.php:495 -msgid "Path not available." +#: ../../include/widgets.php:29 ../../include/contact_widgets.php:87 +msgid "Categories" msgstr "" -#: ../../include/attach.php:545 -msgid "Empty pathname" +#: ../../include/widgets.php:117 ../../mod/suggest.php:53 +msgid "Ignore/Hide" msgstr "" -#: ../../include/attach.php:563 -msgid "duplicate filename or path" +#: ../../include/widgets.php:123 ../../mod/connections.php:236 +msgid "Suggestions" msgstr "" -#: ../../include/attach.php:588 -msgid "Path not found." +#: ../../include/widgets.php:124 +msgid "See more..." msgstr "" -#: ../../include/attach.php:633 -msgid "mkdir failed." +#: ../../include/widgets.php:146 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../include/attach.php:637 -msgid "database storage failed." +#: ../../include/widgets.php:152 +msgid "Add New Connection" msgstr "" -#: ../../include/taxonomy.php:210 -msgid "Tags" +#: ../../include/widgets.php:153 +msgid "Enter the channel address" msgstr "" -#: ../../include/taxonomy.php:227 -msgid "Keywords" +#: ../../include/widgets.php:154 +msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: ../../include/taxonomy.php:252 -msgid "have" +#: ../../include/widgets.php:171 +msgid "Notes" msgstr "" -#: ../../include/taxonomy.php:252 -msgid "has" +#: ../../include/widgets.php:243 +msgid "Remove term" msgstr "" -#: ../../include/taxonomy.php:253 -msgid "want" +#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56 +#: ../../include/contact_widgets.php:90 +msgid "Everything" msgstr "" -#: ../../include/taxonomy.php:253 -msgid "wants" +#: ../../include/widgets.php:318 ../../include/items.php:3575 +msgid "Archives" msgstr "" -#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:175 -msgid "like" +#: ../../include/widgets.php:370 +msgid "Refresh" msgstr "" -#: ../../include/taxonomy.php:254 -msgid "likes" +#: ../../include/widgets.php:371 ../../mod/connedit.php:386 +msgid "Me" msgstr "" -#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:176 -msgid "dislike" +#: ../../include/widgets.php:372 ../../mod/connedit.php:388 +msgid "Best Friends" msgstr "" -#: ../../include/taxonomy.php:255 -msgid "dislikes" +#: ../../include/widgets.php:374 +msgid "Co-workers" msgstr "" -#: ../../include/auth.php:76 -msgid "Logged out." +#: ../../include/widgets.php:375 ../../mod/connedit.php:390 +msgid "Former Friends" msgstr "" -#: ../../include/auth.php:188 -msgid "Failed authentication" +#: ../../include/widgets.php:376 ../../mod/connedit.php:391 +msgid "Acquaintances" msgstr "" -#: ../../include/auth.php:203 -msgid "Login failed." +#: ../../include/widgets.php:377 +msgid "Everybody" msgstr "" -#: ../../include/account.php:23 -msgid "Not a valid email address" +#: ../../include/widgets.php:409 +msgid "Account settings" msgstr "" -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" +#: ../../include/widgets.php:415 +msgid "Channel settings" msgstr "" -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." +#: ../../include/widgets.php:421 +msgid "Additional features" msgstr "" -#: ../../include/account.php:64 -msgid "An invitation is required." +#: ../../include/widgets.php:427 +msgid "Feature settings" msgstr "" -#: ../../include/account.php:68 -msgid "Invitation could not be verified." +#: ../../include/widgets.php:433 +msgid "Display settings" msgstr "" -#: ../../include/account.php:119 -msgid "Please enter the required information." +#: ../../include/widgets.php:439 +msgid "Connected apps" msgstr "" -#: ../../include/account.php:187 -msgid "Failed to store account information." +#: ../../include/widgets.php:445 +msgid "Export channel" msgstr "" -#: ../../include/account.php:273 -#, php-format -msgid "Registration request at %s" +#: ../../include/widgets.php:457 +msgid "Automatic Permissions (Advanced)" msgstr "" -#: ../../include/account.php:275 ../../include/account.php:302 -#: ../../include/account.php:359 -msgid "Administrator" +#: ../../include/widgets.php:467 +msgid "Premium Channel Settings" msgstr "" -#: ../../include/account.php:297 -msgid "your registration password" +#: ../../include/widgets.php:504 +msgid "Check Mail" msgstr "" -#: ../../include/account.php:300 ../../include/account.php:357 +#: ../../include/contact_widgets.php:14 #, php-format -msgid "Registration details for %s" -msgstr "" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" -#: ../../include/account.php:366 -msgid "Account approved." +#: ../../include/contact_widgets.php:20 +msgid "Find Channels" msgstr "" -#: ../../include/account.php:400 -#, php-format -msgid "Registration revoked for %s" +#: ../../include/contact_widgets.php:21 +msgid "Enter name or interest" msgstr "" -#: ../../include/dir_fns.php:15 -msgid "Sort Options" +#: ../../include/contact_widgets.php:22 +msgid "Connect/Follow" msgstr "" -#: ../../include/dir_fns.php:16 -msgid "Alphabetic" +#: ../../include/contact_widgets.php:23 +msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../include/dir_fns.php:17 -msgid "Reverse Alphabetic" +#: ../../include/contact_widgets.php:24 ../../mod/directory.php:206 +#: ../../mod/directory.php:211 ../../mod/connections.php:355 +msgid "Find" msgstr "" -#: ../../include/dir_fns.php:18 -msgid "Newest to Oldest" +#: ../../include/contact_widgets.php:25 ../../mod/suggest.php:59 +msgid "Channel Suggestions" msgstr "" -#: ../../include/dir_fns.php:30 -msgid "Enable Safe Search" +#: ../../include/contact_widgets.php:27 +msgid "Random Profile" msgstr "" -#: ../../include/dir_fns.php:32 -msgid "Disable Safe Search" +#: ../../include/contact_widgets.php:28 +msgid "Invite Friends" msgstr "" -#: ../../include/dir_fns.php:34 -msgid "Safe Mode" +#: ../../include/contact_widgets.php:120 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/page_widgets.php:6 +msgid "New Page" msgstr "" -#: ../../include/enotify.php:40 -msgid "Red Matrix Notification" +#: ../../include/page_widgets.php:8 ../../include/ItemObject.php:96 +#: ../../mod/thing.php:229 ../../mod/webpages.php:118 ../../mod/menu.php:55 +#: ../../mod/layouts.php:102 ../../mod/filestorage.php:171 +#: ../../mod/settings.php:569 ../../mod/editlayout.php:106 +#: ../../mod/editpost.php:98 ../../mod/blocks.php:93 +#: ../../mod/editwebpage.php:144 ../../mod/editblock.php:120 +msgid "Edit" msgstr "" -#: ../../include/enotify.php:41 -msgid "redmatrix" +#: ../../include/plugin.php:475 ../../include/plugin.php:477 +msgid "Click here to upgrade." msgstr "" -#: ../../include/enotify.php:43 -msgid "Thank You," +#: ../../include/plugin.php:483 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/enotify.php:45 -#, php-format -msgid "%s Administrator" +#: ../../include/plugin.php:488 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/enotify.php:80 -#, php-format -msgid "%s " +#: ../../include/follow.php:21 +msgid "Channel is blocked on this site." msgstr "" -#: ../../include/enotify.php:84 -#, php-format -msgid "[Red:Notify] New mail received at %s" +#: ../../include/follow.php:26 +msgid "Channel location missing." msgstr "" -#: ../../include/enotify.php:86 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." +#: ../../include/follow.php:43 +msgid "Channel discovery failed. Website may be down or misconfigured." msgstr "" -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s sent you %2$s." +#: ../../include/follow.php:51 +msgid "Response from remote channel was not understood." msgstr "" -#: ../../include/enotify.php:87 -msgid "a private message" +#: ../../include/follow.php:58 +msgid "Response from remote channel was incomplete." msgstr "" -#: ../../include/enotify.php:88 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." +#: ../../include/follow.php:129 +msgid "local account not found." msgstr "" -#: ../../include/enotify.php:142 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +#: ../../include/follow.php:138 +msgid "Cannot connect to yourself." msgstr "" -#: ../../include/enotify.php:150 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +#: ../../include/permissions.php:13 +msgid "Can view my \"public\" stream and posts" msgstr "" -#: ../../include/enotify.php:159 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +#: ../../include/permissions.php:14 +msgid "Can view my \"public\" channel profile" msgstr "" -#: ../../include/enotify.php:170 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" +#: ../../include/permissions.php:15 +msgid "Can view my \"public\" photo albums" msgstr "" -#: ../../include/enotify.php:171 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." +#: ../../include/permissions.php:16 +msgid "Can view my \"public\" address book" msgstr "" -#: ../../include/enotify.php:174 ../../include/enotify.php:189 -#: ../../include/enotify.php:215 ../../include/enotify.php:234 -#: ../../include/enotify.php:248 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." +#: ../../include/permissions.php:17 +msgid "Can view my \"public\" file storage" msgstr "" -#: ../../include/enotify.php:180 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" +#: ../../include/permissions.php:18 +msgid "Can view my \"public\" pages" msgstr "" -#: ../../include/enotify.php:182 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" +#: ../../include/permissions.php:21 +msgid "Can send me their channel stream and posts" msgstr "" -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +#: ../../include/permissions.php:22 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/enotify.php:208 -#, php-format -msgid "[Red:Notify] %s tagged you" +#: ../../include/permissions.php:23 +msgid "Can comment on my posts" msgstr "" -#: ../../include/enotify.php:209 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" +#: ../../include/permissions.php:24 +msgid "Can send me private mail messages" msgstr "" -#: ../../include/enotify.php:210 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +#: ../../include/permissions.php:25 +msgid "Can post photos to my photo albums" msgstr "" -#: ../../include/enotify.php:223 -#, php-format -msgid "[Red:Notify] %1$s poked you" +#: ../../include/permissions.php:26 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/enotify.php:224 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" +#: ../../include/permissions.php:26 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/enotify.php:225 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +#: ../../include/permissions.php:27 +msgid "Can chat with me (when available)" msgstr "" -#: ../../include/enotify.php:241 -#, php-format -msgid "[Red:Notify] %s tagged your post" +#: ../../include/permissions.php:27 +msgid "Requires compatible chat plugin" msgstr "" -#: ../../include/enotify.php:242 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" +#: ../../include/permissions.php:28 +msgid "Can write to my \"public\" file storage" msgstr "" -#: ../../include/enotify.php:243 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +#: ../../include/permissions.php:29 +msgid "Can edit my \"public\" pages" msgstr "" -#: ../../include/enotify.php:255 -msgid "[Red:Notify] Introduction received" +#: ../../include/permissions.php:31 +msgid "Can source my \"public\" posts in derived channels" msgstr "" -#: ../../include/enotify.php:256 -#, php-format -msgid "%1$s, you've received an introduction from '%2$s' at %3$s" +#: ../../include/permissions.php:31 +msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../include/enotify.php:257 -#, php-format -msgid "%1$s, you've received [zrl=%2$s]an introduction[/zrl] from %3$s." +#: ../../include/permissions.php:32 +msgid "Can administer my channel resources" msgstr "" -#: ../../include/enotify.php:261 ../../include/enotify.php:280 -#, php-format -msgid "You may visit their profile at %s" +#: ../../include/permissions.php:32 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../include/enotify.php:263 -#, php-format -msgid "Please visit %s to approve or reject the introduction." +#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:62 +#: ../../view/theme/apw/php/config.php:176 +msgid "Default" msgstr "" -#: ../../include/enotify.php:270 -msgid "[Red:Notify] Friend suggestion received" +#: ../../include/items.php:208 ../../mod/like.php:55 ../../mod/group.php:68 +#: ../../mod/profperm.php:19 ../../index.php:347 +msgid "Permission denied" msgstr "" -#: ../../include/enotify.php:271 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +#: ../../include/items.php:3392 ../../mod/thing.php:74 ../../mod/admin.php:150 +#: ../../mod/admin.php:732 ../../mod/admin.php:935 ../../mod/viewsrc.php:18 +#: ../../mod/home.php:63 ../../mod/filestorage.php:18 ../../mod/display.php:32 +msgid "Item not found." msgstr "" -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." +#: ../../include/items.php:3743 ../../mod/group.php:38 ../../mod/group.php:140 +msgid "Collection not found." msgstr "" -#: ../../include/enotify.php:278 -msgid "Name:" +#: ../../include/items.php:3758 +msgid "Collection is empty." msgstr "" -#: ../../include/enotify.php:279 -msgid "Photo:" +#: ../../include/items.php:3765 +#, php-format +msgid "Collection: %s" msgstr "" -#: ../../include/enotify.php:282 +#: ../../include/items.php:3776 #, php-format -msgid "Please visit %s to approve or reject the suggestion." +msgid "Connection: %s" msgstr "" -#: ../../include/widgets.php:29 ../../include/contact_widgets.php:87 -msgid "Categories" +#: ../../include/items.php:3779 +msgid "Connection not found." msgstr "" -#: ../../include/widgets.php:117 ../../mod/suggest.php:53 -msgid "Ignore/Hide" +#: ../../include/ItemObject.php:89 ../../mod/photos.php:841 +msgid "Private Message" msgstr "" -#: ../../include/widgets.php:123 ../../mod/connections.php:236 -msgid "Suggestions" +#: ../../include/ItemObject.php:108 ../../include/conversation.php:632 +#: ../../mod/thing.php:230 ../../mod/connedit.php:356 ../../mod/admin.php:695 +#: ../../mod/group.php:176 ../../mod/photos.php:1019 +#: ../../mod/filestorage.php:172 ../../mod/settings.php:570 +msgid "Delete" msgstr "" -#: ../../include/widgets.php:124 -msgid "See more..." +#: ../../include/ItemObject.php:114 ../../include/conversation.php:631 +msgid "Select" msgstr "" -#: ../../include/widgets.php:146 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +#: ../../include/ItemObject.php:118 +msgid "save to folder" msgstr "" -#: ../../include/widgets.php:152 -msgid "Add New Connection" +#: ../../include/ItemObject.php:146 +msgid "add star" msgstr "" -#: ../../include/widgets.php:153 -msgid "Enter the channel address" +#: ../../include/ItemObject.php:147 +msgid "remove star" msgstr "" -#: ../../include/widgets.php:154 -msgid "Example: bob@example.com, http://example.com/barbara" +#: ../../include/ItemObject.php:148 +msgid "toggle star status" msgstr "" -#: ../../include/widgets.php:171 -msgid "Notes" +#: ../../include/ItemObject.php:152 +msgid "starred" msgstr "" -#: ../../include/widgets.php:243 -msgid "Remove term" +#: ../../include/ItemObject.php:161 ../../include/conversation.php:642 +msgid "Message is verified" msgstr "" -#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56 -#: ../../include/contact_widgets.php:90 -msgid "Everything" +#: ../../include/ItemObject.php:169 +msgid "add tag" msgstr "" -#: ../../include/widgets.php:318 ../../include/items.php:3568 -msgid "Archives" +#: ../../include/ItemObject.php:175 ../../mod/photos.php:947 +msgid "I like this (toggle)" msgstr "" -#: ../../include/widgets.php:370 -msgid "Refresh" +#: ../../include/ItemObject.php:176 ../../mod/photos.php:948 +msgid "I don't like this (toggle)" msgstr "" -#: ../../include/widgets.php:371 ../../mod/connedit.php:386 -msgid "Me" +#: ../../include/ItemObject.php:178 +msgid "Share this" msgstr "" -#: ../../include/widgets.php:372 ../../mod/connedit.php:388 -msgid "Best Friends" +#: ../../include/ItemObject.php:178 +msgid "share" msgstr "" -#: ../../include/widgets.php:374 -msgid "Co-workers" +#: ../../include/ItemObject.php:202 ../../include/ItemObject.php:203 +#, php-format +msgid "View %s's profile - %s" msgstr "" -#: ../../include/widgets.php:375 ../../mod/connedit.php:390 -msgid "Former Friends" +#: ../../include/ItemObject.php:204 +msgid "to" msgstr "" -#: ../../include/widgets.php:376 ../../mod/connedit.php:391 -msgid "Acquaintances" +#: ../../include/ItemObject.php:205 +msgid "via" msgstr "" -#: ../../include/widgets.php:377 -msgid "Everybody" -msgstr "" +#: ../../include/ItemObject.php:206 +msgid "Wall-to-Wall" +msgstr "" -#: ../../include/widgets.php:409 -msgid "Account settings" +#: ../../include/ItemObject.php:207 +msgid "via Wall-To-Wall:" msgstr "" -#: ../../include/widgets.php:415 -msgid "Channel settings" +#: ../../include/ItemObject.php:217 ../../include/conversation.php:686 +#, php-format +msgid " from %s" msgstr "" -#: ../../include/widgets.php:421 -msgid "Additional features" +#: ../../include/ItemObject.php:220 ../../include/conversation.php:689 +#, php-format +msgid "last edited: %s" msgstr "" -#: ../../include/widgets.php:427 -msgid "Feature settings" +#: ../../include/ItemObject.php:221 +#, php-format +msgid "Expires: %s" msgstr "" -#: ../../include/widgets.php:433 -msgid "Display settings" +#: ../../include/ItemObject.php:248 ../../include/conversation.php:706 +#: ../../include/conversation.php:1119 ../../mod/photos.php:950 +#: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:115 +#: ../../mod/editpost.php:107 ../../mod/editwebpage.php:153 +#: ../../mod/editblock.php:129 +msgid "Please wait" msgstr "" -#: ../../include/widgets.php:439 -msgid "Connected apps" +#: ../../include/ItemObject.php:269 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/ItemObject.php:534 ../../mod/photos.php:966 +#: ../../mod/photos.php:1053 +msgid "This is you" msgstr "" -#: ../../include/widgets.php:445 -msgid "Export channel" +#: ../../include/ItemObject.php:537 ../../mod/events.php:469 +#: ../../mod/thing.php:276 ../../mod/thing.php:318 ../../mod/invite.php:156 +#: ../../mod/connedit.php:434 ../../mod/setup.php:304 ../../mod/setup.php:347 +#: ../../mod/connect.php:92 ../../mod/sources.php:97 ../../mod/sources.php:131 +#: ../../mod/admin.php:420 ../../mod/admin.php:688 ../../mod/admin.php:828 +#: ../../mod/admin.php:1027 ../../mod/admin.php:1114 ../../mod/group.php:81 +#: ../../mod/photos.php:562 ../../mod/photos.php:667 ../../mod/photos.php:929 +#: ../../mod/photos.php:969 ../../mod/photos.php:1056 +#: ../../mod/profiles.php:518 ../../mod/filestorage.php:132 +#: ../../mod/import.php:387 ../../mod/settings.php:507 +#: ../../mod/settings.php:619 ../../mod/settings.php:647 +#: ../../mod/settings.php:671 ../../mod/settings.php:742 +#: ../../mod/settings.php:903 ../../mod/mail.php:223 ../../mod/mail.php:335 +#: ../../mod/poke.php:166 ../../mod/fsuggest.php:108 ../../mod/mood.php:142 +#: ../../view/theme/redbasic/php/config.php:85 +#: ../../view/theme/apw/php/config.php:231 +#: ../../view/theme/blogga/view/theme/blog/config.php:67 +#: ../../view/theme/blogga/php/config.php:67 +msgid "Submit" msgstr "" -#: ../../include/widgets.php:457 -msgid "Automatic Permissions (Advanced)" +#: ../../include/ItemObject.php:538 +msgid "Bold" msgstr "" -#: ../../include/widgets.php:467 -msgid "Premium Channel Settings" +#: ../../include/ItemObject.php:539 +msgid "Italic" msgstr "" -#: ../../include/widgets.php:504 -msgid "Check Mail" +#: ../../include/ItemObject.php:540 +msgid "Underline" msgstr "" -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" +#: ../../include/ItemObject.php:541 +msgid "Quote" +msgstr "" -#: ../../include/contact_widgets.php:20 -msgid "Find Channels" +#: ../../include/ItemObject.php:542 +msgid "Code" msgstr "" -#: ../../include/contact_widgets.php:21 -msgid "Enter name or interest" +#: ../../include/ItemObject.php:543 +msgid "Image" msgstr "" -#: ../../include/contact_widgets.php:22 -msgid "Connect/Follow" +#: ../../include/ItemObject.php:544 +msgid "Link" msgstr "" -#: ../../include/contact_widgets.php:23 -msgid "Examples: Robert Morgenstein, Fishing" +#: ../../include/ItemObject.php:545 +msgid "Video" msgstr "" -#: ../../include/contact_widgets.php:24 ../../mod/directory.php:205 -#: ../../mod/directory.php:210 ../../mod/connections.php:355 -msgid "Find" +#: ../../include/ItemObject.php:546 ../../include/conversation.php:1082 +#: ../../mod/webpages.php:122 ../../mod/photos.php:970 +#: ../../mod/editlayout.php:136 ../../mod/editpost.php:127 +#: ../../mod/editwebpage.php:177 ../../mod/editblock.php:151 +msgid "Preview" msgstr "" -#: ../../include/contact_widgets.php:25 ../../mod/suggest.php:59 -msgid "Channel Suggestions" +#: ../../include/ItemObject.php:549 ../../include/conversation.php:1146 +#: ../../mod/mail.php:228 ../../mod/mail.php:341 ../../mod/editpost.php:135 +msgid "Encrypt text" msgstr "" -#: ../../include/contact_widgets.php:27 -msgid "Random Profile" +#: ../../include/security.php:49 +msgid "Welcome " msgstr "" -#: ../../include/contact_widgets.php:28 -msgid "Invite Friends" +#: ../../include/security.php:50 +msgid "Please upload a profile photo." msgstr "" -#: ../../include/contact_widgets.php:120 +#: ../../include/security.php:53 +msgid "Welcome back " +msgstr "" + +#: ../../include/security.php:363 +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/conversation.php:123 +msgid "channel" +msgstr "" + +#: ../../include/conversation.php:161 ../../mod/like.php:134 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "" -msgstr[1] "" +msgid "%1$s likes %2$s's %3$s" +msgstr "" -#: ../../include/page_widgets.php:6 -msgid "New Page" +#: ../../include/conversation.php:164 ../../mod/like.php:136 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../include/page_widgets.php:8 ../../include/ItemObject.php:96 -#: ../../mod/thing.php:229 ../../mod/webpages.php:118 ../../mod/menu.php:55 -#: ../../mod/layouts.php:102 ../../mod/filestorage.php:171 -#: ../../mod/settings.php:569 ../../mod/editlayout.php:106 -#: ../../mod/editpost.php:98 ../../mod/blocks.php:93 -#: ../../mod/editwebpage.php:144 ../../mod/editblock.php:120 -msgid "Edit" +#: ../../include/conversation.php:201 +#, php-format +msgid "%1$s is now connected with %2$s" msgstr "" -#: ../../include/plugin.php:475 ../../include/plugin.php:477 -msgid "Click here to upgrade." +#: ../../include/conversation.php:236 +#, php-format +msgid "%1$s poked %2$s" msgstr "" -#: ../../include/plugin.php:483 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../include/conversation.php:258 ../../mod/mood.php:63 +#, php-format +msgid "%1$s is currently %2$s" msgstr "" -#: ../../include/plugin.php:488 -msgid "This action is not available under your subscription plan." +#: ../../include/conversation.php:662 +#, php-format +msgid "View %s's profile @ %s" msgstr "" -#: ../../include/follow.php:21 -msgid "Channel is blocked on this site." +#: ../../include/conversation.php:676 +msgid "Categories:" msgstr "" -#: ../../include/follow.php:26 -msgid "Channel location missing." +#: ../../include/conversation.php:677 +msgid "Filed under:" msgstr "" -#: ../../include/follow.php:43 -msgid "Channel discovery failed. Website may be down or misconfigured." +#: ../../include/conversation.php:704 +msgid "View in context" msgstr "" -#: ../../include/follow.php:51 -msgid "Response from remote channel was not understood." +#: ../../include/conversation.php:833 +msgid "remove" msgstr "" -#: ../../include/follow.php:58 -msgid "Response from remote channel was incomplete." +#: ../../include/conversation.php:837 +msgid "Loading..." msgstr "" -#: ../../include/follow.php:129 -msgid "local account not found." +#: ../../include/conversation.php:838 +msgid "Delete Selected Items" msgstr "" -#: ../../include/follow.php:138 -msgid "Cannot connect to yourself." +#: ../../include/conversation.php:929 +msgid "View Source" msgstr "" -#: ../../include/permissions.php:13 -msgid "Can view my \"public\" stream and posts" +#: ../../include/conversation.php:930 +msgid "Follow Thread" msgstr "" -#: ../../include/permissions.php:14 -msgid "Can view my \"public\" channel profile" +#: ../../include/conversation.php:931 +msgid "View Status" msgstr "" -#: ../../include/permissions.php:15 -msgid "Can view my \"public\" photo albums" +#: ../../include/conversation.php:933 +msgid "View Photos" msgstr "" -#: ../../include/permissions.php:16 -msgid "Can view my \"public\" address book" +#: ../../include/conversation.php:934 +msgid "Matrix Activity" msgstr "" -#: ../../include/permissions.php:17 -msgid "Can view my \"public\" file storage" +#: ../../include/conversation.php:935 +msgid "Edit Contact" msgstr "" -#: ../../include/permissions.php:18 -msgid "Can view my \"public\" pages" +#: ../../include/conversation.php:936 +msgid "Send PM" msgstr "" -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" +#: ../../include/conversation.php:937 +msgid "Poke" msgstr "" -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/conversation.php:999 +#, php-format +msgid "%s likes this." msgstr "" -#: ../../include/permissions.php:23 -msgid "Can comment on my posts" +#: ../../include/conversation.php:999 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: ../../include/conversation.php:1003 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1005 +#, 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:1011 +msgid "and" +msgstr "" + +#: ../../include/conversation.php:1014 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1015 +#, php-format +msgid "%s like this." +msgstr "" + +#: ../../include/conversation.php:1015 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: ../../include/conversation.php:1065 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/conversation.php:1066 ../../mod/mail.php:171 +#: ../../mod/mail.php:269 +msgid "Please enter a link URL:" msgstr "" -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" +#: ../../include/conversation.php:1067 +msgid "Please enter a video link/URL:" msgstr "" -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" +#: ../../include/conversation.php:1068 +msgid "Please enter an audio link/URL:" msgstr "" -#: ../../include/permissions.php:26 -msgid "Can forward to all my channel contacts via post @mentions" +#: ../../include/conversation.php:1069 +msgid "Tag term:" msgstr "" -#: ../../include/permissions.php:26 -msgid "Advanced - useful for creating group forum channels" +#: ../../include/conversation.php:1070 ../../mod/filer.php:35 +msgid "Save to Folder:" msgstr "" -#: ../../include/permissions.php:27 -msgid "Can chat with me (when available)" +#: ../../include/conversation.php:1071 +msgid "Where are you right now?" msgstr "" -#: ../../include/permissions.php:27 -msgid "Requires compatible chat plugin" +#: ../../include/conversation.php:1072 ../../mod/mail.php:172 +#: ../../mod/mail.php:270 ../../mod/editpost.php:52 +msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../include/permissions.php:28 -msgid "Can write to my \"public\" file storage" +#: ../../include/conversation.php:1096 ../../mod/photos.php:949 +msgid "Share" msgstr "" -#: ../../include/permissions.php:29 -msgid "Can edit my \"public\" pages" +#: ../../include/conversation.php:1098 ../../mod/editwebpage.php:140 +msgid "Page link title" msgstr "" -#: ../../include/permissions.php:31 -msgid "Can source my \"public\" posts in derived channels" +#: ../../include/conversation.php:1100 ../../mod/mail.php:219 +#: ../../mod/mail.php:332 ../../mod/editlayout.php:107 +#: ../../mod/editpost.php:99 ../../mod/editwebpage.php:145 +#: ../../mod/editblock.php:121 +msgid "Upload photo" msgstr "" -#: ../../include/permissions.php:31 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/conversation.php:1101 +msgid "upload photo" msgstr "" -#: ../../include/permissions.php:32 -msgid "Can administer my channel resources" +#: ../../include/conversation.php:1102 ../../mod/mail.php:220 +#: ../../mod/mail.php:333 ../../mod/editlayout.php:108 +#: ../../mod/editpost.php:100 ../../mod/editwebpage.php:146 +#: ../../mod/editblock.php:122 +msgid "Attach file" msgstr "" -#: ../../include/permissions.php:32 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/conversation.php:1103 +msgid "attach file" msgstr "" -#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:62 -#: ../../view/theme/apw/php/config.php:176 -msgid "Default" +#: ../../include/conversation.php:1104 ../../mod/mail.php:221 +#: ../../mod/mail.php:334 ../../mod/editlayout.php:109 +#: ../../mod/editpost.php:101 ../../mod/editwebpage.php:147 +#: ../../mod/editblock.php:123 +msgid "Insert web link" msgstr "" -#: ../../include/items.php:201 ../../mod/like.php:55 ../../mod/group.php:68 -#: ../../mod/profperm.php:19 ../../index.php:347 -msgid "Permission denied" +#: ../../include/conversation.php:1105 +msgid "web link" msgstr "" -#: ../../include/items.php:3385 ../../mod/thing.php:74 ../../mod/admin.php:150 -#: ../../mod/admin.php:732 ../../mod/admin.php:935 ../../mod/viewsrc.php:18 -#: ../../mod/home.php:63 ../../mod/filestorage.php:18 ../../mod/display.php:32 -msgid "Item not found." +#: ../../include/conversation.php:1106 +msgid "Insert video link" msgstr "" -#: ../../include/items.php:3736 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." +#: ../../include/conversation.php:1107 +msgid "video link" msgstr "" -#: ../../include/items.php:3751 -msgid "Collection is empty." +#: ../../include/conversation.php:1108 +msgid "Insert audio link" msgstr "" -#: ../../include/items.php:3758 -#, php-format -msgid "Collection: %s" +#: ../../include/conversation.php:1109 +msgid "audio link" msgstr "" -#: ../../include/items.php:3769 -#, php-format -msgid "Connection: %s" +#: ../../include/conversation.php:1110 ../../mod/editlayout.php:113 +#: ../../mod/editpost.php:105 ../../mod/editwebpage.php:151 +#: ../../mod/editblock.php:127 +msgid "Set your location" msgstr "" -#: ../../include/items.php:3772 -msgid "Connection not found." +#: ../../include/conversation.php:1111 +msgid "set location" msgstr "" -#: ../../include/ItemObject.php:89 ../../mod/photos.php:841 -msgid "Private Message" +#: ../../include/conversation.php:1112 ../../mod/editlayout.php:114 +#: ../../mod/editpost.php:106 ../../mod/editwebpage.php:152 +#: ../../mod/editblock.php:128 +msgid "Clear browser location" msgstr "" -#: ../../include/ItemObject.php:118 -msgid "save to folder" +#: ../../include/conversation.php:1113 +msgid "clear location" msgstr "" -#: ../../include/ItemObject.php:146 -msgid "add star" +#: ../../include/conversation.php:1115 ../../mod/editlayout.php:127 +#: ../../mod/editpost.php:119 ../../mod/editwebpage.php:169 +#: ../../mod/editblock.php:142 +msgid "Set title" msgstr "" -#: ../../include/ItemObject.php:147 -msgid "remove star" +#: ../../include/conversation.php:1118 ../../mod/editlayout.php:130 +#: ../../mod/editpost.php:121 ../../mod/editwebpage.php:171 +#: ../../mod/editblock.php:145 +msgid "Categories (comma-separated list)" msgstr "" -#: ../../include/ItemObject.php:148 -msgid "toggle star status" +#: ../../include/conversation.php:1120 ../../mod/editlayout.php:116 +#: ../../mod/editpost.php:108 ../../mod/editwebpage.php:154 +#: ../../mod/editblock.php:130 +msgid "Permission settings" msgstr "" -#: ../../include/ItemObject.php:152 -msgid "starred" +#: ../../include/conversation.php:1121 +msgid "permissions" msgstr "" -#: ../../include/ItemObject.php:169 -msgid "add tag" +#: ../../include/conversation.php:1129 ../../mod/editlayout.php:124 +#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:164 +#: ../../mod/editblock.php:139 +msgid "Public post" msgstr "" -#: ../../include/ItemObject.php:175 ../../mod/photos.php:947 -msgid "I like this (toggle)" +#: ../../include/conversation.php:1131 ../../mod/editlayout.php:131 +#: ../../mod/editpost.php:122 ../../mod/editwebpage.php:172 +#: ../../mod/editblock.php:146 +msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../include/ItemObject.php:176 ../../mod/photos.php:948 -msgid "I don't like this (toggle)" +#: ../../include/conversation.php:1144 ../../mod/mail.php:226 +#: ../../mod/mail.php:339 ../../mod/editlayout.php:141 +#: ../../mod/editpost.php:133 ../../mod/editwebpage.php:182 +#: ../../mod/editblock.php:156 +msgid "Set expiration date" msgstr "" -#: ../../include/ItemObject.php:178 -msgid "Share this" +#: ../../include/conversation.php:1148 ../../mod/editpost.php:136 +msgid "OK" msgstr "" -#: ../../include/ItemObject.php:178 -msgid "share" +#: ../../include/conversation.php:1149 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/settings.php:508 +#: ../../mod/settings.php:534 ../../mod/editpost.php:137 +#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 +msgid "Cancel" msgstr "" -#: ../../include/ItemObject.php:202 ../../include/ItemObject.php:203 -#, php-format -msgid "View %s's profile - %s" +#: ../../include/conversation.php:1379 +msgid "Commented Order" msgstr "" -#: ../../include/ItemObject.php:204 -msgid "to" +#: ../../include/conversation.php:1382 +msgid "Sort by Comment Date" msgstr "" -#: ../../include/ItemObject.php:205 -msgid "via" +#: ../../include/conversation.php:1385 +msgid "Posted Order" msgstr "" -#: ../../include/ItemObject.php:206 -msgid "Wall-to-Wall" +#: ../../include/conversation.php:1388 +msgid "Sort by Post Date" msgstr "" -#: ../../include/ItemObject.php:207 -msgid "via Wall-To-Wall:" +#: ../../include/conversation.php:1392 +msgid "Personal" msgstr "" -#: ../../include/ItemObject.php:221 -#, php-format -msgid "Expires: %s" +#: ../../include/conversation.php:1395 +msgid "Posts that mention or involve you" msgstr "" -#: ../../include/ItemObject.php:269 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" +#: ../../include/conversation.php:1398 ../../mod/menu.php:57 +#: ../../mod/connections.php:209 +msgid "New" +msgstr "" -#: ../../include/ItemObject.php:534 ../../mod/photos.php:966 -#: ../../mod/photos.php:1053 -msgid "This is you" +#: ../../include/conversation.php:1401 +msgid "Activity Stream - by date" msgstr "" -#: ../../include/ItemObject.php:537 ../../mod/events.php:469 -#: ../../mod/thing.php:276 ../../mod/thing.php:318 ../../mod/invite.php:156 -#: ../../mod/connedit.php:434 ../../mod/setup.php:304 ../../mod/setup.php:347 -#: ../../mod/connect.php:92 ../../mod/sources.php:97 ../../mod/sources.php:131 -#: ../../mod/admin.php:420 ../../mod/admin.php:688 ../../mod/admin.php:828 -#: ../../mod/admin.php:1027 ../../mod/admin.php:1114 ../../mod/group.php:81 -#: ../../mod/photos.php:562 ../../mod/photos.php:667 ../../mod/photos.php:929 -#: ../../mod/photos.php:969 ../../mod/photos.php:1056 -#: ../../mod/profiles.php:518 ../../mod/filestorage.php:132 -#: ../../mod/import.php:387 ../../mod/settings.php:507 -#: ../../mod/settings.php:619 ../../mod/settings.php:647 -#: ../../mod/settings.php:671 ../../mod/settings.php:742 -#: ../../mod/settings.php:903 ../../mod/mail.php:223 ../../mod/mail.php:335 -#: ../../mod/poke.php:166 ../../mod/fsuggest.php:108 ../../mod/mood.php:142 -#: ../../view/theme/redbasic/php/config.php:85 -#: ../../view/theme/apw/php/config.php:231 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/blogga/php/config.php:67 -msgid "Submit" +#: ../../include/conversation.php:1408 +msgid "Starred" msgstr "" -#: ../../include/ItemObject.php:538 -msgid "Bold" +#: ../../include/conversation.php:1411 +msgid "Favourite Posts" msgstr "" -#: ../../include/ItemObject.php:539 -msgid "Italic" +#: ../../include/conversation.php:1418 +msgid "Spam" msgstr "" -#: ../../include/ItemObject.php:540 -msgid "Underline" +#: ../../include/conversation.php:1421 +msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/ItemObject.php:541 -msgid "Quote" +#: ../../include/conversation.php:1452 +msgid "Channel" msgstr "" -#: ../../include/ItemObject.php:542 -msgid "Code" +#: ../../include/conversation.php:1455 +msgid "Status Messages and Posts" msgstr "" -#: ../../include/ItemObject.php:543 -msgid "Image" +#: ../../include/conversation.php:1464 +msgid "About" msgstr "" -#: ../../include/ItemObject.php:544 -msgid "Link" +#: ../../include/conversation.php:1467 +msgid "Profile Details" msgstr "" -#: ../../include/ItemObject.php:545 -msgid "Video" +#: ../../include/conversation.php:1482 ../../mod/fbrowser.php:114 +msgid "Files" msgstr "" -#: ../../include/security.php:49 -msgid "Welcome " +#: ../../include/conversation.php:1485 +msgid "Files and Storage" msgstr "" -#: ../../include/security.php:50 -msgid "Please upload a profile photo." +#: ../../include/conversation.php:1494 +msgid "Events and Calendar" msgstr "" -#: ../../include/security.php:53 -msgid "Welcome back " +#: ../../include/conversation.php:1501 +msgid "Webpages" msgstr "" -#: ../../include/security.php:363 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." +#: ../../include/conversation.php:1504 +msgid "Manage Webpages" msgstr "" #: ../../include/zot.php:545 @@ -3328,6 +3328,10 @@ msgid "" "com" msgstr "" +#: ../../mod/cloud.php:88 +msgid "Red Matrix - Guests: Username: {your email address}, Password: +++" +msgstr "" + #: ../../mod/connedit.php:49 ../../mod/connections.php:37 msgid "Could not access contact record." msgstr "" @@ -4070,7 +4074,7 @@ msgstr "" msgid "[Embedded content - reload page to view]" msgstr "" -#: ../../mod/chanview.php:97 +#: ../../mod/chanview.php:93 msgid "toggle full screen mode" msgstr "" @@ -4794,7 +4798,7 @@ msgid "Unable to add menu element." msgstr "" #: ../../mod/mitem.php:78 ../../mod/xchan.php:25 ../../mod/menu.php:113 -#: ../../mod/dirprofile.php:176 +#: ../../mod/dirprofile.php:177 msgid "Not found." msgstr "" @@ -5164,19 +5168,19 @@ msgstr "" msgid "Gender: " msgstr "" -#: ../../mod/directory.php:206 +#: ../../mod/directory.php:207 msgid "Finding:" msgstr "" -#: ../../mod/directory.php:214 +#: ../../mod/directory.php:215 msgid "next page" msgstr "" -#: ../../mod/directory.php:214 +#: ../../mod/directory.php:215 msgid "previous page" msgstr "" -#: ../../mod/directory.php:221 +#: ../../mod/directory.php:222 msgid "No entries (some entries may be hidden)." msgstr "" @@ -6762,7 +6766,7 @@ msgid "" msgstr "" #: ../../mod/removeme.php:53 -msgid "Remove My Account" +msgid "Remove Channel" msgstr "" #: ../../mod/item.php:145 @@ -6831,7 +6835,7 @@ msgstr "" msgid "About: " msgstr "" -#: ../../mod/dirprofile.php:163 +#: ../../mod/dirprofile.php:164 msgid "Keywords: " msgstr "" diff --git a/util/run_xgettext.sh b/util/run_xgettext.sh index 432e0f717..3be355c44 100755 --- a/util/run_xgettext.sh +++ b/util/run_xgettext.sh @@ -67,6 +67,7 @@ then sed -i "s/PACKAGE VERSION//g" "$OUTFILE" sed -i "s/PACKAGE/RedMatrix $ADDONNAME addon/g" "$OUTFILE" sed -i "s/CHARSET/UTF-8/g" "$OUTFILE" + sed -i '/^\"Plural-Forms/d' "$OUTFILE" else sed -i "s/SOME DESCRIPTIVE TITLE./Red Matrix Project/g" "$OUTFILE" sed -i "s/YEAR THE PACKAGE'S COPYRIGHT HOLDER/2012-2014 the Red Matrix Project/g" "$OUTFILE" @@ -74,8 +75,10 @@ else sed -i "s/PACKAGE VERSION/$F9KVERSION/g" "$OUTFILE" sed -i "s/PACKAGE/Red/g" "$OUTFILE" sed -i "s/CHARSET/UTF-8/g" "$OUTFILE" + sed -i '/^\"Plural-Forms/d' "$OUTFILE" fi -grep -v "Plural-Forms:" $OUTFILE > tmpout -mv tmpout $OUTFILE +#grep -v "Plural-Forms:" $OUTFILE > tmpout +#mv tmpout $OUTFILE + echo "done." diff --git a/version.inc b/version.inc index a641cb0f8..fc2b6a5ae 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2014-01-22.565 +2014-01-23.566 -- cgit v1.2.3