diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index c5d0ccc21..802f0c216 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -493,7 +493,6 @@ class Setup extends \Zotlabs\Web\Controller { $this->check_add($ck_funcs, t('OpenSSL PHP module'), true, true); $this->check_add($ck_funcs, t('mysqli or postgres PHP module'), true, true); $this->check_add($ck_funcs, t('mb_string PHP module'), true, true); - $this->check_add($ck_funcs, t('mcrypt PHP module'), true, true); $this->check_add($ck_funcs, t('xml PHP module'), true, true); if(function_exists('apache_get_modules')){ @@ -530,10 +529,6 @@ class Setup extends \Zotlabs\Web\Controller { $ck_funcs[4]['status'] = false; $ck_funcs[4]['help'] = t('Error: mb_string PHP module required but not installed.'); } - if(! function_exists('mcrypt_encrypt')) { - $ck_funcs[5]['status'] = false; - $ck_funcs[5]['help'] = t('Error: mcrypt PHP module required but not installed.'); - } if(! extension_loaded('xml')) { $ck_funcs[6]['status'] = false; $ck_funcs[6]['help'] = t('Error: xml PHP module required for DAV but not installed.'); diff --git a/include/widgets.php b/include/widgets.php index 7fc3f1aeb..a4a6fb55a 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -1347,7 +1347,7 @@ function widget_forums($arr) { $perms_sql = item_permissions_sql(local_channel()) . item_normal(); - $r1 = q("select * from abook left join xchan on abook_xchan = xchan_hash where ( xchan_pubforum = 1 or ((abook_their_perms & %d ) != 0 and (abook_their_perms & %d ) = 0) ) and xchan_deleted = 0 and abook_channel = %d order by xchan_name $limit ", + $r1 = q("select abook_id, xchan_hash, xchan_name, xchan_url, xchan_photo_s from abook left join xchan on abook_xchan = xchan_hash where ( xchan_pubforum = 1 or ((abook_their_perms & %d ) != 0 and (abook_their_perms & %d ) = 0) ) and xchan_deleted = 0 and abook_channel = %d order by xchan_name $limit ", intval(PERMS_W_TAGWALL), intval(PERMS_W_STREAM), intval(local_channel()) @@ -1361,12 +1361,34 @@ function widget_forums($arr) { // There also should be a way to update this via ajax. for($x = 0; $x < count($r1); $x ++) { - $r = q("select sum(item_unseen) as unseen from item where owner_xchan = '%s' and uid = %d $perms_sql ", + $r = q("select sum(item_unseen) as unseen from item where owner_xchan = '%s' and uid = %d and item_unseen = 1 $perms_sql ", dbesc($r1[$x]['xchan_hash']), intval(local_channel()) ); if($r) $r1[$x]['unseen'] = $r[0]['unseen']; + +/** + * @FIXME + * This SQL makes the counts correct when you get forum posts arriving from different routes/sources + * (like personal channels). However the network query for these posts doesn't yet include this + * correction and it makes the SQL for that query pretty hairy so this is left as a future exercise. + * It may make more sense in that query to look for the mention in the body rather than another join, + * but that makes it very inefficient. + * + $r = q("select sum(item_unseen) as unseen from item left join term on oid = id where otype = %d and owner_xchan != '%s' and item.uid = %d and url = '%s' and ttype = %d $perms_sql ", + intval(TERM_OBJ_POST), + dbesc($r1[$x]['xchan_hash']), + intval(local_channel()), + dbesc($r1[$x]['xchan_url']), + intval(TERM_MENTION) + ); + if($r) + $r1[$x]['unseen'] = ((array_key_exists('unseen',$r1[$x])) ? $r1[$x]['unseen'] + $r[0]['unseen'] : $r[0]['unseen']); + * + * end @FIXME + */ + } if($r1) { diff --git a/util/hmessages.po b/util/hmessages.po index 30a8f5329..8ab5226e5 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-01 00:02-0700\n" +"POT-Creation-Date: 2016-07-08 00:02-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,7 +21,7 @@ msgstr "" msgid "parent" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2597 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2609 msgid "Collection" msgstr "" @@ -47,14 +47,14 @@ msgstr "" #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 #: ../../Zotlabs/Module/Photos.php:1243 -#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:489 -#: ../../Zotlabs/Lib/Apps.php:564 ../../include/conversation.php:1035 -#: ../../include/widgets.php:1578 +#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 +#: ../../include/widgets.php:1563 msgid "Unknown" msgstr "" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/conversation.php:1654 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1654 #: ../../include/nav.php:93 msgid "Files" msgstr "" @@ -77,8 +77,8 @@ msgstr "" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 #: ../../Zotlabs/Module/Cover_photo.php:357 #: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 -#: ../../Zotlabs/Module/Profile_photo.php:388 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1591 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1576 msgid "Upload" msgstr "" @@ -112,10 +112,10 @@ msgstr "" #: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 #: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Settings.php:652 ../../Zotlabs/Module/Thing.php:260 -#: ../../Zotlabs/Module/Webpages.php:195 ../../Zotlabs/Lib/Apps.php:340 +#: ../../Zotlabs/Module/Webpages.php:195 ../../Zotlabs/Lib/Apps.php:341 #: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/channel.php:961 -#: ../../include/channel.php:965 ../../include/menu.php:108 +#: ../../include/page_widgets.php:39 ../../include/menu.php:108 +#: ../../include/channel.php:961 ../../include/channel.php:965 msgid "Edit" msgstr "" @@ -127,7 +127,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 #: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:197 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Module/Webpages.php:197 ../../Zotlabs/Lib/Apps.php:342 #: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" msgstr "" @@ -186,7 +186,7 @@ msgstr "" #: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 #: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 #: ../../Zotlabs/Module/Item.php:211 ../../Zotlabs/Module/Item.php:219 -#: ../../Zotlabs/Module/Item.php:1070 ../../Zotlabs/Module/Photos.php:75 +#: ../../Zotlabs/Module/Item.php:1072 ../../Zotlabs/Module/Photos.php:75 #: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 #: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:129 #: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 @@ -198,8 +198,8 @@ msgstr "" #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 #: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 #: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 -#: ../../Zotlabs/Module/Profile_photo.php:263 -#: ../../Zotlabs/Module/Profile_photo.php:276 +#: ../../Zotlabs/Module/Profile_photo.php:265 +#: ../../Zotlabs/Module/Profile_photo.php:278 #: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 #: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 @@ -214,13 +214,13 @@ msgstr "" #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 #: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/items.php:3462 ../../include/photos.php:27 -#: ../../include/attach.php:141 ../../include/attach.php:189 -#: ../../include/attach.php:252 ../../include/attach.php:266 -#: ../../include/attach.php:273 ../../include/attach.php:338 -#: ../../include/attach.php:352 ../../include/attach.php:359 -#: ../../include/attach.php:439 ../../include/attach.php:901 -#: ../../include/attach.php:972 ../../include/attach.php:1124 +#: ../../include/photos.php:27 ../../include/attach.php:141 +#: ../../include/attach.php:189 ../../include/attach.php:252 +#: ../../include/attach.php:266 ../../include/attach.php:273 +#: ../../include/attach.php:338 ../../include/attach.php:352 +#: ../../include/attach.php:359 ../../include/attach.php:439 +#: ../../include/attach.php:901 ../../include/attach.php:972 +#: ../../include/attach.php:1124 ../../include/items.php:3449 msgid "Permission denied." msgstr "" @@ -339,7 +339,7 @@ msgstr "" msgid "Connection has been removed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:525 ../../Zotlabs/Lib/Apps.php:220 +#: ../../Zotlabs/Module/Connedit.php:525 ../../Zotlabs/Lib/Apps.php:221 #: ../../include/conversation.php:957 ../../include/nav.php:86 msgid "View Profile" msgstr "" @@ -491,7 +491,7 @@ msgstr "" msgid "Connection Default Permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:708 ../../include/items.php:3949 +#: ../../Zotlabs/Module/Connedit.php:708 ../../include/items.php:3936 #, php-format msgid "Connection: %s" msgstr "" @@ -570,10 +570,10 @@ msgid "inherited" msgstr "" #: ../../Zotlabs/Module/Connedit.php:737 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Events.php:672 -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 -#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Appman.php:126 ../../Zotlabs/Module/Pdledit.php:66 +#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 +#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Pdledit.php:66 #: ../../Zotlabs/Module/Filestorage.php:162 #: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:551 #: ../../Zotlabs/Module/Photos.php:677 ../../Zotlabs/Module/Photos.php:1052 @@ -594,9 +594,8 @@ msgstr "" #: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 #: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 #: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 -#: ../../include/widgets.php:769 ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:99 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:22 +#: ../../include/widgets.php:754 ../../view/theme/redbasic/php/config.php:99 msgid "Submit" msgstr "" @@ -648,7 +647,7 @@ msgstr "" #: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 #: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 #: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3383 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3370 msgid "Item not found." msgstr "" @@ -675,7 +674,7 @@ msgid "Email" msgstr "" #: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:237 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 msgid "Profile Photo" msgstr "" @@ -711,7 +710,7 @@ msgstr "" msgid "Homepage URL" msgstr "" -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:235 +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 msgid "Language" msgstr "" @@ -772,8 +771,8 @@ msgstr "" msgid "Age:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/bb2diaspora.php:507 -#: ../../include/event.php:52 ../../include/event.php:84 +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/bb2diaspora.php:507 #: ../../include/channel.php:1051 msgid "Location:" msgstr "" @@ -791,8 +790,8 @@ msgid "About:" msgstr "" #: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/connections.php:78 -#: ../../include/conversation.php:959 ../../include/widgets.php:147 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/conversation.php:959 +#: ../../include/connections.php:78 ../../include/widgets.php:147 #: ../../include/widgets.php:184 ../../include/channel.php:1036 msgid "Connect" msgstr "" @@ -1066,37 +1065,49 @@ msgstr "" msgid "Create Event" msgstr "" -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 +#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 #: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 #: ../../Zotlabs/Module/Photos.php:949 msgid "Previous" msgstr "" -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 +#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:676 #: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 #: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 msgid "Next" msgstr "" #: ../../Zotlabs/Module/Events.php:668 ../../Zotlabs/Module/Cal.php:334 -#: ../../include/widgets.php:755 msgid "Export" msgstr "" -#: ../../Zotlabs/Module/Events.php:671 ../../Zotlabs/Module/Cal.php:337 -#: ../../include/widgets.php:756 -msgid "Import" +#: ../../Zotlabs/Module/Events.php:671 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Webpages.php:201 ../../include/page_widgets.php:42 +msgid "View" msgstr "" -#: ../../Zotlabs/Module/Events.php:675 ../../Zotlabs/Module/Cal.php:341 +#: ../../Zotlabs/Module/Events.php:672 +msgid "Month" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:673 +msgid "Week" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:674 +msgid "Day" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:341 msgid "Today" msgstr "" -#: ../../Zotlabs/Module/Events.php:706 +#: ../../Zotlabs/Module/Events.php:708 msgid "Event removed" msgstr "" -#: ../../Zotlabs/Module/Events.php:709 +#: ../../Zotlabs/Module/Events.php:711 msgid "Failed to remove event" msgstr "" @@ -1126,7 +1137,7 @@ msgstr "" msgid "Edit post" msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:221 +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 #: ../../include/conversation.php:1647 ../../include/nav.php:92 msgid "Photos" msgstr "" @@ -1169,8 +1180,8 @@ msgstr "" #: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 #: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:922 -#: ../../include/text.php:934 ../../include/widgets.php:201 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/widgets.php:201 +#: ../../include/text.php:922 ../../include/text.php:934 msgid "Save" msgstr "" @@ -1287,15 +1298,15 @@ msgstr "" msgid "Recent activity" msgstr "" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 -#: ../../include/text.php:851 ../../include/nav.php:188 +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/nav.php:188 ../../include/text.php:851 msgid "Connections" msgstr "" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/acl_selectors.php:276 -#: ../../include/text.php:921 ../../include/text.php:933 -#: ../../include/nav.php:167 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/acl_selectors.php:276 +#: ../../include/nav.php:167 ../../include/text.php:921 +#: ../../include/text.php:933 msgid "Search" msgstr "" @@ -1323,39 +1334,39 @@ msgid "Image resize failed." msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:194 ../../include/photos.php:148 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 msgid "Unable to process image" msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:221 +#: ../../Zotlabs/Module/Profile_photo.php:223 msgid "Image upload failed." msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:240 +#: ../../Zotlabs/Module/Profile_photo.php:242 msgid "Unable to process image." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4310 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4297 msgid "female" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4311 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4298 #, php-format msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4312 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4299 msgid "male" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4313 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4300 #, php-format msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4315 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4302 #, php-format msgid "%1$s updated their %2$s" msgstr "" @@ -1366,18 +1377,18 @@ msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:303 #: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:298 -#: ../../Zotlabs/Module/Profile_photo.php:339 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 msgid "Photo not available." msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:385 +#: ../../Zotlabs/Module/Profile_photo.php:387 msgid "Upload File:" msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:386 +#: ../../Zotlabs/Module/Profile_photo.php:388 msgid "Select a profile:" msgstr "" @@ -1386,33 +1397,33 @@ msgid "Upload Cover Photo" msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:394 +#: ../../Zotlabs/Module/Profile_photo.php:396 #: ../../Zotlabs/Module/Settings.php:985 msgid "or" msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:394 +#: ../../Zotlabs/Module/Profile_photo.php:396 msgid "skip this step" msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:394 +#: ../../Zotlabs/Module/Profile_photo.php:396 msgid "select a photo from your photo albums" msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:413 +#: ../../Zotlabs/Module/Profile_photo.php:415 msgid "Crop Image" msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:414 +#: ../../Zotlabs/Module/Profile_photo.php:416 msgid "Please adjust the image cropping for optimum viewing." msgstr "" #: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:416 +#: ../../Zotlabs/Module/Profile_photo.php:418 msgid "Done Editing" msgstr "" @@ -1446,6 +1457,10 @@ msgstr "" msgid "Permissions denied." msgstr "" +#: ../../Zotlabs/Module/Cal.php:337 +msgid "Import" +msgstr "" + #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" msgstr "" @@ -1603,6 +1618,10 @@ msgid "Delivery report for %1$s" msgstr "" #: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:150 msgid "Redeliver" msgstr "" @@ -1637,7 +1656,7 @@ msgid "Could not create privacy group." msgstr "" #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3916 +#: ../../include/items.php:3903 msgid "Privacy group not found." msgstr "" @@ -1743,7 +1762,7 @@ msgid "Help:" msgstr "" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:224 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 #: ../../include/nav.php:161 msgid "Help" msgstr "" @@ -1870,12 +1889,6 @@ msgstr "" msgid "Download PDL file" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:197 ../../Zotlabs/Module/Pubsites.php:47 -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Webpages.php:201 -#: ../../include/page_widgets.php:42 -msgid "View" -msgstr "" - #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "" @@ -2238,8 +2251,8 @@ msgstr "" msgid "Profile Image" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:961 -#: ../../include/nav.php:88 +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 +#: ../../include/channel.php:961 msgid "Edit Profiles" msgstr "" @@ -2361,24 +2374,24 @@ msgstr "" msgid "Executable content type not permitted to this channel." msgstr "" -#: ../../Zotlabs/Module/Item.php:848 +#: ../../Zotlabs/Module/Item.php:852 msgid "Duplicate post suppressed." msgstr "" -#: ../../Zotlabs/Module/Item.php:983 +#: ../../Zotlabs/Module/Item.php:985 msgid "System error. Post not saved." msgstr "" -#: ../../Zotlabs/Module/Item.php:1241 +#: ../../Zotlabs/Module/Item.php:1243 msgid "Unable to obtain post information from database." msgstr "" -#: ../../Zotlabs/Module/Item.php:1248 +#: ../../Zotlabs/Module/Item.php:1250 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../Zotlabs/Module/Item.php:1255 +#: ../../Zotlabs/Module/Item.php:1257 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "" @@ -2389,8 +2402,8 @@ msgstr "" #: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 #: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:309 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 #: ../../include/photo/photo_driver.php:718 msgid "Profile Photos" msgstr "" @@ -2473,12 +2486,12 @@ msgid "Show Oldest First" msgstr "" #: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1572 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1557 msgid "View Photo" msgstr "" #: ../../Zotlabs/Module/Photos.php:823 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1589 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1574 msgid "Edit Album" msgstr "" @@ -2921,7 +2934,7 @@ msgstr "" msgid "Create a new channel" msgstr "" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 #: ../../include/nav.php:208 msgid "Channel Manager" msgstr "" @@ -3132,7 +3145,7 @@ msgctxt "mood" msgid "%1$s is %2$s" msgstr "" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:226 +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 msgid "Mood" msgstr "" @@ -3408,7 +3421,7 @@ msgstr "" msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2821 +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2833 msgid "Default" msgstr "" @@ -3444,7 +3457,7 @@ msgstr "" msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1455 +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1440 msgid "Site" msgstr "" @@ -3793,7 +3806,7 @@ msgid "" "embedded content from that site is explicitly blocked." msgstr "" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1458 +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1443 msgid "Security" msgstr "" @@ -3960,7 +3973,7 @@ msgid "Account '%s' unblocked" msgstr "" #: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1456 +#: ../../include/widgets.php:1441 msgid "Accounts" msgstr "" @@ -4066,7 +4079,7 @@ msgstr "" msgid "Channel '%s' code disallowed" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1457 +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1442 msgid "Channels" msgstr "" @@ -4125,7 +4138,7 @@ msgid "Enable" msgstr "" #: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1460 +#: ../../include/widgets.php:1445 msgid "Plugins" msgstr "" @@ -4134,8 +4147,8 @@ msgid "Toggle" msgstr "" #: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 -#: ../../include/nav.php:210 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 +#: ../../include/widgets.php:638 msgid "Settings" msgstr "" @@ -4191,7 +4204,7 @@ msgstr "" msgid "Install new repo" msgstr "" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:333 +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 msgid "Install" msgstr "" @@ -4208,7 +4221,7 @@ msgid "Install a New Plugin Repository" msgstr "" #: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 -#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:333 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:334 msgid "Update" msgstr "" @@ -4225,7 +4238,7 @@ msgid "Screenshot" msgstr "" #: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1461 +#: ../../include/widgets.php:1446 msgid "Themes" msgstr "" @@ -4241,8 +4254,8 @@ msgstr "" msgid "Log settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1482 -#: ../../include/widgets.php:1492 +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1467 +#: ../../include/widgets.php:1477 msgid "Logs" msgstr "" @@ -4308,7 +4321,7 @@ msgstr "" msgid "Edit Profile Field" msgstr "" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1463 +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1448 msgid "Profile Fields" msgstr "" @@ -4424,7 +4437,7 @@ msgstr "" msgid "Mark all system notifications seen" msgstr "" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:227 +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 #: ../../include/conversation.php:963 msgid "Poke" msgstr "" @@ -4593,7 +4606,7 @@ msgstr "" msgid "Authenticate" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1343 +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1328 msgid "Public Hubs" msgstr "" @@ -4635,13 +4648,13 @@ msgstr "" msgid "Rate" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:184 +#: ../../Zotlabs/Module/Profile_photo.php:186 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:387 +#: ../../Zotlabs/Module/Profile_photo.php:389 msgid "Upload Profile Photo" msgstr "" @@ -4691,8 +4704,8 @@ msgstr "" msgid "Description: " msgstr "" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:165 +#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 +#: ../../include/widgets.php:102 msgid "Apps" msgstr "" @@ -6109,8 +6122,8 @@ msgstr "" msgid "*" msgstr "" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:630 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 +#: ../../include/features.php:72 msgid "Channel Sources" msgstr "" @@ -6212,7 +6225,7 @@ msgstr "" msgid "Select a tag to remove: " msgstr "" -#: ../../Zotlabs/Module/Webpages.php:192 ../../Zotlabs/Lib/Apps.php:217 +#: ../../Zotlabs/Module/Webpages.php:192 ../../Zotlabs/Lib/Apps.php:218 #: ../../include/conversation.php:1700 ../../include/nav.php:106 msgid "Webpages" msgstr "" @@ -6233,9 +6246,9 @@ msgstr "" msgid "Not found" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:218 +#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 #: ../../include/conversation.php:1710 ../../include/conversation.php:1713 -#: ../../include/features.php:55 ../../include/nav.php:108 +#: ../../include/nav.php:108 ../../include/features.php:55 msgid "Wiki" msgstr "" @@ -6573,89 +6586,89 @@ msgstr "" msgid "commented on %s's post" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:204 +#: ../../Zotlabs/Lib/Apps.php:205 msgid "Site Admin" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:205 +#: ../../Zotlabs/Lib/Apps.php:206 msgid "Bug Report" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:206 +#: ../../Zotlabs/Lib/Apps.php:207 msgid "View Bookmarks" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:207 +#: ../../Zotlabs/Lib/Apps.php:208 msgid "My Chatrooms" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:209 +#: ../../Zotlabs/Lib/Apps.php:210 msgid "Firefox Share" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:210 +#: ../../Zotlabs/Lib/Apps.php:211 msgid "Remote Diagnostics" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:90 +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 msgid "Suggest Channels" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:112 +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 #: ../../boot.php:1704 msgid "Login" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:181 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 msgid "Grid" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:219 ../../include/nav.php:184 +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 msgid "Channel Home" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:222 ../../include/conversation.php:1664 +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1664 #: ../../include/conversation.php:1667 ../../include/nav.php:203 msgid "Events" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:169 +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 msgid "Directory" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:225 ../../include/nav.php:195 +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 msgid "Mail" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:228 ../../include/nav.php:96 +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 msgid "Chat" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:230 +#: ../../Zotlabs/Lib/Apps.php:231 msgid "Probe" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:231 +#: ../../Zotlabs/Lib/Apps.php:232 msgid "Suggest" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:232 +#: ../../Zotlabs/Lib/Apps.php:233 msgid "Random Channel" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:233 +#: ../../Zotlabs/Lib/Apps.php:234 msgid "Invite" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:234 ../../include/widgets.php:1459 +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1444 msgid "Features" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:236 +#: ../../Zotlabs/Lib/Apps.php:237 msgid "Post" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:338 +#: ../../Zotlabs/Lib/Apps.php:339 msgid "Purchase" msgstr "" @@ -6891,42 +6904,6 @@ msgid "" "permissions set who is allowed to view the post." msgstr "" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "" - -#: ../../include/bb2diaspora.php:485 ../../include/event.php:22 -#: ../../include/event.php:69 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "" - -#: ../../include/bb2diaspora.php:491 ../../include/event.php:30 -#: ../../include/event.php:73 -msgid "Starts:" -msgstr "" - -#: ../../include/bb2diaspora.php:499 ../../include/event.php:40 -#: ../../include/event.php:77 -msgid "Finishes:" -msgstr "" - -#: ../../include/connections.php:95 -msgid "New window" -msgstr "" - -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "" - -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "" - #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7145,7 +7122,7 @@ msgid "Files and Storage" msgstr "" #: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:842 +#: ../../include/widgets.php:827 msgid "Chatrooms" msgstr "" @@ -7203,6 +7180,19 @@ msgid_plural "Abstains" msgstr[0] "" msgstr[1] "" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "" + +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "" + +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "" + #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -7238,67 +7228,508 @@ msgstr "" msgid "add" msgstr "" -#: ../../include/import.php:29 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +#: ../../include/js_strings.php:5 +msgid "Delete this item?" msgstr "" -#: ../../include/import.php:76 -msgid "Channel clone failed. Import failed." -msgstr "" - -#: ../../include/items.php:902 ../../include/items.php:947 -msgid "(Unknown)" -msgstr "" - -#: ../../include/items.php:1146 -msgid "Visible to anybody on the internet." -msgstr "" - -#: ../../include/items.php:1148 -msgid "Visible to you only." -msgstr "" - -#: ../../include/items.php:1150 -msgid "Visible to anybody in this network." -msgstr "" - -#: ../../include/items.php:1152 -msgid "Visible to anybody authenticated." -msgstr "" - -#: ../../include/items.php:1154 +#: ../../include/js_strings.php:8 #, php-format -msgid "Visible to anybody on %s." +msgid "%s show less" msgstr "" -#: ../../include/items.php:1156 -msgid "Visible to all connections." -msgstr "" - -#: ../../include/items.php:1158 -msgid "Visible to approved connections." -msgstr "" - -#: ../../include/items.php:1160 -msgid "Visible to specific connections." -msgstr "" - -#: ../../include/items.php:3932 -msgid "Privacy group is empty." -msgstr "" - -#: ../../include/items.php:3939 +#: ../../include/js_strings.php:9 #, php-format -msgid "Privacy group: %s" +msgid "%s expand" msgstr "" -#: ../../include/items.php:3951 -msgid "Connection not found." +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" msgstr "" -#: ../../include/items.php:4317 -msgid "profile photo" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "" + +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "" + +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "" + +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "" + +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "" + +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "" + +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "" + +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "" + +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "" + +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "" + +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "" + +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "" + +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "" + +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr "" + +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "" + +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "" + +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "" + +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "" + +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" +msgstr "" + +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "" + +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "" + +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "" + +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" +msgstr "" + +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "" + +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "" + +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "" + +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "" + +#: ../../include/js_strings.php:42 +msgid " " +msgstr "" + +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "" + +#: ../../include/js_strings.php:45 ../../include/text.php:1237 +msgid "January" +msgstr "" + +#: ../../include/js_strings.php:46 ../../include/text.php:1237 +msgid "February" +msgstr "" + +#: ../../include/js_strings.php:47 ../../include/text.php:1237 +msgid "March" +msgstr "" + +#: ../../include/js_strings.php:48 ../../include/text.php:1237 +msgid "April" +msgstr "" + +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "" + +#: ../../include/js_strings.php:50 ../../include/text.php:1237 +msgid "June" +msgstr "" + +#: ../../include/js_strings.php:51 ../../include/text.php:1237 +msgid "July" +msgstr "" + +#: ../../include/js_strings.php:52 ../../include/text.php:1237 +msgid "August" +msgstr "" + +#: ../../include/js_strings.php:53 ../../include/text.php:1237 +msgid "September" +msgstr "" + +#: ../../include/js_strings.php:54 ../../include/text.php:1237 +msgid "October" +msgstr "" + +#: ../../include/js_strings.php:55 ../../include/text.php:1237 +msgid "November" +msgstr "" + +#: ../../include/js_strings.php:56 ../../include/text.php:1237 +msgid "December" +msgstr "" + +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "" + +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "" + +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "" + +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "" + +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "" + +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "" + +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "" + +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "" + +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "" + +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "" + +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "" + +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "" + +#: ../../include/js_strings.php:69 ../../include/text.php:1233 +msgid "Sunday" +msgstr "" + +#: ../../include/js_strings.php:70 ../../include/text.php:1233 +msgid "Monday" +msgstr "" + +#: ../../include/js_strings.php:71 ../../include/text.php:1233 +msgid "Tuesday" +msgstr "" + +#: ../../include/js_strings.php:72 ../../include/text.php:1233 +msgid "Wednesday" +msgstr "" + +#: ../../include/js_strings.php:73 ../../include/text.php:1233 +msgid "Thursday" +msgstr "" + +#: ../../include/js_strings.php:74 ../../include/text.php:1233 +msgid "Friday" +msgstr "" + +#: ../../include/js_strings.php:75 ../../include/text.php:1233 +msgid "Saturday" +msgstr "" + +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "" + +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "" + +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "" + +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "" + +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "" + +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "" + +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "" + +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "" + +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "" + +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "" + +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "" + +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "" + +#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 +msgid "Logout" +msgstr "" + +#: ../../include/nav.php:82 ../../include/nav.php:115 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:85 ../../include/nav.php:146 +msgid "Home" +msgstr "" + +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "" + +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "" + +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "" + +#: ../../include/nav.php:90 ../../include/channel.php:965 +msgid "Edit Profile" +msgstr "" + +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "" + +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "" + +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "" + +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "" + +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "" + +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "" + +#: ../../include/nav.php:108 +msgid "Your wiki" +msgstr "" + +#: ../../include/nav.php:112 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:129 +#, php-format +msgid "%s - click to logout" +msgstr "" + +#: ../../include/nav.php:132 +msgid "Remote authentication" +msgstr "" + +#: ../../include/nav.php:132 +msgid "Click to authenticate to your home hub" +msgstr "" + +#: ../../include/nav.php:146 +msgid "Home Page" +msgstr "" + +#: ../../include/nav.php:149 +msgid "Create an account" +msgstr "" + +#: ../../include/nav.php:161 +msgid "Help and documentation" +msgstr "" + +#: ../../include/nav.php:165 +msgid "Applications, utilities, links, games" +msgstr "" + +#: ../../include/nav.php:167 +msgid "Search site @name, #tag, ?docs, content" +msgstr "" + +#: ../../include/nav.php:169 +msgid "Channel Directory" +msgstr "" + +#: ../../include/nav.php:181 +msgid "Your grid" +msgstr "" + +#: ../../include/nav.php:182 +msgid "Mark all grid notifications seen" +msgstr "" + +#: ../../include/nav.php:184 +msgid "Channel home" +msgstr "" + +#: ../../include/nav.php:185 +msgid "Mark all channel notifications seen" +msgstr "" + +#: ../../include/nav.php:191 +msgid "Notices" +msgstr "" + +#: ../../include/nav.php:191 +msgid "Notifications" +msgstr "" + +#: ../../include/nav.php:192 +msgid "See all notifications" +msgstr "" + +#: ../../include/nav.php:195 +msgid "Private mail" +msgstr "" + +#: ../../include/nav.php:196 +msgid "See all private messages" +msgstr "" + +#: ../../include/nav.php:197 +msgid "Mark all private messages seen" +msgstr "" + +#: ../../include/nav.php:198 ../../include/widgets.php:658 +msgid "Inbox" +msgstr "" + +#: ../../include/nav.php:199 ../../include/widgets.php:663 +msgid "Outbox" +msgstr "" + +#: ../../include/nav.php:200 ../../include/widgets.php:668 +msgid "New Message" +msgstr "" + +#: ../../include/nav.php:203 +msgid "Event Calendar" +msgstr "" + +#: ../../include/nav.php:204 +msgid "See all events" +msgstr "" + +#: ../../include/nav.php:205 +msgid "Mark all events seen" +msgstr "" + +#: ../../include/nav.php:208 +msgid "Manage Your Channels" +msgstr "" + +#: ../../include/nav.php:210 +msgid "Account/Channel Settings" +msgstr "" + +#: ../../include/nav.php:218 ../../include/widgets.php:1474 +msgid "Admin" +msgstr "" + +#: ../../include/nav.php:218 +msgid "Site Setup and Configuration" +msgstr "" + +#: ../../include/nav.php:254 +msgid "@name, #tag, ?doc, content" +msgstr "" + +#: ../../include/nav.php:255 +msgid "Please wait..." msgstr "" #: ../../include/selectors.php:30 @@ -7547,6 +7978,21 @@ msgstr "" msgid "Ask me" msgstr "" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "" + +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "" + #: ../../include/event.php:812 msgid "This event has been added to your calendar." msgstr "" @@ -7689,6 +8135,802 @@ msgstr "" msgid "Cannot connect to yourself." msgstr "" +#: ../../include/import.php:29 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "" + +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "" + +#: ../../include/security.php:383 +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/api.php:1326 +msgid "Public Timeline" +msgstr "" + +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "" + +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "" + +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "" + +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "" + +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "" + +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "" + +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "" + +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "" + +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/widgets.php:46 ../../include/widgets.php:429 +#: ../../include/contact_widgets.php:91 +msgid "Categories" +msgstr "" + +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" +msgstr "" + +#: ../../include/taxonomy.php:293 +msgid "Keywords" +msgstr "" + +#: ../../include/taxonomy.php:314 +msgid "have" +msgstr "" + +#: ../../include/taxonomy.php:314 +msgid "has" +msgstr "" + +#: ../../include/taxonomy.php:315 +msgid "want" +msgstr "" + +#: ../../include/taxonomy.php:315 +msgid "wants" +msgstr "" + +#: ../../include/taxonomy.php:316 +msgid "likes" +msgstr "" + +#: ../../include/taxonomy.php:317 +msgid "dislikes" +msgstr "" + +#: ../../include/zot.php:709 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:725 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:2373 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../include/zot.php:3718 +msgid "invalid target signature" +msgstr "" + +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "" + +#: ../../include/attach.php:499 +msgid "No source file." +msgstr "" + +#: ../../include/attach.php:521 +msgid "Cannot locate file to replace" +msgstr "" + +#: ../../include/attach.php:539 +msgid "Cannot locate file to revise/update" +msgstr "" + +#: ../../include/attach.php:674 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "" + +#: ../../include/attach.php:688 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "" + +#: ../../include/attach.php:846 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "" + +#: ../../include/attach.php:859 +msgid "Stored file could not be verified. Upload failed." +msgstr "" + +#: ../../include/attach.php:915 ../../include/attach.php:931 +msgid "Path not available." +msgstr "" + +#: ../../include/attach.php:977 ../../include/attach.php:1129 +msgid "Empty pathname" +msgstr "" + +#: ../../include/attach.php:1003 +msgid "duplicate filename or path" +msgstr "" + +#: ../../include/attach.php:1025 +msgid "Path not found." +msgstr "" + +#: ../../include/attach.php:1083 +msgid "mkdir failed." +msgstr "" + +#: ../../include/attach.php:1087 +msgid "database storage failed." +msgstr "" + +#: ../../include/attach.php:1135 +msgid "Empty path" +msgstr "" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "" + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "" + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "" + +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "" + +#: ../../include/widgets.php:281 ../../include/features.php:85 +msgid "Saved Searches" +msgstr "" + +#: ../../include/widgets.php:310 ../../include/features.php:99 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" +msgstr "" + +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "" + +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "" + +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "" + +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "" + +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "" + +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "" + +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "" + +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "" + +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "" + +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "" + +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "" + +#: ../../include/widgets.php:622 +msgid "Premium Channel Settings" +msgstr "" + +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "" + +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "" + +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "" + +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "" + +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "" + +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "" + +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "" + +#: ../../include/widgets.php:751 +msgid "Events Tools" +msgstr "" + +#: ../../include/widgets.php:752 +msgid "Export Calendar" +msgstr "" + +#: ../../include/widgets.php:753 +msgid "Import Calendar" +msgstr "" + +#: ../../include/widgets.php:831 +msgid "Overview" +msgstr "" + +#: ../../include/widgets.php:838 +msgid "Chat Members" +msgstr "" + +#: ../../include/widgets.php:860 +msgid "Wiki List" +msgstr "" + +#: ../../include/widgets.php:898 +msgid "Wiki Pages" +msgstr "" + +#: ../../include/widgets.php:933 +msgid "Bookmarked Chatrooms" +msgstr "" + +#: ../../include/widgets.php:956 +msgid "Suggested Chatrooms" +msgstr "" + +#: ../../include/widgets.php:1102 ../../include/widgets.php:1214 +msgid "photo/image" +msgstr "" + +#: ../../include/widgets.php:1157 +msgid "Click to show more" +msgstr "" + +#: ../../include/widgets.php:1308 +msgid "Rating Tools" +msgstr "" + +#: ../../include/widgets.php:1312 ../../include/widgets.php:1314 +msgid "Rate Me" +msgstr "" + +#: ../../include/widgets.php:1317 +msgid "View Ratings" +msgstr "" + +#: ../../include/widgets.php:1374 +msgid "Forums" +msgstr "" + +#: ../../include/widgets.php:1403 +msgid "Tasks" +msgstr "" + +#: ../../include/widgets.php:1412 +msgid "Documentation" +msgstr "" + +#: ../../include/widgets.php:1414 +msgid "Project/Site Information" +msgstr "" + +#: ../../include/widgets.php:1415 +msgid "For Members" +msgstr "" + +#: ../../include/widgets.php:1416 +msgid "For Administrators" +msgstr "" + +#: ../../include/widgets.php:1417 +msgid "For Developers" +msgstr "" + +#: ../../include/widgets.php:1441 ../../include/widgets.php:1479 +msgid "Member registrations waiting for confirmation" +msgstr "" + +#: ../../include/widgets.php:1447 +msgid "Inspect queue" +msgstr "" + +#: ../../include/widgets.php:1449 +msgid "DB updates" +msgstr "" + +#: ../../include/widgets.php:1475 +msgid "Plugin Features" +msgstr "" + +#: ../../include/text.php:404 +msgid "prev" +msgstr "" + +#: ../../include/text.php:406 +msgid "first" +msgstr "" + +#: ../../include/text.php:435 +msgid "last" +msgstr "" + +#: ../../include/text.php:438 +msgid "next" +msgstr "" + +#: ../../include/text.php:448 +msgid "older" +msgstr "" + +#: ../../include/text.php:450 +msgid "newer" +msgstr "" + +#: ../../include/text.php:839 +msgid "No connections" +msgstr "" + +#: ../../include/text.php:864 +#, php-format +msgid "View all %s connections" +msgstr "" + +#: ../../include/text.php:1009 ../../include/text.php:1014 +msgid "poke" +msgstr "" + +#: ../../include/text.php:1015 +msgid "ping" +msgstr "" + +#: ../../include/text.php:1015 +msgid "pinged" +msgstr "" + +#: ../../include/text.php:1016 +msgid "prod" +msgstr "" + +#: ../../include/text.php:1016 +msgid "prodded" +msgstr "" + +#: ../../include/text.php:1017 +msgid "slap" +msgstr "" + +#: ../../include/text.php:1017 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:1018 +msgid "finger" +msgstr "" + +#: ../../include/text.php:1018 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:1019 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:1019 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:1031 +msgid "happy" +msgstr "" + +#: ../../include/text.php:1032 +msgid "sad" +msgstr "" + +#: ../../include/text.php:1033 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:1034 +msgid "tired" +msgstr "" + +#: ../../include/text.php:1035 +msgid "perky" +msgstr "" + +#: ../../include/text.php:1036 +msgid "angry" +msgstr "" + +#: ../../include/text.php:1037 +msgid "stupefied" +msgstr "" + +#: ../../include/text.php:1038 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:1039 +msgid "interested" +msgstr "" + +#: ../../include/text.php:1040 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:1041 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:1042 +msgid "alive" +msgstr "" + +#: ../../include/text.php:1043 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:1044 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:1045 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:1046 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:1047 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:1048 +msgid "depressed" +msgstr "" + +#: ../../include/text.php:1049 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:1050 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:1051 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:1237 +msgid "May" +msgstr "" + +#: ../../include/text.php:1314 ../../include/text.php:1318 +msgid "Unknown Attachment" +msgstr "" + +#: ../../include/text.php:1320 +msgid "unknown" +msgstr "" + +#: ../../include/text.php:1356 +msgid "remove category" +msgstr "" + +#: ../../include/text.php:1433 +msgid "remove from file" +msgstr "" + +#: ../../include/text.php:1730 ../../include/text.php:1801 +msgid "default" +msgstr "" + +#: ../../include/text.php:1738 +msgid "Page layout" +msgstr "" + +#: ../../include/text.php:1738 +msgid "You can create your own with the layouts tool" +msgstr "" + +#: ../../include/text.php:1780 +msgid "Page content type" +msgstr "" + +#: ../../include/text.php:1813 +msgid "Select an alternate language" +msgstr "" + +#: ../../include/text.php:1930 +msgid "activity" +msgstr "" + +#: ../../include/text.php:2239 +msgid "Design Tools" +msgstr "" + +#: ../../include/text.php:2245 +msgid "Pages" +msgstr "" + +#: ../../include/items.php:898 ../../include/items.php:943 +msgid "(Unknown)" +msgstr "" + +#: ../../include/items.php:1142 +msgid "Visible to anybody on the internet." +msgstr "" + +#: ../../include/items.php:1144 +msgid "Visible to you only." +msgstr "" + +#: ../../include/items.php:1146 +msgid "Visible to anybody in this network." +msgstr "" + +#: ../../include/items.php:1148 +msgid "Visible to anybody authenticated." +msgstr "" + +#: ../../include/items.php:1150 +#, php-format +msgid "Visible to anybody on %s." +msgstr "" + +#: ../../include/items.php:1152 +msgid "Visible to all connections." +msgstr "" + +#: ../../include/items.php:1154 +msgid "Visible to approved connections." +msgstr "" + +#: ../../include/items.php:1156 +msgid "Visible to specific connections." +msgstr "" + +#: ../../include/items.php:3919 +msgid "Privacy group is empty." +msgstr "" + +#: ../../include/items.php:3926 +#, php-format +msgid "Privacy group: %s" +msgstr "" + +#: ../../include/items.php:3938 +msgid "Connection not found." +msgstr "" + +#: ../../include/items.php:4304 +msgid "profile photo" +msgstr "" + +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" +msgstr "" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" +msgstr "" + +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "" + +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "" + +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "" + +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "" + +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "" + +#: ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "" + +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" +msgstr "" + +#: ../../include/network.php:704 +msgid "view full size" +msgstr "" + +#: ../../include/network.php:1930 ../../include/account.php:317 +#: ../../include/account.php:344 ../../include/account.php:404 +msgid "Administrator" +msgstr "" + +#: ../../include/network.php:1944 +msgid "No Subject" +msgstr "" + +#: ../../include/network.php:2198 ../../include/network.php:2199 +msgid "Friendica" +msgstr "" + +#: ../../include/network.php:2200 +msgid "OStatus" +msgstr "" + +#: ../../include/network.php:2201 +msgid "GNU-Social" +msgstr "" + +#: ../../include/network.php:2202 +msgid "RSS/Atom" +msgstr "" + +#: ../../include/network.php:2204 +msgid "Diaspora" +msgstr "" + +#: ../../include/network.php:2205 +msgid "Facebook" +msgstr "" + +#: ../../include/network.php:2206 +msgid "Zot" +msgstr "" + +#: ../../include/network.php:2207 +msgid "LinkedIn" +msgstr "" + +#: ../../include/network.php:2208 +msgid "XMPP/IM" +msgstr "" + +#: ../../include/network.php:2209 +msgid "MySpace" +msgstr "" + +#: ../../include/activities.php:41 +msgid " and " +msgstr "" + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "" + +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "" + +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "" + #: ../../include/features.php:48 msgid "General Features" msgstr "" @@ -7876,10 +9118,6 @@ msgstr "" msgid "Enable management and selection of privacy groups" msgstr "" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "" - #: ../../include/features.php:85 msgid "Save search terms for re-use" msgstr "" @@ -7948,11 +9186,6 @@ msgstr "" msgid "Add emoji reaction ability to posts" msgstr "" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "" - #: ../../include/features.php:99 msgid "Ability to file posts under folders" msgstr "" @@ -7981,929 +9214,12 @@ msgstr "" msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/security.php:383 -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/oembed.php:325 +msgid "Embedded content" msgstr "" -#: ../../include/api.php:1326 -msgid "Public Timeline" -msgstr "" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "" - -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "" - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "" - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "" - -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "" - -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "" - -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "" - -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:314 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:314 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "" - -#: ../../include/taxonomy.php:315 -msgid "wants" -msgstr "" - -#: ../../include/taxonomy.php:316 -msgid "likes" -msgstr "" - -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "" - -#: ../../include/text.php:404 -msgid "prev" -msgstr "" - -#: ../../include/text.php:406 -msgid "first" -msgstr "" - -#: ../../include/text.php:435 -msgid "last" -msgstr "" - -#: ../../include/text.php:438 -msgid "next" -msgstr "" - -#: ../../include/text.php:448 -msgid "older" -msgstr "" - -#: ../../include/text.php:450 -msgid "newer" -msgstr "" - -#: ../../include/text.php:839 -msgid "No connections" -msgstr "" - -#: ../../include/text.php:864 -#, php-format -msgid "View all %s connections" -msgstr "" - -#: ../../include/text.php:1009 ../../include/text.php:1014 -msgid "poke" -msgstr "" - -#: ../../include/text.php:1015 -msgid "ping" -msgstr "" - -#: ../../include/text.php:1015 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:1016 -msgid "prod" -msgstr "" - -#: ../../include/text.php:1016 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:1017 -msgid "slap" -msgstr "" - -#: ../../include/text.php:1017 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:1018 -msgid "finger" -msgstr "" - -#: ../../include/text.php:1018 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:1019 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:1019 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:1031 -msgid "happy" -msgstr "" - -#: ../../include/text.php:1032 -msgid "sad" -msgstr "" - -#: ../../include/text.php:1033 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:1034 -msgid "tired" -msgstr "" - -#: ../../include/text.php:1035 -msgid "perky" -msgstr "" - -#: ../../include/text.php:1036 -msgid "angry" -msgstr "" - -#: ../../include/text.php:1037 -msgid "stupefied" -msgstr "" - -#: ../../include/text.php:1038 -msgid "puzzled" -msgstr "" - -#: ../../include/text.php:1039 -msgid "interested" -msgstr "" - -#: ../../include/text.php:1040 -msgid "bitter" -msgstr "" - -#: ../../include/text.php:1041 -msgid "cheerful" -msgstr "" - -#: ../../include/text.php:1042 -msgid "alive" -msgstr "" - -#: ../../include/text.php:1043 -msgid "annoyed" -msgstr "" - -#: ../../include/text.php:1044 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:1045 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:1046 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:1047 -msgid "frustrated" -msgstr "" - -#: ../../include/text.php:1048 -msgid "depressed" -msgstr "" - -#: ../../include/text.php:1049 -msgid "motivated" -msgstr "" - -#: ../../include/text.php:1050 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:1051 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:1233 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "" - -#: ../../include/text.php:1233 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "" - -#: ../../include/text.php:1233 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "" - -#: ../../include/text.php:1233 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "" - -#: ../../include/text.php:1233 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "" - -#: ../../include/text.php:1233 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "" - -#: ../../include/text.php:1233 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:45 -msgid "January" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:46 -msgid "February" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:47 -msgid "March" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:48 -msgid "April" -msgstr "" - -#: ../../include/text.php:1237 -msgid "May" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:50 -msgid "June" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:51 -msgid "July" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:52 -msgid "August" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:53 -msgid "September" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:54 -msgid "October" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:55 -msgid "November" -msgstr "" - -#: ../../include/text.php:1237 ../../include/js_strings.php:56 -msgid "December" -msgstr "" - -#: ../../include/text.php:1314 ../../include/text.php:1318 -msgid "Unknown Attachment" -msgstr "" - -#: ../../include/text.php:1320 -msgid "unknown" -msgstr "" - -#: ../../include/text.php:1356 -msgid "remove category" -msgstr "" - -#: ../../include/text.php:1433 -msgid "remove from file" -msgstr "" - -#: ../../include/text.php:1730 ../../include/text.php:1801 -msgid "default" -msgstr "" - -#: ../../include/text.php:1738 -msgid "Page layout" -msgstr "" - -#: ../../include/text.php:1738 -msgid "You can create your own with the layouts tool" -msgstr "" - -#: ../../include/text.php:1780 -msgid "Page content type" -msgstr "" - -#: ../../include/text.php:1813 -msgid "Select an alternate language" -msgstr "" - -#: ../../include/text.php:1930 -msgid "activity" -msgstr "" - -#: ../../include/text.php:2239 -msgid "Design Tools" -msgstr "" - -#: ../../include/text.php:2245 -msgid "Pages" -msgstr "" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "" - -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "" - -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "" - -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "" - -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "" - -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "" - -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "" - -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "" - -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "" - -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "" - -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "" - -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "" - -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "" - -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "" - -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "" - -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "" - -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "" - -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "" - -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "" - -#: ../../include/widgets.php:622 -msgid "Premium Channel Settings" -msgstr "" - -#: ../../include/widgets.php:651 -msgid "Private Mail Menu" -msgstr "" - -#: ../../include/widgets.php:653 -msgid "Combined View" -msgstr "" - -#: ../../include/widgets.php:658 ../../include/nav.php:198 -msgid "Inbox" -msgstr "" - -#: ../../include/widgets.php:663 ../../include/nav.php:199 -msgid "Outbox" -msgstr "" - -#: ../../include/widgets.php:668 ../../include/nav.php:200 -msgid "New Message" -msgstr "" - -#: ../../include/widgets.php:685 ../../include/widgets.php:697 -msgid "Conversations" -msgstr "" - -#: ../../include/widgets.php:689 -msgid "Received Messages" -msgstr "" - -#: ../../include/widgets.php:693 -msgid "Sent Messages" -msgstr "" - -#: ../../include/widgets.php:707 -msgid "No messages." -msgstr "" - -#: ../../include/widgets.php:725 -msgid "Delete conversation" -msgstr "" - -#: ../../include/widgets.php:751 -msgid "Events Menu" -msgstr "" - -#: ../../include/widgets.php:752 -msgid "Day View" -msgstr "" - -#: ../../include/widgets.php:753 -msgid "Week View" -msgstr "" - -#: ../../include/widgets.php:754 -msgid "Month View" -msgstr "" - -#: ../../include/widgets.php:766 -msgid "Events Tools" -msgstr "" - -#: ../../include/widgets.php:767 -msgid "Export Calendar" -msgstr "" - -#: ../../include/widgets.php:768 -msgid "Import Calendar" -msgstr "" - -#: ../../include/widgets.php:846 -msgid "Overview" -msgstr "" - -#: ../../include/widgets.php:853 -msgid "Chat Members" -msgstr "" - -#: ../../include/widgets.php:875 -msgid "Wiki List" -msgstr "" - -#: ../../include/widgets.php:913 -msgid "Wiki Pages" -msgstr "" - -#: ../../include/widgets.php:948 -msgid "Bookmarked Chatrooms" -msgstr "" - -#: ../../include/widgets.php:971 -msgid "Suggested Chatrooms" -msgstr "" - -#: ../../include/widgets.php:1117 ../../include/widgets.php:1229 -msgid "photo/image" -msgstr "" - -#: ../../include/widgets.php:1172 -msgid "Click to show more" -msgstr "" - -#: ../../include/widgets.php:1323 -msgid "Rating Tools" -msgstr "" - -#: ../../include/widgets.php:1327 ../../include/widgets.php:1329 -msgid "Rate Me" -msgstr "" - -#: ../../include/widgets.php:1332 -msgid "View Ratings" -msgstr "" - -#: ../../include/widgets.php:1389 -msgid "Forums" -msgstr "" - -#: ../../include/widgets.php:1418 -msgid "Tasks" -msgstr "" - -#: ../../include/widgets.php:1427 -msgid "Documentation" -msgstr "" - -#: ../../include/widgets.php:1429 -msgid "Project/Site Information" -msgstr "" - -#: ../../include/widgets.php:1430 -msgid "For Members" -msgstr "" - -#: ../../include/widgets.php:1431 -msgid "For Administrators" -msgstr "" - -#: ../../include/widgets.php:1432 -msgid "For Developers" -msgstr "" - -#: ../../include/widgets.php:1456 ../../include/widgets.php:1494 -msgid "Member registrations waiting for confirmation" -msgstr "" - -#: ../../include/widgets.php:1462 -msgid "Inspect queue" -msgstr "" - -#: ../../include/widgets.php:1464 -msgid "DB updates" -msgstr "" - -#: ../../include/widgets.php:1489 ../../include/nav.php:218 -msgid "Admin" -msgstr "" - -#: ../../include/widgets.php:1490 -msgid "Plugin Features" -msgstr "" - -#: ../../include/zot.php:709 -msgid "Invalid data packet" -msgstr "" - -#: ../../include/zot.php:725 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../include/zot.php:2373 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - -#: ../../include/zot.php:3718 -msgid "invalid target signature" -msgstr "" - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "" - -#: ../../include/attach.php:499 -msgid "No source file." -msgstr "" - -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" -msgstr "" - -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" -msgstr "" - -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "" - -#: ../../include/attach.php:688 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" - -#: ../../include/attach.php:846 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "" - -#: ../../include/attach.php:859 -msgid "Stored file could not be verified. Upload failed." -msgstr "" - -#: ../../include/attach.php:915 ../../include/attach.php:931 -msgid "Path not available." -msgstr "" - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "" - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "" - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "" - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "" - -#: ../../include/attach.php:1135 -msgid "Empty path" -msgstr "" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "" - -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "" - -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "" - -#: ../../include/channel.php:32 -msgid "Unable to obtain identity information from database" -msgstr "" - -#: ../../include/channel.php:66 -msgid "Empty name" -msgstr "" - -#: ../../include/channel.php:69 -msgid "Name too long" -msgstr "" - -#: ../../include/channel.php:180 -msgid "No account identifier" -msgstr "" - -#: ../../include/channel.php:192 -msgid "Nickname is required." -msgstr "" - -#: ../../include/channel.php:206 -msgid "Reserved nickname. Please choose another." -msgstr "" - -#: ../../include/channel.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "" - -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" -msgstr "" - -#: ../../include/channel.php:345 -msgid "Default Profile" -msgstr "" - -#: ../../include/channel.php:815 -msgid "Requested channel is not available." -msgstr "" - -#: ../../include/channel.php:962 -msgid "Create New Profile" -msgstr "" - -#: ../../include/channel.php:965 ../../include/nav.php:90 -msgid "Edit Profile" -msgstr "" - -#: ../../include/channel.php:982 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/channel.php:1055 ../../include/channel.php:1167 -msgid "Gender:" -msgstr "" - -#: ../../include/channel.php:1056 ../../include/channel.php:1211 -msgid "Status:" -msgstr "" - -#: ../../include/channel.php:1057 ../../include/channel.php:1222 -msgid "Homepage:" -msgstr "" - -#: ../../include/channel.php:1058 -msgid "Online Now" -msgstr "" - -#: ../../include/channel.php:1172 -msgid "Like this channel" -msgstr "" - -#: ../../include/channel.php:1196 -msgid "j F, Y" -msgstr "" - -#: ../../include/channel.php:1197 -msgid "j F" -msgstr "" - -#: ../../include/channel.php:1204 -msgid "Birthday:" -msgstr "" - -#: ../../include/channel.php:1217 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: ../../include/channel.php:1220 -msgid "Sexual Preference:" -msgstr "" - -#: ../../include/channel.php:1226 -msgid "Tags:" -msgstr "" - -#: ../../include/channel.php:1228 -msgid "Political Views:" -msgstr "" - -#: ../../include/channel.php:1230 -msgid "Religion:" -msgstr "" - -#: ../../include/channel.php:1234 -msgid "Hobbies/Interests:" -msgstr "" - -#: ../../include/channel.php:1236 -msgid "Likes:" -msgstr "" - -#: ../../include/channel.php:1238 -msgid "Dislikes:" -msgstr "" - -#: ../../include/channel.php:1240 -msgid "Contact information and Social Networks:" -msgstr "" - -#: ../../include/channel.php:1242 -msgid "My other channels:" -msgstr "" - -#: ../../include/channel.php:1244 -msgid "Musical interests:" -msgstr "" - -#: ../../include/channel.php:1246 -msgid "Books, literature:" -msgstr "" - -#: ../../include/channel.php:1248 -msgid "Television:" -msgstr "" - -#: ../../include/channel.php:1250 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: ../../include/channel.php:1252 -msgid "Love/Romance:" -msgstr "" - -#: ../../include/channel.php:1254 -msgid "Work/employment:" -msgstr "" - -#: ../../include/channel.php:1256 -msgid "School/education:" -msgstr "" - -#: ../../include/channel.php:1277 -msgid "Like this thing" -msgstr "" - -#: ../../include/activities.php:41 -msgid " and " -msgstr "" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: ../../include/oembed.php:334 +msgid "Embedding disabled" msgstr "" #: ../../include/account.php:28 @@ -8944,11 +9260,6 @@ msgstr "" msgid "Registration request at %s" msgstr "" -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1930 -msgid "Administrator" -msgstr "" - #: ../../include/account.php:339 msgid "your registration password" msgstr "" @@ -8979,474 +9290,6 @@ msgstr "" msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "" - -#: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "" - -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "" - -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "" - -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "" - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "" - -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "" - -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "" - -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "" - -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "" - -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "" - -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "" - -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "" - -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "" - -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "" - -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "" - -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "" - -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "" - -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "" - -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "" - -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "" - -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "" - -#: ../../include/js_strings.php:42 -msgid " " -msgstr "" - -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "" - -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "" - -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "" - -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "" - -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "" - -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "" - -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "" - -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "" - -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "" - -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "" - -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "" - -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "" - -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "" - -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "" - -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "" - -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "" - -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "" - -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "" - -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "" - -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "" - -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "" - -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "" - -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "" - -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "" - -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "" - -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "" - -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "" - -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:129 -#, php-format -msgid "%s - click to logout" -msgstr "" - -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "" - -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "" - -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "" - -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "" - -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "" - -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "" - -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "" - -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "" - -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "" - -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "" - -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "" - -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "" - -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "" - -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "" - -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "" - -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "" - -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "" - -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "" - -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "" - -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "" - -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "" - -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "" - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "" - -#: ../../include/network.php:1944 -msgid "No Subject" -msgstr "" - -#: ../../include/network.php:2198 ../../include/network.php:2199 -msgid "Friendica" -msgstr "" - -#: ../../include/network.php:2200 -msgid "OStatus" -msgstr "" - -#: ../../include/network.php:2201 -msgid "GNU-Social" -msgstr "" - -#: ../../include/network.php:2202 -msgid "RSS/Atom" -msgstr "" - -#: ../../include/network.php:2204 -msgid "Diaspora" -msgstr "" - -#: ../../include/network.php:2205 -msgid "Facebook" -msgstr "" - -#: ../../include/network.php:2206 -msgid "Zot" -msgstr "" - -#: ../../include/network.php:2207 -msgid "LinkedIn" -msgstr "" - -#: ../../include/network.php:2208 -msgid "XMPP/IM" -msgstr "" - -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "" - -#: ../../include/oembed.php:325 -msgid "Embedded content" -msgstr "" - -#: ../../include/oembed.php:334 -msgid "Embedding disabled" -msgstr "" - #: ../../include/PermissionDescription.php:116 msgid "Public" msgstr "" @@ -9578,6 +9421,160 @@ msgstr "" msgid "Stored post could not be verified." msgstr "" +#: ../../include/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "" + +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "" + +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "" + +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "" + +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "" + +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "" + +#: ../../include/channel.php:211 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "" + +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" +msgstr "" + +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "" + +#: ../../include/channel.php:815 +msgid "Requested channel is not available." +msgstr "" + +#: ../../include/channel.php:962 +msgid "Create New Profile" +msgstr "" + +#: ../../include/channel.php:982 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/channel.php:1055 ../../include/channel.php:1167 +msgid "Gender:" +msgstr "" + +#: ../../include/channel.php:1056 ../../include/channel.php:1211 +msgid "Status:" +msgstr "" + +#: ../../include/channel.php:1057 ../../include/channel.php:1222 +msgid "Homepage:" +msgstr "" + +#: ../../include/channel.php:1058 +msgid "Online Now" +msgstr "" + +#: ../../include/channel.php:1172 +msgid "Like this channel" +msgstr "" + +#: ../../include/channel.php:1196 +msgid "j F, Y" +msgstr "" + +#: ../../include/channel.php:1197 +msgid "j F" +msgstr "" + +#: ../../include/channel.php:1204 +msgid "Birthday:" +msgstr "" + +#: ../../include/channel.php:1217 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: ../../include/channel.php:1220 +msgid "Sexual Preference:" +msgstr "" + +#: ../../include/channel.php:1226 +msgid "Tags:" +msgstr "" + +#: ../../include/channel.php:1228 +msgid "Political Views:" +msgstr "" + +#: ../../include/channel.php:1230 +msgid "Religion:" +msgstr "" + +#: ../../include/channel.php:1234 +msgid "Hobbies/Interests:" +msgstr "" + +#: ../../include/channel.php:1236 +msgid "Likes:" +msgstr "" + +#: ../../include/channel.php:1238 +msgid "Dislikes:" +msgstr "" + +#: ../../include/channel.php:1240 +msgid "Contact information and Social Networks:" +msgstr "" + +#: ../../include/channel.php:1242 +msgid "My other channels:" +msgstr "" + +#: ../../include/channel.php:1244 +msgid "Musical interests:" +msgstr "" + +#: ../../include/channel.php:1246 +msgid "Books, literature:" +msgstr "" + +#: ../../include/channel.php:1248 +msgid "Television:" +msgstr "" + +#: ../../include/channel.php:1250 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: ../../include/channel.php:1252 +msgid "Love/Romance:" +msgstr "" + +#: ../../include/channel.php:1254 +msgid "Work/employment:" +msgstr "" + +#: ../../include/channel.php:1256 +msgid "School/education:" +msgstr "" + +#: ../../include/channel.php:1277 +msgid "Like this thing" +msgstr "" + #: ../../include/permissions.php:26 msgid "Can view my normal stream and posts" msgstr ""