diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php index 7287bdd52..1fb841008 100644 --- a/Zotlabs/Lib/Apps.php +++ b/Zotlabs/Lib/Apps.php @@ -169,7 +169,15 @@ class Apps { $requires = explode(',',$ret['requires']); foreach($requires as $require) { $require = trim(strtolower($require)); + $config = false; + + if(substr($require, 0, 7) == 'config:') { + $config = true; + $require = ltrim($require, 'config:'); + } + $toggle = (($require[0] == '!') ? 0 : 1); + switch($require) { case 'nologin': if(local_channel()) @@ -192,9 +200,10 @@ class Apps { unset($ret); break; default: - $unset = ((local_channel() && feature_enabled(local_channel(),$require)) ? false : true); - $unset = ((get_config('system', ltrim($require, '!')) == $toggle) ? false : true); - + if($config) + $unset = ((get_config('system', ltrim($require, '!')) == $toggle) ? false : true); + else + $unset = ((local_channel() && feature_enabled(local_channel(),$require)) ? false : true); if($unset) unset($ret); break; @@ -308,9 +317,18 @@ class Apps { if($k === 'requires') { $requires = explode(',',$v); + foreach($requires as $require) { $require = trim(strtolower($require)); + $config = false; + + if(substr($require, 0, 7) == 'config:') { + $config = true; + $require = ltrim($require, 'config:'); + } + $toggle = (($require[0] == '!') ? 0 : 1); + switch($require) { case 'nologin': if(local_channel()) @@ -334,9 +352,10 @@ class Apps { return ''; break; default: - $unset = ((local_channel() && feature_enabled(local_channel(),$require)) ? false : true); - $unset = ((get_config('system', ltrim($require, '!')) == $toggle) ? false : true); - + if($config) + $unset = ((get_config('system', ltrim($require, '!')) == $toggle) ? false : true); + else + $unset = ((local_channel() && feature_enabled(local_channel(),$require)) ? false : true); if($unset) return ''; break; diff --git a/Zotlabs/Module/Ping.php b/Zotlabs/Module/Ping.php index 190208727..f38ed510e 100644 --- a/Zotlabs/Module/Ping.php +++ b/Zotlabs/Module/Ping.php @@ -147,11 +147,13 @@ class Ping extends \Zotlabs\Web\Controller { $pubs = q("SELECT count(id) as total from item WHERE uid = %d AND author_xchan != '%s' + AND obj_type != '%s' AND item_unseen = 1 AND created > '" . datetime_convert('UTC','UTC',$_SESSION['static_loadtime']) . "' $item_normal", intval($sys['channel_id']), - dbesc(get_observer_hash()) + dbesc(get_observer_hash()), + dbesc(ACTIVITY_OBJ_FILE) ); if($pubs) diff --git a/app/pubstream.apd b/app/pubstream.apd index 065be24bc..874e0a6cc 100644 --- a/app/pubstream.apd +++ b/app/pubstream.apd @@ -1,6 +1,6 @@ version: 1 url: $baseurl/pubstream -requires: !disable_discover_tab +requires: config:!disable_discover_tab name: Public Stream photo: icon:globe categories: Social diff --git a/include/attach.php b/include/attach.php index d19de2ea3..79a38590b 100644 --- a/include/attach.php +++ b/include/attach.php @@ -1605,7 +1605,10 @@ function file_activity($channel_id, $object, $allow_cid, $allow_gid, $deny_cid, $folder_hash = $object['folder']; - $r_perms = recursive_activity_recipients($arr_allow_cid, $arr_allow_gid, $arr_deny_cid, $arr_deny_gid, $folder_hash); + $r_perms = attach_recursive_perms($arr_allow_cid, $arr_allow_gid, $arr_deny_cid, $arr_deny_gid, $folder_hash); + + if($r_perms === false) //nobody has recursive perms - nobody must be notified + return; //split up returned perms $arr_allow_cid = $r_perms['allow_cid']; @@ -1768,7 +1771,7 @@ function get_file_activity_object($channel_id, $hash, $url) { } /** - * @brief Returns array of channels which have recursive permission for a file + * @brief Returns recursive permissions array or false if nobody has recursive permissions * * @param array $arr_allow_cid * @param array $arr_allow_gid @@ -1776,19 +1779,20 @@ function get_file_activity_object($channel_id, $hash, $url) { * @param array $arr_deny_gid * @param string $folder_hash */ -function recursive_activity_recipients($arr_allow_cid, $arr_allow_gid, $arr_deny_cid, $arr_deny_gid, $folder_hash) { +function attach_recursive_perms($arr_allow_cid, $arr_allow_gid, $arr_deny_cid, $arr_deny_gid, $folder_hash) { $ret = array(); $parent_arr = array(); $count_values = array(); $poster = App::get_observer(); - //turn allow_gid into allow_cid's - foreach($arr_allow_gid as $gid) { - $in_group = group_get_members($gid); + //lookup all channels in sharee group and add them to sharee $arr_allow_cid + if($arr_allow_gid) { + $in_group = expand_groups($arr_allow_gid); $arr_allow_cid = array_unique(array_merge($arr_allow_cid, $in_group)); } + //count existing parent folders - we will compare to that count later $count = 0; while($folder_hash) { $x = q("SELECT allow_cid, allow_gid, deny_cid, deny_gid, folder FROM attach WHERE hash = '%s' LIMIT 1", @@ -1797,30 +1801,20 @@ function recursive_activity_recipients($arr_allow_cid, $arr_allow_gid, $arr_deny //only process private folders if($x[0]['allow_cid'] || $x[0]['allow_gid'] || $x[0]['deny_cid'] || $x[0]['deny_gid']) { - $parent_arr['allow_cid'][] = expand_acl($x[0]['allow_cid']); $parent_arr['allow_gid'][] = expand_acl($x[0]['allow_gid']); - - /** - * @TODO should find a much better solution for the allow_cid <-> allow_gid problem. - * Do not use allow_gid for now. Instead lookup the members of the group directly and add them to allow_cid. - * */ - if($parent_arr['allow_gid']) { - foreach($parent_arr['allow_gid'][$count] as $gid) { - $in_group = group_get_members($gid); - $parent_arr['allow_cid'][$count] = array_unique(array_merge($parent_arr['allow_cid'][$count], $in_group)); - } - } - $parent_arr['deny_cid'][] = expand_acl($x[0]['deny_cid']); $parent_arr['deny_gid'][] = expand_acl($x[0]['deny_gid']); + //this is the number of all existing parent folders - we will compare to that count later $count++; } $folder_hash = $x[0]['folder']; } + //logger(EOL . 'parent_arr: ' . print_r($parent_arr,true)); + //if none of the parent folders is private just return file perms if(!$parent_arr['allow_cid'] && !$parent_arr['allow_gid'] && !$parent_arr['deny_cid'] && !$parent_arr['deny_gid']) { $ret['allow_gid'] = $arr_allow_gid; @@ -1831,7 +1825,7 @@ function recursive_activity_recipients($arr_allow_cid, $arr_allow_gid, $arr_deny return $ret; } - //if there are no perms on the file we get them from the first parent folder + //if there are no perms on the file we will work with the perms from the first parent folder if(!$arr_allow_cid && !$arr_allow_gid && !$arr_deny_cid && !$arr_deny_gid) { $arr_allow_cid = $parent_arr['allow_cid'][0]; $arr_allow_gid = $parent_arr['allow_gid'][0]; @@ -1839,51 +1833,82 @@ function recursive_activity_recipients($arr_allow_cid, $arr_allow_gid, $arr_deny $arr_deny_gid = $parent_arr['deny_gid'][0]; } - //allow_cid - $r_arr_allow_cid = false; - foreach ($parent_arr['allow_cid'] as $folder_arr_allow_cid) { - foreach ($folder_arr_allow_cid as $ac_hash) { - $count_values[$ac_hash]++; + + /*** + * + * check if sharee has perms for all parent folders + * + ***/ + + $r_arr_allow_cid = []; + + if($parent_arr['allow_cid']) { + //check sharee arr_allow_cid against allow_cid of all parent folders + foreach($parent_arr['allow_cid'] as $folder_arr_allow_cid) { + foreach($folder_arr_allow_cid as $ac_hash) { + $count_values[$ac_hash]++; + } } - } - foreach ($arr_allow_cid as $fac_hash) { - if($count_values[$fac_hash] == $count) - $r_arr_allow_cid[] = $fac_hash; + foreach($arr_allow_cid as $fac_hash) { + if($count_values[$fac_hash] == $count) + $r_arr_allow_cid[] = $fac_hash; + } + //logger(EOL . 'r_arr_allow_cid: ' . print_r($r_arr_allow_cid,true)); } - //allow_gid - $r_arr_allow_gid = false; - foreach ($parent_arr['allow_gid'] as $folder_arr_allow_gid) { - foreach ($folder_arr_allow_gid as $ag_hash) { - $count_values[$ag_hash]++; + if($parent_arr['allow_gid']) { + //check sharee arr_allow_cid against members of allow_gid of all parent folders + foreach($parent_arr['allow_gid'] as $folder_arr_allow_gid) { + //get the group members + $folder_arr_allow_cid = expand_groups($folder_arr_allow_gid); + foreach($folder_arr_allow_cid as $ac_hash) { + $count_values[$ac_hash]++; + } } + foreach($arr_allow_cid as $fac_hash) { + if($count_values[$fac_hash] == $count) + $r_arr_allow_cid[] = $fac_hash; + } + //logger(EOL . 'groups - r_arr_allow_cid: ' . print_r($r_arr_allow_cid,true)); } - foreach ($arr_allow_gid as $fag_hash) { - if($count_values[$fag_hash] == $count) - $r_arr_allow_gid[] = $fag_hash; + + + /*** + * + * check if sharee is denied somewhere in parent folders and deny him if so + * + ***/ + + //deny_cid + $r_arr_deny_cid = []; + + if($parent_arr['deny_cid']) { + foreach($parent_arr['deny_cid'] as $folder_arr_deny_cid) { + $r_arr_deny_cid = array_merge($arr_deny_cid, $folder_arr_deny_cid); + } + $r_arr_deny_cid = array_unique($r_arr_deny_cid); + //logger(EOL . 'r_arr_deny_cid: ' . print_r($r_arr_deny_cid,true)); } //deny_gid - foreach($parent_arr['deny_gid'] as $folder_arr_deny_gid) { - $r_arr_deny_gid = array_merge($arr_deny_gid, $folder_arr_deny_gid); - } - $r_arr_deny_gid = array_unique($r_arr_deny_gid); + $r_arr_deny_gid = []; - //deny_cid - foreach($parent_arr['deny_cid'] as $folder_arr_deny_cid) { - $r_arr_deny_cid = array_merge($arr_deny_cid, $folder_arr_deny_cid); + if($parent_arr['deny_cid']) { + foreach($parent_arr['deny_gid'] as $folder_arr_deny_gid) { + $r_arr_deny_gid = array_merge($arr_deny_gid, $folder_arr_deny_gid); + } + $r_arr_deny_gid = array_unique($r_arr_deny_gid); + //logger(EOL . 'r_arr_deny_gid: ' . print_r($r_arr_dr_arr_deny_gideny_cid,true)); } - $r_arr_deny_cid = array_unique($r_arr_deny_cid); - //if none is allowed restrict to self - if(($r_arr_allow_gid === false) && ($r_arr_allow_cid === false)) { - $ret['allow_cid'] = [$poster['xchan_hash']]; - } else { - $ret['allow_gid'] = $r_arr_allow_gid; - $ret['allow_cid'] = $r_arr_allow_cid; - $ret['deny_gid'] = $r_arr_deny_gid; - $ret['deny_cid'] = $r_arr_deny_cid; - } + //if no channel is allowed return false + if(! $r_arr_allow_cid) + return false; + + $ret['allow_gid'] = []; // eventual group members are already collected in $r_arr_allow_cid + $ret['allow_cid'] = $r_arr_allow_cid; + $ret['deny_gid'] = $r_arr_deny_gid; + $ret['deny_cid'] = $r_arr_deny_cid; return $ret; } diff --git a/util/hmessages.po b/util/hmessages.po index 8cb0a2dec..5115cf7c3 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2.5.8\n" +"Project-Id-Version: 2.7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-07-05 21:45-0700\n" +"POT-Creation-Date: 2017-08-01 12:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,79 +17,6 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../Zotlabs/Access/PermissionRoles.php:248 -msgid "Social Networking" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:249 -msgid "Social - Mostly Public" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:250 -msgid "Social - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:251 -msgid "Social - Private" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:254 -msgid "Community Forum" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:255 -msgid "Forum - Mostly Public" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:256 -msgid "Forum - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:257 -msgid "Forum - Private" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:260 -msgid "Feed Republish" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:261 -msgid "Feed - Mostly Public" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:262 -msgid "Feed - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:265 -msgid "Special Purpose" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:266 -msgid "Special - Celebrity/Soapbox" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:267 -msgid "Special - Group Repository" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:270 -#: ../../Zotlabs/Module/Register.php:213 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Connedit.php:931 -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Settings/Channel.php:463 -#: ../../Zotlabs/Module/Cdav.php:1121 ../../include/connections.php:681 -#: ../../include/connections.php:688 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/event.php:1297 -#: ../../include/event.php:1304 -msgid "Other" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:271 -msgid "Custom/Expert Mode" -msgstr "" - #: ../../Zotlabs/Access/Permissions.php:53 msgid "Can view my channel stream and posts" msgstr "" @@ -162,1263 +89,1950 @@ msgstr "" msgid "Can administer my channel" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:238 -msgid "parent" +#: ../../Zotlabs/Access/PermissionRoles.php:248 +msgid "Social Networking" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2692 -msgid "Collection" +#: ../../Zotlabs/Access/PermissionRoles.php:249 +msgid "Social - Mostly Public" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:134 -msgid "Principal" +#: ../../Zotlabs/Access/PermissionRoles.php:250 +msgid "Social - Restricted" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:137 -msgid "Addressbook" +#: ../../Zotlabs/Access/PermissionRoles.php:251 +msgid "Social - Private" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:140 -msgid "Calendar" +#: ../../Zotlabs/Access/PermissionRoles.php:254 +msgid "Community Forum" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:143 -msgid "Schedule Inbox" +#: ../../Zotlabs/Access/PermissionRoles.php:255 +msgid "Forum - Mostly Public" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:146 -msgid "Schedule Outbox" +#: ../../Zotlabs/Access/PermissionRoles.php:256 +msgid "Forum - Restricted" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:757 -#: ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Module/Embedphotos.php:146 ../../Zotlabs/Module/Cdav.php:727 -#: ../../Zotlabs/Module/Cdav.php:728 ../../Zotlabs/Module/Cdav.php:735 -#: ../../Zotlabs/Lib/Apps.php:696 ../../Zotlabs/Lib/Apps.php:774 -#: ../../Zotlabs/Widget/Album.php:84 ../../Zotlabs/Widget/Portfolio.php:86 -#: ../../include/conversation.php:1107 -msgid "Unknown" +#: ../../Zotlabs/Access/PermissionRoles.php:257 +msgid "Forum - Private" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:225 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:225 ../../include/nav.php:390 -#: ../../include/conversation.php:1788 -msgid "Files" +#: ../../Zotlabs/Access/PermissionRoles.php:260 +msgid "Feed Republish" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:226 -msgid "Total" +#: ../../Zotlabs/Access/PermissionRoles.php:261 +msgid "Feed - Mostly Public" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:228 -msgid "Shared" +#: ../../Zotlabs/Access/PermissionRoles.php:262 +msgid "Feed - Restricted" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:229 ../../Zotlabs/Storage/Browser.php:333 -#: ../../Zotlabs/Module/Profiles.php:801 ../../Zotlabs/Module/Layouts.php:185 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Connedit.php:934 -#: ../../Zotlabs/Module/New_channel.php:147 -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Cdav.php:1124 ../../Zotlabs/Widget/Cdav.php:127 -#: ../../Zotlabs/Widget/Cdav.php:164 -msgid "Create" +#: ../../Zotlabs/Access/PermissionRoles.php:265 +msgid "Special Purpose" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:335 -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:423 -#: ../../Zotlabs/Module/Photos.php:784 ../../Zotlabs/Module/Photos.php:1321 -#: ../../Zotlabs/Module/Embedphotos.php:158 ../../Zotlabs/Widget/Album.php:97 -#: ../../Zotlabs/Widget/Cdav.php:132 ../../Zotlabs/Widget/Cdav.php:168 -#: ../../Zotlabs/Widget/Portfolio.php:99 -msgid "Upload" +#: ../../Zotlabs/Access/PermissionRoles.php:266 +msgid "Special - Celebrity/Soapbox" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:234 ../../Zotlabs/Module/Wiki.php:172 -#: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Module/Connedit.php:919 -#: ../../Zotlabs/Module/Sharedwithme.php:100 -#: ../../Zotlabs/Module/Settings/Oauth.php:89 -#: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Chat.php:249 ../../Zotlabs/Module/Cdav.php:1109 -#: ../../Zotlabs/Lib/NativeWikiPage.php:539 -#: ../../Zotlabs/Widget/Wiki_page_history.php:22 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:172 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:158 -msgid "Name" +#: ../../Zotlabs/Access/PermissionRoles.php:267 +msgid "Special - Group Repository" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Wiki.php:173 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:159 -msgid "Type" +#: ../../Zotlabs/Access/PermissionRoles.php:270 +#: ../../Zotlabs/Module/Cdav.php:1123 ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Settings/Channel.php:467 +#: ../../Zotlabs/Module/Connedit.php:932 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Register.php:213 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 ../../include/event.php:1297 +#: ../../include/event.php:1304 ../../include/connections.php:681 +#: ../../include/connections.php:688 +msgid "Other" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:236 -#: ../../Zotlabs/Module/Sharedwithme.php:102 ../../include/text.php:1386 -msgid "Size" +#: ../../Zotlabs/Access/PermissionRoles.php:271 +msgid "Custom/Expert Mode" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Last Modified" +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Hcard.php:12 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1062 +msgid "Requested profile is not available." msgstr "" -#: ../../Zotlabs/Storage/Browser.php:239 ../../Zotlabs/Module/Layouts.php:193 -#: ../../Zotlabs/Module/Wiki.php:165 ../../Zotlabs/Module/Wiki.php:298 -#: ../../Zotlabs/Module/Connections.php:261 -#: ../../Zotlabs/Module/Connections.php:298 -#: ../../Zotlabs/Module/Connections.php:318 -#: ../../Zotlabs/Module/Admin/Profs.php:154 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editwebpage.php:142 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Editblock.php:114 ../../Zotlabs/Module/Editpost.php:85 -#: ../../Zotlabs/Module/Webpages.php:238 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Settings/Oauth.php:149 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/ThreadItem.php:107 -#: ../../Zotlabs/Lib/Apps.php:368 ../../Zotlabs/Widget/Cdav.php:125 -#: ../../Zotlabs/Widget/Cdav.php:161 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:151 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:252 -#: ../../include/menu.php:113 ../../include/channel.php:1059 -#: ../../include/channel.php:1063 -msgid "Edit" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Profiles.php:803 -#: ../../Zotlabs/Module/Connections.php:269 -#: ../../Zotlabs/Module/Admin/Profs.php:155 -#: ../../Zotlabs/Module/Admin/Accounts.php:173 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Editlayout.php:138 -#: ../../Zotlabs/Module/Editwebpage.php:167 -#: ../../Zotlabs/Module/Connedit.php:650 ../../Zotlabs/Module/Connedit.php:936 -#: ../../Zotlabs/Module/Group.php:177 ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Blocks.php:162 -#: ../../Zotlabs/Module/Settings/Oauth.php:150 -#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Photos.php:1143 -#: ../../Zotlabs/Module/Cdav.php:837 ../../Zotlabs/Module/Cdav.php:1126 -#: ../../Zotlabs/Lib/ThreadItem.php:127 ../../Zotlabs/Lib/Apps.php:369 -#: ../../include/conversation.php:649 ../../include/conversation.php:686 -msgid "Delete" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:302 -#, php-format -msgid "You are using %1$s of your available file storage." -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:307 -#, php-format -msgid "You are using %1$s of %2$s available file storage. (%3$s%)" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:318 -msgid "WARNING:" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:328 -msgid "" -"Please use DAV to upload large (video, audio) files.
See Cloud Desktop " -"Clients" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:332 -msgid "Create new folder" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:334 -msgid "Upload file" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:348 -msgid "Drop files here to immediately upload" -msgstr "" - -#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Block.php:77 -#: ../../Zotlabs/Module/Page.php:128 ../../Zotlabs/Module/Display.php:122 -#: ../../Zotlabs/Lib/NativeWikiPage.php:500 ../../include/help.php:68 -msgid "Page not found." -msgstr "" - -#: ../../Zotlabs/Web/WebServer.php:130 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 -#: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Like.php:283 -#: ../../Zotlabs/Module/Subthread.php:62 ../../Zotlabs/Module/Profperm.php:28 -#: ../../extend/addon/addon/frphotos/frphotos.php:81 -#: ../../extend/addon/addon/redfiles/redfiles.php:109 -#: ../../extend/addon/addon/redphotos/redphotos.php:119 -#: ../../include/items.php:340 -msgid "Permission denied" -msgstr "" - -#: ../../Zotlabs/Web/WebServer.php:131 -#: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:635 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 +#: ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:115 +#: ../../Zotlabs/Module/Channel.php:245 ../../Zotlabs/Module/Channel.php:285 +#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Events.php:271 +#: ../../Zotlabs/Module/Appman.php:82 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/New_channel.php:104 +#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 +#: ../../Zotlabs/Module/Moderate.php:13 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:274 +#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:335 +#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:102 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Connections.php:29 +#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:64 +#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 +#: ../../Zotlabs/Module/Wiki.php:235 ../../Zotlabs/Module/Wiki.php:341 +#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 +#: ../../Zotlabs/Module/Profile_photo.php:280 +#: ../../Zotlabs/Module/Profile_photo.php:293 #: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:223 #: ../../Zotlabs/Module/Item.php:240 ../../Zotlabs/Module/Item.php:250 -#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Item.php:1076 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Page.php:125 ../../Zotlabs/Module/Connedit.php:385 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 #: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 -#: ../../Zotlabs/Module/Wiki.php:50 ../../Zotlabs/Module/Wiki.php:233 -#: ../../Zotlabs/Module/Wiki.php:339 ../../Zotlabs/Module/Block.php:24 -#: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Connections.php:29 -#: ../../Zotlabs/Module/Cover_photo.php:281 -#: ../../Zotlabs/Module/Cover_photo.php:294 -#: ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 +#: ../../Zotlabs/Module/Group.php:13 ../../Zotlabs/Module/Profiles.php:198 +#: ../../Zotlabs/Module/Profiles.php:635 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:107 -#: ../../Zotlabs/Module/Editwebpage.php:121 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Connedit.php:385 -#: ../../Zotlabs/Module/Filestorage.php:23 -#: ../../Zotlabs/Module/Filestorage.php:78 -#: ../../Zotlabs/Module/Filestorage.php:93 -#: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Setup.php:206 -#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Mail.php:146 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Moderate.php:13 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Api.php:24 -#: ../../Zotlabs/Module/Page.php:34 ../../Zotlabs/Module/Page.php:125 -#: ../../Zotlabs/Module/New_channel.php:77 -#: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Profile.php:83 ../../Zotlabs/Module/Profile.php:100 -#: ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Invite.php:17 -#: ../../Zotlabs/Module/Invite.php:94 ../../Zotlabs/Module/Like.php:181 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Rate.php:113 -#: ../../Zotlabs/Module/Profile_photo.php:280 -#: ../../Zotlabs/Module/Profile_photo.php:293 -#: ../../Zotlabs/Module/Appman.php:82 ../../Zotlabs/Module/Common.php:39 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Regmod.php:21 -#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Events.php:271 -#: ../../Zotlabs/Module/Viewsrc.php:19 -#: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Sharedwithme.php:11 -#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Poke.php:149 -#: ../../Zotlabs/Module/Suggest.php:28 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:335 +#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Webpages.php:118 ../../Zotlabs/Module/Block.php:24 +#: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Suggest.php:28 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mail.php:146 ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Cover_photo.php:281 +#: ../../Zotlabs/Module/Cover_photo.php:294 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Filestorage.php:15 +#: ../../Zotlabs/Module/Filestorage.php:70 +#: ../../Zotlabs/Module/Filestorage.php:85 +#: ../../Zotlabs/Module/Filestorage.php:112 ../../Zotlabs/Module/Common.php:39 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Chat.php:98 -#: ../../Zotlabs/Module/Chat.php:103 ../../Zotlabs/Module/Channel.php:115 -#: ../../Zotlabs/Module/Channel.php:245 ../../Zotlabs/Module/Channel.php:285 -#: ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../extend/addon/addon/keepout/keepout.php:36 -#: ../../extend/addon/addon/pumpio/pumpio.php:40 -#: ../../extend/addon/addon/openid/Mod_Id.php:53 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:196 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:292 +#: ../../Zotlabs/Module/Service_limits.php:11 ../../Zotlabs/Module/Rate.php:113 +#: ../../Zotlabs/Module/Notifications.php:11 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../Zotlabs/Web/WebServer.php:131 ../../addon/keepout/keepout.php:36 +#: ../../addon/openid/Mod_Id.php:53 ../../addon/gitwiki/Mod_Gitwiki.php:196 +#: ../../addon/gitwiki/Mod_Gitwiki.php:292 ../../addon/pumpio/pumpio.php:40 #: ../../include/attach.php:144 ../../include/attach.php:191 #: ../../include/attach.php:255 ../../include/attach.php:269 #: ../../include/attach.php:276 ../../include/attach.php:344 #: ../../include/attach.php:358 ../../include/attach.php:365 -#: ../../include/attach.php:442 ../../include/attach.php:909 -#: ../../include/attach.php:983 ../../include/attach.php:1148 +#: ../../include/attach.php:443 ../../include/attach.php:918 +#: ../../include/attach.php:992 ../../include/attach.php:1157 #: ../../include/items.php:3440 ../../include/photos.php:28 msgid "Permission denied." msgstr "" -#: ../../Zotlabs/Zot/Auth.php:138 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:113 +msgid "Block Name" msgstr "" -#: ../../Zotlabs/Zot/Auth.php:250 -#: ../../extend/addon/addon/openid/Mod_Openid.php:76 -#: ../../extend/addon/addon/openid/Mod_Openid.php:178 +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2280 +msgid "Blocks" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:114 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:251 +msgid "Created" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:115 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:252 +msgid "Edited" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Cdav.php:1126 +#: ../../Zotlabs/Module/New_channel.php:147 +#: ../../Zotlabs/Module/Connedit.php:935 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:801 +#: ../../Zotlabs/Module/Webpages.php:239 ../../Zotlabs/Storage/Browser.php:229 +#: ../../Zotlabs/Storage/Browser.php:335 ../../Zotlabs/Widget/Cdav.php:127 +#: ../../Zotlabs/Widget/Cdav.php:164 +msgid "Create" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Admin/Profs.php:154 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Connections.php:260 +#: ../../Zotlabs/Module/Connections.php:297 +#: ../../Zotlabs/Module/Connections.php:317 ../../Zotlabs/Module/Wiki.php:167 +#: ../../Zotlabs/Module/Wiki.php:300 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Layouts.php:193 +#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Editpost.php:85 +#: ../../Zotlabs/Lib/Apps.php:393 ../../Zotlabs/Lib/ThreadItem.php:107 +#: ../../Zotlabs/Storage/Browser.php:239 ../../Zotlabs/Widget/Cdav.php:125 +#: ../../Zotlabs/Widget/Cdav.php:161 ../../addon/gitwiki/Mod_Gitwiki.php:151 +#: ../../addon/gitwiki/Mod_Gitwiki.php:252 ../../include/channel.php:1161 +#: ../../include/channel.php:1165 ../../include/menu.php:113 +msgid "Edit" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1044 +#: ../../Zotlabs/Module/Layouts.php:194 ../../Zotlabs/Module/Webpages.php:241 +#: ../../Zotlabs/Widget/Cdav.php:123 ../../include/conversation.php:1308 +msgid "Share" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 +#: ../../Zotlabs/Module/Cdav.php:838 ../../Zotlabs/Module/Cdav.php:1128 +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Profs.php:155 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 +#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Connections.php:268 +#: ../../Zotlabs/Module/Photos.php:1145 ../../Zotlabs/Module/Connedit.php:650 +#: ../../Zotlabs/Module/Connedit.php:937 ../../Zotlabs/Module/Group.php:179 +#: ../../Zotlabs/Module/Profiles.php:803 +#: ../../Zotlabs/Module/Editwebpage.php:167 +#: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Lib/Apps.php:394 +#: ../../Zotlabs/Lib/ThreadItem.php:127 ../../Zotlabs/Storage/Browser.php:240 +#: ../../include/conversation.php:649 ../../include/conversation.php:686 +msgid "Delete" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 +#: ../../Zotlabs/Module/Wiki.php:169 ../../Zotlabs/Module/Layouts.php:198 +#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:59 +#: ../../addon/gitwiki/Mod_Gitwiki.php:153 +msgid "View" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:53 #, php-format -msgid "Welcome %s. Remote authentication successful." +msgid "%s : Not a valid email address." msgstr "" -#: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17 -#: ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Blocks.php:33 -#: ../../include/channel.php:960 -msgid "Requested profile is not available." +#: ../../Zotlabs/Module/Invite.php:67 +msgid "Please join us on $Projectname" msgstr "" -#: ../../Zotlabs/Module/Achievements.php:38 -msgid "Some blurb about what to do when you're new here" +#: ../../Zotlabs/Module/Invite.php:77 +msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation instructions." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:204 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:221 ../../Zotlabs/Module/Siteinfo.php:27 -msgid "Terms of Service" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:227 +#: ../../Zotlabs/Module/Invite.php:82 #, php-format -msgid "I accept the %s for this website" +msgid "%s : Message delivery failed." msgstr "" -#: ../../Zotlabs/Module/Register.php:229 +#: ../../Zotlabs/Module/Invite.php:86 #, php-format -msgid "I am over 13 years of age and accept the %s for this website" +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Invite.php:98 ../../Zotlabs/Lib/Apps.php:254 +msgid "Invite" msgstr "" -#: ../../Zotlabs/Module/Register.php:233 -msgid "Your email address" +#: ../../Zotlabs/Module/Invite.php:107 +msgid "You have no more invitations available" msgstr "" -#: ../../Zotlabs/Module/Register.php:234 -msgid "Choose a password" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "Send invitations" msgstr "" -#: ../../Zotlabs/Module/Register.php:235 -msgid "Please re-enter your password" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "Enter email addresses, one per line:" msgstr "" -#: ../../Zotlabs/Module/Register.php:236 -msgid "Please enter your invitation code" +#: ../../Zotlabs/Module/Invite.php:140 ../../Zotlabs/Module/Mail.php:285 +msgid "Your message:" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "Please join my community on $Projectname." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:143 +msgid "You will need to supply this invitation code:" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "1. Register at any $Projectname location (they are all inter-connected)" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:146 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:147 +msgid "or visit" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:149 +msgid "3. Click [Connect]" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:151 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Events.php:493 +#: ../../Zotlabs/Module/Appman.php:148 +#: ../../Zotlabs/Module/Import_items.php:129 ../../Zotlabs/Module/Setup.php:308 +#: ../../Zotlabs/Module/Setup.php:349 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Plugins.php:438 +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Channels.php:147 +#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Admin/Site.php:271 +#: ../../Zotlabs/Module/Admin/Profs.php:157 +#: ../../Zotlabs/Module/Admin/Account_edit.php:74 +#: ../../Zotlabs/Module/Admin/Security.php:104 +#: ../../Zotlabs/Module/Settings/Permcats.php:110 +#: ../../Zotlabs/Module/Settings/Channel.php:480 +#: ../../Zotlabs/Module/Settings/Features.php:47 +#: ../../Zotlabs/Module/Settings/Tokens.php:168 +#: ../../Zotlabs/Module/Settings/Account.php:118 +#: ../../Zotlabs/Module/Settings/Featured.php:52 +#: ../../Zotlabs/Module/Settings/Display.php:203 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 +#: ../../Zotlabs/Module/Import.php:518 ../../Zotlabs/Module/Cal.php:343 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:659 +#: ../../Zotlabs/Module/Photos.php:1024 ../../Zotlabs/Module/Photos.php:1064 +#: ../../Zotlabs/Module/Photos.php:1182 ../../Zotlabs/Module/Wiki.php:171 +#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Poke.php:200 +#: ../../Zotlabs/Module/Connedit.php:900 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:242 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:726 +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Mail.php:431 +#: ../../Zotlabs/Module/Filestorage.php:155 ../../Zotlabs/Module/Rate.php:166 +#: ../../Zotlabs/Lib/ThreadItem.php:730 ../../Zotlabs/Widget/Eventstools.php:16 +#: ../../view/theme/redbasic/php/config.php:95 +#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:226 +#: ../../addon/planets/planets.php:153 +#: ../../addon/openclipatar/openclipatar.php:53 +#: ../../addon/wppost/wppost.php:113 ../../addon/nsfw/nsfw.php:92 +#: ../../addon/ijpost/ijpost.php:89 ../../addon/dwpost/dwpost.php:89 +#: ../../addon/mailhost/mailhost.php:40 +#: ../../addon/likebanner/likebanner.php:57 +#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 +#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 +#: ../../addon/diaspora/diaspora.php:759 +#: ../../addon/gitwiki/Mod_Gitwiki.php:155 +#: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/visage/visage.php:170 +#: ../../addon/nsabait/nsabait.php:161 ../../addon/mailtest/mailtest.php:100 +#: ../../addon/openstreetmap/openstreetmap.php:168 +#: ../../addon/rtof/rtof.php:101 ../../addon/jappixmini/jappixmini.php:371 +#: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 +#: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 +#: ../../addon/frphotos/frphotos.php:96 ../../addon/chords/Mod_Chords.php:60 +#: ../../addon/libertree/libertree.php:85 +#: ../../addon/flattrwidget/flattrwidget.php:124 +#: ../../addon/statusnet/statusnet.php:322 +#: ../../addon/statusnet/statusnet.php:380 +#: ../../addon/statusnet/statusnet.php:432 +#: ../../addon/statusnet/statusnet.php:899 ../../addon/twitter/twitter.php:217 +#: ../../addon/twitter/twitter.php:259 +#: ../../addon/smileybutton/smileybutton.php:219 ../../addon/piwik/piwik.php:95 +#: ../../addon/pageheader/pageheader.php:48 +#: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 +#: ../../addon/pumpio/pumpio.php:237 ../../addon/redfiles/redfiles.php:124 +#: ../../addon/hubwall/hubwall.php:95 ../../include/js_strings.php:22 +msgid "Submit" +msgstr "" + +#: ../../Zotlabs/Module/Editlayout.php:79 ../../Zotlabs/Module/Editblock.php:79 +#: ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editwebpage.php:80 ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" +msgstr "" + +#: ../../Zotlabs/Module/Editlayout.php:128 ../../Zotlabs/Module/Layouts.php:129 +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Name" +msgstr "" + +#: ../../Zotlabs/Module/Editlayout.php:129 ../../Zotlabs/Module/Layouts.php:132 +msgid "Layout Description (Optional)" +msgstr "" + +#: ../../Zotlabs/Module/Editlayout.php:137 +msgid "Edit Layout" +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 +#: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Group.php:74 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 +#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Web/WebServer.php:130 +#: ../../addon/redphotos/redphotos.php:119 ../../addon/frphotos/frphotos.php:81 +#: ../../addon/redfiles/redfiles.php:109 ../../include/items.php:340 +msgid "Permission denied" +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:111 +msgid "Profile Visibility Editor" +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1485 +msgid "Profile" +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Click on a contact to add or remove." +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:124 +msgid "Visible To" +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:140 +#: ../../Zotlabs/Module/Connections.php:140 +msgid "All Connections" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:726 +msgid "INVALID EVENT DISMISSED!" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:727 +msgid "Summary: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:727 ../../Zotlabs/Module/Cdav.php:728 +#: ../../Zotlabs/Module/Cdav.php:735 ../../Zotlabs/Module/Embedphotos.php:146 +#: ../../Zotlabs/Module/Photos.php:759 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/Apps.php:721 ../../Zotlabs/Lib/Apps.php:799 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:86 +#: ../../Zotlabs/Widget/Album.php:84 ../../include/conversation.php:1107 +msgid "Unknown" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:728 +msgid "Date: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:729 ../../Zotlabs/Module/Cdav.php:736 +msgid "Reason: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:734 +msgid "INVALID CARD DISMISSED!" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:735 +msgid "Name: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:768 +msgid "CalDAV" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:809 ../../Zotlabs/Module/Events.php:460 +msgid "Event title" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:810 ../../Zotlabs/Module/Events.php:466 +msgid "Start date and time" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:810 ../../Zotlabs/Module/Cdav.php:811 +msgid "Example: YYYY-MM-DD HH:mm" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:811 +msgid "End date and time" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:812 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Appman.php:138 ../../Zotlabs/Module/Rbmark.php:101 +#: ../../addon/rendezvous/rendezvous.php:173 +msgid "Description" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:813 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Profiles.php:509 +#: ../../Zotlabs/Module/Profiles.php:737 ../../Zotlabs/Module/Pubsites.php:51 +#: ../../include/js_strings.php:25 +msgid "Location" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:820 ../../Zotlabs/Module/Events.php:689 +#: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Cal.php:337 +#: ../../Zotlabs/Module/Cal.php:344 ../../Zotlabs/Module/Photos.php:913 +msgid "Previous" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:821 ../../Zotlabs/Module/Events.php:690 +#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Setup.php:263 +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Cal.php:345 +#: ../../Zotlabs/Module/Photos.php:922 +msgid "Next" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:822 ../../Zotlabs/Module/Events.php:700 +#: ../../Zotlabs/Module/Cal.php:346 +msgid "Today" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:823 ../../Zotlabs/Module/Events.php:695 +msgid "Month" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:824 ../../Zotlabs/Module/Events.php:696 +msgid "Week" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:825 ../../Zotlabs/Module/Events.php:697 +msgid "Day" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:826 +msgid "List month" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:827 +msgid "List week" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:828 +msgid "List day" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:835 +msgid "More" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:836 +msgid "Less" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:837 +msgid "Select calendar" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:839 +msgid "Delete all" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:840 ../../Zotlabs/Module/Cdav.php:1129 +#: ../../Zotlabs/Module/Admin/Plugins.php:423 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../Zotlabs/Module/Wiki.php:290 ../../Zotlabs/Module/Wiki.php:316 +#: ../../Zotlabs/Module/Connedit.php:938 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:804 +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../addon/js_upload/js_upload.php:46 +#: ../../addon/gitwiki/Mod_Gitwiki.php:244 +#: ../../addon/gitwiki/Mod_Gitwiki.php:267 ../../include/conversation.php:1324 +#: ../../include/conversation.php:1373 +msgid "Cancel" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:841 +msgid "Sorry! Editing of recurrent events is not yet implemented." +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:969 +msgid "CardDAV" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1111 ../../Zotlabs/Module/Sharedwithme.php:105 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +#: ../../Zotlabs/Module/Settings/Oauth.php:115 +#: ../../Zotlabs/Module/Wiki.php:174 ../../Zotlabs/Module/Connedit.php:920 +#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:539 +#: ../../Zotlabs/Storage/Browser.php:234 +#: ../../Zotlabs/Widget/Wiki_page_history.php:22 +#: ../../addon/rendezvous/rendezvous.php:172 +#: ../../addon/gitwiki/Mod_Gitwiki.php:158 +msgid "Name" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1112 ../../Zotlabs/Module/Connedit.php:921 +msgid "Organisation" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1113 ../../Zotlabs/Module/Connedit.php:922 +msgid "Title" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1114 ../../Zotlabs/Module/Connedit.php:923 +#: ../../Zotlabs/Module/Profiles.php:789 +msgid "Phone" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1115 +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +#: ../../Zotlabs/Module/Admin/Accounts.php:181 +#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Profiles.php:790 +#: ../../addon/openid/MysqlProvider.php:56 +#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 +#: ../../addon/redred/redred.php:107 ../../include/network.php:1697 +msgid "Email" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1116 ../../Zotlabs/Module/Connedit.php:925 +#: ../../Zotlabs/Module/Profiles.php:791 +msgid "Instant messenger" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1117 ../../Zotlabs/Module/Connedit.php:926 +#: ../../Zotlabs/Module/Profiles.php:792 +msgid "Website" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1118 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Connedit.php:927 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Profiles.php:793 +msgid "Address" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1119 ../../Zotlabs/Module/Connedit.php:928 +#: ../../Zotlabs/Module/Profiles.php:794 +msgid "Note" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1120 ../../Zotlabs/Module/Connedit.php:929 +#: ../../Zotlabs/Module/Profiles.php:795 ../../include/event.php:1290 +#: ../../include/connections.php:674 +msgid "Mobile" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1121 ../../Zotlabs/Module/Connedit.php:930 +#: ../../Zotlabs/Module/Profiles.php:796 ../../include/event.php:1291 +#: ../../include/connections.php:675 +msgid "Home" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1122 ../../Zotlabs/Module/Connedit.php:931 +#: ../../Zotlabs/Module/Profiles.php:797 ../../include/event.php:1294 +#: ../../include/connections.php:678 +msgid "Work" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1124 ../../Zotlabs/Module/Connedit.php:933 +#: ../../Zotlabs/Module/Profiles.php:799 +#: ../../addon/jappixmini/jappixmini.php:368 +msgid "Add Contact" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1125 ../../Zotlabs/Module/Connedit.php:934 +#: ../../Zotlabs/Module/Profiles.php:800 +msgid "Add Field" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1127 +#: ../../Zotlabs/Module/Admin/Plugins.php:453 +#: ../../Zotlabs/Module/Settings/Oauth.php:42 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 +#: ../../Zotlabs/Module/Connedit.php:936 ../../Zotlabs/Module/Profiles.php:802 +#: ../../Zotlabs/Lib/Apps.php:384 +msgid "Update" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1130 ../../Zotlabs/Module/Connedit.php:939 +msgid "P.O. Box" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1131 ../../Zotlabs/Module/Connedit.php:940 +msgid "Additional" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1132 ../../Zotlabs/Module/Connedit.php:941 +msgid "Street" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1133 ../../Zotlabs/Module/Connedit.php:942 +msgid "Locality" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1134 ../../Zotlabs/Module/Connedit.php:943 +msgid "Region" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1135 ../../Zotlabs/Module/Connedit.php:944 +msgid "ZIP Code" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1136 ../../Zotlabs/Module/Connedit.php:945 +#: ../../Zotlabs/Module/Profiles.php:760 +msgid "Country" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1183 +msgid "Default Calendar" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1193 +msgid "Default Addressbook" +msgstr "" + +#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 +msgid "This site is not a directory server" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Chat.php:25 +#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:403 +msgid "You must be logged in to see this page." +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:47 ../../Zotlabs/Module/Hcard.php:37 +#: ../../Zotlabs/Module/Profile.php:45 +msgid "Posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:54 ../../Zotlabs/Module/Hcard.php:44 +#: ../../Zotlabs/Module/Profile.php:52 +msgid "Only posts" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:97 ../../Zotlabs/Lib/Apps.php:240 +#: ../../include/nav.php:175 +msgid "Channel Home" +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:112 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "" + +#: ../../Zotlabs/Module/Lang.php:8 ../../Zotlabs/Lib/Apps.php:256 +#: ../../addon/openid/MysqlProvider.php:69 +msgid "Language" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Channel" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export Content" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:61 +msgid "" +"Export your channel information and recent content to a JSON backup that can " +"be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for " +"this download to begin." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:63 +msgid "Export your posts from a given year." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:65 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:66 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:67 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:68 +#, php-format +msgid "" +"These content files may be imported or restored by visiting " +"%2$s on any site containing your channel. For best results please import " +"or restore these in date order (oldest first)." +msgstr "" + +#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:490 +#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Display.php:22 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "" + +#: ../../Zotlabs/Module/Search.php:25 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Module/Connections.php:313 ../../Zotlabs/Lib/Apps.php:250 +#: ../../Zotlabs/Widget/Sitesearch.php:31 ../../include/text.php:1021 +#: ../../include/text.php:1033 ../../include/acl_selectors.php:213 +#: ../../include/nav.php:160 +msgid "Search" +msgstr "" + +#: ../../Zotlabs/Module/Search.php:225 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: ../../Zotlabs/Module/Search.php:227 +#, php-format +msgid "Search results for: %s" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary " +"location." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:119 ../../Zotlabs/Module/Admin.php:111 +msgid "Primary" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing " +"your channel." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "" + +#: ../../Zotlabs/Module/Apporder.php:34 +msgid "Change Order of Navigation Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apporder.php:35 +msgid "Use arrows to move the corresponding app up or down in the display list" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:28 ../../Zotlabs/Module/Menu.php:144 +msgid "Menu not found." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:120 ../../Zotlabs/Module/Menu.php:166 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "(click to open/close)" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:235 +#: ../../Zotlabs/Module/Settings/Channel.php:298 +#: ../../Zotlabs/Module/Settings/Display.php:103 +#: ../../Zotlabs/Module/Api.php:97 ../../Zotlabs/Module/Photos.php:644 +#: ../../Zotlabs/Module/Wiki.php:182 ../../Zotlabs/Module/Connedit.php:392 +#: ../../Zotlabs/Module/Connedit.php:775 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Filestorage.php:150 +#: ../../Zotlabs/Module/Filestorage.php:158 +#: ../../Zotlabs/Storage/Browser.php:351 ../../boot.php:1605 +#: ../../view/theme/redbasic/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:115 +#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 +#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 +#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 +#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 +#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 +#: ../../addon/ljpost/ljpost.php:82 ../../addon/gitwiki/Mod_Gitwiki.php:166 +#: ../../addon/rainbowtag/rainbowtag.php:81 ../../addon/visage/visage.php:166 +#: ../../addon/nsabait/nsabait.php:157 ../../addon/rtof/rtof.php:81 +#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 +#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 +#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 +#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:81 +#: ../../addon/flattrwidget/flattrwidget.php:120 +#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:242 +#: ../../addon/twitter/twitter.php:246 ../../addon/twitter/twitter.php:255 +#: ../../addon/smileybutton/smileybutton.php:211 +#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 +#: ../../addon/pumpio/pumpio.php:219 ../../addon/pumpio/pumpio.php:223 +#: ../../addon/pumpio/pumpio.php:227 ../../addon/pumpio/pumpio.php:231 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 +msgid "No" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:237 +#: ../../Zotlabs/Module/Settings/Channel.php:298 +#: ../../Zotlabs/Module/Settings/Display.php:103 +#: ../../Zotlabs/Module/Api.php:96 ../../Zotlabs/Module/Photos.php:644 +#: ../../Zotlabs/Module/Wiki.php:182 ../../Zotlabs/Module/Connedit.php:392 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Filestorage.php:150 +#: ../../Zotlabs/Module/Filestorage.php:158 +#: ../../Zotlabs/Storage/Browser.php:351 ../../boot.php:1605 +#: ../../view/theme/redbasic/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:115 +#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 +#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 +#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 +#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 +#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 +#: ../../addon/ljpost/ljpost.php:82 ../../addon/gitwiki/Mod_Gitwiki.php:166 +#: ../../addon/rainbowtag/rainbowtag.php:81 ../../addon/visage/visage.php:166 +#: ../../addon/nsabait/nsabait.php:157 ../../addon/rtof/rtof.php:81 +#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 +#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 +#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 +#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:81 +#: ../../addon/flattrwidget/flattrwidget.php:120 +#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:242 +#: ../../addon/twitter/twitter.php:246 ../../addon/twitter/twitter.php:255 +#: ../../addon/smileybutton/smileybutton.php:211 +#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 +#: ../../addon/pumpio/pumpio.php:219 ../../addon/pumpio/pumpio.php:223 +#: ../../addon/pumpio/pumpio.php:227 ../../addon/pumpio/pumpio.php:231 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 +msgid "Yes" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:110 +msgid "Event can not end before it has started." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 +#: ../../Zotlabs/Module/Events.php:143 +msgid "Unable to generate preview." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:119 +msgid "Event title and start time are required." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 +msgid "Event not found." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:51 +#: ../../Zotlabs/Module/Like.php:372 ../../include/conversation.php:119 +#: ../../include/text.php:1933 ../../include/event.php:1145 +msgid "event" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:275 ../../Zotlabs/Lib/Apps.php:243 +#: ../../include/conversation.php:1799 ../../include/conversation.php:1802 +#: ../../include/nav.php:195 ../../include/nav.php:397 +#: ../../include/nav.php:400 +msgid "Events" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:460 +msgid "Edit event title" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Appman.php:136 ../../Zotlabs/Module/Appman.php:137 +#: ../../Zotlabs/Module/Profiles.php:748 ../../Zotlabs/Module/Profiles.php:752 +#: ../../include/datetime.php:259 +msgid "Required" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Categories (comma-separated list)" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Category" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Category" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:466 +msgid "Edit start date and time" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 +msgid "Finish date and time are not known or not relevant" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:469 +msgid "Edit finish date and time" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:469 +msgid "Finish date and time" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 +msgid "Adjust for viewer timezone" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:471 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:473 +msgid "Edit Description" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Edit Location" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1065 +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:739 +#: ../../include/conversation.php:1277 +msgid "Preview" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1340 +msgid "Permission settings" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:489 +msgid "Timezone:" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:494 +msgid "Advanced Options" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:605 ../../Zotlabs/Module/Cal.php:264 +msgid "l, F j" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:633 +msgid "Edit event" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:635 +msgid "Delete event" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:313 +#: ../../include/text.php:1752 +msgid "Link to Source" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:669 +msgid "calendar" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:336 +msgid "Edit Event" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:336 +msgid "Create Event" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:339 +#: ../../include/channel.php:1488 +msgid "Export" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:731 +msgid "Event removed" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:734 +msgid "Failed to remove event" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:38 ../../Zotlabs/Module/Appman.php:55 +msgid "App installed." +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:48 +msgid "Malformed app." +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:125 +msgid "Embed code" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:131 +msgid "Edit App" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:131 +msgid "Create App" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:136 +msgid "Name of app" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:137 +msgid "Location (URL) of app" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:139 +msgid "Photo icon URL" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:139 +msgid "80 x 80 pixels - optional" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:140 +msgid "Categories (optional, comma separated list)" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:141 +msgid "Version ID" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:142 +msgid "Price of app" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:143 +msgid "Location (URL) to purchase app" +msgstr "" + +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "" + +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:87 ../../Zotlabs/Module/Tagger.php:47 +#: ../../Zotlabs/Module/Like.php:370 +#: ../../addon/redphotos/redphotohelper.php:71 +#: ../../addon/diaspora/Receiver.php:1370 ../../include/conversation.php:116 +#: ../../include/text.php:1930 +msgid "photo" +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:87 ../../Zotlabs/Module/Like.php:370 +#: ../../addon/diaspora/Receiver.php:1370 ../../include/conversation.php:144 +#: ../../include/text.php:1936 +msgid "status" +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:64 +msgid "Nothing to import." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:79 +#: ../../Zotlabs/Module/Import.php:95 +msgid "Unable to download data from old server" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:77 ../../Zotlabs/Module/Import.php:102 +msgid "Imported file is empty." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:93 ../../Zotlabs/Module/Import.php:121 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:108 +msgid "Import completed" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:125 +msgid "Import Items" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:126 +msgid "Use this form to import existing posts and content from an export file." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:127 +#: ../../Zotlabs/Module/Import.php:505 +msgid "File to Upload" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:121 ../../Zotlabs/Module/Manage.php:138 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../Zotlabs/Module/Register.php:237 #: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:237 msgid "Name or caption" msgstr "" -#: ../../Zotlabs/Module/Register.php:237 #: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:237 msgid "" "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " "Group\"" msgstr "" -#: ../../Zotlabs/Module/Register.php:239 #: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Register.php:239 msgid "Choose a short nickname" msgstr "" -#: ../../Zotlabs/Module/Register.php:239 #: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Register.php:239 #, php-format msgid "" "Your nickname will be used to create an easy to remember channel address e." "g. nickname%s" msgstr "" -#: ../../Zotlabs/Module/Register.php:240 #: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 msgid "Channel role and privacy" msgstr "" -#: ../../Zotlabs/Module/Register.php:240 #: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 msgid "Select a channel role with your privacy requirements." msgstr "" -#: ../../Zotlabs/Module/Register.php:240 #: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 msgid "Read more about roles" msgstr "" -#: ../../Zotlabs/Module/Register.php:241 -msgid "no" +#: ../../Zotlabs/Module/New_channel.php:140 +msgid "Create Channel" msgstr "" -#: ../../Zotlabs/Module/Register.php:241 -msgid "yes" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:251 -#: ../../Zotlabs/Module/Admin/Site.php:272 -msgid "Registration" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:256 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:268 ../../include/nav.php:147 -#: ../../boot.php:1572 -msgid "Register" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:269 +#: ../../Zotlabs/Module/New_channel.php:141 msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." msgstr "" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" +#: ../../Zotlabs/Module/New_channel.php:142 +msgid "" +"or import an existing channel from another location." msgstr "" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Ratings.php:83 -#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Display.php:22 -#: ../../Zotlabs/Module/Viewconnections.php:23 -#: ../../Zotlabs/Module/Photos.php:490 -msgid "Public access denied." +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Directory.php:245 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Gender: " +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" msgstr "" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Status: " +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "WARNING: " msgstr "" -#: ../../Zotlabs/Module/Directory.php:260 -msgid "Homepage: " +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " msgstr "" -#: ../../Zotlabs/Module/Directory.php:309 ../../include/channel.php:1314 -msgid "Age:" +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "This action is permanent and can not be undone!" msgstr "" -#: ../../Zotlabs/Module/Directory.php:314 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1149 -msgid "Location:" +#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:59 +msgid "Please enter your password for verification:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:320 -msgid "Description:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:325 ../../include/channel.php:1330 -msgid "Hometown:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:327 ../../include/channel.php:1338 -msgid "About:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:328 ../../Zotlabs/Module/Suggest.php:54 -#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 -#: ../../include/connections.php:111 ../../include/conversation.php:999 -#: ../../include/channel.php:1134 -msgid "Connect" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Public Forum:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Keywords: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:335 -msgid "Don't suggest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:337 -msgid "Common connections:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:386 -msgid "Global Directory" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:386 -msgid "Local Directory" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:391 -#: ../../Zotlabs/Module/Directory.php:396 -#: ../../Zotlabs/Module/Connections.php:317 -#: ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:392 -msgid "Finding:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:395 ../../Zotlabs/Module/Suggest.php:62 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:397 -msgid "next page" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:397 -msgid "previous page" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Sort options" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Alphabetic" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:400 -msgid "Reverse Alphabetic" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:401 -msgid "Newest to Oldest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:402 -msgid "Oldest to Newest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:419 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 -#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 -msgid "Profile not found." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 -msgid "Profile-" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 -msgid "New profile created." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:111 -msgid "Profile unavailable to clone." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:146 -msgid "Profile unavailable to export." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:252 -msgid "Profile Name is required." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:459 -msgid "Marital Status" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:463 -msgid "Romantic Partner" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:775 -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:776 -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:783 -msgid "Work/Employment" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:478 -msgid "Religion" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:482 -msgid "Political Views" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:486 -#: ../../extend/addon/addon/openid/MysqlProvider.php:74 -msgid "Gender" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:490 -msgid "Sexual Preference" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:494 -msgid "Homepage" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:498 -msgid "Interests" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:502 ../../Zotlabs/Module/Profiles.php:793 -#: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Connedit.php:926 -#: ../../Zotlabs/Module/Cdav.php:1116 -msgid "Address" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:509 ../../Zotlabs/Module/Profiles.php:737 -#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Pubsites.php:51 -#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Cdav.php:812 -#: ../../include/js_strings.php:25 -msgid "Location" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:594 -msgid "Profile updated." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:678 -msgid "Hide your connections list from viewers of this profile" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:681 ../../Zotlabs/Module/Wiki.php:180 -#: ../../Zotlabs/Module/Admin/Site.php:235 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Connedit.php:392 -#: ../../Zotlabs/Module/Connedit.php:775 -#: ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Api.php:97 -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 #: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings/Channel.php:294 -#: ../../Zotlabs/Module/Settings/Display.php:103 -#: ../../Zotlabs/Module/Photos.php:642 -#: ../../extend/addon/addon/dwpost/dwpost.php:73 -#: ../../extend/addon/addon/dwpost/dwpost.php:85 -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:120 -#: ../../extend/addon/addon/ijpost/ijpost.php:73 -#: ../../extend/addon/addon/ijpost/ijpost.php:85 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:309 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:313 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:343 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:351 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:355 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:359 -#: ../../extend/addon/addon/libertree/libertree.php:69 -#: ../../extend/addon/addon/libertree/libertree.php:81 -#: ../../extend/addon/addon/ljpost/ljpost.php:70 -#: ../../extend/addon/addon/ljpost/ljpost.php:82 -#: ../../extend/addon/addon/nofed/nofed.php:72 -#: ../../extend/addon/addon/nofed/nofed.php:76 -#: ../../extend/addon/addon/nsabait/nsabait.php:157 -#: ../../extend/addon/addon/nsfw/nsfw.php:84 -#: ../../extend/addon/addon/planets/planets.php:149 -#: ../../extend/addon/addon/pumpio/pumpio.php:219 -#: ../../extend/addon/addon/pumpio/pumpio.php:223 -#: ../../extend/addon/addon/pumpio/pumpio.php:227 -#: ../../extend/addon/addon/pumpio/pumpio.php:231 -#: ../../extend/addon/addon/rainbowtag/rainbowtag.php:81 -#: ../../extend/addon/addon/redred/redred.php:95 -#: ../../extend/addon/addon/redred/redred.php:99 -#: ../../extend/addon/addon/rtof/rtof.php:81 -#: ../../extend/addon/addon/rtof/rtof.php:85 -#: ../../extend/addon/addon/smileybutton/smileybutton.php:211 -#: ../../extend/addon/addon/smileybutton/smileybutton.php:215 -#: ../../extend/addon/addon/statusnet/statusnet.php:389 -#: ../../extend/addon/addon/statusnet/statusnet.php:411 -#: ../../extend/addon/addon/statusnet/statusnet.php:415 -#: ../../extend/addon/addon/statusnet/statusnet.php:424 -#: ../../extend/addon/addon/twitter/twitter.php:242 -#: ../../extend/addon/addon/twitter/twitter.php:246 -#: ../../extend/addon/addon/twitter/twitter.php:255 -#: ../../extend/addon/addon/visage/visage.php:166 -#: ../../extend/addon/addon/wppost/wppost.php:82 -#: ../../extend/addon/addon/wppost/wppost.php:105 -#: ../../extend/addon/addon/wppost/wppost.php:109 -#: ../../extend/addon/addon/xmpp/xmpp.php:53 -#: ../../extend/addon/addon/authchoose/authchoose.php:67 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:166 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:100 -#: ../../view/theme/redbasic/php/config.php:115 ../../boot.php:1595 -msgid "No" +msgid "Remove this channel and all its clones from the network" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:681 ../../Zotlabs/Module/Wiki.php:180 -#: ../../Zotlabs/Module/Admin/Site.php:237 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Connedit.php:392 -#: ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Api.php:96 -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 #: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings/Channel.php:294 -#: ../../Zotlabs/Module/Settings/Display.php:103 -#: ../../Zotlabs/Module/Photos.php:642 -#: ../../extend/addon/addon/dwpost/dwpost.php:73 -#: ../../extend/addon/addon/dwpost/dwpost.php:85 -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:120 -#: ../../extend/addon/addon/ijpost/ijpost.php:73 -#: ../../extend/addon/addon/ijpost/ijpost.php:85 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:309 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:313 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:343 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:351 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:355 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:359 -#: ../../extend/addon/addon/libertree/libertree.php:69 -#: ../../extend/addon/addon/libertree/libertree.php:81 -#: ../../extend/addon/addon/ljpost/ljpost.php:70 -#: ../../extend/addon/addon/ljpost/ljpost.php:82 -#: ../../extend/addon/addon/nofed/nofed.php:72 -#: ../../extend/addon/addon/nofed/nofed.php:76 -#: ../../extend/addon/addon/nsabait/nsabait.php:157 -#: ../../extend/addon/addon/nsfw/nsfw.php:84 -#: ../../extend/addon/addon/planets/planets.php:149 -#: ../../extend/addon/addon/pumpio/pumpio.php:219 -#: ../../extend/addon/addon/pumpio/pumpio.php:223 -#: ../../extend/addon/addon/pumpio/pumpio.php:227 -#: ../../extend/addon/addon/pumpio/pumpio.php:231 -#: ../../extend/addon/addon/rainbowtag/rainbowtag.php:81 -#: ../../extend/addon/addon/redred/redred.php:95 -#: ../../extend/addon/addon/redred/redred.php:99 -#: ../../extend/addon/addon/rtof/rtof.php:81 -#: ../../extend/addon/addon/rtof/rtof.php:85 -#: ../../extend/addon/addon/smileybutton/smileybutton.php:211 -#: ../../extend/addon/addon/smileybutton/smileybutton.php:215 -#: ../../extend/addon/addon/statusnet/statusnet.php:389 -#: ../../extend/addon/addon/statusnet/statusnet.php:411 -#: ../../extend/addon/addon/statusnet/statusnet.php:415 -#: ../../extend/addon/addon/statusnet/statusnet.php:424 -#: ../../extend/addon/addon/twitter/twitter.php:242 -#: ../../extend/addon/addon/twitter/twitter.php:246 -#: ../../extend/addon/addon/twitter/twitter.php:255 -#: ../../extend/addon/addon/visage/visage.php:166 -#: ../../extend/addon/addon/wppost/wppost.php:82 -#: ../../extend/addon/addon/wppost/wppost.php:105 -#: ../../extend/addon/addon/wppost/wppost.php:109 -#: ../../extend/addon/addon/xmpp/xmpp.php:53 -#: ../../extend/addon/addon/authchoose/authchoose.php:67 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:166 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:100 -#: ../../view/theme/redbasic/php/config.php:115 ../../boot.php:1595 -msgid "Yes" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:725 -msgid "Edit Profile Details" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:726 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Wiki.php:169 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Profs.php:157 -#: ../../Zotlabs/Module/Admin/Security.php:104 -#: ../../Zotlabs/Module/Admin/Account_edit.php:74 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Admin/Plugins.php:438 -#: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:271 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Connedit.php:899 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Setup.php:303 -#: ../../Zotlabs/Module/Setup.php:344 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Import_items.php:129 ../../Zotlabs/Module/Mail.php:431 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Invite.php:149 -#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Cal.php:343 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Module/Appman.php:148 ../../Zotlabs/Module/Pdledit.php:74 -#: ../../Zotlabs/Module/Import.php:518 ../../Zotlabs/Module/Events.php:493 -#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 -#: ../../Zotlabs/Module/Poke.php:198 -#: ../../Zotlabs/Module/Settings/Features.php:47 -#: ../../Zotlabs/Module/Settings/Oauth.php:87 -#: ../../Zotlabs/Module/Settings/Account.php:118 -#: ../../Zotlabs/Module/Settings/Channel.php:476 -#: ../../Zotlabs/Module/Settings/Featured.php:50 -#: ../../Zotlabs/Module/Settings/Display.php:203 -#: ../../Zotlabs/Module/Settings/Tokens.php:168 -#: ../../Zotlabs/Module/Settings/Permcats.php:110 -#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 -#: ../../Zotlabs/Module/Photos.php:657 ../../Zotlabs/Module/Photos.php:1022 -#: ../../Zotlabs/Module/Photos.php:1062 ../../Zotlabs/Module/Photos.php:1180 -#: ../../Zotlabs/Module/Chat.php:194 ../../Zotlabs/Module/Chat.php:240 -#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:730 -#: ../../Zotlabs/Widget/Eventstools.php:16 -#: ../../extend/addon/addon/chords/Mod_Chords.php:60 -#: ../../extend/addon/addon/dwpost/dwpost.php:89 -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:124 -#: ../../extend/addon/addon/frphotos/frphotos.php:96 -#: ../../extend/addon/addon/hubwall/hubwall.php:95 -#: ../../extend/addon/addon/ijpost/ijpost.php:89 -#: ../../extend/addon/addon/irc/irc.php:53 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:371 -#: ../../extend/addon/addon/libertree/libertree.php:85 -#: ../../extend/addon/addon/ljpost/ljpost.php:86 -#: ../../extend/addon/addon/logrot/logrot.php:35 -#: ../../extend/addon/addon/mailhost/mailhost.php:40 -#: ../../extend/addon/addon/nofed/nofed.php:80 -#: ../../extend/addon/addon/nsabait/nsabait.php:161 -#: ../../extend/addon/addon/nsfw/nsfw.php:92 -#: ../../extend/addon/addon/openclipatar/openclipatar.php:53 -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:168 -#: ../../extend/addon/addon/pageheader/pageheader.php:48 -#: ../../extend/addon/addon/piwik/piwik.php:95 -#: ../../extend/addon/addon/planets/planets.php:153 -#: ../../extend/addon/addon/pumpio/pumpio.php:237 -#: ../../extend/addon/addon/rainbowtag/rainbowtag.php:85 -#: ../../extend/addon/addon/redfiles/redfiles.php:124 -#: ../../extend/addon/addon/redphotos/redphotos.php:136 -#: ../../extend/addon/addon/redred/redred.php:119 -#: ../../extend/addon/addon/rtof/rtof.php:101 -#: ../../extend/addon/addon/skeleton/skeleton.php:65 -#: ../../extend/addon/addon/smileybutton/smileybutton.php:219 -#: ../../extend/addon/addon/startpage/startpage.php:113 -#: ../../extend/addon/addon/statusnet/statusnet.php:322 -#: ../../extend/addon/addon/statusnet/statusnet.php:380 -#: ../../extend/addon/addon/statusnet/statusnet.php:432 -#: ../../extend/addon/addon/statusnet/statusnet.php:899 -#: ../../extend/addon/addon/superblock/superblock.php:120 -#: ../../extend/addon/addon/twitter/twitter.php:217 -#: ../../extend/addon/addon/twitter/twitter.php:259 -#: ../../extend/addon/addon/visage/visage.php:170 -#: ../../extend/addon/addon/wppost/wppost.php:113 -#: ../../extend/addon/addon/xmpp/xmpp.php:69 -#: ../../extend/addon/addon/likebanner/likebanner.php:57 -#: ../../extend/addon/addon/authchoose/authchoose.php:71 -#: ../../extend/addon/addon/mailtest/mailtest.php:100 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:155 -#: ../../extend/addon/addon/diaspora/diaspora.php:749 -#: ../../extend/addon/addon/gnusoc/gnusoc.php:226 -#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:95 -msgid "Submit" +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "View this profile" +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:580 +msgid "Remove Channel" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:728 ../../Zotlabs/Module/Profiles.php:827 -#: ../../include/channel.php:1081 -msgid "Edit visibility" +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Files: shared with me" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:729 -msgid "Profile Tools" +#: ../../Zotlabs/Module/Sharedwithme.php:106 +msgid "NEW" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Change cover photo" +#: ../../Zotlabs/Module/Sharedwithme.php:107 +#: ../../Zotlabs/Storage/Browser.php:236 ../../include/text.php:1386 +msgid "Size" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:731 ../../include/channel.php:1052 -msgid "Change profile photo" +#: ../../Zotlabs/Module/Sharedwithme.php:108 +#: ../../Zotlabs/Storage/Browser.php:237 +msgid "Last Modified" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Create a new profile using these settings" +#: ../../Zotlabs/Module/Sharedwithme.php:109 +msgid "Remove all files" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Clone this profile" +#: ../../Zotlabs/Module/Sharedwithme.php:110 +msgid "Remove this file" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Delete this profile" +#: ../../Zotlabs/Module/Setup.php:170 +msgid "$Projectname Server - Setup" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Add profile things" +#: ../../Zotlabs/Module/Setup.php:174 +msgid "Could not connect to database." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:736 ../../include/conversation.php:1654 -msgid "Personal" +#: ../../Zotlabs/Module/Setup.php:178 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Relation" +#: ../../Zotlabs/Module/Setup.php:185 +msgid "Could not create table." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:739 ../../include/datetime.php:55 -msgid "Miscellaneous" +#: ../../Zotlabs/Module/Setup.php:191 +msgid "Your site database has been installed." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Import profile from file" +#: ../../Zotlabs/Module/Setup.php:197 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Export profile to file" +#: ../../Zotlabs/Module/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 +#: ../../Zotlabs/Module/Setup.php:745 +msgid "Please see the file \"install/INSTALL.txt\"." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Your gender" +#: ../../Zotlabs/Module/Setup.php:259 +msgid "System check" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:744 -msgid "Marital status" +#: ../../Zotlabs/Module/Setup.php:264 +msgid "Check again" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "Sexual preference" +#: ../../Zotlabs/Module/Setup.php:286 +msgid "Database connection" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:748 -msgid "Profile name" +#: ../../Zotlabs/Module/Setup.php:287 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:748 ../../Zotlabs/Module/Profiles.php:752 -#: ../../Zotlabs/Module/Appman.php:136 ../../Zotlabs/Module/Appman.php:137 -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 -#: ../../include/datetime.php:259 -msgid "Required" +#: ../../Zotlabs/Module/Setup.php:288 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:750 -msgid "This is your default profile." +#: ../../Zotlabs/Module/Setup.php:289 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:752 -msgid "Your full name" +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Database Server Name" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:753 -msgid "Title/Description" +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Default is 127.0.0.1" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:756 -msgid "Street address" +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database Port" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:757 -msgid "Locality/City" +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Communication port number - use 0 for default" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:758 -msgid "Region/State" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database Login Name" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:759 -msgid "Postal/Zip code" +#: ../../Zotlabs/Module/Setup.php:296 +msgid "Database Login Password" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:760 ../../Zotlabs/Module/Connedit.php:944 -#: ../../Zotlabs/Module/Cdav.php:1134 -msgid "Country" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Name" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:765 -msgid "Who (if applicable)" +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Type" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:765 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 +msgid "Site administrator email address" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:766 -msgid "Since (date)" +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:769 -msgid "Tell us about yourself" +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 +msgid "Website URL" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:770 -#: ../../extend/addon/addon/openid/MysqlProvider.php:68 -msgid "Homepage URL" +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 +msgid "Please use SSL (https) URL if available." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Hometown" +#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:345 +msgid "Please select a default timezone for your website" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:772 -msgid "Political views" +#: ../../Zotlabs/Module/Setup.php:330 +msgid "Site settings" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:773 -msgid "Religious views" +#: ../../Zotlabs/Module/Setup.php:384 +msgid "PHP version 5.5 or greater is required." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:774 -msgid "Keywords used in directory listings" +#: ../../Zotlabs/Module/Setup.php:385 +msgid "PHP version" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:774 -msgid "Example: fishing photography software" +#: ../../Zotlabs/Module/Setup.php:401 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:777 -msgid "Musical interests" +#: ../../Zotlabs/Module/Setup.php:402 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Books, literature" +#: ../../Zotlabs/Module/Setup.php:406 +msgid "PHP executable path" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:779 -msgid "Television" +#: ../../Zotlabs/Module/Setup.php:406 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:780 -msgid "Film/Dance/Culture/Entertainment" +#: ../../Zotlabs/Module/Setup.php:411 +msgid "Command line PHP" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:781 -msgid "Hobbies/Interests" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:782 -msgid "Love/Romance" +#: ../../Zotlabs/Module/Setup.php:424 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:784 -msgid "School/Education" +#: ../../Zotlabs/Module/Setup.php:425 +msgid "This is required for message delivery to work." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:785 -msgid "Contact information and social networks" +#: ../../Zotlabs/Module/Setup.php:428 +msgid "PHP register_argc_argv" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:786 -msgid "My other channels" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:788 -msgid "Communications" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:789 ../../Zotlabs/Module/Connedit.php:922 -#: ../../Zotlabs/Module/Cdav.php:1112 -msgid "Phone" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:790 -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Accounts.php:181 -#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Cdav.php:1113 -#: ../../extend/addon/addon/redred/redred.php:107 -#: ../../extend/addon/addon/rtof/rtof.php:93 -#: ../../extend/addon/addon/openid/MysqlProvider.php:56 -#: ../../extend/addon/addon/openid/MysqlProvider.php:57 -#: ../../include/network.php:1696 -msgid "Email" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:791 ../../Zotlabs/Module/Connedit.php:924 -#: ../../Zotlabs/Module/Cdav.php:1114 -msgid "Instant messenger" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:792 ../../Zotlabs/Module/Connedit.php:925 -#: ../../Zotlabs/Module/Cdav.php:1115 -msgid "Website" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:794 ../../Zotlabs/Module/Connedit.php:927 -#: ../../Zotlabs/Module/Cdav.php:1117 -msgid "Note" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:795 ../../Zotlabs/Module/Connedit.php:928 -#: ../../Zotlabs/Module/Cdav.php:1118 ../../include/connections.php:674 -#: ../../include/event.php:1290 -msgid "Mobile" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:796 ../../Zotlabs/Module/Connedit.php:929 -#: ../../Zotlabs/Module/Cdav.php:1119 ../../include/connections.php:675 -#: ../../include/event.php:1291 -msgid "Home" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:797 ../../Zotlabs/Module/Connedit.php:930 -#: ../../Zotlabs/Module/Cdav.php:1120 ../../include/connections.php:678 -#: ../../include/event.php:1294 -msgid "Work" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:799 ../../Zotlabs/Module/Connedit.php:932 -#: ../../Zotlabs/Module/Cdav.php:1122 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:368 -msgid "Add Contact" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:800 ../../Zotlabs/Module/Connedit.php:933 -#: ../../Zotlabs/Module/Cdav.php:1123 -msgid "Add Field" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:802 -#: ../../Zotlabs/Module/Admin/Plugins.php:453 -#: ../../Zotlabs/Module/Connedit.php:935 -#: ../../Zotlabs/Module/Settings/Oauth.php:42 -#: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Cdav.php:1125 ../../Zotlabs/Lib/Apps.php:359 -msgid "Update" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:804 ../../Zotlabs/Module/Wiki.php:288 -#: ../../Zotlabs/Module/Wiki.php:314 -#: ../../Zotlabs/Module/Admin/Plugins.php:423 -#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Connedit.php:937 -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Settings/Oauth.php:88 -#: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 -#: ../../Zotlabs/Module/Cdav.php:839 ../../Zotlabs/Module/Cdav.php:1127 -#: ../../extend/addon/addon/js_upload/js_upload.php:46 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:244 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:267 -#: ../../include/conversation.php:1324 ../../include/conversation.php:1373 -msgid "Cancel" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:823 ../../include/channel.php:1077 -msgid "Profile Image" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:833 ../../include/nav.php:107 -#: ../../include/channel.php:1059 -msgid "Edit Profiles" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:834 ../../Zotlabs/Module/Wiki.php:168 -#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Chat.php:254 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:154 -msgid "Create New" -msgstr "" - -#: ../../Zotlabs/Module/Item.php:185 -msgid "Unable to locate original post." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:470 -msgid "Empty post discarded." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:844 -msgid "Duplicate post suppressed." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:984 -msgid "System error. Post not saved." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1020 -msgid "Your comment is awaiting approval." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1118 -msgid "Unable to obtain post information from database." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1125 +#: ../../Zotlabs/Module/Setup.php:446 #, php-format -msgid "You have reached your limit of %1$.0f top level posts." +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." msgstr "" -#: ../../Zotlabs/Module/Item.php:1132 +#: ../../Zotlabs/Module/Setup.php:451 +msgid "You can adjust these settings in the server php.ini file." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:453 +msgid "PHP upload limits" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:476 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:477 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:480 +msgid "Generate encryption keys" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:497 +msgid "libCurl PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:498 +msgid "GD graphics PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:499 +msgid "OpenSSL PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:500 +msgid "PDO database PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:501 +msgid "mb_string PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:502 +msgid "xml PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:503 +msgid "zip PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 +msgid "Apache mod_rewrite module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:507 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:513 ../../Zotlabs/Module/Setup.php:516 +msgid "exec" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:513 +msgid "" +"Error: exec is required but is either not installed or has been disabled in " +"php.ini" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:522 +msgid "shell_exec" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:519 +msgid "" +"Error: shell_exec is required but is either not installed or has been " +"disabled in php.ini" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:527 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:531 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:535 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:539 +msgid "Error: PDO database PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:543 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:547 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:551 +msgid "Error: zip PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:569 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:570 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:571 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:572 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:575 +msgid ".htconfig.php is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:589 +msgid "" +"This software uses the Smarty3 template engine to render its web views. " +"Smarty3 compiles templates to PHP to speed up rendering." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:590 #, php-format -msgid "You have reached your limit of %1$.0f webpages." +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 -#: ../../Zotlabs/Module/Editlayout.php:128 -msgid "Layout Name" +#: ../../Zotlabs/Module/Setup.php:591 ../../Zotlabs/Module/Setup.php:612 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:132 -#: ../../Zotlabs/Module/Editlayout.php:129 -msgid "Layout Description (Optional)" +#: ../../Zotlabs/Module/Setup.php:592 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2282 -msgid "Layouts" +#: ../../Zotlabs/Module/Setup.php:595 +#, php-format +msgid "%s is writable" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:233 -#: ../../include/nav.php:159 ../../include/nav.php:255 -#: ../../include/help.php:55 ../../include/help.php:61 -msgid "Help" +#: ../../Zotlabs/Module/Setup.php:611 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the top level " +"web folder" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:186 -msgid "Comanche page description language help" +#: ../../Zotlabs/Module/Setup.php:615 +msgid "store is writable" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:190 -msgid "Layout Description" +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Webpages.php:249 ../../Zotlabs/Module/Blocks.php:157 -msgid "Created" +#: ../../Zotlabs/Module/Setup.php:648 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Webpages.php:250 ../../Zotlabs/Module/Blocks.php:158 -msgid "Edited" +#: ../../Zotlabs/Module/Setup.php:649 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:194 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1042 -#: ../../Zotlabs/Widget/Cdav.php:123 ../../include/conversation.php:1308 -msgid "Share" +#: ../../Zotlabs/Module/Setup.php:650 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:195 -msgid "Download PDL file" +#: ../../Zotlabs/Module/Setup.php:651 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Wiki.php:167 -#: ../../Zotlabs/Module/Pubsites.php:59 ../../Zotlabs/Module/Webpages.php:244 -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:153 -msgid "View" +#: ../../Zotlabs/Module/Setup.php:652 +msgid "" +"Providers are available that issue free certificates which are browser-valid." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:654 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:656 +msgid "SSL certificate validation" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:662 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:665 +msgid "Url rewrite is working" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:679 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:703 ../../addon/rendezvous/rendezvous.php:401 +msgid "Errors encountered creating database tables." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:743 +msgid "

What next?

" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:744 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" #: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 @@ -1464,487 +2078,32 @@ msgstr "" msgid "Restricted or Premium Channel" msgstr "" -#: ../../Zotlabs/Module/Chanview.php:96 ../../Zotlabs/Module/Block.php:41 -#: ../../Zotlabs/Module/Page.php:75 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Wall_upload.php:31 -msgid "Channel not found." +#: ../../Zotlabs/Module/Admin/Queue.php:35 +msgid "Queue Statistics" msgstr "" -#: ../../Zotlabs/Module/Chanview.php:139 -msgid "toggle full screen mode" +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Total Entries" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:30 -msgid "Profile Unavailable." +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Priority" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:44 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:42 -msgid "Not found" +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Destination URL" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:68 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:62 -msgid "Invalid channel" +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Mark hub permanently offline" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:160 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:146 -#: ../../include/nav.php:452 ../../include/conversation.php:1851 -msgid "Wikis" +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Empty queue for this hub" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:166 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:152 -msgid "Download" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:170 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:156 -msgid "Wiki name" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:171 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:157 -msgid "Content type" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:180 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:166 -msgid "Create a status post for this wiki" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:222 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:185 -msgid "Wiki not found" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:246 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:210 -msgid "Rename page" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:256 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:214 -msgid "Error retrieving page content" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:262 -msgid "New page" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:286 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:242 -msgid "Revision Comparison" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:287 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:243 -msgid "Revert" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:291 -msgid "Short description of your changes (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:298 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:252 -msgid "Source" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:307 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:260 -msgid "New page name" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:312 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:265 -#: ../../include/conversation.php:1229 -msgid "Embed image from photo albums" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:313 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:266 -#: ../../include/conversation.php:1323 -msgid "Embed an image from your albums" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:315 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:268 -#: ../../include/conversation.php:1325 ../../include/conversation.php:1372 -msgid "OK" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:316 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:269 -#: ../../include/conversation.php:1265 -msgid "Choose images to embed" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:317 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:270 -#: ../../include/conversation.php:1266 -msgid "Choose an album" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:318 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:271 -msgid "Choose a different album" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:319 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:272 -#: ../../include/conversation.php:1268 -msgid "Error getting album list" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:320 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:273 -#: ../../include/conversation.php:1269 -msgid "Error getting photo link" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:321 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:274 -#: ../../include/conversation.php:1270 -msgid "Error getting album" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:389 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:337 -msgid "Error creating wiki. Invalid name." -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:396 -msgid "A wiki with this name already exists." -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:409 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:348 -msgid "Wiki created, but error creating Home page." -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:416 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:353 -msgid "Error creating wiki" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:428 -msgid "Wiki delete permission denied." -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:438 -msgid "Error deleting wiki" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:464 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:400 -msgid "New page created" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:585 -msgid "Cannot delete Home" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:649 -msgid "Current Revision" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:649 -msgid "Selected Revision" -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:699 -msgid "You must be authenticated." -msgstr "" - -#: ../../Zotlabs/Module/Block.php:29 ../../Zotlabs/Module/Page.php:39 -msgid "Invalid item." -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:254 -msgid "sent you a private message" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:302 -msgid "added your channel" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:312 -msgid "g A l F d" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:330 -msgid "[today]" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:339 -msgid "posted an event" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:52 -#: ../../Zotlabs/Module/Connections.php:157 -#: ../../Zotlabs/Module/Connections.php:246 -msgid "Blocked" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:57 -#: ../../Zotlabs/Module/Connections.php:164 -#: ../../Zotlabs/Module/Connections.php:245 -msgid "Ignored" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:62 -#: ../../Zotlabs/Module/Connections.php:178 -#: ../../Zotlabs/Module/Connections.php:244 -msgid "Hidden" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:67 -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Archived/Unreachable" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:72 -#: ../../Zotlabs/Module/Connections.php:82 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1663 -msgid "New" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:88 -#: ../../Zotlabs/Module/Connections.php:103 -#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:30 -msgid "All" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:134 -msgid "New Connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:137 -msgid "Show pending (new) connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:141 -#: ../../Zotlabs/Module/Profperm.php:140 -msgid "All Connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:144 -msgid "Show all connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:160 -msgid "Only show blocked connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:167 -msgid "Only show ignored connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:174 -msgid "Only show archived/unreachable connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:181 -msgid "Only show hidden connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Pending approval" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:243 -msgid "Archived" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:247 -msgid "Not connected at this location" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:259 -#, php-format -msgid "%1$s [%2$s]" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:260 -msgid "Edit connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:262 -msgid "Delete connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:271 -msgid "Channel address" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:273 -msgid "Network" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Call" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Status" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:280 -msgid "Connected" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:282 -msgid "Approve connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:283 -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../include/conversation.php:685 -msgid "Approve" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:284 -msgid "Ignore connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:285 -#: ../../Zotlabs/Module/Connedit.php:626 -msgid "Ignore" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:286 -msgid "Recent activity" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:310 ../../Zotlabs/Lib/Apps.php:217 -#: ../../include/text.php:951 ../../include/nav.php:183 -msgid "Connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:314 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:238 ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../include/text.php:1021 ../../include/text.php:1033 -#: ../../include/nav.php:162 ../../include/acl_selectors.php:213 -msgid "Search" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:315 -msgid "Search your connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:316 -msgid "Connections search" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:56 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:136 -#: ../../Zotlabs/Module/Cover_photo.php:186 -msgid "Cover Photos" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:159 -#: ../../Zotlabs/Module/Profile_photo.php:137 -msgid "Image resize failed." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:173 -#: ../../Zotlabs/Module/Profile_photo.php:203 ../../include/photos.php:145 -msgid "Unable to process image" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:197 -#: ../../Zotlabs/Module/Profile_photo.php:238 -msgid "Image upload failed." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:214 -#: ../../Zotlabs/Module/Profile_photo.php:257 -msgid "Unable to process image." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4273 -msgid "female" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4274 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4275 -msgid "male" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4276 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4278 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:1776 -msgid "cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:307 -#: ../../Zotlabs/Module/Cover_photo.php:322 -#: ../../Zotlabs/Module/Profile_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:365 -msgid "Photo not available." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:358 -#: ../../Zotlabs/Module/Profile_photo.php:420 -msgid "Upload File:" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:359 -#: ../../Zotlabs/Module/Profile_photo.php:421 -msgid "Select a profile:" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:360 -msgid "Upload Cover Photo" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:365 -#: ../../Zotlabs/Module/Profile_photo.php:429 -#: ../../Zotlabs/Module/Settings/Channel.php:404 -msgid "or" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:365 -#: ../../Zotlabs/Module/Profile_photo.php:429 -msgid "skip this step" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:365 -#: ../../Zotlabs/Module/Profile_photo.php:429 -msgid "select a photo from your photo albums" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:381 -#: ../../Zotlabs/Module/Profile_photo.php:448 -msgid "Crop Image" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:382 -#: ../../Zotlabs/Module/Profile_photo.php:449 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:384 -#: ../../Zotlabs/Module/Profile_photo.php:451 -msgid "Done Editing" +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Last known contact" msgstr "" #: ../../Zotlabs/Module/Admin/Features.php:55 @@ -1968,479 +2127,6 @@ msgstr "" msgid "Manage Additional Features" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Security.php:86 -#: ../../Zotlabs/Module/Admin/Accounts.php:164 -#: ../../Zotlabs/Module/Admin/Channels.php:145 -#: ../../Zotlabs/Module/Admin/Plugins.php:341 -#: ../../Zotlabs/Module/Admin/Plugins.php:436 -#: ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Site.php:269 ../../Zotlabs/Module/Admin.php:134 -msgid "Administration" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 -#: ../../Zotlabs/Widget/Admin.php:58 -msgid "Logs" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:69 -msgid "New Profile Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:70 -#: ../../Zotlabs/Module/Admin/Profs.php:90 -msgid "Field nickname" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:70 -#: ../../Zotlabs/Module/Admin/Profs.php:90 -msgid "System name of field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:71 -#: ../../Zotlabs/Module/Admin/Profs.php:91 -msgid "Input type" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:72 -#: ../../Zotlabs/Module/Admin/Profs.php:92 -msgid "Field Name" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:72 -#: ../../Zotlabs/Module/Admin/Profs.php:92 -msgid "Label on profile pages" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:73 -#: ../../Zotlabs/Module/Admin/Profs.php:93 -msgid "Help text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:73 -#: ../../Zotlabs/Module/Admin/Profs.php:93 -msgid "Additional info (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:74 -#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 -#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1022 -#: ../../include/text.php:1034 -msgid "Save" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:83 -msgid "Field definition not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "Edit Profile Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../Zotlabs/Widget/Admin.php:30 -msgid "Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:148 -msgid "Basic Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:149 -msgid "Advanced Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:149 -msgid "(In addition to basic fields)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:151 -msgid "All available fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:152 -msgid "Custom Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:156 -msgid "Create Custom Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:77 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:80 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:81 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" -"
https://vimeo.com/
https://soundcloud.com/
" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:82 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:87 -#: ../../Zotlabs/Widget/Admin.php:25 -msgid "Security" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "Block public" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:90 -msgid "Set \"Transport Security\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:91 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "Allowed email domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "Not allowed email domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "Allow communications only from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "Block communications from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "Allow communications only from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:97 -msgid "Block communications from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:98 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "One site per line. By default embedded content is filtered." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "Block embedded HTML from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:29 -#, php-format -msgid "Password changed for account %d." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:46 -msgid "Account settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:61 -msgid "Account not found." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:68 -msgid "Account Edit" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:69 -msgid "New Password" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:70 -msgid "New Password again" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:71 -msgid "Technical skill level" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 -msgid "Account language (for emails)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:73 -msgid "Service class" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:36 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:43 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:79 -msgid "Account not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:90 -#, php-format -msgid "Account '%s' deleted" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:98 -#, php-format -msgid "Account '%s' blocked" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:106 -#, php-format -msgid "Account '%s' unblocked" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:165 -#: ../../Zotlabs/Module/Admin/Accounts.php:178 -#: ../../Zotlabs/Module/Admin.php:94 ../../Zotlabs/Widget/Admin.php:23 -msgid "Accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:167 -#: ../../Zotlabs/Module/Admin/Channels.php:148 -msgid "select all" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -msgid "Registrations waiting for confirm" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -msgid "Request date" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "No registrations." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -msgid "Deny" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:174 -#: ../../Zotlabs/Module/Connedit.php:618 -msgid "Block" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Connedit.php:618 -msgid "Unblock" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:180 -msgid "ID" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/group.php:287 -msgid "All Channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:183 -msgid "Register date" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:184 -msgid "Last login" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:185 -msgid "Expires" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:186 -msgid "Service Class" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:188 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " -"on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:189 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:31 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:40 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:46 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:65 -msgid "Channel not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:75 -#, php-format -msgid "Channel '%s' deleted" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' censored" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:146 -#: ../../Zotlabs/Module/Admin.php:108 ../../Zotlabs/Widget/Admin.php:24 -msgid "Channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:150 -msgid "Censor" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:151 -msgid "Uncensor" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:152 -msgid "Allow Code" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:153 -msgid "Disallow Code" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:154 ../../include/nav.php:359 -#: ../../include/conversation.php:1757 -msgid "Channel" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:158 -msgid "UID" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:162 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:163 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - #: ../../Zotlabs/Module/Admin/Dbsync.php:19 msgid "Update has been marked successful" msgstr "" @@ -2481,39 +2167,11 @@ msgstr "" msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:35 -msgid "Queue Statistics" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Total Entries" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Priority" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Destination URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Mark hub permanently offline" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:40 -msgid "Empty queue for this hub" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:41 -msgid "Last known contact" -msgstr "" - #: ../../Zotlabs/Module/Admin/Plugins.php:259 -#: ../../Zotlabs/Module/Admin/Themes.php:72 -#: ../../Zotlabs/Module/Filestorage.php:32 ../../Zotlabs/Module/Display.php:35 -#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Admin.php:60 -#: ../../Zotlabs/Module/Thing.php:89 ../../include/items.php:3361 +#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:35 +#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 +#: ../../include/items.php:3361 msgid "Item not found." msgstr "" @@ -2537,9 +2195,21 @@ msgstr "" msgid "Enable" msgstr "" +#: ../../Zotlabs/Module/Admin/Plugins.php:341 +#: ../../Zotlabs/Module/Admin/Plugins.php:436 +#: ../../Zotlabs/Module/Admin/Accounts.php:164 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Admin/Site.php:269 +#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Administration" +msgstr "" + #: ../../Zotlabs/Module/Admin/Plugins.php:342 -#: ../../Zotlabs/Module/Admin/Plugins.php:437 -#: ../../Zotlabs/Widget/Admin.php:27 +#: ../../Zotlabs/Module/Admin/Plugins.php:437 ../../Zotlabs/Widget/Admin.php:27 msgid "Plugins" msgstr "" @@ -2549,8 +2219,8 @@ msgid "Toggle" msgstr "" #: ../../Zotlabs/Module/Admin/Plugins.php:344 -#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:224 -#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:204 +#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:236 +#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:201 msgid "Settings" msgstr "" @@ -2613,7 +2283,7 @@ msgstr "" msgid "Install new repo" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:359 +#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:384 msgid "Install" msgstr "" @@ -2634,11 +2304,245 @@ msgid "Switch branch" msgstr "" #: ../../Zotlabs/Module/Admin/Plugins.php:455 -#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Photos.php:960 -#: ../../extend/addon/addon/superblock/superblock.php:116 +#: ../../Zotlabs/Module/Photos.php:962 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../addon/superblock/superblock.php:116 msgid "Remove" msgstr "" +#: ../../Zotlabs/Module/Admin/Accounts.php:36 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:43 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:79 +msgid "Account not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:90 +#, php-format +msgid "Account '%s' deleted" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:98 +#, php-format +msgid "Account '%s' blocked" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:106 +#, php-format +msgid "Account '%s' unblocked" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:165 +#: ../../Zotlabs/Module/Admin/Accounts.php:178 +#: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 +msgid "Accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +msgid "Registrations waiting for confirm" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +msgid "Request date" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "No registrations." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +#: ../../Zotlabs/Module/Connections.php:282 ../../include/conversation.php:685 +msgid "Approve" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +msgid "Deny" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Connedit.php:618 +msgid "Block" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Connedit.php:618 +msgid "Unblock" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:180 +msgid "ID" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/group.php:288 +msgid "All Channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:183 +msgid "Register date" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "Last login" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Expires" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Service Class" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:188 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " +"on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:189 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 +#: ../../Zotlabs/Widget/Admin.php:58 +msgid "Logs" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:31 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:40 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:46 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:65 +msgid "Channel not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:75 +#, php-format +msgid "Channel '%s' deleted" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' censored" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:146 +#: ../../Zotlabs/Module/Admin.php:110 ../../Zotlabs/Widget/Admin.php:24 +msgid "Channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:150 +msgid "Censor" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:151 +msgid "Uncensor" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "Allow Code" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:153 +msgid "Disallow Code" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:154 +#: ../../include/conversation.php:1757 ../../include/nav.php:355 +msgid "Channel" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:158 +msgid "UID" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:163 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + #: ../../Zotlabs/Module/Admin/Themes.php:26 msgid "Theme settings updated." msgstr "" @@ -2668,8 +2572,8 @@ msgstr "" msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:168 ../../include/text.php:2928 -#: ../../view/theme/redbasic/php/config.php:15 +#: ../../Zotlabs/Module/Admin/Site.php:168 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:2928 msgid "Default" msgstr "" @@ -2740,6 +2644,11 @@ msgstr "" msgid "Site" msgstr "" +#: ../../Zotlabs/Module/Admin/Site.php:272 +#: ../../Zotlabs/Module/Register.php:251 +msgid "Registration" +msgstr "" + #: ../../Zotlabs/Module/Admin/Site.php:273 msgid "File upload" msgstr "" @@ -2748,13 +2657,12 @@ msgstr "" msgid "Policies" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:275 -#: ../../include/contact_widgets.php:16 +#: ../../Zotlabs/Module/Admin/Site.php:275 ../../include/contact_widgets.php:16 msgid "Advanced" msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:279 -#: ../../extend/addon/addon/statusnet/statusnet.php:890 +#: ../../addon/statusnet/statusnet.php:890 msgid "Site name" msgstr "" @@ -2788,8 +2696,7 @@ msgid "" "BBCode can be used here" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:287 -#: ../../Zotlabs/Module/Siteinfo.php:23 +#: ../../Zotlabs/Module/Admin/Site.php:287 ../../Zotlabs/Module/Siteinfo.php:22 msgid "Site Information" msgstr "" @@ -3037,2050 +2944,235 @@ msgstr "" msgid "0 for no expiration of imported content" msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Enter a folder name" +#: ../../Zotlabs/Module/Admin/Profs.php:69 +msgid "New Profile Field" msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "or select an existing folder (doubleclick)" +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "Field nickname" msgstr "" -#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:137 -msgid "Save to Folder" +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "System name of field" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editpost.php:24 -msgid "Item not found" +#: ../../Zotlabs/Module/Admin/Profs.php:71 +#: ../../Zotlabs/Module/Admin/Profs.php:91 +msgid "Input type" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:137 -msgid "Edit Layout" +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Field Name" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:139 -msgid "Page link" +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Label on profile pages" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 -#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Editblock.php:116 -#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1225 -msgid "Insert web link" +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Help text" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:166 -msgid "Edit Webpage" +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Additional info (optional)" msgstr "" -#: ../../Zotlabs/Module/Chatsvc.php:131 -msgid "Away" +#: ../../Zotlabs/Module/Admin/Profs.php:74 +#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1022 +#: ../../include/text.php:1034 +msgid "Save" msgstr "" -#: ../../Zotlabs/Module/Chatsvc.php:136 -msgid "Online" +#: ../../Zotlabs/Module/Admin/Profs.php:83 +msgid "Field definition not found" msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "Edit Profile Field" msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" +#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../Zotlabs/Widget/Admin.php:30 +msgid "Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" +#: ../../Zotlabs/Module/Admin/Profs.php:148 +msgid "Basic Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "Advanced Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Network.php:141 -msgid "forum" +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "(In addition to basic fields)" msgstr "" -#: ../../Zotlabs/Module/Network.php:153 -msgid "Search Results For:" +#: ../../Zotlabs/Module/Admin/Profs.php:151 +msgid "All available fields" msgstr "" -#: ../../Zotlabs/Module/Network.php:221 -msgid "Privacy group is empty" +#: ../../Zotlabs/Module/Admin/Profs.php:152 +msgid "Custom Fields" msgstr "" -#: ../../Zotlabs/Module/Network.php:230 -msgid "Privacy group: " +#: ../../Zotlabs/Module/Admin/Profs.php:156 +msgid "Create Custom Field" msgstr "" -#: ../../Zotlabs/Module/Network.php:256 -msgid "Invalid connection." -msgstr "" - -#: ../../Zotlabs/Module/Network.php:275 -#: ../../extend/addon/addon/redred/redred.php:65 -msgid "Invalid channel." -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2281 -msgid "Menus" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "" - -#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:108 -msgid "Edit post" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary " -"location." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:119 ../../Zotlabs/Module/Admin.php:109 -msgid "Primary" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 -msgid "Public Hubs" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:27 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 -#: ../../include/conversation.php:1029 -msgid "Ratings" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:48 -msgid "Rate" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:79 -msgid "Could not access contact record." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:109 -msgid "Could not locate selected profile." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:246 -msgid "Connection updated." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:248 -msgid "Failed to update connection record." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:298 -msgid "is now connected to" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:423 -msgid "Could not access address book record." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:471 -msgid "Refresh failed - channel is currently unavailable." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:486 ../../Zotlabs/Module/Connedit.php:495 -#: ../../Zotlabs/Module/Connedit.php:504 ../../Zotlabs/Module/Connedit.php:513 -#: ../../Zotlabs/Module/Connedit.php:526 -msgid "Unable to set address book parameters." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:550 -msgid "Connection has been removed." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:590 ../../Zotlabs/Lib/Apps.php:229 -#: ../../extend/addon/addon/openclipatar/openclipatar.php:57 -#: ../../include/nav.php:104 ../../include/conversation.php:979 -msgid "View Profile" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:593 +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 #, php-format -msgid "View %s's profile" +msgid "Password changed for account %d." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:597 -msgid "Refresh Permissions" +#: ../../Zotlabs/Module/Admin/Account_edit.php:46 +msgid "Account settings updated." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:600 -msgid "Fetch updated permissions" +#: ../../Zotlabs/Module/Admin/Account_edit.php:61 +msgid "Account not found." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:604 -msgid "Refresh Photo" +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "Account Edit" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:607 -msgid "Fetch updated photo" +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "New Password" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:611 -msgid "Recent Activity" +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "New Password again" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:614 -msgid "View recent posts and comments" +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +msgid "Technical skill level" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:621 -msgid "Block (or Unblock) all communications with this connection" +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Account language (for emails)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "This connection is blocked!" +#: ../../Zotlabs/Module/Admin/Account_edit.php:73 +msgid "Service class" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:626 -msgid "Unignore" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:629 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:630 -msgid "This connection is ignored!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:634 -msgid "Unarchive" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:634 -msgid "Archive" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:637 +#: ../../Zotlabs/Module/Admin/Security.php:77 msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:638 -msgid "This connection is archived!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:642 -msgid "Unhide" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:642 -msgid "Hide" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:645 -msgid "Hide or Unhide this connection from your other connections" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:646 -msgid "This connection is hidden!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:653 -msgid "Delete this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:661 -msgid "Fetch Vcard" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:664 -msgid "Fetch electronic calling card for this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:672 -#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Thing.php:313 -#: ../../Zotlabs/Module/Thing.php:363 ../../Zotlabs/Module/Photos.php:647 -#: ../../Zotlabs/Module/Photos.php:1011 ../../Zotlabs/Module/Chat.php:233 -#: ../../include/acl_selectors.php:218 -msgid "Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:675 -msgid "Open Individual Permissions section by default" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:698 -msgid "Affinity" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:701 -msgid "Open Set Affinity section by default" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:705 ../../Zotlabs/Widget/Affinity.php:26 -msgid "Me" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:706 ../../Zotlabs/Widget/Affinity.php:27 -msgid "Family" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:707 -#: ../../Zotlabs/Module/Settings/Channel.php:62 -#: ../../Zotlabs/Module/Settings/Channel.php:66 -#: ../../Zotlabs/Module/Settings/Channel.php:67 -#: ../../Zotlabs/Module/Settings/Channel.php:70 -#: ../../Zotlabs/Module/Settings/Channel.php:81 -#: ../../Zotlabs/Widget/Affinity.php:28 ../../include/selectors.php:123 -#: ../../include/channel.php:408 ../../include/channel.php:409 -#: ../../include/channel.php:416 -msgid "Friends" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:708 ../../Zotlabs/Widget/Affinity.php:29 -msgid "Acquaintances" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:735 -msgid "Filter" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:738 -msgid "Open Custom Filter section by default" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:775 -msgid "Approve this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:775 -msgid "Accept connection to allow communication" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:780 -msgid "Set Affinity" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:783 -msgid "Set Profile" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:786 -msgid "Set Affinity & Profile" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:844 -msgid "none" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:851 -msgid "This connection is unreachable from this location." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:852 -msgid "This connection may be unreachable from other channel locations." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:854 -msgid "Location independence is not supported by their network." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:860 +#: ../../Zotlabs/Module/Admin/Security.php:80 msgid "" -"This connection is unreachable from this location. Location independence is " -"not supported by their network." +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:863 -#: ../../Zotlabs/Widget/Settings_menu.php:109 -msgid "Connection Default Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:863 ../../include/items.php:3925 -#, php-format -msgid "Connection: %s" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:864 -msgid "Apply these permissions automatically" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:864 -msgid "Connection requests will be approved without your interaction" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:865 -msgid "Permission role" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:866 -msgid "Add permission role" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:872 -msgid "This connection's primary address is" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:873 -msgid "Available locations:" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:878 +#: ../../Zotlabs/Module/Admin/Security.php:81 msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" +"
https://vimeo.com/
https://soundcloud.com/
" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:879 -msgid "Connection Tools" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:881 -msgid "Slide to adjust your degree of friendship" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:882 ../../Zotlabs/Module/Rate.php:155 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:883 -msgid "Slide to adjust your rating" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:884 ../../Zotlabs/Module/Connedit.php:889 -msgid "Optionally explain your rating" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:886 -msgid "Custom Filter" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:887 -msgid "Only import posts with this text" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:887 ../../Zotlabs/Module/Connedit.php:888 +#: ../../Zotlabs/Module/Admin/Security.php:82 msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:888 -msgid "Do not import posts with this text" +#: ../../Zotlabs/Module/Admin/Security.php:87 ../../Zotlabs/Widget/Admin.php:25 +msgid "Security" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:890 -msgid "This information is public!" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:895 -msgid "Connection Pending Approval" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:898 -#: ../../Zotlabs/Module/Settings/Tokens.php:163 -#: ../../Zotlabs/Module/Settings/Permcats.php:105 -msgid "inherited" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:900 -#, php-format +#: ../../Zotlabs/Module/Admin/Security.php:89 msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:902 -#: ../../Zotlabs/Module/Settings/Tokens.php:160 -msgid "Their Settings" +#: ../../Zotlabs/Module/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:903 -#: ../../Zotlabs/Module/Settings/Tokens.php:161 -#: ../../Zotlabs/Module/Settings/Permcats.php:103 -msgid "My Settings" +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:905 -#: ../../Zotlabs/Module/Settings/Tokens.php:166 -#: ../../Zotlabs/Module/Settings/Permcats.php:108 -msgid "Individual Permissions" +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "Allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:906 -#: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Module/Settings/Permcats.php:109 +#: ../../Zotlabs/Module/Admin/Security.php:92 msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can not change those settings here." +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:907 +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "Not allowed email domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:93 msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " -"individual settings. You can change those settings here but they wont have " -"any impact unless the inherited setting changes." +"Comma separated list of domains which are not allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:908 -msgid "Last update:" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "Allow communications only from these sites" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:917 -msgid "Details" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:920 ../../Zotlabs/Module/Cdav.php:1110 -msgid "Organisation" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Cdav.php:1111 -msgid "Title" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:938 ../../Zotlabs/Module/Cdav.php:1128 -msgid "P.O. Box" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:939 ../../Zotlabs/Module/Cdav.php:1129 -msgid "Additional" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:940 ../../Zotlabs/Module/Cdav.php:1130 -msgid "Street" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:941 ../../Zotlabs/Module/Cdav.php:1131 -msgid "Locality" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:942 ../../Zotlabs/Module/Cdav.php:1132 -msgid "Region" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:943 ../../Zotlabs/Module/Cdav.php:1133 -msgid "ZIP Code" -msgstr "" - -#: ../../Zotlabs/Module/Apps.php:45 ../../Zotlabs/Lib/Apps.php:212 -msgid "Apps" -msgstr "" - -#: ../../Zotlabs/Module/Apps.php:48 -msgid "Manage apps" -msgstr "" - -#: ../../Zotlabs/Module/Apps.php:49 -msgid "Create new app" -msgstr "" - -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../extend/addon/addon/opensearch/opensearch.php:42 -msgid "$Projectname" -msgstr "" - -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Set/edit permissions" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Include all files and sub folders" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Return to file list" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Copy/paste this code to attach file to a post" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Copy/paste this URL to link file from a web page" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:166 -msgid "Share this file" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:167 -msgid "Show URL to this file" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:168 -msgid "Notify your contacts about this file" -msgstr "" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:230 -#: ../../include/nav.php:382 ../../include/conversation.php:1780 -msgid "Photos" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:170 -msgid "$Projectname Server - Setup" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:174 -msgid "Could not connect to database." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:178 +#: ../../Zotlabs/Module/Admin/Security.php:94 msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." +"One site per line. Leave empty to allow communication from anywhere by " +"default" msgstr "" -#: ../../Zotlabs/Module/Setup.php:185 -msgid "Could not create table." +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block communications from these sites" msgstr "" -#: ../../Zotlabs/Module/Setup.php:190 -msgid "Your site database has been installed." +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" msgstr "" -#: ../../Zotlabs/Module/Setup.php:194 +#: ../../Zotlabs/Module/Admin/Security.php:96 msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." +"One channel (hash) per line. Leave empty to allow from any channel by default" msgstr "" -#: ../../Zotlabs/Module/Setup.php:195 ../../Zotlabs/Module/Setup.php:257 -#: ../../Zotlabs/Module/Setup.php:740 -msgid "Please see the file \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Block communications from these channels" msgstr "" -#: ../../Zotlabs/Module/Setup.php:254 -msgid "System check" +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Only allow embeds from secure (SSL) websites and links." msgstr "" -#: ../../Zotlabs/Module/Setup.php:258 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Cal.php:345 ../../Zotlabs/Module/Events.php:690 -#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Photos.php:920 -#: ../../Zotlabs/Module/Cdav.php:820 -msgid "Next" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "" -#: ../../Zotlabs/Module/Setup.php:259 -msgid "Check again" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "One site per line. By default embedded content is filtered." msgstr "" -#: ../../Zotlabs/Module/Setup.php:281 -msgid "Database connection" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:282 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:283 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:284 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:288 -msgid "Database Server Name" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:288 -msgid "Default is 127.0.0.1" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:289 -msgid "Database Port" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:289 -msgid "Communication port number - use 0 for default" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database Login Name" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:291 -msgid "Database Login Password" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:292 -msgid "Database Name" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "Database Type" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:295 ../../Zotlabs/Module/Setup.php:336 -msgid "Site administrator email address" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:295 ../../Zotlabs/Module/Setup.php:336 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:296 ../../Zotlabs/Module/Setup.php:338 -msgid "Website URL" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:296 ../../Zotlabs/Module/Setup.php:338 -msgid "Please use SSL (https) URL if available." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:297 ../../Zotlabs/Module/Setup.php:340 -msgid "Please select a default timezone for your website" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:325 -msgid "Site settings" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:379 -msgid "PHP version 5.5 or greater is required." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:380 -msgid "PHP version" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:396 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:397 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:401 -msgid "PHP executable path" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:401 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:406 -msgid "Command line PHP" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:416 -msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is " -"required." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:419 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:420 -msgid "This is required for message delivery to work." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:423 -msgid "PHP register_argc_argv" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:441 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:446 -msgid "You can adjust these settings in the server php.ini file." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:448 -msgid "PHP upload limits" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:471 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:472 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:475 -msgid "Generate encryption keys" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:492 -msgid "libCurl PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:493 -msgid "GD graphics PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:494 -msgid "OpenSSL PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:495 -msgid "PDO database PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:496 -msgid "mb_string PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:497 -msgid "xml PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:498 -msgid "zip PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:502 ../../Zotlabs/Module/Setup.php:504 -msgid "Apache mod_rewrite module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:502 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:508 ../../Zotlabs/Module/Setup.php:511 -msgid "exec" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:508 -msgid "" -"Error: exec is required but is either not installed or has been disabled in " -"php.ini" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:514 ../../Zotlabs/Module/Setup.php:517 -msgid "shell_exec" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:514 -msgid "" -"Error: shell_exec is required but is either not installed or has been " -"disabled in php.ini" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:522 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:526 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:530 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: PDO database PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:538 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:542 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:546 -msgid "Error: zip PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:564 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:565 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:566 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:567 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:570 -msgid ".htconfig.php is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:584 -msgid "" -"This software uses the Smarty3 template engine to render its web views. " -"Smarty3 compiles templates to PHP to speed up rendering." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:585 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:587 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:590 -#, php-format -msgid "%s is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:606 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the top level " -"web folder" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:610 -msgid "store is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:642 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:643 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:644 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:645 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:646 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"Providers are available that issue free certificates which are browser-valid." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:649 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:651 -msgid "SSL certificate validation" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:657 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:660 -msgid "Url rewrite is working" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:674 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:698 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:401 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:738 -msgid "

What next

" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:739 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" - -#: ../../Zotlabs/Module/Acl.php:117 ../../Zotlabs/Module/Lockview.php:117 -#: ../../Zotlabs/Module/Lockview.php:153 ../../include/acl_selectors.php:183 -msgctxt "acl" -msgid "Profile" -msgstr "" - -#: ../../Zotlabs/Module/Acl.php:344 -msgid "network" -msgstr "" - -#: ../../Zotlabs/Module/Acl.php:354 -msgid "RSS" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "" - -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "" - -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3892 -msgid "Privacy group not found." -msgstr "" - -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "" - -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "" - -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "" - -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "" - -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "" - -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:197 ../../Zotlabs/Module/Help.php:81 -msgid "Members" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "" - -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:45 -msgid "Invalid message" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "no results" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:93 -msgid "channel sync processed" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "queued" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:101 -msgid "posted" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:105 -msgid "accepted for delivery" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:109 -msgid "updated" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:112 -msgid "update ignored" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:115 -msgid "permission denied" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:119 -msgid "recipient not found" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:122 -msgid "mail recalled" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:125 -msgid "duplicate mail received" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:128 -msgid "mail delivered" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:148 -#, php-format -msgid "Delivery report for %1$s" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:151 -msgid "Options" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:152 -msgid "Redeliver" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:263 -msgid "webpage" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:269 -msgid "block" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:266 -msgid "layout" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:272 -msgid "menu" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:181 -#, php-format -msgid "%s element installed" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:184 -#, php-format -msgid "%s element installation failed" -msgstr "" - -#: ../../Zotlabs/Module/Hcard.php:37 ../../Zotlabs/Module/Profile.php:43 -#: ../../Zotlabs/Module/Channel.php:47 -msgid "Posts and comments" -msgstr "" - -#: ../../Zotlabs/Module/Hcard.php:44 ../../Zotlabs/Module/Profile.php:50 -#: ../../Zotlabs/Module/Channel.php:54 -msgid "Only posts" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:64 -msgid "Nothing to import." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:79 -#: ../../Zotlabs/Module/Import.php:95 -msgid "Unable to download data from old server" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:77 -#: ../../Zotlabs/Module/Import.php:102 -msgid "Imported file is empty." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:93 -#: ../../Zotlabs/Module/Import.php:121 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:108 -msgid "Import completed" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:125 -msgid "Import Items" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:126 -msgid "Use this form to import existing posts and content from an export file." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:127 -#: ../../Zotlabs/Module/Import.php:505 -msgid "File to Upload" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:73 -msgid "Unable to lookup recipient." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:80 -msgid "Unable to communicate with requested channel." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:87 -msgid "Cannot verify requested channel." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:105 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:160 -msgid "Messages" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:173 -msgid "message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:214 -msgid "Message recalled." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:227 -msgid "Conversation removed." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Mail.php:362 -#: ../../Zotlabs/Module/Chat.php:203 ../../include/conversation.php:1260 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:270 -msgid "Requested channel is not in this network" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:278 -msgid "Send Private Message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 -msgid "To:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 -msgid "Subject:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:285 ../../Zotlabs/Module/Invite.php:138 -msgid "Your message:" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 -#: ../../include/conversation.php:1320 -msgid "Attach file" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:289 -msgid "Send" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 -#: ../../include/conversation.php:1365 -msgid "Set expiration date" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:294 ../../Zotlabs/Module/Mail.php:436 -#: ../../Zotlabs/Module/Chat.php:204 ../../Zotlabs/Lib/ThreadItem.php:742 -#: ../../include/conversation.php:1370 -msgid "Encrypt text" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:393 -msgid "Delete message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:394 -msgid "Delivery report" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:395 -msgid "Recall message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:397 -msgid "Message has been recalled." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:414 -msgid "Delete Conversation" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:416 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:420 -msgid "Send Reply" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:425 -#, php-format -msgid "Your message for %s (%s):" -msgstr "" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "" - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "" - -#: ../../Zotlabs/Module/Editblock.php:113 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" -msgstr "" - -#: ../../Zotlabs/Module/Editblock.php:129 ../../include/conversation.php:1336 -msgid "Title (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Editblock.php:138 -msgid "Edit Block" -msgstr "" - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 -#: ../../Zotlabs/Module/Settings/Channel.php:509 -msgid "(click to open/close)" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Higher numbers will sink to bottom of listing" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "" - -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "" - -#: ../../Zotlabs/Module/Moderate.php:37 -msgid "Comment approved" -msgstr "" - -#: ../../Zotlabs/Module/Moderate.php:41 -msgid "Comment deleted" -msgstr "" - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:38 -msgid "No more system notifications." -msgstr "" - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:42 -msgid "System Notifications" -msgstr "" - -#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 -msgid "Item is not editable" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:72 ../../Zotlabs/Module/Api.php:93 -msgid "Authorize application connection" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:73 -msgid "Return to your app and insert this Security Code:" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:83 -msgid "Please login to continue." -msgstr "" - -#: ../../Zotlabs/Module/Api.php:95 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" -msgstr "" - -#: ../../Zotlabs/Module/Page.php:165 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " -"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:20 -msgid "About this site" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:21 -msgid "Site Name" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:25 -msgid "Administrator" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:28 -msgid "Software and Project information" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:29 -msgid "This site is powered by $Projectname" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:30 -msgid "" -"Federated and decentralised networking and identity services provided by Zot" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:32 -#, php-format -msgid "Version %s" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:33 -msgid "Project homepage" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Developer homepage" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:121 -#: ../../Zotlabs/Module/Manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:140 -msgid "Create Channel" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:141 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:142 -msgid "" -"or import an existing channel from another location." -msgstr "" - -#: ../../Zotlabs/Module/Profile.php:91 -msgid "vcard" -msgstr "" - -#: ../../Zotlabs/Module/Notifications.php:43 -#: ../../Zotlabs/Lib/ThreadItem.php:392 -msgid "Mark all seen" -msgstr "" - -#: ../../Zotlabs/Module/Search.php:224 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: ../../Zotlabs/Module/Search.php:226 -#, php-format -msgid "Search results for: %s" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:52 -msgid "Import Webpage Elements" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:53 -msgid "Import selected" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:76 -msgid "Export Webpage Elements" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:77 -msgid "Export selected" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:235 ../../Zotlabs/Lib/Apps.php:226 -#: ../../include/nav.php:439 ../../include/conversation.php:1838 -msgid "Webpages" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:245 ../../Zotlabs/Module/Events.php:478 -#: ../../Zotlabs/Module/Photos.php:1063 ../../Zotlabs/Lib/ThreadItem.php:739 -#: ../../include/conversation.php:1277 -msgid "Preview" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:246 -msgid "Actions" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:247 -msgid "Page Link" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:248 -msgid "Page Title" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:278 -msgid "Invalid file type." -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:290 -msgid "Error opening zip file" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:301 -msgid "Invalid folder path." -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:328 -msgid "No webpage elements detected." -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:403 -msgid "Import complete." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:67 -msgid "Please join us on $Projectname" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:77 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:82 -#, php-format -msgid "%s : Message delivery failed." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:86 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Invite.php:105 -msgid "You have no more invitations available" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Send invitations" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:137 -msgid "Enter email addresses, one per line:" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "Please join my community on $Projectname." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "You will need to supply this invitation code:" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:142 -msgid "1. Register at any $Projectname location (they are all inter-connected)" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:145 -msgid "or visit" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:147 -msgid "3. Click [Connect]" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:122 -msgid "channel" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 -#: ../../extend/addon/addon/redphotos/redphotohelper.php:71 -#: ../../extend/addon/addon/diaspora/Receiver.php:1369 -#: ../../include/text.php:1930 ../../include/conversation.php:116 -msgid "photo" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../extend/addon/addon/diaspora/Receiver.php:1369 -#: ../../include/text.php:1936 ../../include/conversation.php:144 -msgid "status" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:260 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1933 -#: ../../include/event.php:1145 ../../include/conversation.php:119 -msgid "event" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:423 -#: ../../extend/addon/addon/diaspora/Receiver.php:1398 -#: ../../include/conversation.php:160 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:425 ../../include/conversation.php:163 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:435 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:437 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:542 -msgid "Action completed." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:543 -msgid "Thank you." +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" msgstr "" #: ../../Zotlabs/Module/Lockview.php:75 @@ -5091,1053 +3183,520 @@ msgstr "" msgid "Visible to:" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "" - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "" - -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please " -"leave this page unless you are comfortable with and knowledgeable about how " -"to correctly use this feature." -msgstr "" - -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:256 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:235 -msgid "Mood" -msgstr "" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2280 -msgid "Blocks" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:264 ../../Zotlabs/Module/Events.php:605 -msgid "l, F j" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:313 ../../Zotlabs/Module/Events.php:660 -#: ../../include/text.php:1752 -msgid "Link to Source" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:336 ../../Zotlabs/Module/Events.php:688 -msgid "Edit Event" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:336 ../../Zotlabs/Module/Events.php:688 -msgid "Create Event" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Cal.php:344 -#: ../../Zotlabs/Module/Events.php:689 ../../Zotlabs/Module/Events.php:698 -#: ../../Zotlabs/Module/Photos.php:911 ../../Zotlabs/Module/Cdav.php:819 -msgid "Previous" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:339 ../../Zotlabs/Module/Events.php:691 -#: ../../include/channel.php:1386 -msgid "Export" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:342 ../../include/text.php:2304 -msgid "Import" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:346 ../../Zotlabs/Module/Events.php:700 -#: ../../Zotlabs/Module/Cdav.php:821 -msgid "Today" -msgstr "" - -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "" - -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" -msgstr "" - -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:226 -#: ../../include/photo/photo_driver.php:658 -msgid "Profile Photos" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:196 -#: ../../extend/addon/addon/openclipatar/openclipatar.php:298 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:422 -msgid "Use Photo for Profile" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:422 -msgid "Upload Profile Photo" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:423 -#: ../../extend/addon/addon/openclipatar/openclipatar.php:182 -#: ../../extend/addon/addon/openclipatar/openclipatar.php:194 -msgid "Use" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:38 ../../Zotlabs/Module/Appman.php:55 -msgid "App installed." -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:48 -msgid "Malformed app." -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:125 -msgid "Embed code" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:131 -msgid "Edit App" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:131 -msgid "Create App" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:136 -msgid "Name of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:137 -msgid "Location (URL) of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:138 ../../Zotlabs/Module/Rbmark.php:101 -#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Cdav.php:811 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:173 -msgid "Description" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:139 -msgid "Photo icon URL" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:139 -msgid "80 x 80 pixels - optional" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:140 -msgid "Categories (optional, comma separated list)" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:141 -msgid "Version ID" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:142 -msgid "Price of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:143 -msgid "Location (URL) to purchase app" -msgstr "" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "" - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "" - -#: ../../Zotlabs/Module/Help.php:23 -msgid "Documentation Search" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:80 ../../include/nav.php:372 -#: ../../include/conversation.php:1770 -msgid "About" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:82 -msgid "Administrators" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:83 -msgid "Developers" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:84 -msgid "Tutorials" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:93 -msgid "$Projectname Documentation" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:94 -msgid "Contents" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Channel" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export Content" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:61 -msgid "" -"Export your channel information and recent content to a JSON backup that can " -"be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for " -"this download to begin." -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:63 -msgid "Export your posts from a given year." -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:65 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:66 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:67 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:68 -#, php-format -msgid "" -"These content files may be imported or restored by visiting " -"%2$s on any site containing your channel. For best results please import " -"or restore these in date order (oldest first)." -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:168 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:202 -msgid "Channel Manager" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Current Channel" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:171 -msgid "Switch to one of your channels by selecting it." -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:172 -msgid "Default Channel" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:173 -msgid "Make Default" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:176 -#, php-format -msgid "%d new messages" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:177 -#, php-format -msgid "%d new introductions" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:179 -msgid "Delegated Channel" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 -#, php-format -msgid "Site Member (%s)" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:68 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1599 -msgid "Password Reset" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your password has been reset as requested." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Your new password is" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "Save or copy your new password - and then" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "click here to login" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:96 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:117 -#, php-format -msgid "Your password has changed at %s" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Forgot your Password?" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:131 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:132 -msgid "Email Address" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:133 -msgid "Reset" -msgstr "" - -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "" - -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "" - -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "" - -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "" - -#: ../../Zotlabs/Module/Follow.php:31 -msgid "Channel added." -msgstr "" - -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings/Account.php:120 -msgid "Remove Account" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:217 -msgid "Feature disabled." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 -msgid "Edit System Page Description" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:64 -msgid "Layout not found." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:70 -msgid "Module Name:" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:71 -msgid "Layout Help" -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:111 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1383 +#: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 +#: ../../Zotlabs/Module/Acl.php:117 ../../include/acl_selectors.php:183 +msgctxt "acl" msgid "Profile" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Click on a contact to add or remove." +#: ../../Zotlabs/Module/Moderate.php:37 +msgid "Comment approved" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:124 -msgid "Visible To" +#: ../../Zotlabs/Module/Moderate.php:41 +msgid "Comment deleted" msgstr "" -#: ../../Zotlabs/Module/Import.php:143 +#: ../../Zotlabs/Module/Settings/Permcats.php:37 +msgid "Permission category saved." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:61 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:94 +msgid "Permission Categories" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:102 +msgid "Permission Name" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:103 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +#: ../../Zotlabs/Module/Connedit.php:904 +msgid "My Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:105 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +#: ../../Zotlabs/Module/Connedit.php:899 +msgid "inherited" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:108 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 +#: ../../Zotlabs/Module/Connedit.php:906 +msgid "Individual Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:109 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Module/Connedit.php:907 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can not change those settings here." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:62 +#: ../../Zotlabs/Module/Settings/Channel.php:66 +#: ../../Zotlabs/Module/Settings/Channel.php:67 +#: ../../Zotlabs/Module/Settings/Channel.php:70 +#: ../../Zotlabs/Module/Settings/Channel.php:81 +#: ../../Zotlabs/Module/Connedit.php:707 ../../Zotlabs/Widget/Affinity.php:28 +#: ../../include/selectors.php:123 ../../include/channel.php:408 +#: ../../include/channel.php:409 ../../include/channel.php:416 +msgid "Friends" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:255 +#: ../../addon/rendezvous/rendezvous.php:82 +#: ../../addon/openstreetmap/openstreetmap.php:184 +#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 +#: ../../addon/twitter/twitter.php:766 ../../addon/piwik/piwik.php:116 +#: ../../addon/xmpp/xmpp.php:102 +msgid "Settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:316 +msgid "Nobody except yourself" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:317 +msgid "Only those you specifically allow" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:318 +msgid "Approved connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:319 +msgid "Any connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:320 +msgid "Anybody on this website" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:321 +msgid "Anybody in this network" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:322 +msgid "Anybody authenticated" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:323 +msgid "Anybody on the internet" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:399 +msgid "Publish your default profile in the network directory" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:404 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:408 +#: ../../Zotlabs/Module/Profile_photo.php:429 +#: ../../Zotlabs/Module/Cover_photo.php:365 +msgid "or" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:413 +msgid "Your channel address is" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:416 +msgid "Your files/photos are accessible via WebDAV at" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:478 +msgid "Channel Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:485 +msgid "Basic Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:486 ../../include/channel.php:1373 +msgid "Full Name:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:487 +#: ../../Zotlabs/Module/Settings/Account.php:119 +msgid "Email Address:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:488 +msgid "Your Timezone:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:489 +msgid "Default Post Location:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:489 +msgid "Geographical location to display on your posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:490 +msgid "Use Browser Location:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:492 +msgid "Adult Content" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:492 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:494 +msgid "Security and Privacy Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:496 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:498 +msgid "Hide my online presence" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:498 +msgid "Prevents displaying in your profile that you are online" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Simple Privacy Settings:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:501 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:502 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Private - default private, never open or public" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "Blocked - default blocked to/from everybody" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:506 +msgid "Allow others to tag your posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:506 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:508 +msgid "Channel Permission Limits" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:510 +msgid "Expire other channel content after this many days" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:510 +msgid "0 or blank to use the website limit." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:510 #, php-format -msgid "Your service plan only allows %d channels." +msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Module/Import.php:157 -msgid "No channel. Import failed." +#: ../../Zotlabs/Module/Settings/Channel.php:510 +msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Module/Import.php:470 -#: ../../extend/addon/addon/diaspora/import_diaspora.php:142 -msgid "Import completed." +#: ../../Zotlabs/Module/Settings/Channel.php:510 +msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Module/Import.php:498 -msgid "You must be logged in to use this feature." +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../Zotlabs/Module/Import.php:503 -msgid "Import Channel" +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "May reduce spam activity" msgstr "" -#: ../../Zotlabs/Module/Import.php:504 +#: ../../Zotlabs/Module/Settings/Channel.php:512 +msgid "Default Access Control List (ACL)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:514 +msgid "Use my default audience setting for the type of object published" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Channel permissions category:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:522 +msgid "Default Permissions Group" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "Useful to reduce spamming" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:531 +msgid "Notification Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:532 +msgid "By default post a status message when:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:533 +msgid "accepting a friend request" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "joining a forum/community" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:535 +msgid "making an interesting profile change" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "Send a notification email when:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:537 +msgid "You receive a connection request" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:538 +msgid "Your connections are confirmed" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:539 +msgid "Someone writes on your profile wall" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "Someone writes a followup comment" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "You receive a private message" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:542 +msgid "You receive a friend suggestion" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:543 +msgid "You are tagged in a post" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:544 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Someone likes your post/comment" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:549 +msgid "Show visual notifications including:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:551 +msgid "Unseen grid activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:552 +msgid "Unseen channel activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:553 +msgid "Unseen private messages" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:553 +#: ../../Zotlabs/Module/Settings/Channel.php:558 +#: ../../Zotlabs/Module/Settings/Channel.php:559 +#: ../../Zotlabs/Module/Settings/Channel.php:560 +#: ../../addon/jappixmini/jappixmini.php:343 +msgid "Recommended" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:554 +msgid "Upcoming events" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:555 +msgid "Events today" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:556 +msgid "Upcoming birthdays" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:556 +msgid "Not available in all themes" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:557 +msgid "System (personal) notifications" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:558 +msgid "System info messages" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:559 +msgid "System critical alerts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:560 +msgid "New connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:561 +msgid "System Registrations" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:562 +msgid "Unseen shared files" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:563 +msgid "Unseen public activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:564 msgid "" -"Use this form to import an existing channel from a different server/hub. You " -"may retrieve the channel identity from the old server/hub via the network or " -"provide an export file." +"Also show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../Zotlabs/Module/Import.php:506 -msgid "Or provide the old server/hub details" +#: ../../Zotlabs/Module/Settings/Channel.php:566 +msgid "Notify me of events this many days in advance" msgstr "" -#: ../../Zotlabs/Module/Import.php:507 -msgid "Your old identity address (xyz@example.com)" +#: ../../Zotlabs/Module/Settings/Channel.php:566 +msgid "Must be greater than 0" msgstr "" -#: ../../Zotlabs/Module/Import.php:508 -msgid "Your old login email address" +#: ../../Zotlabs/Module/Settings/Channel.php:572 +msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../Zotlabs/Module/Import.php:509 -msgid "Your old login password" +#: ../../Zotlabs/Module/Settings/Channel.php:573 +msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../Zotlabs/Module/Import.php:510 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be " -"able to post from either location, but only one can be marked as the primary " -"location for files, photos, and media." +#: ../../Zotlabs/Module/Settings/Channel.php:575 +msgid "Miscellaneous Settings" msgstr "" -#: ../../Zotlabs/Module/Import.php:511 -msgid "Make this hub my primary location" +#: ../../Zotlabs/Module/Settings/Channel.php:576 +msgid "Default photo upload folder" msgstr "" -#: ../../Zotlabs/Module/Import.php:512 -msgid "Move this channel (disable all previous locations)" +#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:577 +msgid "%Y - current year, %m - current month" msgstr "" -#: ../../Zotlabs/Module/Import.php:513 -msgid "Import a few months of posts if possible (limited by available memory" +#: ../../Zotlabs/Module/Settings/Channel.php:577 +msgid "Default file upload folder" msgstr "" -#: ../../Zotlabs/Module/Import.php:514 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." +#: ../../Zotlabs/Module/Settings/Channel.php:579 +msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." +#: ../../Zotlabs/Module/Settings/Channel.php:581 +msgid "Remove this channel." msgstr "" -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." +#: ../../Zotlabs/Module/Settings/Channel.php:582 +msgid "Firefox Share $Projectname provider" msgstr "" -#: ../../Zotlabs/Module/Events.php:110 -msgid "Event can not end before it has started." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 -#: ../../Zotlabs/Module/Events.php:143 -msgid "Unable to generate preview." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:119 -msgid "Event title and start time are required." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 -msgid "Event not found." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:460 -msgid "Edit event title" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Cdav.php:808 -msgid "Event title" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Categories (comma-separated list)" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Category" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Category" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:466 -msgid "Edit start date and time" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Cdav.php:809 -msgid "Start date and time" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 -msgid "Finish date and time are not known or not relevant" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:469 -msgid "Edit finish date and time" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:469 -msgid "Finish date and time" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 -msgid "Adjust for viewer timezone" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:471 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:473 -msgid "Edit Description" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Edit Location" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1340 -msgid "Permission settings" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:489 -msgid "Timezone:" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:494 -msgid "Advanced Options" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:633 -msgid "Edit event" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:635 -msgid "Delete event" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:669 -msgid "calendar" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:695 ../../Zotlabs/Module/Cdav.php:822 -msgid "Month" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:696 ../../Zotlabs/Module/Cdav.php:823 -msgid "Week" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:697 ../../Zotlabs/Module/Cdav.php:824 -msgid "Day" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:731 -msgid "Event removed" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:734 -msgid "Failed to remove event" -msgstr "" - -#: ../../Zotlabs/Module/Viewsrc.php:43 -msgid "item" -msgstr "" - -#: ../../Zotlabs/Module/Viewsrc.php:55 -msgid "Source of Item" -msgstr "" - -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "" - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "" - -#: ../../Zotlabs/Module/Bookmarks.php:76 -msgid "My Bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Bookmarks.php:87 -msgid "My Connections Bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:574 -msgid "Remove Channel" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:95 -msgid "Blocked accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:96 -msgid "Expired accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:97 -msgid "Expiring accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:110 -msgid "Clones" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:116 -msgid "Message queues" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:130 -msgid "Your software should be updated" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:135 -msgid "Summary" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:138 -msgid "Registered accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:139 -msgid "Pending registrations" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:140 -msgid "Registered channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:141 -msgid "Active plugins" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:142 -msgid "Version" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:143 -msgid "Repository version (master)" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:144 -msgid "Repository version (dev)" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:99 -msgid "Files: shared with me" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:101 -msgid "NEW" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove all files" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:105 -msgid "Remove this file" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:96 -#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:209 -msgid "Channel Sources" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -msgid "Optional" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:180 ../../Zotlabs/Lib/Apps.php:236 -#: ../../include/conversation.php:1039 -msgid "Poke" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Poke somebody" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:184 -msgid "Poke/Prod" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:185 -msgid "Poke, prod or do other things to somebody" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:192 -msgid "Recipient" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:193 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:196 ../../Zotlabs/Module/Poke.php:197 -msgid "Make this post private" -msgstr "" - -#: ../../Zotlabs/Module/Suggest.php:37 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: ../../Zotlabs/Module/Suggest.php:56 ../../Zotlabs/Widget/Suggestions.php:46 -msgid "Ignore/Hide" -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:35 -msgid "Authentication failed." -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:75 ../../include/channel.php:2000 -msgid "Remote Authentication" -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2001 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2002 -msgid "Authenticate" +#: ../../Zotlabs/Module/Settings/Channel.php:583 +msgid "Start calendar week on Monday" msgstr "" #: ../../Zotlabs/Module/Settings/Features.php:45 msgid "Additional Features" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:34 -msgid "Name is required" +#: ../../Zotlabs/Module/Settings/Tokens.php:31 +#, php-format +msgid "This channel is limited to %d tokens" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:38 -msgid "Key and Secret are required" +#: ../../Zotlabs/Module/Settings/Tokens.php:37 +msgid "Name and Password are required." msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:86 -#: ../../Zotlabs/Module/Settings/Oauth.php:112 -#: ../../Zotlabs/Module/Settings/Oauth.php:148 -msgid "Add application" +#: ../../Zotlabs/Module/Settings/Tokens.php:77 +msgid "Token saved." msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:89 -msgid "Name of application" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth.php:116 -#: ../../extend/addon/addon/statusnet/statusnet.php:893 -#: ../../extend/addon/addon/twitter/twitter.php:775 -msgid "Consumer Key" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:117 -#: ../../extend/addon/addon/statusnet/statusnet.php:892 -#: ../../extend/addon/addon/twitter/twitter.php:776 -msgid "Consumer Secret" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -#: ../../Zotlabs/Module/Settings/Oauth.php:118 -msgid "Redirect" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Tokens.php:113 msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -#: ../../Zotlabs/Module/Settings/Oauth.php:119 -msgid "Icon url" +#: ../../Zotlabs/Module/Settings/Tokens.php:115 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:104 -msgid "Application not found." +#: ../../Zotlabs/Module/Settings/Tokens.php:150 +#: ../../Zotlabs/Widget/Settings_menu.php:92 +msgid "Guest Access Tokens" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:147 -msgid "Connected Apps" +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:151 -msgid "Client key starts with" +#: ../../Zotlabs/Module/Settings/Tokens.php:158 +msgid "Login Password" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:152 -msgid "No name" +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Expires (yyyy-mm-dd)" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:153 -msgid "Remove authorization" +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +#: ../../Zotlabs/Module/Connedit.php:903 +msgid "Their Settings" msgstr "" #: ../../Zotlabs/Module/Settings/Account.php:20 @@ -6204,413 +3763,36 @@ msgstr "" msgid "Used to provide a member experience matched to your comfort level" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:119 -#: ../../Zotlabs/Module/Settings/Channel.php:483 -msgid "Email Address:" +#: ../../Zotlabs/Module/Settings/Account.php:120 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" msgstr "" #: ../../Zotlabs/Module/Settings/Account.php:121 msgid "Remove this account including all its channels" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:251 -#: ../../extend/addon/addon/logrot/logrot.php:54 -#: ../../extend/addon/addon/msgfooter/msgfooter.php:54 -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:184 -#: ../../extend/addon/addon/piwik/piwik.php:116 -#: ../../extend/addon/addon/twitter/twitter.php:766 -#: ../../extend/addon/addon/xmpp/xmpp.php:102 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:82 -msgid "Settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:312 -msgid "Nobody except yourself" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:313 -msgid "Only those you specifically allow" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:314 -msgid "Approved connections" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:315 -msgid "Any connections" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:316 -msgid "Anybody on this website" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:317 -msgid "Anybody in this network" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:318 -msgid "Anybody authenticated" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:319 -msgid "Anybody on the internet" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:395 -msgid "Publish your default profile in the network directory" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:400 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:409 -msgid "Your channel address is" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:412 -msgid "Your files/photos are accessible via WebDAV at" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:474 -msgid "Channel Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:481 -msgid "Basic Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:482 -#: ../../include/channel.php:1271 -msgid "Full Name:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:484 -msgid "Your Timezone:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:485 -msgid "Default Post Location:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:485 -msgid "Geographical location to display on your posts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:486 -msgid "Use Browser Location:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:488 -msgid "Adult Content" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:488 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:490 -msgid "Security and Privacy Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:492 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:494 -msgid "Hide my online presence" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:494 -msgid "Prevents displaying in your profile that you are online" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:496 -msgid "Simple Privacy Settings:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:497 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:498 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:499 -msgid "Private - default private, never open or public" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:500 -msgid "Blocked - default blocked to/from everybody" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:502 -msgid "Allow others to tag your posts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:502 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:504 -msgid "Channel Permission Limits" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:506 -msgid "Expire other channel content after this many days" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:506 -msgid "0 or blank to use the website limit." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:506 -#, php-format -msgid "This website expires after %d days." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:506 -msgid "This website does not expire imported content." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:506 -msgid "The website limit takes precedence if lower than your limit." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:507 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:507 -msgid "May reduce spam activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:508 -msgid "Default Access Control List (ACL)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:510 -msgid "Use my default audience setting for the type of object published" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:517 -msgid "Channel permissions category:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:518 -msgid "Default Permissions Group" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:524 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:524 -msgid "Useful to reduce spamming" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:527 -msgid "Notification Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:528 -msgid "By default post a status message when:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:529 -msgid "accepting a friend request" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:530 -msgid "joining a forum/community" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:531 -msgid "making an interesting profile change" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:532 -msgid "Send a notification email when:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:533 -msgid "You receive a connection request" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:534 -msgid "Your connections are confirmed" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:535 -msgid "Someone writes on your profile wall" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:536 -msgid "Someone writes a followup comment" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:537 -msgid "You receive a private message" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:538 -msgid "You receive a friend suggestion" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:539 -msgid "You are tagged in a post" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:540 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:542 -msgid "Someone likes your post/comment" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:545 -msgid "Show visual notifications including:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:547 -msgid "Unseen grid activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:548 -msgid "Unseen channel activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:549 -msgid "Unseen private messages" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:549 -#: ../../Zotlabs/Module/Settings/Channel.php:554 -#: ../../Zotlabs/Module/Settings/Channel.php:555 -#: ../../Zotlabs/Module/Settings/Channel.php:556 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:343 -msgid "Recommended" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:550 -msgid "Upcoming events" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:551 -msgid "Events today" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:552 -msgid "Upcoming birthdays" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:552 -msgid "Not available in all themes" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:553 -msgid "System (personal) notifications" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:554 -msgid "System info messages" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:555 -msgid "System critical alerts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:556 -msgid "New connections" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:557 -msgid "System Registrations" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:558 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:560 -msgid "Notify me of events this many days in advance" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:560 -msgid "Must be greater than 0" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:566 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:567 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:569 -msgid "Miscellaneous Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:570 -msgid "Default photo upload folder" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:570 -#: ../../Zotlabs/Module/Settings/Channel.php:571 -msgid "%Y - current year, %m - current month" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:571 -msgid "Default file upload folder" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:573 -msgid "Personal menu to display in your channel pages" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:575 -msgid "Remove this channel." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:576 -msgid "Firefox Share $Projectname provider" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:577 -msgid "Start calendar week on Monday" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:20 +#: ../../Zotlabs/Module/Settings/Featured.php:21 msgid "Affinity Slider settings updated." msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:34 +#: ../../Zotlabs/Module/Settings/Featured.php:36 msgid "No feature settings configured" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:41 +#: ../../Zotlabs/Module/Settings/Featured.php:43 msgid "Default maximum affinity level" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:46 +#: ../../Zotlabs/Module/Settings/Featured.php:48 msgid "Default minimum affinity level" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:50 +#: ../../Zotlabs/Module/Settings/Featured.php:52 msgid "Affinity Slider Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:60 +#: ../../Zotlabs/Module/Settings/Featured.php:62 msgid "Feature/Addon Settings" msgstr "" @@ -6727,78 +3909,104 @@ msgstr "" msgid "Grid page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:31 -#, php-format -msgid "This channel is limited to %d tokens" +#: ../../Zotlabs/Module/Settings/Oauth.php:34 +msgid "Name is required" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:37 -msgid "Name and Password are required." +#: ../../Zotlabs/Module/Settings/Oauth.php:38 +msgid "Key and Secret are required" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:77 -msgid "Token saved." +#: ../../Zotlabs/Module/Settings/Oauth.php:86 +#: ../../Zotlabs/Module/Settings/Oauth.php:112 +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Add application" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:113 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +msgid "Name of application" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:775 +msgid "Consumer Key" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +#: ../../addon/statusnet/statusnet.php:892 ../../addon/twitter/twitter.php:776 +msgid "Consumer Secret" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +msgid "Redirect" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:92 msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access private content." +"Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:115 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Icon url" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:150 -#: ../../Zotlabs/Widget/Settings_menu.php:92 -msgid "Guest Access Tokens" +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:157 -msgid "Login Name" +#: ../../Zotlabs/Module/Settings/Oauth.php:104 +msgid "Application not found." msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:158 -msgid "Login Password" +#: ../../Zotlabs/Module/Settings/Oauth.php:147 +msgid "Connected Apps" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:159 -msgid "Expires (yyyy-mm-dd)" +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +msgid "Client key starts with" msgstr "" -#: ../../Zotlabs/Module/Settings/Permcats.php:37 -msgid "Permission category saved." +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "No name" msgstr "" -#: ../../Zotlabs/Module/Settings/Permcats.php:61 -msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "Remove authorization" msgstr "" -#: ../../Zotlabs/Module/Settings/Permcats.php:94 -msgid "Permission Categories" +#: ../../Zotlabs/Module/Embedphotos.php:140 ../../Zotlabs/Module/Photos.php:753 +#: ../../Zotlabs/Module/Photos.php:1292 ../../Zotlabs/Widget/Portfolio.php:78 +#: ../../Zotlabs/Widget/Album.php:78 +msgid "View Photo" msgstr "" -#: ../../Zotlabs/Module/Settings/Permcats.php:102 -msgid "Permission Name" +#: ../../Zotlabs/Module/Embedphotos.php:156 ../../Zotlabs/Module/Photos.php:784 +#: ../../Zotlabs/Widget/Portfolio.php:97 ../../Zotlabs/Widget/Album.php:95 +msgid "Edit Album" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" +#: ../../Zotlabs/Module/Embedphotos.php:158 ../../Zotlabs/Module/Photos.php:786 +#: ../../Zotlabs/Module/Photos.php:1323 +#: ../../Zotlabs/Module/Profile_photo.php:423 +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:337 +#: ../../Zotlabs/Widget/Cdav.php:132 ../../Zotlabs/Widget/Cdav.php:168 +#: ../../Zotlabs/Widget/Portfolio.php:99 ../../Zotlabs/Widget/Album.php:97 +msgid "Upload" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "" - -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " +#: ../../Zotlabs/Module/Achievements.php:38 +msgid "Some blurb about what to do when you're new here" msgstr "" #: ../../Zotlabs/Module/Thing.php:114 @@ -6854,16 +4062,1565 @@ msgstr "" msgid "URL for photo of thing (optional)" msgstr "" +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../Zotlabs/Module/Photos.php:649 ../../Zotlabs/Module/Photos.php:1013 +#: ../../Zotlabs/Module/Connedit.php:672 ../../Zotlabs/Module/Chat.php:235 +#: ../../Zotlabs/Module/Filestorage.php:142 ../../include/acl_selectors.php:218 +msgid "Permissions" +msgstr "" + #: ../../Zotlabs/Module/Thing.php:353 msgid "Add Thing to your Profile" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:334 +#: ../../Zotlabs/Module/Notify.php:57 ../../Zotlabs/Module/Notifications.php:38 +msgid "No more system notifications." +msgstr "" + +#: ../../Zotlabs/Module/Notify.php:61 ../../Zotlabs/Module/Notifications.php:42 +msgid "System Notifications" +msgstr "" + +#: ../../Zotlabs/Module/Follow.php:31 +msgid "Channel added." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:143 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:157 +msgid "No channel. Import failed." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:470 +#: ../../addon/diaspora/import_diaspora.php:142 +msgid "Import completed." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:498 +msgid "You must be logged in to use this feature." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:503 +msgid "Import Channel" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:504 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:506 +msgid "Or provide the old server/hub details" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:507 +msgid "Your old identity address (xyz@example.com)" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:508 +msgid "Your old login email address" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:509 +msgid "Your old login password" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:510 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be " +"able to post from either location, but only one can be marked as the primary " +"location for files, photos, and media." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:511 +msgid "Make this hub my primary location" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:512 +msgid "Move this channel (disable all previous locations)" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:513 +msgid "Import a few months of posts if possible (limited by available memory" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:514 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:75 ../../include/channel.php:2102 +msgid "Remote Authentication" +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2103 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2104 +msgid "Authenticate" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Chanview.php:96 +#: ../../Zotlabs/Module/Page.php:75 ../../Zotlabs/Module/Wall_upload.php:31 +#: ../../Zotlabs/Module/Block.php:41 +msgid "Channel not found." +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:342 ../../include/text.php:2304 +msgid "Import" +msgstr "" + +#: ../../Zotlabs/Module/Api.php:72 ../../Zotlabs/Module/Api.php:93 +msgid "Authorize application connection" +msgstr "" + +#: ../../Zotlabs/Module/Api.php:73 +msgid "Return to your app and insert this Security Code:" +msgstr "" + +#: ../../Zotlabs/Module/Api.php:83 +msgid "Please login to continue." +msgstr "" + +#: ../../Zotlabs/Module/Api.php:95 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" +msgstr "" + +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "" + +#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:207 +#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 +#: ../../Zotlabs/Module/Mail.php:430 ../../include/conversation.php:1225 +msgid "Insert web link" +msgstr "" + +#: ../../Zotlabs/Module/Editblock.php:129 ../../include/conversation.php:1336 +msgid "Title (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Editblock.php:138 +msgid "Edit Block" +msgstr "" + +#: ../../Zotlabs/Module/Profile.php:93 +msgid "vcard" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:45 ../../Zotlabs/Lib/Apps.php:224 +msgid "Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:48 +msgid "Manage apps" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:49 +msgid "Create new app" +msgstr "" + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:256 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Mood.php:120 ../../Zotlabs/Module/Mood.php:135 +#: ../../Zotlabs/Lib/Apps.php:247 +msgid "Mood" +msgstr "" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Connections.php:309 ../../Zotlabs/Lib/Apps.php:229 +#: ../../include/text.php:951 ../../include/nav.php:180 +msgid "Connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:54 +#: ../../Zotlabs/Module/Connections.php:156 +#: ../../Zotlabs/Module/Connections.php:245 +msgid "Blocked" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:59 +#: ../../Zotlabs/Module/Connections.php:163 +#: ../../Zotlabs/Module/Connections.php:244 +msgid "Ignored" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:64 +#: ../../Zotlabs/Module/Connections.php:177 +#: ../../Zotlabs/Module/Connections.php:243 +msgid "Hidden" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:69 +#: ../../Zotlabs/Module/Connections.php:170 +msgid "Archived/Unreachable" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:74 +#: ../../Zotlabs/Module/Connections.php:83 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1663 +msgid "New" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:88 +#: ../../Zotlabs/Module/Connections.php:102 +#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:30 +msgid "All" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:133 +msgid "New Connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:136 +msgid "Show pending (new) connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:143 +msgid "Show all connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:159 +msgid "Only show blocked connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:166 +msgid "Only show ignored connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:173 +msgid "Only show archived/unreachable connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:180 +msgid "Only show hidden connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Pending approval" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Archived" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:246 +msgid "Not connected at this location" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:258 +#, php-format +msgid "%1$s [%2$s]" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:259 +msgid "Edit connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:261 +msgid "Delete connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:270 +msgid "Channel address" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Network" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:275 +msgid "Call" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:277 +msgid "Status" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:279 +msgid "Connected" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:281 +msgid "Approve connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:283 +msgid "Ignore connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:284 +#: ../../Zotlabs/Module/Connedit.php:626 +msgid "Ignore" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:285 +msgid "Recent activity" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:314 +msgid "Search your connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:315 +msgid "Connections search" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:316 +#: ../../Zotlabs/Module/Directory.php:391 +#: ../../Zotlabs/Module/Directory.php:396 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "" + +#: ../../Zotlabs/Module/Viewsrc.php:43 +msgid "item" +msgstr "" + +#: ../../Zotlabs/Module/Viewsrc.php:55 +msgid "Source of Item" +msgstr "" + +#: ../../Zotlabs/Module/Bookmarks.php:11 ../../Zotlabs/Lib/Apps.php:227 +msgid "View Bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Bookmarks.php:56 +msgid "Bookmark added" +msgstr "" + +#: ../../Zotlabs/Module/Bookmarks.php:79 +msgid "My Bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Bookmarks.php:90 +msgid "My Connections Bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:78 +msgid "Page owner information could not be retrieved." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:120 +msgid "Album not found." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:103 +msgid "Delete Album" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1025 +msgid "Delete Photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:501 +msgid "No photos selected" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:550 +msgid "Access to this item is restricted." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:558 ../../Zotlabs/Module/Fbrowser.php:29 +#: ../../Zotlabs/Lib/Apps.php:242 ../../include/conversation.php:1780 +#: ../../include/nav.php:378 +msgid "Photos" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:593 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:596 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:638 +msgid "Upload Photos" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:642 +msgid "Enter an album name" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:643 +msgid "or select an existing album (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:644 +msgid "Create a status post for this upload" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:645 +msgid "Caption (optional):" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:646 +msgid "Description (optional):" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:727 +msgid "Show Newest First" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:729 +msgid "Show Oldest First" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:834 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:836 +msgid "Photo not available" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:894 +msgid "Use as profile photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:895 +msgid "Use as cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:902 +msgid "Private Photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:917 +msgid "View Full Size" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:999 +msgid "Edit photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1001 +msgid "Rotate CW (right)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1002 +msgid "Rotate CCW (left)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1005 +msgid "Move photo to album" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1006 +msgid "Enter a new album name" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1007 +msgid "or select an existing one (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1010 +msgid "Caption" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1012 +msgid "Add a Tag" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1020 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1023 +msgid "Flag as adult in album view" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1042 ../../Zotlabs/Lib/ThreadItem.php:267 +msgid "I like this (toggle)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1043 ../../Zotlabs/Lib/ThreadItem.php:268 +msgid "I don't like this (toggle)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1045 ../../Zotlabs/Lib/ThreadItem.php:410 +#: ../../include/conversation.php:736 +msgid "Please wait" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1061 ../../Zotlabs/Module/Photos.php:1179 +#: ../../Zotlabs/Lib/ThreadItem.php:727 +msgid "This is you" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1063 ../../Zotlabs/Module/Photos.php:1181 +#: ../../Zotlabs/Lib/ThreadItem.php:729 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1079 ../../include/conversation.php:569 +msgctxt "title" +msgid "Likes" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1079 ../../include/conversation.php:569 +msgctxt "title" +msgid "Dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1080 ../../include/conversation.php:570 +msgctxt "title" +msgid "Agree" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1080 ../../include/conversation.php:570 +msgctxt "title" +msgid "Disagree" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1080 ../../include/conversation.php:570 +msgctxt "title" +msgid "Abstain" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1081 ../../include/conversation.php:571 +msgctxt "title" +msgid "Attending" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1081 ../../include/conversation.php:571 +msgctxt "title" +msgid "Not attending" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1081 ../../include/conversation.php:571 +msgctxt "title" +msgid "Might attend" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1110 +#: ../../Zotlabs/Lib/ThreadItem.php:187 ../../Zotlabs/Lib/ThreadItem.php:199 +msgid "View all" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1102 ../../Zotlabs/Lib/ThreadItem.php:191 +#: ../../include/conversation.php:1904 ../../include/channel.php:1391 +#: ../../include/taxonomy.php:442 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../Zotlabs/Lib/ThreadItem.php:196 +#: ../../include/conversation.php:1907 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Photos.php:1207 +msgid "Photo Tools" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1216 +msgid "In This Photo:" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1221 +msgid "Map" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1229 ../../Zotlabs/Lib/ThreadItem.php:399 +msgctxt "noun" +msgid "Likes" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1230 ../../Zotlabs/Lib/ThreadItem.php:400 +msgctxt "noun" +msgid "Dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1235 ../../Zotlabs/Lib/ThreadItem.php:405 +#: ../../include/acl_selectors.php:220 +msgid "Close" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1307 ../../Zotlabs/Module/Photos.php:1320 +#: ../../Zotlabs/Module/Photos.php:1321 ../../include/photos.php:526 +msgid "Recent Photos" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:30 +msgid "Profile Unavailable." +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:44 ../../addon/gitwiki/Mod_Gitwiki.php:42 +msgid "Not found" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:68 ../../addon/gitwiki/Mod_Gitwiki.php:62 +msgid "Invalid channel" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:79 ../../Zotlabs/Lib/Apps.php:239 +#: ../../include/conversation.php:1854 ../../include/features.php:95 +#: ../../include/nav.php:451 +msgid "Wiki" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:162 ../../addon/gitwiki/Mod_Gitwiki.php:146 +#: ../../include/conversation.php:1851 ../../include/nav.php:448 +msgid "Wikis" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:168 ../../addon/gitwiki/Mod_Gitwiki.php:152 +msgid "Download" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:170 ../../Zotlabs/Module/Chat.php:256 +#: ../../Zotlabs/Module/Profiles.php:834 ../../Zotlabs/Module/Manage.php:145 +#: ../../addon/gitwiki/Mod_Gitwiki.php:154 +msgid "Create New" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:172 ../../addon/gitwiki/Mod_Gitwiki.php:156 +msgid "Wiki name" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:173 ../../addon/gitwiki/Mod_Gitwiki.php:157 +msgid "Content type" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:175 ../../Zotlabs/Storage/Browser.php:235 +#: ../../addon/gitwiki/Mod_Gitwiki.php:159 +msgid "Type" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:182 ../../addon/gitwiki/Mod_Gitwiki.php:166 +msgid "Create a status post for this wiki" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:224 ../../addon/gitwiki/Mod_Gitwiki.php:185 +msgid "Wiki not found" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:248 ../../addon/gitwiki/Mod_Gitwiki.php:210 +msgid "Rename page" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:258 ../../addon/gitwiki/Mod_Gitwiki.php:214 +msgid "Error retrieving page content" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:264 +msgid "New page" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:288 ../../addon/gitwiki/Mod_Gitwiki.php:242 +msgid "Revision Comparison" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:289 ../../addon/gitwiki/Mod_Gitwiki.php:243 +msgid "Revert" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:293 +msgid "Short description of your changes (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:300 ../../addon/gitwiki/Mod_Gitwiki.php:252 +msgid "Source" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:309 ../../addon/gitwiki/Mod_Gitwiki.php:260 +msgid "New page name" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:314 ../../addon/gitwiki/Mod_Gitwiki.php:265 +#: ../../include/conversation.php:1229 +msgid "Embed image from photo albums" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:315 ../../addon/gitwiki/Mod_Gitwiki.php:266 +#: ../../include/conversation.php:1323 +msgid "Embed an image from your albums" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:317 ../../addon/gitwiki/Mod_Gitwiki.php:268 +#: ../../include/conversation.php:1325 ../../include/conversation.php:1372 +msgid "OK" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:318 ../../addon/gitwiki/Mod_Gitwiki.php:269 +#: ../../include/conversation.php:1265 +msgid "Choose images to embed" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:319 ../../addon/gitwiki/Mod_Gitwiki.php:270 +#: ../../include/conversation.php:1266 +msgid "Choose an album" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:320 ../../addon/gitwiki/Mod_Gitwiki.php:271 +msgid "Choose a different album" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:321 ../../addon/gitwiki/Mod_Gitwiki.php:272 +#: ../../include/conversation.php:1268 +msgid "Error getting album list" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:322 ../../addon/gitwiki/Mod_Gitwiki.php:273 +#: ../../include/conversation.php:1269 +msgid "Error getting photo link" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:323 ../../addon/gitwiki/Mod_Gitwiki.php:274 +#: ../../include/conversation.php:1270 +msgid "Error getting album" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:391 ../../addon/gitwiki/Mod_Gitwiki.php:337 +msgid "Error creating wiki. Invalid name." +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:398 +msgid "A wiki with this name already exists." +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:411 ../../addon/gitwiki/Mod_Gitwiki.php:348 +msgid "Wiki created, but error creating Home page." +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:418 ../../addon/gitwiki/Mod_Gitwiki.php:353 +msgid "Error creating wiki" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:430 +msgid "Wiki delete permission denied." +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:440 +msgid "Error deleting wiki" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:466 ../../addon/gitwiki/Mod_Gitwiki.php:400 +msgid "New page created" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:587 +msgid "Cannot delete Home" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:651 +msgid "Current Revision" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:651 +msgid "Selected Revision" +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:701 +msgid "You must be authenticated." +msgstr "" + +#: ../../Zotlabs/Module/Chanview.php:139 +msgid "toggle full screen mode" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:219 +msgid "Feature disabled." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 +msgid "Edit System Page Description" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:64 +msgid "Layout not found." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:70 +msgid "Module Name:" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:71 +msgid "Layout Help" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:153 ../../Zotlabs/Module/Poke.php:182 +#: ../../Zotlabs/Lib/Apps.php:248 ../../include/conversation.php:1039 +msgid "Poke" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:183 +msgid "Poke somebody" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:186 +msgid "Poke/Prod" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:187 +msgid "Poke, prod or do other things to somebody" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:194 +msgid "Recipient" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:198 ../../Zotlabs/Module/Poke.php:199 +msgid "Make this post private" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:61 +#: ../../Zotlabs/Module/Cover_photo.php:56 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:226 +#: ../../include/photo/photo_driver.php:658 +msgid "Profile Photos" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:137 +#: ../../Zotlabs/Module/Cover_photo.php:159 +msgid "Image resize failed." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:196 +#: ../../addon/openclipatar/openclipatar.php:298 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:203 +#: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:145 +msgid "Unable to process image" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:238 +#: ../../Zotlabs/Module/Cover_photo.php:197 +msgid "Image upload failed." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:257 +#: ../../Zotlabs/Module/Cover_photo.php:214 +msgid "Unable to process image." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:365 +#: ../../Zotlabs/Module/Cover_photo.php:307 +#: ../../Zotlabs/Module/Cover_photo.php:322 +msgid "Photo not available." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:420 +#: ../../Zotlabs/Module/Cover_photo.php:358 +msgid "Upload File:" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:421 +#: ../../Zotlabs/Module/Cover_photo.php:359 +msgid "Select a profile:" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:422 +msgid "Use Photo for Profile" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:422 +msgid "Upload Profile Photo" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:423 +#: ../../addon/openclipatar/openclipatar.php:182 +#: ../../addon/openclipatar/openclipatar.php:194 +msgid "Use" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:429 +#: ../../Zotlabs/Module/Cover_photo.php:365 +msgid "skip this step" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:429 +#: ../../Zotlabs/Module/Cover_photo.php:365 +msgid "select a photo from your photo albums" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:448 +#: ../../Zotlabs/Module/Cover_photo.php:381 +msgid "Crop Image" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:449 +#: ../../Zotlabs/Module/Cover_photo.php:382 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:451 +#: ../../Zotlabs/Module/Cover_photo.php:384 +msgid "Done Editing" +msgstr "" + +#: ../../Zotlabs/Module/Chatsvc.php:131 +msgid "Away" +msgstr "" + +#: ../../Zotlabs/Module/Chatsvc.php:136 +msgid "Online" +msgstr "" + +#: ../../Zotlabs/Module/Item.php:185 +msgid "Unable to locate original post." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:470 +msgid "Empty post discarded." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:844 +msgid "Duplicate post suppressed." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:989 +msgid "System error. Post not saved." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1025 +msgid "Your comment is awaiting approval." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1123 +msgid "Unable to obtain post information from database." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1130 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1137 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:280 +msgid "sent you a private message" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:331 +msgid "added your channel" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:341 +msgid "g A l F d" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:359 +msgid "[today]" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:368 +msgid "posted an event" +msgstr "" + +#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 +msgid "Invalid item." +msgstr "" + +#: ../../Zotlabs/Module/Page.php:128 ../../Zotlabs/Module/Block.php:77 +#: ../../Zotlabs/Module/Display.php:122 +#: ../../Zotlabs/Lib/NativeWikiPage.php:500 ../../Zotlabs/Web/Router.php:146 +#: ../../include/help.php:68 +msgid "Page not found." +msgstr "" + +#: ../../Zotlabs/Module/Page.php:165 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, " +"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:79 +msgid "Could not access contact record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:109 +msgid "Could not locate selected profile." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:246 +msgid "Connection updated." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:248 +msgid "Failed to update connection record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:298 +msgid "is now connected to" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:423 +msgid "Could not access address book record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:471 +msgid "Refresh failed - channel is currently unavailable." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:486 ../../Zotlabs/Module/Connedit.php:495 +#: ../../Zotlabs/Module/Connedit.php:504 ../../Zotlabs/Module/Connedit.php:513 +#: ../../Zotlabs/Module/Connedit.php:526 +msgid "Unable to set address book parameters." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:550 +msgid "Connection has been removed." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:590 ../../Zotlabs/Lib/Apps.php:241 +#: ../../addon/openclipatar/openclipatar.php:57 +#: ../../include/conversation.php:979 ../../include/nav.php:102 +msgid "View Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:593 +#, php-format +msgid "View %s's profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:597 +msgid "Refresh Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:600 +msgid "Fetch updated permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:604 +msgid "Refresh Photo" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:607 +msgid "Fetch updated photo" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:611 +msgid "Recent Activity" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:614 +msgid "View recent posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:621 +msgid "Block (or Unblock) all communications with this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "This connection is blocked!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:626 +msgid "Unignore" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:629 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:630 +msgid "This connection is ignored!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:634 +msgid "Unarchive" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:634 +msgid "Archive" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:637 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:638 +msgid "This connection is archived!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:642 +msgid "Unhide" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:642 +msgid "Hide" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:645 +msgid "Hide or Unhide this connection from your other connections" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:646 +msgid "This connection is hidden!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:653 +msgid "Delete this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:661 +msgid "Fetch Vcard" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:664 +msgid "Fetch electronic calling card for this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:675 +msgid "Open Individual Permissions section by default" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:698 +msgid "Affinity" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:701 +msgid "Open Set Affinity section by default" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:705 ../../Zotlabs/Widget/Affinity.php:26 +msgid "Me" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:706 ../../Zotlabs/Widget/Affinity.php:27 +msgid "Family" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:708 ../../Zotlabs/Widget/Affinity.php:29 +msgid "Acquaintances" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:735 +msgid "Filter" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:738 +msgid "Open Custom Filter section by default" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Approve this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Accept connection to allow communication" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:780 +msgid "Set Affinity" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:783 +msgid "Set Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:786 +msgid "Set Affinity & Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:851 +msgid "This connection is unreachable from this location." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:852 +msgid "This connection may be unreachable from other channel locations." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:854 +msgid "Location independence is not supported by their network." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:860 +msgid "" +"This connection is unreachable from this location. Location independence is " +"not supported by their network." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:863 +#: ../../Zotlabs/Widget/Settings_menu.php:109 +msgid "Connection Default Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:863 ../../include/items.php:3925 +#, php-format +msgid "Connection: %s" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:864 +msgid "Apply these permissions automatically" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:864 +msgid "Connection requests will be approved without your interaction" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:865 +msgid "Permission role" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:866 +msgid "Add permission role" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:873 +msgid "This connection's primary address is" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:874 +msgid "Available locations:" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:879 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:880 +msgid "Connection Tools" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:882 +msgid "Slide to adjust your degree of friendship" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:883 ../../Zotlabs/Module/Rate.php:155 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:884 +msgid "Slide to adjust your rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:885 ../../Zotlabs/Module/Connedit.php:890 +msgid "Optionally explain your rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:887 +msgid "Custom Filter" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:888 +msgid "Only import posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:888 ../../Zotlabs/Module/Connedit.php:889 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:889 +msgid "Do not import posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:891 +msgid "This information is public!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:896 +msgid "Connection Pending Approval" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:901 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:908 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher priority than " +"individual settings. You can change those settings here but they wont have " +"any impact unless the inherited setting changes." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:909 +msgid "Last update:" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:918 +msgid "Details" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:94 ../../Zotlabs/Lib/Apps.php:228 +msgid "My Chatrooms" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:241 +#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1260 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:742 +#: ../../include/conversation.php:1370 +msgid "Encrypt text" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:250 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "No chatrooms available" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:259 +msgid "Expiration" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:260 +msgid "min" +msgstr "" + +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:237 +#: ../../Zotlabs/Storage/Browser.php:225 ../../Zotlabs/Storage/Browser.php:247 +#: ../../include/conversation.php:1788 ../../include/nav.php:386 +msgid "Files" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2281 +msgid "Menus" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2282 +msgid "Layouts" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Module/Help.php:18 +#: ../../Zotlabs/Lib/Apps.php:245 ../../include/nav.php:157 +#: ../../include/nav.php:264 ../../include/help.php:55 +#: ../../include/help.php:61 +msgid "Help" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:186 +msgid "Comanche page description language help" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:190 +msgid "Layout Description" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Download PDL file" +msgstr "" + +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/markdown.php:141 +#: ../../include/bbcode.php:334 msgid "post" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1938 -#: ../../include/conversation.php:146 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:146 +#: ../../include/text.php:1938 msgid "comment" msgstr "" @@ -6872,6 +5629,1387 @@ msgstr "" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "" + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "" + +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please " +"leave this page unless you are comfortable with and knowledgeable about how " +"to correctly use this feature." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 +#: ../../include/items.php:3892 +msgid "Privacy group not found." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:92 +msgid "Create a group of channels." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:186 +msgid "Privacy group name: " +msgstr "" + +#: ../../Zotlabs/Module/Group.php:95 ../../Zotlabs/Module/Group.php:189 +msgid "Members are visible to other channels" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:113 +msgid "Privacy group removed." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:115 +msgid "Unable to remove privacy group." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:185 +msgid "Privacy group editor" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:199 ../../Zotlabs/Module/Help.php:81 +msgid "Members" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:201 +msgid "All Connected Channels" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:233 +msgid "Click on a channel to add or remove." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 +#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 +msgid "Profile not found." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 +msgid "Profile-" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 +msgid "New profile created." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:111 +msgid "Profile unavailable to clone." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:146 +msgid "Profile unavailable to export." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:252 +msgid "Profile Name is required." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:459 +msgid "Marital Status" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:463 +msgid "Romantic Partner" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:775 +msgid "Likes" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:776 +msgid "Dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:783 +msgid "Work/Employment" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:478 +msgid "Religion" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:482 +msgid "Political Views" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:486 +#: ../../addon/openid/MysqlProvider.php:74 +msgid "Gender" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:490 +msgid "Sexual Preference" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:494 +msgid "Homepage" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:498 +msgid "Interests" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:594 +msgid "Profile updated." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:678 +msgid "Hide your connections list from viewers of this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:725 +msgid "Edit Profile Details" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "View this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:728 ../../Zotlabs/Module/Profiles.php:827 +#: ../../include/channel.php:1183 +msgid "Edit visibility" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:729 +msgid "Profile Tools" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Change cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:731 ../../include/channel.php:1154 +msgid "Change profile photo" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Create a new profile using these settings" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Clone this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Delete this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Add profile things" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:736 ../../include/conversation.php:1654 +msgid "Personal" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Relation" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:739 ../../include/datetime.php:55 +msgid "Miscellaneous" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Import profile from file" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Export profile to file" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Your gender" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:744 +msgid "Marital status" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "Sexual preference" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:748 +msgid "Profile name" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:750 +msgid "This is your default profile." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:752 +msgid "Your full name" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:753 +msgid "Title/Description" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:756 +msgid "Street address" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:757 +msgid "Locality/City" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:758 +msgid "Region/State" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:759 +msgid "Postal/Zip code" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:765 +msgid "Who (if applicable)" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:765 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:766 +msgid "Since (date)" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:769 +msgid "Tell us about yourself" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:770 +#: ../../addon/openid/MysqlProvider.php:68 +msgid "Homepage URL" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Hometown" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:772 +msgid "Political views" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:773 +msgid "Religious views" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:774 +msgid "Keywords used in directory listings" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:774 +msgid "Example: fishing photography software" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:777 +msgid "Musical interests" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Books, literature" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Television" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:780 +msgid "Film/Dance/Culture/Entertainment" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:781 +msgid "Hobbies/Interests" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:782 +msgid "Love/Romance" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:784 +msgid "School/Education" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:785 +msgid "Contact information and social networks" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:786 +msgid "My other channels" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Communications" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:823 ../../include/channel.php:1179 +msgid "Profile Image" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:833 ../../include/channel.php:1161 +#: ../../include/nav.php:105 +msgid "Edit Profiles" +msgstr "" + +#: ../../Zotlabs/Module/Editwebpage.php:139 +msgid "Page link" +msgstr "" + +#: ../../Zotlabs/Module/Editwebpage.php:166 +msgid "Edit Webpage" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:145 +msgid "Create a new channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:234 +#: ../../include/nav.php:199 +msgid "Channel Manager" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:171 +msgid "Current Channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:173 +msgid "Switch to one of your channels by selecting it." +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:174 +msgid "Default Channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Make Default" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:178 +#, php-format +msgid "%d new messages" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:179 +#, php-format +msgid "%d new introductions" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:181 +msgid "Delegated Channel" +msgstr "" + +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:19 +msgid "About this site" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:20 +msgid "Site Name" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:24 +msgid "Administrator" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:26 ../../Zotlabs/Module/Register.php:221 +msgid "Terms of Service" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:27 +msgid "Software and Project information" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:28 +msgid "This site is powered by $Projectname" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:29 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:31 +#, php-format +msgid "Version %s" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:32 +msgid "Project homepage" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:33 +msgid "Developer homepage" +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../include/conversation.php:1029 +msgid "Ratings" +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "" + +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:38 ../../Zotlabs/Module/Webpages.php:237 +#: ../../Zotlabs/Lib/Apps.php:238 ../../include/conversation.php:1838 +#: ../../include/nav.php:435 +msgid "Webpages" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:54 +msgid "Import Webpage Elements" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:55 +msgid "Import selected" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:78 +msgid "Export Webpage Elements" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:79 +msgid "Export selected" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:248 +msgid "Actions" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:249 +msgid "Page Link" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." +msgstr "" + +#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 +msgid "Item is not editable" +msgstr "" + +#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:140 +msgid "Edit post" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:45 +msgid "Invalid message" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "no results" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:93 +msgid "channel sync processed" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "queued" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:101 +msgid "posted" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:105 +msgid "accepted for delivery" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:109 +msgid "updated" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:112 +msgid "update ignored" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:115 +msgid "permission denied" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:119 +msgid "recipient not found" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:122 +msgid "mail recalled" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:125 +msgid "duplicate mail received" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:128 +msgid "mail delivered" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:148 +#, php-format +msgid "Delivery report for %1$s" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:151 +msgid "Options" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:152 +msgid "Redeliver" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:96 +#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:209 +msgid "Channel Sources" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "" + +#: ../../Zotlabs/Module/Rpost.php:63 ../../Zotlabs/Lib/Apps.php:257 +msgid "Post" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:122 +msgid "channel" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:423 ../../addon/diaspora/Receiver.php:1399 +#: ../../include/conversation.php:160 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:425 ../../include/conversation.php:163 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:431 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:435 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:437 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:547 +msgid "Action completed." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:548 +msgid "Thank you." +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:80 ../../Zotlabs/Lib/Apps.php:244 +msgid "Directory" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:245 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Gender: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Status: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:260 +msgid "Homepage: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:309 ../../include/channel.php:1416 +msgid "Age:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1251 +#: ../../include/event.php:52 ../../include/event.php:84 +msgid "Location:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:320 +msgid "Description:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:325 ../../include/channel.php:1432 +msgid "Hometown:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:327 ../../include/channel.php:1440 +msgid "About:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:328 ../../Zotlabs/Module/Suggest.php:56 +#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 +#: ../../include/conversation.php:999 ../../include/channel.php:1236 +#: ../../include/connections.php:111 +msgid "Connect" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Public Forum:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Keywords: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:335 +msgid "Don't suggest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:337 +msgid "Common connections:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:386 +msgid "Global Directory" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:386 +msgid "Local Directory" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:392 +msgid "Finding:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:395 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:397 +msgid "next page" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:397 +msgid "previous page" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Sort options" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Alphabetic" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:400 +msgid "Reverse Alphabetic" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:401 +msgid "Newest to Oldest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:402 +msgid "Oldest to Newest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:419 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "" + +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "" + +#: ../../Zotlabs/Module/Suggest.php:32 ../../Zotlabs/Lib/Apps.php:232 +#: ../../include/features.php:333 +msgid "Suggest Channels" +msgstr "" + +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: ../../Zotlabs/Module/Suggest.php:58 ../../Zotlabs/Widget/Suggestions.php:46 +msgid "Ignore/Hide" +msgstr "" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "" + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:73 +msgid "Unable to lookup recipient." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:80 +msgid "Unable to communicate with requested channel." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:87 +msgid "Cannot verify requested channel." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:105 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:143 ../../Zotlabs/Lib/Apps.php:246 +#: ../../include/nav.php:187 +msgid "Mail" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:160 +msgid "Messages" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:173 +msgid "message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:214 +msgid "Message recalled." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:227 +msgid "Conversation removed." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:270 +msgid "Requested channel is not in this network" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:278 +msgid "Send Private Message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 +msgid "To:" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 +msgid "Subject:" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 +#: ../../include/conversation.php:1320 +msgid "Attach file" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:289 +msgid "Send" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 +#: ../../include/conversation.php:1365 +msgid "Set expiration date" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:393 +msgid "Delete message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:394 +msgid "Delivery report" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:395 +msgid "Recall message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:397 +msgid "Message has been recalled." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:414 +msgid "Delete Conversation" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:416 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:420 +msgid "Send Reply" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:425 +#, php-format +msgid "Your message for %s (%s):" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 +msgid "Public Hubs" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:48 +msgid "Rate" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:263 +msgid "webpage" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:269 +msgid "block" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:266 +msgid "layout" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:272 +msgid "menu" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:181 +#, php-format +msgid "%s element installed" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:184 +#, php-format +msgid "%s element installation failed" +msgstr "" + +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "" + +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "" + +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "" + +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Enter a folder name" +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "or select an existing folder (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:137 +msgid "Save to Folder" +msgstr "" + +#: ../../Zotlabs/Module/Probe.php:11 ../../Zotlabs/Lib/Apps.php:231 +msgid "Remote Diagnostics" +msgstr "" + +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation instructions." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:227 +#, php-format +msgid "I accept the %s for this website" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:229 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:233 +msgid "Your email address" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:234 +msgid "Choose a password" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:235 +msgid "Please re-enter your password" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:236 +msgid "Please enter your invitation code" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:241 +msgid "no" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:241 +msgid "yes" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:268 ../../boot.php:1582 +#: ../../include/nav.php:145 +msgid "Register" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:269 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:136 +#: ../../Zotlabs/Module/Cover_photo.php:186 +msgid "Cover Photos" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4273 +msgid "female" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4274 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4275 +msgid "male" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4276 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4278 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:1878 +msgid "cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:360 +msgid "Upload Cover Photo" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:23 +msgid "Documentation Search" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1770 +#: ../../include/nav.php:368 +msgid "About" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:82 +msgid "Administrators" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:83 +msgid "Developers" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:84 +msgid "Tutorials" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:93 +msgid "$Projectname Documentation" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:94 +msgid "Contents" +msgstr "" + +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "" + +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "" + +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "" + +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:157 ../../Zotlabs/Lib/Apps.php:235 +msgid "Activity" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:221 +msgid "Privacy group is empty" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:230 +msgid "Privacy group: " +msgstr "" + +#: ../../Zotlabs/Module/Network.php:256 +msgid "Invalid connection." +msgstr "" + +#: ../../Zotlabs/Module/Network.php:275 ../../addon/redred/redred.php:65 +msgid "Invalid channel." +msgstr "" + +#: ../../Zotlabs/Module/Acl.php:344 +msgid "network" +msgstr "" + +#: ../../Zotlabs/Module/Acl.php:354 +msgid "RSS" +msgstr "" + +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../addon/opensearch/opensearch.php:42 +msgid "$Projectname" +msgstr "" + +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:79 +msgid "Permission Denied." +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:95 +msgid "File not found." +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:137 +msgid "Edit file permissions" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:149 +msgid "Set/edit permissions" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:150 +msgid "Include all files and sub folders" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:151 +msgid "Return to file list" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:153 +msgid "Copy/paste this code to attach file to a post" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:154 +msgid "Copy/paste this URL to link file from a web page" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Share this file" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Show URL to this file" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:158 +#: ../../Zotlabs/Storage/Browser.php:351 +msgid "Show in your contacts shared folder" +msgstr "" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "" + +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "" + +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "" + #: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." msgstr "" @@ -6885,434 +7023,330 @@ msgstr "" msgid "View Connections" msgstr "" -#: ../../Zotlabs/Module/Photos.php:78 -msgid "Page owner information could not be retrieved." +#: ../../Zotlabs/Module/Admin.php:97 +msgid "Blocked accounts" msgstr "" -#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:120 -msgid "Album not found." +#: ../../Zotlabs/Module/Admin.php:98 +msgid "Expired accounts" msgstr "" -#: ../../Zotlabs/Module/Photos.php:103 -msgid "Delete Album" +#: ../../Zotlabs/Module/Admin.php:99 +msgid "Expiring accounts" msgstr "" -#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1023 -msgid "Delete Photo" +#: ../../Zotlabs/Module/Admin.php:112 +msgid "Clones" msgstr "" -#: ../../Zotlabs/Module/Photos.php:501 -msgid "No photos selected" +#: ../../Zotlabs/Module/Admin.php:118 +msgid "Message queues" msgstr "" -#: ../../Zotlabs/Module/Photos.php:550 -msgid "Access to this item is restricted." +#: ../../Zotlabs/Module/Admin.php:132 +msgid "Your software should be updated" msgstr "" -#: ../../Zotlabs/Module/Photos.php:591 +#: ../../Zotlabs/Module/Admin.php:137 +msgid "Summary" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:140 +msgid "Registered accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Pending registrations" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Registered channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:143 +msgid "Active plugins" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:144 +msgid "Version" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Repository version (master)" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Repository version (dev)" +msgstr "" + +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:159 #, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgid "Remote Channel [%s] (not yet known on this site)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:594 +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "" + +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 #, php-format -msgid "%1$.2f MB photo storage used." +msgid "Site Member (%s)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:636 -msgid "Upload Photos" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:640 -msgid "Enter an album name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:641 -msgid "or select an existing album (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:642 -msgid "Create a status post for this upload" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:643 -msgid "Caption (optional):" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:644 -msgid "Description (optional):" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:725 -msgid "Show Newest First" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:727 -msgid "Show Oldest First" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:751 ../../Zotlabs/Module/Photos.php:1290 -#: ../../Zotlabs/Module/Embedphotos.php:140 ../../Zotlabs/Widget/Album.php:78 -#: ../../Zotlabs/Widget/Portfolio.php:78 -msgid "View Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:782 -#: ../../Zotlabs/Module/Embedphotos.php:156 ../../Zotlabs/Widget/Album.php:95 -#: ../../Zotlabs/Widget/Portfolio.php:97 -msgid "Edit Album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:832 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:834 -msgid "Photo not available" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:892 -msgid "Use as profile photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:893 -msgid "Use as cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:900 -msgid "Private Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:915 -msgid "View Full Size" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:997 -msgid "Edit photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:999 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1000 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1003 -msgid "Move photo to album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1004 -msgid "Enter a new album name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1005 -msgid "or select an existing one (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1008 -msgid "Caption" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1010 -msgid "Add a Tag" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1018 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1021 -msgid "Flag as adult in album view" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1040 ../../Zotlabs/Lib/ThreadItem.php:267 -msgid "I like this (toggle)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1041 ../../Zotlabs/Lib/ThreadItem.php:268 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1043 ../../Zotlabs/Lib/ThreadItem.php:410 -#: ../../include/conversation.php:736 -msgid "Please wait" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1059 ../../Zotlabs/Module/Photos.php:1177 -#: ../../Zotlabs/Lib/ThreadItem.php:727 -msgid "This is you" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1061 ../../Zotlabs/Module/Photos.php:1179 -#: ../../Zotlabs/Lib/ThreadItem.php:729 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1077 ../../include/conversation.php:569 -msgctxt "title" -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1077 ../../include/conversation.php:569 -msgctxt "title" -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1078 ../../include/conversation.php:570 -msgctxt "title" -msgid "Agree" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1078 ../../include/conversation.php:570 -msgctxt "title" -msgid "Disagree" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1078 ../../include/conversation.php:570 -msgctxt "title" -msgid "Abstain" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1079 ../../include/conversation.php:571 -msgctxt "title" -msgid "Attending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1079 ../../include/conversation.php:571 -msgctxt "title" -msgid "Not attending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1079 ../../include/conversation.php:571 -msgctxt "title" -msgid "Might attend" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1096 ../../Zotlabs/Module/Photos.php:1108 -#: ../../Zotlabs/Lib/ThreadItem.php:187 ../../Zotlabs/Lib/ThreadItem.php:199 -msgid "View all" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1100 ../../Zotlabs/Lib/ThreadItem.php:191 -#: ../../include/taxonomy.php:433 ../../include/conversation.php:1904 -#: ../../include/channel.php:1289 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../Zotlabs/Lib/ThreadItem.php:196 -#: ../../include/conversation.php:1907 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1205 -msgid "Photo Tools" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1214 -msgid "In This Photo:" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1219 -msgid "Map" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1227 ../../Zotlabs/Lib/ThreadItem.php:399 -msgctxt "noun" -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1228 ../../Zotlabs/Lib/ThreadItem.php:400 -msgctxt "noun" -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1233 ../../Zotlabs/Lib/ThreadItem.php:405 -#: ../../include/acl_selectors.php:220 -msgid "Close" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1305 ../../Zotlabs/Module/Photos.php:1318 -#: ../../Zotlabs/Module/Photos.php:1319 ../../include/photos.php:526 -msgid "Recent Photos" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:32 -#: ../../extend/addon/addon/chess/chess.php:403 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:28 -msgid "You must be logged in to see this page." -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:179 -msgid "Room not found" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:195 -msgid "Leave Room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:196 -msgid "Delete Room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:197 -msgid "I am away right now" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:198 -msgid "I am online" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "Bookmark this room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:230 -msgid "New Chatroom" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:231 -msgid "Chatroom name" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "Expiration of chats (minutes)" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:248 +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 #, php-format -msgid "%1$s's Chatrooms" +msgid "Password reset requested at %s" msgstr "" -#: ../../Zotlabs/Module/Chat.php:253 -msgid "No chatrooms available" +#: ../../Zotlabs/Module/Lostpass.php:68 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../Zotlabs/Module/Chat.php:257 -msgid "Expiration" +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1609 +msgid "Password Reset" msgstr "" -#: ../../Zotlabs/Module/Chat.php:258 -msgid "min" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your password has been reset as requested." msgstr "" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Your new password is" msgstr "" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../Zotlabs/Module/Channel.php:112 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "click here to login" msgstr "" -#: ../../Zotlabs/Module/Apporder.php:34 -msgid "Change Order of Navigation Apps" +#: ../../Zotlabs/Module/Lostpass.php:96 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../Zotlabs/Module/Apporder.php:35 -msgid "Use arrows to move the corresponding app up or down in the display list" +#: ../../Zotlabs/Module/Lostpass.php:117 +#, php-format +msgid "Your password has changed at %s" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:726 -msgid "INVALID EVENT DISMISSED!" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Forgot your Password?" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:727 -msgid "Summary: " +#: ../../Zotlabs/Module/Lostpass.php:131 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../Zotlabs/Module/Cdav.php:728 -msgid "Date: " +#: ../../Zotlabs/Module/Lostpass.php:132 +msgid "Email Address" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:729 ../../Zotlabs/Module/Cdav.php:736 -msgid "Reason: " +#: ../../Zotlabs/Module/Lostpass.php:133 +msgid "Reset" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:734 -msgid "INVALID CARD DISMISSED!" +#: ../../Zotlabs/Module/Notifications.php:43 +#: ../../Zotlabs/Lib/ThreadItem.php:392 +msgid "Mark all seen" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:735 -msgid "Name: " +#: ../../Zotlabs/Lib/Techlevels.php:10 +msgid "0. Beginner/Basic" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:809 ../../Zotlabs/Module/Cdav.php:810 -msgid "Example: YYYY-MM-DD HH:mm" +#: ../../Zotlabs/Lib/Techlevels.php:11 +msgid "1. Novice - not skilled but willing to learn" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:810 -msgid "End date and time" +#: ../../Zotlabs/Lib/Techlevels.php:12 +msgid "2. Intermediate - somewhat comfortable" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:825 -msgid "List month" +#: ../../Zotlabs/Lib/Techlevels.php:13 +msgid "3. Advanced - very comfortable" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:826 -msgid "List week" +#: ../../Zotlabs/Lib/Techlevels.php:14 +msgid "4. Expert - I can write computer code" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:827 -msgid "List day" +#: ../../Zotlabs/Lib/Techlevels.php:15 +msgid "5. Wizard - I probably know more than you do" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:834 -msgid "More" +#: ../../Zotlabs/Lib/Apps.php:225 +msgid "Site Admin" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:835 -msgid "Less" +#: ../../Zotlabs/Lib/Apps.php:226 ../../addon/buglink/buglink.php:16 +msgid "Report Bug" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:836 -msgid "Select calendar" +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Firefox Share" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:838 -msgid "Delete all" +#: ../../Zotlabs/Lib/Apps.php:233 ../../boot.php:1601 ../../include/nav.php:113 +msgid "Login" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:840 -msgid "Sorry! Editing of recurrent events is not yet implemented." +#: ../../Zotlabs/Lib/Apps.php:249 +msgid "Chat" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1181 -msgid "Default Calendar" +#: ../../Zotlabs/Lib/Apps.php:251 +msgid "Probe" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1191 -msgid "Default Addressbook" +#: ../../Zotlabs/Lib/Apps.php:252 +msgid "Suggest" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" +#: ../../Zotlabs/Lib/Apps.php:253 +msgid "Random Channel" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" +#: ../../Zotlabs/Lib/Apps.php:255 ../../Zotlabs/Widget/Admin.php:26 +msgid "Features" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." +#: ../../Zotlabs/Lib/Apps.php:258 ../../addon/openid/MysqlProvider.php:58 +#: ../../addon/openid/MysqlProvider.php:59 +#: ../../addon/openid/MysqlProvider.php:60 +msgid "Profile Photo" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." +#: ../../Zotlabs/Lib/Apps.php:391 +msgid "Purchase" msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" +#: ../../Zotlabs/Lib/Apps.php:395 +msgid "Undelete" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:401 +msgid "Add to app-tray" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:402 +msgid "Remove from app-tray" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:58 +msgctxt "permcat" +msgid "default" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:96 +msgctxt "permcat" +msgid "follower" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:100 +msgctxt "permcat" +msgid "contributor" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:104 +msgctxt "permcat" +msgid "publisher" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:42 +#: ../../Zotlabs/Lib/NativeWikiPage.php:83 +msgid "(No Title)" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:97 +msgid "Wiki page create failed." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:110 +msgid "Wiki not found." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:121 +msgid "Destination name already exists" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:147 +#: ../../Zotlabs/Lib/NativeWikiPage.php:342 +msgid "Page not found" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:177 +msgid "Error reading page content" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:333 +#: ../../Zotlabs/Lib/NativeWikiPage.php:381 +#: ../../Zotlabs/Lib/NativeWikiPage.php:448 +#: ../../Zotlabs/Lib/NativeWikiPage.php:489 +msgid "Error reading wiki" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:369 +msgid "Page update failed." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:403 +msgid "Nothing deleted" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:469 +msgid "Compare: object not found." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:475 +msgid "Page updated" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:478 +msgid "Untitled" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:484 +msgid "Wiki resource_id required for git commit" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:540 +#: ../../Zotlabs/Widget/Wiki_page_history.php:23 +msgctxt "wiki_history" +msgid "Message" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:578 +#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:667 +#: ../../include/bbcode.php:813 +msgid "Different viewers will see this text differently" msgstr "" #: ../../Zotlabs/Lib/PermissionDescription.php:34 @@ -7378,230 +7412,32 @@ msgstr "" msgid "This is your default setting for the audience of your webpages" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:96 ../../include/conversation.php:656 -msgid "Private Message" +#: ../../Zotlabs/Lib/Chatroom.php:27 +msgid "Missing room name" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:133 ../../include/conversation.php:648 -msgid "Select" +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:158 -msgid "I will attend" +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:158 -msgid "I will not attend" +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:158 -msgid "I might attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:168 -msgid "I agree" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:168 -msgid "I disagree" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:168 -msgid "I abstain" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "Add Star" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:225 -msgid "Remove Star" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:226 -msgid "Toggle Star Status" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:230 -msgid "starred" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:240 ../../include/conversation.php:663 -msgid "Message signature validated" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:241 ../../include/conversation.php:664 -msgid "Message signature incorrect" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:249 -msgid "Add Tag" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:267 ../../include/taxonomy.php:346 -msgid "like" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:268 ../../include/taxonomy.php:347 -msgid "dislike" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:272 -msgid "Share This" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:272 -msgid "share" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:281 -msgid "Delivery Report" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:299 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Lib/ThreadItem.php:328 ../../Zotlabs/Lib/ThreadItem.php:329 -#, php-format -msgid "View %s's profile - %s" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:332 -msgid "to" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:333 -msgid "via" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:334 -msgid "Wall-to-Wall" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:335 -msgid "via Wall-To-Wall:" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:348 ../../include/conversation.php:715 -#, php-format -msgid "from %s" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:351 ../../include/conversation.php:718 -#, php-format -msgid "last edited: %s" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:352 ../../include/conversation.php:719 -#, php-format -msgid "Expires: %s" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:358 -msgid "Attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:359 -msgid "Attendance Options" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:360 -msgid "Vote" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:361 -msgid "Voting Options" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:382 -#: ../../extend/addon/addon/bookmarker/bookmarker.php:38 -msgid "Save Bookmarks" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:383 -msgid "Add to Calendar" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:441 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:731 ../../include/conversation.php:1315 -msgid "Bold" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:732 ../../include/conversation.php:1316 -msgid "Italic" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:733 ../../include/conversation.php:1317 -msgid "Underline" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:734 ../../include/conversation.php:1318 -msgid "Quote" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:735 ../../include/conversation.php:1319 -msgid "Code" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:736 -msgid "Image" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:737 -msgid "Insert Link" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:738 -msgid "Video" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:747 -msgid "Your full name (required)" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:748 -msgid "Your email address (required)" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:749 -msgid "Your website URL (optional)" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:58 -msgctxt "permcat" -msgid "default" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:96 -msgctxt "permcat" -msgid "follower" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:100 -msgctxt "permcat" -msgid "contributor" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:104 -msgctxt "permcat" -msgid "publisher" +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" msgstr "" #: ../../Zotlabs/Lib/Enotify.php:60 msgid "$Projectname Notification" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../extend/addon/addon/diaspora/p.php:46 -#: ../../extend/addon/addon/diaspora/util.php:253 -#: ../../extend/addon/addon/diaspora/util.php:266 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:283 +#: ../../addon/diaspora/util.php:296 ../../addon/diaspora/p.php:46 msgid "$projectname" msgstr "" @@ -7830,413 +7666,298 @@ msgstr "" msgid "Wiki files deleted successfully" msgstr "" -#: ../../Zotlabs/Lib/Techlevels.php:10 -msgid "0. Beginner/Basic" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:11 -msgid "1. Novice - not skilled but willing to learn" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:12 -msgid "2. Intermediate - somewhat comfortable" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:13 -msgid "3. Advanced - very comfortable" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:14 -msgid "4. Expert - I can write computer code" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:15 -msgid "5. Wizard - I probably know more than you do" -msgstr "" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:93 +#: ../../Zotlabs/Lib/DB_Upgrade.php:95 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../Zotlabs/Lib/DB_Upgrade.php:99 +#: ../../Zotlabs/Lib/DB_Upgrade.php:101 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:213 -msgid "Site Admin" +#: ../../Zotlabs/Lib/ThreadItem.php:96 ../../include/conversation.php:656 +msgid "Private Message" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:214 -#: ../../extend/addon/addon/buglink/buglink.php:16 -msgid "Report Bug" +#: ../../Zotlabs/Lib/ThreadItem.php:133 ../../include/conversation.php:648 +msgid "Select" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:215 -msgid "View Bookmarks" +#: ../../Zotlabs/Lib/ThreadItem.php:158 +msgid "I will attend" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:216 -msgid "My Chatrooms" +#: ../../Zotlabs/Lib/ThreadItem.php:158 +msgid "I will not attend" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:218 -msgid "Firefox Share" +#: ../../Zotlabs/Lib/ThreadItem.php:158 +msgid "I might attend" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:219 -msgid "Remote Diagnostics" +#: ../../Zotlabs/Lib/ThreadItem.php:168 +msgid "I agree" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/features.php:333 -msgid "Suggest Channels" +#: ../../Zotlabs/Lib/ThreadItem.php:168 +msgid "I disagree" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:115 -#: ../../boot.php:1591 -msgid "Login" +#: ../../Zotlabs/Lib/ThreadItem.php:168 +msgid "I abstain" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:223 -msgid "Activity" +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "Add Star" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:455 -#: ../../include/features.php:95 ../../include/conversation.php:1854 -msgid "Wiki" +#: ../../Zotlabs/Lib/ThreadItem.php:225 +msgid "Remove Star" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:228 ../../include/nav.php:178 -msgid "Channel Home" +#: ../../Zotlabs/Lib/ThreadItem.php:226 +msgid "Toggle Star Status" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:231 ../../include/nav.php:198 -#: ../../include/nav.php:401 ../../include/nav.php:404 -#: ../../include/conversation.php:1799 ../../include/conversation.php:1802 -msgid "Events" +#: ../../Zotlabs/Lib/ThreadItem.php:230 +msgid "starred" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Directory" +#: ../../Zotlabs/Lib/ThreadItem.php:240 ../../include/conversation.php:663 +msgid "Message signature validated" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:234 ../../include/nav.php:190 -msgid "Mail" +#: ../../Zotlabs/Lib/ThreadItem.php:241 ../../include/conversation.php:664 +msgid "Message signature incorrect" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Chat" +#: ../../Zotlabs/Lib/ThreadItem.php:249 +msgid "Add Tag" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:239 -msgid "Probe" +#: ../../Zotlabs/Lib/ThreadItem.php:267 ../../include/taxonomy.php:355 +msgid "like" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:240 -msgid "Suggest" +#: ../../Zotlabs/Lib/ThreadItem.php:268 ../../include/taxonomy.php:356 +msgid "dislike" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:241 -msgid "Random Channel" +#: ../../Zotlabs/Lib/ThreadItem.php:272 +msgid "Share This" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:242 -msgid "Invite" +#: ../../Zotlabs/Lib/ThreadItem.php:272 +msgid "share" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:243 ../../Zotlabs/Widget/Admin.php:26 -msgid "Features" +#: ../../Zotlabs/Lib/ThreadItem.php:281 +msgid "Delivery Report" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:244 -#: ../../extend/addon/addon/openid/MysqlProvider.php:69 -msgid "Language" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:245 -msgid "Post" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:246 -#: ../../extend/addon/addon/openid/MysqlProvider.php:58 -#: ../../extend/addon/addon/openid/MysqlProvider.php:59 -#: ../../extend/addon/addon/openid/MysqlProvider.php:60 -msgid "Profile Photo" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:366 -msgid "Purchase" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:370 -msgid "Undelete" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:376 -msgid "Add to app-tray" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:377 -msgid "Remove from app-tray" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:42 -#: ../../Zotlabs/Lib/NativeWikiPage.php:83 -msgid "(No Title)" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:97 -msgid "Wiki page create failed." -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:110 -msgid "Wiki not found." -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:121 -msgid "Destination name already exists" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:147 -#: ../../Zotlabs/Lib/NativeWikiPage.php:342 -msgid "Page not found" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:177 -msgid "Error reading page content" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:333 -#: ../../Zotlabs/Lib/NativeWikiPage.php:381 -#: ../../Zotlabs/Lib/NativeWikiPage.php:448 -#: ../../Zotlabs/Lib/NativeWikiPage.php:489 -msgid "Error reading wiki" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:369 -msgid "Page update failed." -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:403 -msgid "Nothing deleted" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:469 -msgid "Compare: object not found." -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:475 -msgid "Page updated" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:478 -msgid "Untitled" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:484 -msgid "Wiki resource_id required for git commit" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:540 -#: ../../Zotlabs/Widget/Wiki_page_history.php:23 -msgctxt "wiki_history" -msgid "Message" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:578 -#: ../../extend/addon/addon/gitwiki/gitwiki_backend.php:579 -#: ../../include/bbcode.php:667 ../../include/bbcode.php:813 -msgid "Different viewers will see this text differently" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 -msgid "Member registrations waiting for confirmation" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:29 -msgid "Inspect queue" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:31 -msgid "DB updates" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:212 -msgid "Admin" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:56 -msgid "Plugin Features" -msgstr "" - -#: ../../Zotlabs/Widget/Affinity.php:49 -msgid "Refresh" -msgstr "" - -#: ../../Zotlabs/Widget/Appcategories.php:39 -#: ../../Zotlabs/Widget/Tagcloud.php:25 ../../include/contact_widgets.php:91 -#: ../../include/taxonomy.php:218 ../../include/taxonomy.php:300 -msgid "Categories" -msgstr "" - -#: ../../Zotlabs/Widget/Appcategories.php:42 ../../Zotlabs/Widget/Filer.php:31 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "" - -#: ../../Zotlabs/Widget/Archive.php:43 -msgid "Archives" -msgstr "" - -#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 -msgid "Bookmarked Chatrooms" -msgstr "" - -#: ../../Zotlabs/Widget/Chatroom_list.php:16 ../../include/nav.php:415 -#: ../../include/nav.php:418 ../../include/conversation.php:1813 -#: ../../include/conversation.php:1816 -msgid "Chatrooms" -msgstr "" - -#: ../../Zotlabs/Widget/Chatroom_list.php:20 -msgid "Overview" -msgstr "" - -#: ../../Zotlabs/Widget/Chatroom_members.php:11 -msgid "Chat Members" -msgstr "" - -#: ../../Zotlabs/Widget/Cover_photo.php:54 -msgid "Click to show more" -msgstr "" - -#: ../../Zotlabs/Widget/Eventstools.php:13 -msgid "Events Tools" -msgstr "" - -#: ../../Zotlabs/Widget/Eventstools.php:14 -msgid "Export Calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Eventstools.php:15 -msgid "Import Calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:386 -msgid "Saved Folders" -msgstr "" - -#: ../../Zotlabs/Widget/Follow.php:22 +#: ../../Zotlabs/Lib/ThreadItem.php:299 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Lib/ThreadItem.php:328 ../../Zotlabs/Lib/ThreadItem.php:329 +#, php-format +msgid "View %s's profile - %s" msgstr "" -#: ../../Zotlabs/Widget/Follow.php:29 -msgid "Add New Connection" +#: ../../Zotlabs/Lib/ThreadItem.php:332 +msgid "to" msgstr "" -#: ../../Zotlabs/Widget/Follow.php:30 -msgid "Enter channel address" +#: ../../Zotlabs/Lib/ThreadItem.php:333 +msgid "via" msgstr "" -#: ../../Zotlabs/Widget/Follow.php:31 -msgid "Examples: bob@example.com, https://example.com/barbara" +#: ../../Zotlabs/Lib/ThreadItem.php:334 +msgid "Wall-to-Wall" msgstr "" -#: ../../Zotlabs/Widget/Mailmenu.php:13 -msgid "Private Mail Menu" +#: ../../Zotlabs/Lib/ThreadItem.php:335 +msgid "via Wall-To-Wall:" msgstr "" -#: ../../Zotlabs/Widget/Mailmenu.php:15 -msgid "Combined View" +#: ../../Zotlabs/Lib/ThreadItem.php:348 ../../include/conversation.php:715 +#, php-format +msgid "from %s" msgstr "" -#: ../../Zotlabs/Widget/Mailmenu.php:20 ../../include/nav.php:193 -msgid "Inbox" +#: ../../Zotlabs/Lib/ThreadItem.php:351 ../../include/conversation.php:718 +#, php-format +msgid "last edited: %s" msgstr "" -#: ../../Zotlabs/Widget/Mailmenu.php:25 ../../include/nav.php:194 -msgid "Outbox" +#: ../../Zotlabs/Lib/ThreadItem.php:352 ../../include/conversation.php:719 +#, php-format +msgid "Expires: %s" msgstr "" -#: ../../Zotlabs/Widget/Mailmenu.php:30 ../../include/nav.php:195 -msgid "New Message" +#: ../../Zotlabs/Lib/ThreadItem.php:358 +msgid "Attend" msgstr "" -#: ../../Zotlabs/Widget/Notes.php:16 -msgid "Notes" +#: ../../Zotlabs/Lib/ThreadItem.php:359 +msgid "Attendance Options" msgstr "" -#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 -msgid "photo/image" +#: ../../Zotlabs/Lib/ThreadItem.php:360 +msgid "Vote" msgstr "" -#: ../../Zotlabs/Widget/Rating.php:51 -msgid "Rating Tools" +#: ../../Zotlabs/Lib/ThreadItem.php:361 +msgid "Voting Options" msgstr "" -#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 -msgid "Rate Me" +#: ../../Zotlabs/Lib/ThreadItem.php:382 +#: ../../addon/bookmarker/bookmarker.php:38 +msgid "Save Bookmarks" msgstr "" -#: ../../Zotlabs/Widget/Rating.php:60 -msgid "View Ratings" +#: ../../Zotlabs/Lib/ThreadItem.php:383 +msgid "Add to Calendar" msgstr "" -#: ../../Zotlabs/Widget/Savedsearch.php:75 -msgid "Remove term" +#: ../../Zotlabs/Lib/ThreadItem.php:441 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" msgstr "" -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:297 -msgid "Saved Searches" +#: ../../Zotlabs/Lib/ThreadItem.php:731 ../../include/conversation.php:1315 +msgid "Bold" msgstr "" -#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:336 -msgid "add" +#: ../../Zotlabs/Lib/ThreadItem.php:732 ../../include/conversation.php:1316 +msgid "Italic" msgstr "" -#: ../../Zotlabs/Widget/Suggestedchats.php:32 -msgid "Suggested Chatrooms" +#: ../../Zotlabs/Lib/ThreadItem.php:733 ../../include/conversation.php:1317 +msgid "Underline" msgstr "" -#: ../../Zotlabs/Widget/Suggestions.php:51 -msgid "Suggestions" +#: ../../Zotlabs/Lib/ThreadItem.php:734 ../../include/conversation.php:1318 +msgid "Quote" msgstr "" -#: ../../Zotlabs/Widget/Suggestions.php:52 -msgid "See more..." +#: ../../Zotlabs/Lib/ThreadItem.php:735 ../../include/conversation.php:1319 +msgid "Code" msgstr "" -#: ../../Zotlabs/Widget/Wiki_list.php:15 -#: ../../extend/addon/addon/gitwiki/gitwiki.php:95 -msgid "Wiki List" +#: ../../Zotlabs/Lib/ThreadItem.php:736 +msgid "Image" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:737 +msgid "Insert Link" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:738 +msgid "Video" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:747 +msgid "Your full name (required)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:748 +msgid "Your email address (required)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:749 +msgid "Your website URL (optional)" +msgstr "" + +#: ../../Zotlabs/Zot/Auth.php:138 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." +msgstr "" + +#: ../../Zotlabs/Zot/Auth.php:250 ../../addon/openid/Mod_Openid.php:76 +#: ../../addon/openid/Mod_Openid.php:178 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:238 +msgid "parent" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2692 +msgid "Collection" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:134 +msgid "Principal" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:137 +msgid "Addressbook" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:140 +msgid "Calendar" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:143 +msgid "Schedule Inbox" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:146 +msgid "Schedule Outbox" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:226 +msgid "Total" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:228 +msgid "Shared" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:304 +#, php-format +msgid "You are using %1$s of your available file storage." +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:309 +#, php-format +msgid "You are using %1$s of %2$s available file storage. (%3$s%)" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:320 +msgid "WARNING:" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:330 +msgid "" +"Please use DAV to upload large (video, audio) files.
See Cloud Desktop " +"Clients" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:334 +msgid "Create new folder" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:336 +msgid "Upload file" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:350 +msgid "Drop files here to immediately upload" msgstr "" #: ../../Zotlabs/Widget/Forums.php:85 msgid "Forums" msgstr "" -#: ../../Zotlabs/Widget/Tasklist.php:23 -msgid "Tasks" -msgstr "" - -#: ../../Zotlabs/Widget/Wiki_pages.php:52 -#: ../../extend/addon/addon/gitwiki/gitwiki.php:76 -msgid "Wiki Pages" -msgstr "" - -#: ../../Zotlabs/Widget/Wiki_pages.php:58 -#: ../../extend/addon/addon/gitwiki/gitwiki.php:81 -msgid "Add new page" -msgstr "" - -#: ../../Zotlabs/Widget/Wiki_pages.php:59 -#: ../../extend/addon/addon/gitwiki/gitwiki.php:82 -msgid "Page name" -msgstr "" - #: ../../Zotlabs/Widget/Cdav.php:37 msgid "Select Channel" msgstr "" @@ -8313,6 +8034,105 @@ msgstr "" msgid "Select an addressbook to import to" msgstr "" +#: ../../Zotlabs/Widget/Appcategories.php:39 +#: ../../Zotlabs/Widget/Tagcloud.php:25 ../../include/contact_widgets.php:91 +#: ../../include/taxonomy.php:227 ../../include/taxonomy.php:309 +msgid "Categories" +msgstr "" + +#: ../../Zotlabs/Widget/Appcategories.php:42 ../../Zotlabs/Widget/Filer.php:31 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "" + +#: ../../Zotlabs/Widget/Eventstools.php:13 +msgid "Events Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Eventstools.php:14 +msgid "Export Calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Eventstools.php:15 +msgid "Import Calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestedchats.php:32 +msgid "Suggested Chatrooms" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:13 +msgid "Private Mail Menu" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:15 +msgid "Combined View" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:20 ../../include/nav.php:190 +msgid "Inbox" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:25 ../../include/nav.php:191 +msgid "Outbox" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:30 ../../include/nav.php:192 +msgid "New Message" +msgstr "" + +#: ../../Zotlabs/Widget/Chatroom_list.php:16 +#: ../../include/conversation.php:1813 ../../include/conversation.php:1816 +#: ../../include/nav.php:411 ../../include/nav.php:414 +msgid "Chatrooms" +msgstr "" + +#: ../../Zotlabs/Widget/Chatroom_list.php:20 +msgid "Overview" +msgstr "" + +#: ../../Zotlabs/Widget/Rating.php:51 +msgid "Rating Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 +msgid "Rate Me" +msgstr "" + +#: ../../Zotlabs/Widget/Rating.php:60 +msgid "View Ratings" +msgstr "" + +#: ../../Zotlabs/Widget/Activity.php:50 +msgctxt "widget" +msgid "Activity" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:22 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:29 +msgid "Add New Connection" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:30 +msgid "Enter channel address" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:31 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "" + +#: ../../Zotlabs/Widget/Wiki_list.php:15 ../../addon/gitwiki/gitwiki.php:95 +msgid "Wiki List" +msgstr "" + +#: ../../Zotlabs/Widget/Archive.php:43 +msgid "Archives" +msgstr "" + #: ../../Zotlabs/Widget/Conversations.php:17 msgid "Received Messages" msgstr "" @@ -8329,13 +8149,89 @@ msgstr "" msgid "No messages." msgstr "" -#: ../../Zotlabs/Widget/Conversations.php:53 +#: ../../Zotlabs/Widget/Conversations.php:55 msgid "Delete conversation" msgstr "" -#: ../../Zotlabs/Widget/Activity.php:50 -msgctxt "widget" -msgid "Activity" +#: ../../Zotlabs/Widget/Chatroom_members.php:11 +msgid "Chat Members" +msgstr "" + +#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 +msgid "photo/image" +msgstr "" + +#: ../../Zotlabs/Widget/Savedsearch.php:75 +msgid "Remove term" +msgstr "" + +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:297 +msgid "Saved Searches" +msgstr "" + +#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:337 +msgid "add" +msgstr "" + +#: ../../Zotlabs/Widget/Notes.php:16 +msgid "Notes" +msgstr "" + +#: ../../Zotlabs/Widget/Wiki_pages.php:52 ../../addon/gitwiki/gitwiki.php:76 +msgid "Wiki Pages" +msgstr "" + +#: ../../Zotlabs/Widget/Wiki_pages.php:58 ../../addon/gitwiki/gitwiki.php:81 +msgid "Add new page" +msgstr "" + +#: ../../Zotlabs/Widget/Wiki_pages.php:59 ../../addon/gitwiki/gitwiki.php:82 +msgid "Page name" +msgstr "" + +#: ../../Zotlabs/Widget/Affinity.php:49 +msgid "Refresh" +msgstr "" + +#: ../../Zotlabs/Widget/Tasklist.php:23 +msgid "Tasks" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestions.php:51 +msgid "Suggestions" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestions.php:52 +msgid "See more..." +msgstr "" + +#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 +#: ../../include/features.php:386 +msgid "Saved Folders" +msgstr "" + +#: ../../Zotlabs/Widget/Cover_photo.php:54 +msgid "Click to show more" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 +msgid "Member registrations waiting for confirmation" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:29 +msgid "Inspect queue" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:31 +msgid "DB updates" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:215 +msgid "Admin" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:56 +msgid "Plugin Features" msgstr "" #: ../../Zotlabs/Widget/Settings_menu.php:35 @@ -8378,857 +8274,497 @@ msgstr "" msgid "Premium Channel Settings" msgstr "" -#: ../../extend/addon/addon/adultphotoflag/adultphotoflag.php:24 +#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 +msgid "Bookmarked Chatrooms" +msgstr "" + +#: ../../util/nconfig.php:34 +msgid "Source channel not found." +msgstr "" + +#: ../../boot.php:1581 +msgid "Create an account to access services and applications" +msgstr "" + +#: ../../boot.php:1600 ../../include/nav.php:99 ../../include/nav.php:123 +#: ../../include/nav.php:140 +msgid "Logout" +msgstr "" + +#: ../../boot.php:1603 +msgid "Login/Email" +msgstr "" + +#: ../../boot.php:1604 +msgid "Password" +msgstr "" + +#: ../../boot.php:1605 +msgid "Remember me" +msgstr "" + +#: ../../boot.php:1608 +msgid "Forgot your password?" +msgstr "" + +#: ../../boot.php:2146 +msgid "toggle mobile" +msgstr "" + +#: ../../boot.php:2299 +#, php-format +msgid "[$Projectname] Website SSL error for %s" +msgstr "" + +#: ../../boot.php:2304 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "" + +#: ../../boot.php:2423 +#, php-format +msgid "[$Projectname] Cron tasks not running on %s" +msgstr "" + +#: ../../boot.php:2428 +msgid "Cron/Scheduled tasks not running." +msgstr "" + +#: ../../boot.php:2429 ../../include/datetime.php:286 +msgid "never" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:16 +#: ../../view/theme/redbasic/php/config.php:19 +msgid "Focus (Hubzilla default)" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Theme settings" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:100 +msgid "Narrow navbar" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:101 +msgid "Navigation bar background color" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Navigation bar icon color " +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Navigation bar active icon color " +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Link color" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Set font-color for banner" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Set the background color" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Set the background image" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Set the background color of items" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Set the background color of comments" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Set font-size for the entire application" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Examples: 1rem, 100%, 16px" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Set font-color for posts and comments" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Set radius of corners" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Example: 4px" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Set shadow depth of photos" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set maximum width of content region in pixel" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Leave empty for default width" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:115 +msgid "Left align page content" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:116 +msgid "Set size of conversation author photo" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:117 +msgid "Set size of followup author photos" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:57 +msgid "Errors encountered deleting database table " +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:95 ../../addon/twitter/twitter.php:773 +msgid "Submit Settings" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "Drop tables when uninstalling?" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "" +"If checked, the Rendezvous database tables will be deleted when the plugin " +"is uninstalled." +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "Mapbox Access Token" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "" +"If you enter a Mapbox access token, it will be used to retrieve map tiles " +"from Mapbox instead of the default OpenStreetMap tile server." +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:162 +msgid "Rendezvous" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:167 +msgid "" +"This identity has been deleted by another member due to inactivity. Please " +"press the \"New identity\" button or refresh the page to register a new " +"identity. You may use the same name." +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:168 +msgid "Welcome to Rendezvous!" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:169 +msgid "" +"Enter your name to join this rendezvous. To begin sharing your location with " +"the other members, tap the GPS control. When your location is discovered, a " +"red dot will appear and others will be able to see you on the map." +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:171 +msgid "Let's meet here" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:174 +msgid "New marker" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:175 +msgid "Edit marker" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:176 +msgid "New identity" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:177 +msgid "Delete marker" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:178 +msgid "Delete member" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:179 +msgid "Edit proximity alert" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:180 +msgid "" +"A proximity alert will be issued when this member is within a certain radius " +"of you.

Enter a radius in meters (0 to disable):" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:180 +#: ../../addon/rendezvous/rendezvous.php:185 +msgid "distance" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:181 +msgid "Proximity alert distance (meters)" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:182 +#: ../../addon/rendezvous/rendezvous.php:184 +msgid "" +"A proximity alert will be issued when you are within a certain radius of the " +"marker location.

Enter a radius in meters (0 to disable):" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:183 +msgid "Marker proximity alert" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:186 +msgid "Reminder note" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:187 +msgid "" +"Enter a note to be displayed when you are within the specified proximity..." +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:199 +msgid "Add new rendezvous" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:200 +msgid "" +"Create a new rendezvous and share the access link with those you wish to " +"invite to the group. Those who open the link become members of the " +"rendezvous. They can view other member locations, add markers to the map, or " +"share their own locations with the group." +msgstr "" + +#: ../../addon/skeleton/skeleton.php:59 +msgid "Some setting" +msgstr "" + +#: ../../addon/skeleton/skeleton.php:61 +msgid "A setting" +msgstr "" + +#: ../../addon/skeleton/skeleton.php:64 +msgid "Skeleton Settings" +msgstr "" + +#: ../../addon/gnusoc/gnusoc.php:200 +msgid "GNU-Social Protocol Settings updated." +msgstr "" + +#: ../../addon/gnusoc/gnusoc.php:219 +msgid "" +"The GNU-Social protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "" + +#: ../../addon/gnusoc/gnusoc.php:222 +msgid "Enable the GNU-Social protocol for this channel" +msgstr "" + +#: ../../addon/gnusoc/gnusoc.php:226 +msgid "GNU-Social Protocol Settings" +msgstr "" + +#: ../../addon/gnusoc/gnusoc.php:417 +msgid "Follow" +msgstr "" + +#: ../../addon/gnusoc/gnusoc.php:420 +#, php-format +msgid "%1$s is now following %2$s" +msgstr "" + +#: ../../addon/planets/planets.php:121 +msgid "Planets Settings updated." +msgstr "" + +#: ../../addon/planets/planets.php:149 +msgid "Enable Planets Plugin" +msgstr "" + +#: ../../addon/planets/planets.php:153 +msgid "Planets Settings" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:50 +#: ../../addon/openclipatar/openclipatar.php:128 +msgid "System defaults:" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "Preferred Clipart IDs" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "List of preferred clipart ids. These will be shown first." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "Default Search Term" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "The default search term. These will be shown second." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Return After" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Page to load after image selection." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1165 +#: ../../include/nav.php:107 +msgid "Edit Profile" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:59 +msgid "Profile List" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Order of Preferred" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Sort order of preferred clipart ids." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:62 +#: ../../addon/openclipatar/openclipatar.php:68 +msgid "Newest first" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:65 +msgid "As entered" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Order of other" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Sort order of other clipart ids." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:69 +msgid "Most downloaded first" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:70 +msgid "Most liked first" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Preferred IDs Message" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Message to display above preferred results." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Uploaded by: " +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Drawn by: " +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:192 +msgid "Or select from a free OpenClipart.org image:" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:195 +msgid "Search Term" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:232 +msgid "Unknown error. Please try again later." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:308 +msgid "Profile photo updated successfully." +msgstr "" + +#: ../../addon/adultphotoflag/adultphotoflag.php:24 msgid "Flag Adult Photos" msgstr "" -#: ../../extend/addon/addon/adultphotoflag/adultphotoflag.php:25 +#: ../../addon/adultphotoflag/adultphotoflag.php:25 msgid "" "Provide photo edit option to hide inappropriate photos from default album " "view" msgstr "" -#: ../../extend/addon/addon/chords/Mod_Chords.php:44 -msgid "" -"This is a fairly comprehensive and complete guitar chord dictionary which " -"will list most of the available ways to play a certain chord, starting from " -"the base of the fingerboard up to a few frets beyond the twelfth fret " -"(beyond which everything repeats). A couple of non-standard tunings are " -"provided for the benefit of slide players, etc." +#: ../../addon/wppost/wppost.php:45 +msgid "Post to WordPress" msgstr "" -#: ../../extend/addon/addon/chords/Mod_Chords.php:46 -msgid "" -"Chord names start with a root note (A-G) and may include sharps (#) and " -"flats (b). This software will parse most of the standard naming conventions " -"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." +#: ../../addon/wppost/wppost.php:82 +msgid "Enable WordPress Post Plugin" msgstr "" -#: ../../extend/addon/addon/chords/Mod_Chords.php:48 -msgid "" -"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " -"E7b13b11 ..." +#: ../../addon/wppost/wppost.php:86 +msgid "WordPress username" msgstr "" -#: ../../extend/addon/addon/chords/Mod_Chords.php:51 -msgid "Guitar Chords" +#: ../../addon/wppost/wppost.php:90 +msgid "WordPress password" msgstr "" -#: ../../extend/addon/addon/chords/Mod_Chords.php:52 -msgid "The complete online chord dictionary" +#: ../../addon/wppost/wppost.php:94 +msgid "WordPress API URL" msgstr "" -#: ../../extend/addon/addon/chords/Mod_Chords.php:57 -msgid "Tuning" +#: ../../addon/wppost/wppost.php:95 +msgid "Typically https://your-blog.tld/xmlrpc.php" msgstr "" -#: ../../extend/addon/addon/chords/Mod_Chords.php:58 -msgid "Chord name: example: Em7" +#: ../../addon/wppost/wppost.php:98 +msgid "WordPress blogid" msgstr "" -#: ../../extend/addon/addon/chords/Mod_Chords.php:59 -msgid "Show for left handed stringing" +#: ../../addon/wppost/wppost.php:99 +msgid "For multi-user sites such as wordpress.com, otherwise leave blank" msgstr "" -#: ../../extend/addon/addon/chords/chords.php:33 -msgid "Quick Reference" +#: ../../addon/wppost/wppost.php:105 +msgid "Post to WordPress by default" msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:94 -msgid "Hubzilla Directory Stats" +#: ../../addon/wppost/wppost.php:109 +msgid "Forward comments (requires hubzilla_wp plugin)" msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:95 -msgid "Total Hubs" +#: ../../addon/wppost/wppost.php:113 +msgid "WordPress Post Settings" msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:97 -msgid "Hubzilla Hubs" +#: ../../addon/wppost/wppost.php:129 +msgid "Wordpress Settings saved." msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:99 -msgid "Friendica Hubs" -msgstr "" - -#: ../../extend/addon/addon/dirstats/dirstats.php:101 -msgid "Diaspora Pods" -msgstr "" - -#: ../../extend/addon/addon/dirstats/dirstats.php:103 -msgid "Hubzilla Channels" -msgstr "" - -#: ../../extend/addon/addon/dirstats/dirstats.php:105 -msgid "Friendica Channels" -msgstr "" - -#: ../../extend/addon/addon/dirstats/dirstats.php:107 -msgid "Diaspora Channels" -msgstr "" - -#: ../../extend/addon/addon/dirstats/dirstats.php:109 -msgid "Aged 35 and above" -msgstr "" - -#: ../../extend/addon/addon/dirstats/dirstats.php:111 -msgid "Aged 34 and under" -msgstr "" - -#: ../../extend/addon/addon/dirstats/dirstats.php:113 -msgid "Average Age" -msgstr "" - -#: ../../extend/addon/addon/dirstats/dirstats.php:115 -msgid "Known Chatrooms" -msgstr "" - -#: ../../extend/addon/addon/dirstats/dirstats.php:117 -msgid "Known Tags" -msgstr "" - -#: ../../extend/addon/addon/dirstats/dirstats.php:119 -msgid "" -"Please note Diaspora and Friendica statistics are merely those **this " -"directory** is aware of, and not all those known in the network. This also " -"applies to chatrooms," -msgstr "" - -#: ../../extend/addon/addon/donate/donate.php:21 -msgid "Project Servers and Resources" -msgstr "" - -#: ../../extend/addon/addon/donate/donate.php:22 -msgid "Project Creator and Tech Lead" -msgstr "" - -#: ../../extend/addon/addon/donate/donate.php:23 -msgid "Admin, developer, directorymin, support bloke" -msgstr "" - -#: ../../extend/addon/addon/donate/donate.php:50 -msgid "" -"And the hundreds of other people and organisations who helped make the " -"Hubzilla possible." -msgstr "" - -#: ../../extend/addon/addon/donate/donate.php:53 -msgid "" -"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " -"their time and expertise - and often paying out of pocket for services they " -"share with others." -msgstr "" - -#: ../../extend/addon/addon/donate/donate.php:54 -msgid "" -"There is no corporate funding and no ads, and we do not collect and sell " -"your personal information. (We don't control your personal information - " -"you do.)" -msgstr "" - -#: ../../extend/addon/addon/donate/donate.php:55 -msgid "" -"Help support our ground-breaking work in decentralisation, web identity, and " -"privacy." -msgstr "" - -#: ../../extend/addon/addon/donate/donate.php:57 -msgid "" -"Your donations keep servers and services running and also helps us to " -"provide innovative new features and continued development." -msgstr "" - -#: ../../extend/addon/addon/donate/donate.php:60 -msgid "Donate" -msgstr "" - -#: ../../extend/addon/addon/donate/donate.php:62 -msgid "" -"Choose a project, developer, or public hub to support with a one-time " -"donation" -msgstr "" - -#: ../../extend/addon/addon/donate/donate.php:63 -msgid "Donate Now" -msgstr "" - -#: ../../extend/addon/addon/donate/donate.php:64 -msgid "" -"Or become a project sponsor (Hubzilla Project only)" -msgstr "" - -#: ../../extend/addon/addon/donate/donate.php:65 -msgid "" -"Please indicate if you would like your first name or full name (or nothing) " -"to appear in our sponsor listing" -msgstr "" - -#: ../../extend/addon/addon/donate/donate.php:66 -msgid "Sponsor" -msgstr "" - -#: ../../extend/addon/addon/donate/donate.php:69 -msgid "Special thanks to: " -msgstr "" - -#: ../../extend/addon/addon/dwpost/dwpost.php:42 -msgid "Post to Dreamwidth" -msgstr "" - -#: ../../extend/addon/addon/dwpost/dwpost.php:73 -msgid "Enable Dreamwidth Post Plugin" -msgstr "" - -#: ../../extend/addon/addon/dwpost/dwpost.php:77 -msgid "Dreamwidth username" -msgstr "" - -#: ../../extend/addon/addon/dwpost/dwpost.php:81 -msgid "Dreamwidth password" -msgstr "" - -#: ../../extend/addon/addon/dwpost/dwpost.php:85 -msgid "Post to Dreamwidth by default" -msgstr "" - -#: ../../extend/addon/addon/dwpost/dwpost.php:89 -msgid "Dreamwidth Post Settings" -msgstr "" - -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:45 -msgid "Flattr this!" -msgstr "" - -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:83 -msgid "Flattr widget settings updated." -msgstr "" - -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:100 -msgid "Flattr user" -msgstr "" - -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:104 -msgid "URL of the Thing to flattr" -msgstr "" - -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:104 -msgid "If empty channel URL is used" -msgstr "" - -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:108 -msgid "Title of the Thing to flattr" -msgstr "" - -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:108 -msgid "If empty \"channel name on The Hubzilla\" will be used" -msgstr "" - -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:112 -msgid "Static or dynamic flattr button" -msgstr "" - -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:112 -msgid "static" -msgstr "" - -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:112 -msgid "dynamic" -msgstr "" - -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:116 -msgid "Alignment of the widget" -msgstr "" - -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:116 -msgid "left" -msgstr "" - -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:116 -msgid "right" -msgstr "" - -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:120 -msgid "Enable Flattr widget" -msgstr "" - -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:124 -msgid "Flattr Widget Settings" -msgstr "" - -#: ../../extend/addon/addon/frphotos/frphotos.php:91 -msgid "Friendica Photo Album Import" -msgstr "" - -#: ../../extend/addon/addon/frphotos/frphotos.php:92 -msgid "This will import all your Friendica photo albums to this Red channel." -msgstr "" - -#: ../../extend/addon/addon/frphotos/frphotos.php:93 -msgid "Friendica Server base URL" -msgstr "" - -#: ../../extend/addon/addon/frphotos/frphotos.php:94 -msgid "Friendica Login Username" -msgstr "" - -#: ../../extend/addon/addon/frphotos/frphotos.php:95 -msgid "Friendica Login Password" -msgstr "" - -#: ../../extend/addon/addon/hubwall/hubwall.php:19 -msgid "Send email to all members" -msgstr "" - -#: ../../extend/addon/addon/hubwall/hubwall.php:33 -#, php-format -msgid "$1%s Administrator" -msgstr "" - -#: ../../extend/addon/addon/hubwall/hubwall.php:50 -#: ../../extend/addon/addon/mailtest/mailtest.php:50 -msgid "No recipients found." -msgstr "" - -#: ../../extend/addon/addon/hubwall/hubwall.php:73 -#, php-format -msgid "%1$d of %2$d messages sent." -msgstr "" - -#: ../../extend/addon/addon/hubwall/hubwall.php:81 -msgid "Send email to all hub members." -msgstr "" - -#: ../../extend/addon/addon/hubwall/hubwall.php:92 -#: ../../extend/addon/addon/mailtest/mailtest.php:96 -msgid "Message subject" -msgstr "" - -#: ../../extend/addon/addon/hubwall/hubwall.php:93 -msgid "Sender Email address" -msgstr "" - -#: ../../extend/addon/addon/hubwall/hubwall.php:94 -msgid "Test mode (only send to hub administrator)" -msgstr "" - -#: ../../extend/addon/addon/ijpost/ijpost.php:42 -msgid "Post to Insanejournal" -msgstr "" - -#: ../../extend/addon/addon/ijpost/ijpost.php:73 -msgid "Enable InsaneJournal Post Plugin" -msgstr "" - -#: ../../extend/addon/addon/ijpost/ijpost.php:77 -msgid "InsaneJournal username" -msgstr "" - -#: ../../extend/addon/addon/ijpost/ijpost.php:81 -msgid "InsaneJournal password" -msgstr "" - -#: ../../extend/addon/addon/ijpost/ijpost.php:85 -msgid "Post to InsaneJournal by default" -msgstr "" - -#: ../../extend/addon/addon/ijpost/ijpost.php:89 -msgid "InsaneJournal Post Settings" -msgstr "" - -#: ../../extend/addon/addon/ijpost/ijpost.php:104 -msgid "Insane Journal Settings saved." -msgstr "" - -#: ../../extend/addon/addon/irc/irc.php:45 -msgid "Channels to auto connect" -msgstr "" - -#: ../../extend/addon/addon/irc/irc.php:45 -#: ../../extend/addon/addon/irc/irc.php:49 -msgid "Comma separated list" -msgstr "" - -#: ../../extend/addon/addon/irc/irc.php:49 -#: ../../extend/addon/addon/irc/irc.php:96 -msgid "Popular Channels" -msgstr "" - -#: ../../extend/addon/addon/irc/irc.php:53 -msgid "IRC Settings" -msgstr "" - -#: ../../extend/addon/addon/irc/irc.php:69 -msgid "IRC settings saved." -msgstr "" - -#: ../../extend/addon/addon/irc/irc.php:74 -msgid "IRC Chatroom" -msgstr "" - -#: ../../extend/addon/addon/jappixmini/jappixmini.php:305 -#: ../../include/channel.php:1154 ../../include/channel.php:1317 -msgid "Status:" -msgstr "" - -#: ../../extend/addon/addon/jappixmini/jappixmini.php:309 -msgid "Activate addon" -msgstr "" - -#: ../../extend/addon/addon/jappixmini/jappixmini.php:313 -msgid "Hide Jappixmini Chat-Widget from the webinterface" -msgstr "" - -#: ../../extend/addon/addon/jappixmini/jappixmini.php:318 -msgid "Jabber username" -msgstr "" - -#: ../../extend/addon/addon/jappixmini/jappixmini.php:324 -msgid "Jabber server" -msgstr "" - -#: ../../extend/addon/addon/jappixmini/jappixmini.php:330 -msgid "Jabber BOSH host URL" -msgstr "" - -#: ../../extend/addon/addon/jappixmini/jappixmini.php:337 -msgid "Jabber password" -msgstr "" - -#: ../../extend/addon/addon/jappixmini/jappixmini.php:343 -msgid "Encrypt Jabber password with Hubzilla password" -msgstr "" - -#: ../../extend/addon/addon/jappixmini/jappixmini.php:347 -#: ../../extend/addon/addon/redred/redred.php:115 -msgid "Hubzilla password" -msgstr "" - -#: ../../extend/addon/addon/jappixmini/jappixmini.php:351 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:355 -msgid "Approve subscription requests from Hubzilla contacts automatically" -msgstr "" - -#: ../../extend/addon/addon/jappixmini/jappixmini.php:359 -msgid "Purge internal list of jabber addresses of contacts" -msgstr "" - -#: ../../extend/addon/addon/jappixmini/jappixmini.php:364 -msgid "Configuration Help" -msgstr "" - -#: ../../extend/addon/addon/jappixmini/jappixmini.php:371 -msgid "Jappix Mini Settings" -msgstr "" - -#: ../../extend/addon/addon/js_upload/js_upload.php:44 -msgid "Upload a file" -msgstr "" - -#: ../../extend/addon/addon/js_upload/js_upload.php:45 -msgid "Drop files here to upload" -msgstr "" - -#: ../../extend/addon/addon/js_upload/js_upload.php:47 -msgid "Failed" -msgstr "" - -#: ../../extend/addon/addon/js_upload/js_upload.php:315 -msgid "No files were uploaded." -msgstr "" - -#: ../../extend/addon/addon/js_upload/js_upload.php:322 -msgid "Uploaded file is empty" -msgstr "" - -#: ../../extend/addon/addon/js_upload/js_upload.php:335 -msgid "Image exceeds size limit of " -msgstr "" - -#: ../../extend/addon/addon/js_upload/js_upload.php:347 -msgid "File has an invalid extension, it should be one of " -msgstr "" - -#: ../../extend/addon/addon/js_upload/js_upload.php:359 -msgid "Upload was cancelled, or server error encountered" -msgstr "" - -#: ../../extend/addon/addon/ldapauth/ldapauth.php:61 -msgid "An account has been created for you." -msgstr "" - -#: ../../extend/addon/addon/ldapauth/ldapauth.php:68 -msgid "Authentication successful but rejected: account creation is disabled." -msgstr "" - -#: ../../extend/addon/addon/libertree/libertree.php:38 -msgid "Post to Libertree" -msgstr "" - -#: ../../extend/addon/addon/libertree/libertree.php:69 -msgid "Enable Libertree Post Plugin" -msgstr "" - -#: ../../extend/addon/addon/libertree/libertree.php:73 -msgid "Libertree API token" -msgstr "" - -#: ../../extend/addon/addon/libertree/libertree.php:77 -msgid "Libertree site URL" -msgstr "" - -#: ../../extend/addon/addon/libertree/libertree.php:81 -msgid "Post to Libertree by default" -msgstr "" - -#: ../../extend/addon/addon/libertree/libertree.php:85 -msgid "Libertree Post Settings" -msgstr "" - -#: ../../extend/addon/addon/libertree/libertree.php:99 -msgid "Libertree Settings saved." -msgstr "" - -#: ../../extend/addon/addon/ljpost/ljpost.php:42 -msgid "Post to LiveJournal" -msgstr "" - -#: ../../extend/addon/addon/ljpost/ljpost.php:70 -msgid "Enable LiveJournal Post Plugin" -msgstr "" - -#: ../../extend/addon/addon/ljpost/ljpost.php:74 -msgid "LiveJournal username" -msgstr "" - -#: ../../extend/addon/addon/ljpost/ljpost.php:78 -msgid "LiveJournal password" -msgstr "" - -#: ../../extend/addon/addon/ljpost/ljpost.php:82 -msgid "Post to LiveJournal by default" -msgstr "" - -#: ../../extend/addon/addon/ljpost/ljpost.php:86 -msgid "LiveJournal Post Settings" -msgstr "" - -#: ../../extend/addon/addon/ljpost/ljpost.php:101 -msgid "LiveJournal Settings saved." -msgstr "" - -#: ../../extend/addon/addon/logrot/logrot.php:36 -msgid "Logfile archive directory" -msgstr "" - -#: ../../extend/addon/addon/logrot/logrot.php:36 -msgid "Directory to store rotated logs" -msgstr "" - -#: ../../extend/addon/addon/logrot/logrot.php:37 -msgid "Logfile size in bytes before rotating" -msgstr "" - -#: ../../extend/addon/addon/logrot/logrot.php:38 -msgid "Number of logfiles to retain" -msgstr "" - -#: ../../extend/addon/addon/mailhost/mailhost.php:36 -msgid "Email notification hub" -msgstr "" - -#: ../../extend/addon/addon/mailhost/mailhost.php:36 -msgid "Hostname" -msgstr "" - -#: ../../extend/addon/addon/mailhost/mailhost.php:40 -msgid "Mailhost Settings" -msgstr "" - -#: ../../extend/addon/addon/mailhost/mailhost.php:54 -msgid "MAILHOST Settings saved." -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:19 -msgid "lonely" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:20 -msgid "drunk" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:21 -msgid "horny" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:22 -msgid "stoned" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:23 -msgid "fucked up" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:24 -msgid "clusterfucked" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:25 -msgid "crazy" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:26 -msgid "hurt" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:27 -msgid "sleepy" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:28 -msgid "grumpy" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:29 -msgid "high" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:30 -msgid "semi-conscious" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:31 -msgid "in love" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:32 -msgid "in lust" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:33 -msgid "naked" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:34 -msgid "stinky" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:35 -msgid "sweaty" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:36 -msgid "bleeding out" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:37 -msgid "victorious" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:38 -msgid "defeated" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:39 -msgid "envious" -msgstr "" - -#: ../../extend/addon/addon/moremoods/moremoods.php:40 -msgid "jealous" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:19 -msgid "bitchslap" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:19 -msgid "bitchslapped" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:20 -msgid "shag" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:20 -msgid "shagged" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:21 -msgid "patent" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:21 -msgid "patented" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:22 -msgid "hug" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:22 -msgid "hugged" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:23 -msgid "murder" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:23 -msgid "murdered" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:24 -msgid "worship" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:24 -msgid "worshipped" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:25 -msgid "kiss" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:25 -msgid "kissed" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:26 -msgid "tempt" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:26 -msgid "tempted" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:27 -msgid "raise eyebrows at" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:27 -msgid "raised their eyebrows at" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:28 -msgid "insult" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:28 -msgid "insulted" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:29 -msgid "praise" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:29 -msgid "praised" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:30 -msgid "be dubious of" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:30 -msgid "was dubious of" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:31 -msgid "eat" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:31 -msgid "ate" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:32 -msgid "giggle and fawn at" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:32 -msgid "giggled and fawned at" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:33 -msgid "doubt" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:33 -msgid "doubted" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:34 -msgid "glare" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:34 -msgid "glared at" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:35 -msgid "fuck" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:35 -msgid "fucked" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:36 -msgid "bonk" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:36 -msgid "bonked" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:37 -msgid "declare undying love for" -msgstr "" - -#: ../../extend/addon/addon/morepokes/morepokes.php:37 -msgid "declared undying love for" -msgstr "" - -#: ../../extend/addon/addon/msgfooter/msgfooter.php:46 -#: ../../extend/addon/addon/xmpp/xmpp.php:91 -msgid "Save Settings" -msgstr "" - -#: ../../extend/addon/addon/msgfooter/msgfooter.php:47 -msgid "text to include in all outgoing posts from this site" -msgstr "" - -#: ../../extend/addon/addon/nofed/nofed.php:42 -msgid "Federate" -msgstr "" - -#: ../../extend/addon/addon/nofed/nofed.php:56 -msgid "nofed Settings saved." -msgstr "" - -#: ../../extend/addon/addon/nofed/nofed.php:72 -msgid "Allow Federation Toggle" -msgstr "" - -#: ../../extend/addon/addon/nofed/nofed.php:76 -msgid "Federate posts by default" -msgstr "" - -#: ../../extend/addon/addon/nofed/nofed.php:80 -msgid "NoFed Settings" -msgstr "" - -#: ../../extend/addon/addon/nsabait/nsabait.php:125 -msgid "Nsabait Settings updated." -msgstr "" - -#: ../../extend/addon/addon/nsabait/nsabait.php:157 -msgid "Enable NSAbait Plugin" -msgstr "" - -#: ../../extend/addon/addon/nsabait/nsabait.php:161 -msgid "NSAbait Settings" -msgstr "" - -#: ../../extend/addon/addon/nsfw/nsfw.php:80 +#: ../../addon/nsfw/nsfw.php:80 msgid "" "This plugin looks in posts for the words/text you specify below, and " "collapses any content containing those keywords so it is not displayed at " @@ -9238,567 +8774,1249 @@ msgid "" "can thereby be used as a general purpose content filter." msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:84 +#: ../../addon/nsfw/nsfw.php:84 msgid "Enable Content filter" msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:88 +#: ../../addon/nsfw/nsfw.php:88 msgid "Comma separated list of keywords to hide" msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:88 +#: ../../addon/nsfw/nsfw.php:88 msgid "Word, /regular-expression/, lang=xx, lang!=xx" msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:92 +#: ../../addon/nsfw/nsfw.php:92 msgid "Not Safe For Work Settings" msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:92 +#: ../../addon/nsfw/nsfw.php:92 msgid "General Purpose Content Filter" msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:110 +#: ../../addon/nsfw/nsfw.php:110 msgid "NSFW Settings saved." msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:207 +#: ../../addon/nsfw/nsfw.php:207 msgid "Possible adult content" msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:211 +#: ../../addon/nsfw/nsfw.php:211 #, php-format msgid "%s - view" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:50 -#: ../../extend/addon/addon/openclipatar/openclipatar.php:128 -msgid "System defaults:" +#: ../../addon/ijpost/ijpost.php:42 +msgid "Post to Insanejournal" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:54 -msgid "Preferred Clipart IDs" +#: ../../addon/ijpost/ijpost.php:73 +msgid "Enable InsaneJournal Post Plugin" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:54 -msgid "List of preferred clipart ids. These will be shown first." +#: ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:55 -msgid "Default Search Term" +#: ../../addon/ijpost/ijpost.php:81 +msgid "InsaneJournal password" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:55 -msgid "The default search term. These will be shown second." +#: ../../addon/ijpost/ijpost.php:85 +msgid "Post to InsaneJournal by default" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:56 -msgid "Return After" +#: ../../addon/ijpost/ijpost.php:89 +msgid "InsaneJournal Post Settings" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:56 -msgid "Page to load after image selection." +#: ../../addon/ijpost/ijpost.php:104 +msgid "Insane Journal Settings saved." msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:58 -#: ../../include/nav.php:109 ../../include/channel.php:1063 -msgid "Edit Profile" +#: ../../addon/js_upload/js_upload.php:44 +msgid "Upload a file" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:59 -msgid "Profile List" +#: ../../addon/js_upload/js_upload.php:45 +msgid "Drop files here to upload" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:61 -msgid "Order of Preferred" +#: ../../addon/js_upload/js_upload.php:47 +msgid "Failed" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:61 -msgid "Sort order of preferred clipart ids." +#: ../../addon/js_upload/js_upload.php:315 +msgid "No files were uploaded." msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:62 -#: ../../extend/addon/addon/openclipatar/openclipatar.php:68 -msgid "Newest first" +#: ../../addon/js_upload/js_upload.php:322 +msgid "Uploaded file is empty" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:65 -msgid "As entered" +#: ../../addon/js_upload/js_upload.php:335 +msgid "Image exceeds size limit of " msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:67 -msgid "Order of other" +#: ../../addon/js_upload/js_upload.php:347 +msgid "File has an invalid extension, it should be one of " msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:67 -msgid "Sort order of other clipart ids." +#: ../../addon/js_upload/js_upload.php:359 +msgid "Upload was cancelled, or server error encountered" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:69 -msgid "Most downloaded first" +#: ../../addon/dwpost/dwpost.php:42 +msgid "Post to Dreamwidth" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:70 -msgid "Most liked first" +#: ../../addon/dwpost/dwpost.php:73 +msgid "Enable Dreamwidth Post Plugin" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:72 -msgid "Preferred IDs Message" +#: ../../addon/dwpost/dwpost.php:77 +msgid "Dreamwidth username" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:72 -msgid "Message to display above preferred results." +#: ../../addon/dwpost/dwpost.php:81 +msgid "Dreamwidth password" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:78 -msgid "Uploaded by: " +#: ../../addon/dwpost/dwpost.php:85 +msgid "Post to Dreamwidth by default" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:78 -msgid "Drawn by: " +#: ../../addon/dwpost/dwpost.php:89 +msgid "Dreamwidth Post Settings" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:192 -msgid "Or select from a free OpenClipart.org image:" +#: ../../addon/firefox/firefox.php:23 +msgid "Install Firefox Sharing Tools" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:195 -msgid "Search Term" +#: ../../addon/firefox/firefox.php:34 +msgid "Share content from Firefox to $Projectname" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:232 -msgid "Unknown error. Please try again later." +#: ../../addon/firefox/firefox.php:37 +msgid "Install Firefox Sharing Tools to this web browser" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:308 -msgid "Profile photo updated successfully." +#: ../../addon/dirstats/dirstats.php:94 +msgid "Hubzilla Directory Stats" msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:146 -msgid "View Larger" +#: ../../addon/dirstats/dirstats.php:95 +msgid "Total Hubs" msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:169 -msgid "Tile Server URL" +#: ../../addon/dirstats/dirstats.php:97 +msgid "Hubzilla Hubs" msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:169 +#: ../../addon/dirstats/dirstats.php:99 +msgid "Friendica Hubs" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:101 +msgid "Diaspora Pods" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:103 +msgid "Hubzilla Channels" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:105 +msgid "Friendica Channels" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:107 +msgid "Diaspora Channels" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:109 +msgid "Aged 35 and above" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:111 +msgid "Aged 34 and under" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:113 +msgid "Average Age" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:115 +msgid "Known Chatrooms" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:117 +msgid "Known Tags" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:119 msgid "" -"A list of public tile servers" +"Please note Diaspora and Friendica statistics are merely those **this " +"directory** is aware of, and not all those known in the network. This also " +"applies to chatrooms," msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:170 -msgid "Nominatim (reverse geocoding) Server URL" +#: ../../addon/mailhost/mailhost.php:36 +msgid "Email notification hub" msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:170 -msgid "" -"A list of Nominatim servers" +#: ../../addon/mailhost/mailhost.php:36 +msgid "Hostname" msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:171 -msgid "Default zoom" +#: ../../addon/mailhost/mailhost.php:40 +msgid "Mailhost Settings" msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:171 -msgid "" -"The default zoom level. (1:world, 18:highest, also depends on tile server)" +#: ../../addon/mailhost/mailhost.php:54 +msgid "MAILHOST Settings saved." msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:172 -msgid "Include marker on map" +#: ../../addon/likebanner/likebanner.php:51 +msgid "Your Webbie:" msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:172 -msgid "Include a marker on the map." +#: ../../addon/likebanner/likebanner.php:54 +msgid "Fontsize (px):" msgstr "" -#: ../../extend/addon/addon/pageheader/pageheader.php:43 -msgid "Message to display on every page on this server" +#: ../../addon/likebanner/likebanner.php:68 +msgid "Link:" msgstr "" -#: ../../extend/addon/addon/pageheader/pageheader.php:48 -msgid "Pageheader Settings" +#: ../../addon/likebanner/likebanner.php:70 +msgid "Like us on Hubzilla" msgstr "" -#: ../../extend/addon/addon/pageheader/pageheader.php:64 -msgid "pageheader Settings saved." +#: ../../addon/likebanner/likebanner.php:72 +msgid "Embed:" msgstr "" -#: ../../extend/addon/addon/piwik/piwik.php:85 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "" - -#: ../../extend/addon/addon/piwik/piwik.php:88 -#, php-format -msgid "" -"If you do not want that your visits are logged this way you can " -"set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "" - -#: ../../extend/addon/addon/piwik/piwik.php:96 -msgid "Piwik Base URL" -msgstr "" - -#: ../../extend/addon/addon/piwik/piwik.php:96 -msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" -msgstr "" - -#: ../../extend/addon/addon/piwik/piwik.php:97 -msgid "Site ID" -msgstr "" - -#: ../../extend/addon/addon/piwik/piwik.php:98 -msgid "Show opt-out cookie link?" -msgstr "" - -#: ../../extend/addon/addon/piwik/piwik.php:99 -msgid "Asynchronous tracking" -msgstr "" - -#: ../../extend/addon/addon/piwik/piwik.php:100 -msgid "Enable frontend JavaScript error tracking" -msgstr "" - -#: ../../extend/addon/addon/piwik/piwik.php:100 -msgid "This feature requires Piwik >= 2.2.0" -msgstr "" - -#: ../../extend/addon/addon/planets/planets.php:121 -msgid "Planets Settings updated." -msgstr "" - -#: ../../extend/addon/addon/planets/planets.php:149 -msgid "Enable Planets Plugin" -msgstr "" - -#: ../../extend/addon/addon/planets/planets.php:153 -msgid "Planets Settings" -msgstr "" - -#: ../../extend/addon/addon/pumpio/pumpio.php:148 -msgid "You are now authenticated to pumpio." -msgstr "" - -#: ../../extend/addon/addon/pumpio/pumpio.php:149 -msgid "return to the featured settings page" -msgstr "" - -#: ../../extend/addon/addon/pumpio/pumpio.php:163 -msgid "Post to Pump.io" -msgstr "" - -#: ../../extend/addon/addon/pumpio/pumpio.php:198 -msgid "Pump.io servername" -msgstr "" - -#: ../../extend/addon/addon/pumpio/pumpio.php:198 -msgid "Without \"http://\" or \"https://\"" -msgstr "" - -#: ../../extend/addon/addon/pumpio/pumpio.php:202 -msgid "Pump.io username" -msgstr "" - -#: ../../extend/addon/addon/pumpio/pumpio.php:202 -msgid "Without the servername" -msgstr "" - -#: ../../extend/addon/addon/pumpio/pumpio.php:213 -msgid "You are not authenticated to pumpio" -msgstr "" - -#: ../../extend/addon/addon/pumpio/pumpio.php:215 -msgid "(Re-)Authenticate your pump.io connection" -msgstr "" - -#: ../../extend/addon/addon/pumpio/pumpio.php:219 -msgid "Enable pump.io Post Plugin" -msgstr "" - -#: ../../extend/addon/addon/pumpio/pumpio.php:223 -msgid "Post to pump.io by default" -msgstr "" - -#: ../../extend/addon/addon/pumpio/pumpio.php:227 -msgid "Should posts be public" -msgstr "" - -#: ../../extend/addon/addon/pumpio/pumpio.php:231 -msgid "Mirror all public posts" -msgstr "" - -#: ../../extend/addon/addon/pumpio/pumpio.php:237 -msgid "Pump.io Post Settings" -msgstr "" - -#: ../../extend/addon/addon/pumpio/pumpio.php:266 -msgid "PumpIO Settings saved." -msgstr "" - -#: ../../extend/addon/addon/qrator/qrator.php:48 -msgid "QR code" -msgstr "" - -#: ../../extend/addon/addon/qrator/qrator.php:63 -msgid "QR Generator" -msgstr "" - -#: ../../extend/addon/addon/qrator/qrator.php:64 -msgid "Enter some text" -msgstr "" - -#: ../../extend/addon/addon/rainbowtag/rainbowtag.php:81 -msgid "Enable Rainbowtag" -msgstr "" - -#: ../../extend/addon/addon/rainbowtag/rainbowtag.php:85 -msgid "Rainbowtag Settings" -msgstr "" - -#: ../../extend/addon/addon/rainbowtag/rainbowtag.php:101 -msgid "Rainbowtag Settings saved." -msgstr "" - -#: ../../extend/addon/addon/randpost/randpost.php:97 -msgid "You're welcome." -msgstr "" - -#: ../../extend/addon/addon/randpost/randpost.php:98 -msgid "Ah shucks..." -msgstr "" - -#: ../../extend/addon/addon/randpost/randpost.php:99 -msgid "Don't mention it." -msgstr "" - -#: ../../extend/addon/addon/randpost/randpost.php:100 -msgid "<blush>" -msgstr "" - -#: ../../extend/addon/addon/redfiles/redfiles.php:119 -msgid "Redmatrix File Storage Import" -msgstr "" - -#: ../../extend/addon/addon/redfiles/redfiles.php:120 -msgid "This will import all your Redmatrix cloud files to this channel." -msgstr "" - -#: ../../extend/addon/addon/redfiles/redfiles.php:121 -#: ../../extend/addon/addon/redphotos/redphotos.php:131 -msgid "Redmatrix Server base URL" -msgstr "" - -#: ../../extend/addon/addon/redfiles/redfiles.php:122 -#: ../../extend/addon/addon/redphotos/redphotos.php:132 -msgid "Redmatrix Login Username" -msgstr "" - -#: ../../extend/addon/addon/redfiles/redfiles.php:123 -#: ../../extend/addon/addon/redphotos/redphotos.php:133 -msgid "Redmatrix Login Password" -msgstr "" - -#: ../../extend/addon/addon/redfiles/redfilehelper.php:64 -msgid "file" -msgstr "" - -#: ../../extend/addon/addon/redphotos/redphotos.php:106 +#: ../../addon/redphotos/redphotos.php:106 msgid "Photos imported" msgstr "" -#: ../../extend/addon/addon/redphotos/redphotos.php:129 +#: ../../addon/redphotos/redphotos.php:129 msgid "Redmatrix Photo Album Import" msgstr "" -#: ../../extend/addon/addon/redphotos/redphotos.php:130 +#: ../../addon/redphotos/redphotos.php:130 msgid "This will import all your Redmatrix photo albums to this channel." msgstr "" -#: ../../extend/addon/addon/redphotos/redphotos.php:134 +#: ../../addon/redphotos/redphotos.php:131 +#: ../../addon/redfiles/redfiles.php:121 +msgid "Redmatrix Server base URL" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:132 +#: ../../addon/redfiles/redfiles.php:122 +msgid "Redmatrix Login Username" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:133 +#: ../../addon/redfiles/redfiles.php:123 +msgid "Redmatrix Login Password" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:134 msgid "Import just this album" msgstr "" -#: ../../extend/addon/addon/redphotos/redphotos.php:134 +#: ../../addon/redphotos/redphotos.php:134 msgid "Leave blank to import all albums" msgstr "" -#: ../../extend/addon/addon/redphotos/redphotos.php:135 +#: ../../addon/redphotos/redphotos.php:135 msgid "Maximum count to import" msgstr "" -#: ../../extend/addon/addon/redphotos/redphotos.php:135 +#: ../../addon/redphotos/redphotos.php:135 msgid "0 or blank to import all available" msgstr "" -#: ../../extend/addon/addon/redred/redred.php:45 -msgid "Post to Red" +#: ../../addon/irc/irc.php:45 +msgid "Channels to auto connect" msgstr "" -#: ../../extend/addon/addon/redred/redred.php:60 -msgid "Channel is required." +#: ../../addon/irc/irc.php:45 ../../addon/irc/irc.php:49 +msgid "Comma separated list" msgstr "" -#: ../../extend/addon/addon/redred/redred.php:76 -msgid "redred Settings saved." +#: ../../addon/irc/irc.php:49 ../../addon/irc/irc.php:96 +msgid "Popular Channels" msgstr "" -#: ../../extend/addon/addon/redred/redred.php:95 -msgid "Allow posting to another Hubzilla Channel" +#: ../../addon/irc/irc.php:53 +msgid "IRC Settings" msgstr "" -#: ../../extend/addon/addon/redred/redred.php:99 -msgid "Send public postings to Hubzilla channel by default" +#: ../../addon/irc/irc.php:69 +msgid "IRC settings saved." msgstr "" -#: ../../extend/addon/addon/redred/redred.php:103 -msgid "Hubzilla API Path" +#: ../../addon/irc/irc.php:74 +msgid "IRC Chatroom" msgstr "" -#: ../../extend/addon/addon/redred/redred.php:103 -#: ../../extend/addon/addon/rtof/rtof.php:89 -msgid "https://{sitename}/api" +#: ../../addon/ljpost/ljpost.php:42 +msgid "Post to LiveJournal" msgstr "" -#: ../../extend/addon/addon/redred/redred.php:107 -msgid "Hubzilla login name" +#: ../../addon/ljpost/ljpost.php:70 +msgid "Enable LiveJournal Post Plugin" msgstr "" -#: ../../extend/addon/addon/redred/redred.php:111 -msgid "Hubzilla channel name" +#: ../../addon/ljpost/ljpost.php:74 +msgid "LiveJournal username" msgstr "" -#: ../../extend/addon/addon/redred/redred.php:111 -#: ../../extend/addon/addon/openid/MysqlProvider.php:54 +#: ../../addon/ljpost/ljpost.php:78 +msgid "LiveJournal password" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:82 +msgid "Post to LiveJournal by default" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:86 +msgid "LiveJournal Post Settings" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:101 +msgid "LiveJournal Settings saved." +msgstr "" + +#: ../../addon/openid/openid.php:49 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: ../../addon/openid/openid.php:49 +msgid "The error message was:" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:52 +msgid "First Name" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:53 +msgid "Last Name" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/redred.php:111 msgid "Nickname" msgstr "" -#: ../../extend/addon/addon/redred/redred.php:119 -msgid "Hubzilla Crosspost Settings" +#: ../../addon/openid/MysqlProvider.php:55 +msgid "Full Name" msgstr "" -#: ../../extend/addon/addon/rtof/rtof.php:45 -msgid "Post to Friendica" +#: ../../addon/openid/MysqlProvider.php:61 +msgid "Profile Photo 16px" msgstr "" -#: ../../extend/addon/addon/rtof/rtof.php:62 -msgid "rtof Settings saved." +#: ../../addon/openid/MysqlProvider.php:62 +msgid "Profile Photo 32px" msgstr "" -#: ../../extend/addon/addon/rtof/rtof.php:81 -msgid "Allow posting to Friendica" +#: ../../addon/openid/MysqlProvider.php:63 +msgid "Profile Photo 48px" msgstr "" -#: ../../extend/addon/addon/rtof/rtof.php:85 -msgid "Send public postings to Friendica by default" +#: ../../addon/openid/MysqlProvider.php:64 +msgid "Profile Photo 64px" msgstr "" -#: ../../extend/addon/addon/rtof/rtof.php:89 -msgid "Friendica API Path" +#: ../../addon/openid/MysqlProvider.php:65 +msgid "Profile Photo 80px" msgstr "" -#: ../../extend/addon/addon/rtof/rtof.php:93 -msgid "Friendica login name" +#: ../../addon/openid/MysqlProvider.php:66 +msgid "Profile Photo 128px" msgstr "" -#: ../../extend/addon/addon/rtof/rtof.php:97 -msgid "Friendica password" +#: ../../addon/openid/MysqlProvider.php:67 +msgid "Timezone" msgstr "" -#: ../../extend/addon/addon/rtof/rtof.php:101 -msgid "Hubzilla to Friendica Post Settings" +#: ../../addon/openid/MysqlProvider.php:70 +msgid "Birth Year" msgstr "" -#: ../../extend/addon/addon/sendzid/sendzid.php:25 -msgid "Extended Identity Sharing" +#: ../../addon/openid/MysqlProvider.php:71 +msgid "Birth Month" msgstr "" -#: ../../extend/addon/addon/sendzid/sendzid.php:26 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." +#: ../../addon/openid/MysqlProvider.php:72 +msgid "Birth Day" msgstr "" -#: ../../extend/addon/addon/skeleton/skeleton.php:59 -msgid "Some setting" +#: ../../addon/openid/MysqlProvider.php:73 +msgid "Birthdate" msgstr "" -#: ../../extend/addon/addon/skeleton/skeleton.php:61 -msgid "A setting" +#: ../../addon/openid/Mod_Openid.php:30 +msgid "OpenID protocol error. No ID returned." msgstr "" -#: ../../extend/addon/addon/skeleton/skeleton.php:64 -msgid "Skeleton Settings" +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:286 +msgid "Login failed." msgstr "" -#: ../../extend/addon/addon/smileybutton/smileybutton.php:211 -msgid "Deactivate the feature" +#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/channel.php:1332 +msgid "Male" msgstr "" -#: ../../extend/addon/addon/smileybutton/smileybutton.php:215 -msgid "Hide the button and show the smilies directly." +#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/channel.php:1330 +msgid "Female" msgstr "" -#: ../../extend/addon/addon/smileybutton/smileybutton.php:219 -msgid "Smileybutton Settings" +#: ../../addon/randpost/randpost.php:97 +msgid "You're welcome." msgstr "" -#: ../../extend/addon/addon/startpage/startpage.php:109 +#: ../../addon/randpost/randpost.php:98 +msgid "Ah shucks..." +msgstr "" + +#: ../../addon/randpost/randpost.php:99 +msgid "Don't mention it." +msgstr "" + +#: ../../addon/randpost/randpost.php:100 +msgid "<blush>" +msgstr "" + +#: ../../addon/startpage/startpage.php:109 msgid "Page to load after login" msgstr "" -#: ../../extend/addon/addon/startpage/startpage.php:109 +#: ../../addon/startpage/startpage.php:109 msgid "" "Examples: "apps", "network?f=&gid=37" (privacy " "collection), "channel" or "notifications/system" (leave " "blank for default network page (grid)." msgstr "" -#: ../../extend/addon/addon/startpage/startpage.php:113 +#: ../../addon/startpage/startpage.php:113 msgid "Startpage Settings" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:143 +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "patent" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "patented" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "hug" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "hugged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "murder" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "murdered" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "worship" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "worshipped" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "kiss" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "kissed" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempt" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "raise eyebrows at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "raised their eyebrows at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "insult" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "insulted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "praise" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "praised" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "be dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "was dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "eat" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "ate" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggle and fawn at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggled and fawned at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubt" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "glare" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "glared at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "fuck" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "fucked" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonk" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonked" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:37 +msgid "declare undying love for" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:37 +msgid "declared undying love for" +msgstr "" + +#: ../../addon/diaspora/diaspora.php:715 +msgid "Diaspora Protocol Settings updated." +msgstr "" + +#: ../../addon/diaspora/diaspora.php:734 +msgid "" +"The Diaspora protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "" + +#: ../../addon/diaspora/diaspora.php:737 +msgid "Enable the Diaspora protocol for this channel" +msgstr "" + +#: ../../addon/diaspora/diaspora.php:741 +msgid "Allow any Diaspora member to comment on your public posts" +msgstr "" + +#: ../../addon/diaspora/diaspora.php:745 +msgid "Prevent your hashtags from being redirected to other sites" +msgstr "" + +#: ../../addon/diaspora/diaspora.php:749 +msgid "Sign and forward posts and comments with no existing Diaspora signature" +msgstr "" + +#: ../../addon/diaspora/diaspora.php:754 +msgid "Followed hashtags (comma separated, do not include the #)" +msgstr "" + +#: ../../addon/diaspora/diaspora.php:759 +msgid "Diaspora Protocol Settings" +msgstr "" + +#: ../../addon/diaspora/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "" + +#: ../../addon/diaspora/import_diaspora.php:41 ../../include/import.php:62 +msgid "Unable to create a unique channel address. Import failed." +msgstr "" + +#: ../../addon/gitwiki/Mod_Gitwiki.php:107 +msgid "Error retrieving wiki" +msgstr "" + +#: ../../addon/gitwiki/Mod_Gitwiki.php:114 +msgid "Error creating zip file export folder" +msgstr "" + +#: ../../addon/gitwiki/Mod_Gitwiki.php:132 +msgid "Error downloading wiki: " +msgstr "" + +#: ../../addon/testdrive/testdrive.php:104 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "" + +#: ../../addon/testdrive/testdrive.php:105 +msgid "Your $Productname test account is about to expire." +msgstr "" + +#: ../../addon/rainbowtag/rainbowtag.php:81 +msgid "Enable Rainbowtag" +msgstr "" + +#: ../../addon/rainbowtag/rainbowtag.php:85 +msgid "Rainbowtag Settings" +msgstr "" + +#: ../../addon/rainbowtag/rainbowtag.php:101 +msgid "Rainbowtag Settings saved." +msgstr "" + +#: ../../addon/upload_limits/upload_limits.php:25 +msgid "Show Upload Limits" +msgstr "" + +#: ../../addon/upload_limits/upload_limits.php:27 +msgid "Hubzilla configured maximum size: " +msgstr "" + +#: ../../addon/upload_limits/upload_limits.php:28 +msgid "PHP upload_max_filesize: " +msgstr "" + +#: ../../addon/upload_limits/upload_limits.php:29 +msgid "PHP post_max_size (must be larger than upload_max_filesize): " +msgstr "" + +#: ../../addon/visage/visage.php:93 +msgid "Recent Channel/Profile Viewers" +msgstr "" + +#: ../../addon/visage/visage.php:98 +msgid "This plugin/addon has not been configured." +msgstr "" + +#: ../../addon/visage/visage.php:99 +#, php-format +msgid "Please visit the Visage settings on %s" +msgstr "" + +#: ../../addon/visage/visage.php:99 +msgid "your feature settings page" +msgstr "" + +#: ../../addon/visage/visage.php:112 +msgid "No entries." +msgstr "" + +#: ../../addon/visage/visage.php:166 +msgid "Enable Visage Visitor Logging" +msgstr "" + +#: ../../addon/visage/visage.php:170 +msgid "Visage Settings" +msgstr "" + +#: ../../addon/nsabait/nsabait.php:125 +msgid "Nsabait Settings updated." +msgstr "" + +#: ../../addon/nsabait/nsabait.php:157 +msgid "Enable NSAbait Plugin" +msgstr "" + +#: ../../addon/nsabait/nsabait.php:161 +msgid "NSAbait Settings" +msgstr "" + +#: ../../addon/mailtest/mailtest.php:19 +msgid "Send test email" +msgstr "" + +#: ../../addon/mailtest/mailtest.php:50 ../../addon/hubwall/hubwall.php:50 +msgid "No recipients found." +msgstr "" + +#: ../../addon/mailtest/mailtest.php:66 +msgid "Mail sent." +msgstr "" + +#: ../../addon/mailtest/mailtest.php:68 +msgid "Sending of mail failed." +msgstr "" + +#: ../../addon/mailtest/mailtest.php:77 +msgid "Mail Test" +msgstr "" + +#: ../../addon/mailtest/mailtest.php:96 ../../addon/hubwall/hubwall.php:92 +msgid "Message subject" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:146 +msgid "View Larger" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:169 +msgid "Tile Server URL" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:169 +msgid "" +"A list of public tile servers" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "Nominatim (reverse geocoding) Server URL" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "" +"A list of Nominatim servers" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "Default zoom" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Include marker on map" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Include a marker on the map." +msgstr "" + +#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 +msgid "Save Settings" +msgstr "" + +#: ../../addon/msgfooter/msgfooter.php:47 +msgid "text to include in all outgoing posts from this site" +msgstr "" + +#: ../../addon/rtof/rtof.php:45 +msgid "Post to Friendica" +msgstr "" + +#: ../../addon/rtof/rtof.php:62 +msgid "rtof Settings saved." +msgstr "" + +#: ../../addon/rtof/rtof.php:81 +msgid "Allow posting to Friendica" +msgstr "" + +#: ../../addon/rtof/rtof.php:85 +msgid "Send public postings to Friendica by default" +msgstr "" + +#: ../../addon/rtof/rtof.php:89 +msgid "Friendica API Path" +msgstr "" + +#: ../../addon/rtof/rtof.php:89 ../../addon/redred/redred.php:103 +msgid "https://{sitename}/api" +msgstr "" + +#: ../../addon/rtof/rtof.php:93 +msgid "Friendica login name" +msgstr "" + +#: ../../addon/rtof/rtof.php:97 +msgid "Friendica password" +msgstr "" + +#: ../../addon/rtof/rtof.php:101 +msgid "Hubzilla to Friendica Post Settings" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1256 +#: ../../include/channel.php:1419 +msgid "Status:" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:309 +msgid "Activate addon" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:313 +msgid "Hide Jappixmini Chat-Widget from the webinterface" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:318 +msgid "Jabber username" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:324 +msgid "Jabber server" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:330 +msgid "Jabber BOSH host URL" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:337 +msgid "Jabber password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:343 +msgid "Encrypt Jabber password with Hubzilla password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:347 ../../addon/redred/redred.php:115 +msgid "Hubzilla password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +msgid "Approve subscription requests from Hubzilla contacts automatically" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:359 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:364 +msgid "Configuration Help" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:371 +msgid "Jappix Mini Settings" +msgstr "" + +#: ../../addon/superblock/superblock.php:112 +msgid "Currently blocked" +msgstr "" + +#: ../../addon/superblock/superblock.php:114 +msgid "No channels currently blocked" +msgstr "" + +#: ../../addon/superblock/superblock.php:120 +msgid "\"Superblock\" Settings" +msgstr "" + +#: ../../addon/superblock/superblock.php:345 +msgid "Block Completely" +msgstr "" + +#: ../../addon/superblock/superblock.php:394 +msgid "superblock settings updated" +msgstr "" + +#: ../../addon/nofed/nofed.php:42 +msgid "Federate" +msgstr "" + +#: ../../addon/nofed/nofed.php:56 +msgid "nofed Settings saved." +msgstr "" + +#: ../../addon/nofed/nofed.php:72 +msgid "Allow Federation Toggle" +msgstr "" + +#: ../../addon/nofed/nofed.php:76 +msgid "Federate posts by default" +msgstr "" + +#: ../../addon/nofed/nofed.php:80 +msgid "NoFed Settings" +msgstr "" + +#: ../../addon/redred/redred.php:45 +msgid "Post to Red" +msgstr "" + +#: ../../addon/redred/redred.php:60 +msgid "Channel is required." +msgstr "" + +#: ../../addon/redred/redred.php:76 +msgid "redred Settings saved." +msgstr "" + +#: ../../addon/redred/redred.php:95 +msgid "Allow posting to another Hubzilla Channel" +msgstr "" + +#: ../../addon/redred/redred.php:99 +msgid "Send public postings to Hubzilla channel by default" +msgstr "" + +#: ../../addon/redred/redred.php:103 +msgid "Hubzilla API Path" +msgstr "" + +#: ../../addon/redred/redred.php:107 +msgid "Hubzilla login name" +msgstr "" + +#: ../../addon/redred/redred.php:111 +msgid "Hubzilla channel name" +msgstr "" + +#: ../../addon/redred/redred.php:119 +msgid "Hubzilla Crosspost Settings" +msgstr "" + +#: ../../addon/logrot/logrot.php:36 +msgid "Logfile archive directory" +msgstr "" + +#: ../../addon/logrot/logrot.php:36 +msgid "Directory to store rotated logs" +msgstr "" + +#: ../../addon/logrot/logrot.php:37 +msgid "Logfile size in bytes before rotating" +msgstr "" + +#: ../../addon/logrot/logrot.php:38 +msgid "Number of logfiles to retain" +msgstr "" + +#: ../../addon/frphotos/frphotos.php:91 +msgid "Friendica Photo Album Import" +msgstr "" + +#: ../../addon/frphotos/frphotos.php:92 +msgid "This will import all your Friendica photo albums to this Red channel." +msgstr "" + +#: ../../addon/frphotos/frphotos.php:93 +msgid "Friendica Server base URL" +msgstr "" + +#: ../../addon/frphotos/frphotos.php:94 +msgid "Friendica Login Username" +msgstr "" + +#: ../../addon/frphotos/frphotos.php:95 +msgid "Friendica Login Password" +msgstr "" + +#: ../../addon/donate/donate.php:21 +msgid "Project Servers and Resources" +msgstr "" + +#: ../../addon/donate/donate.php:22 +msgid "Project Creator and Tech Lead" +msgstr "" + +#: ../../addon/donate/donate.php:23 +msgid "Admin, developer, directorymin, support bloke" +msgstr "" + +#: ../../addon/donate/donate.php:50 +msgid "" +"And the hundreds of other people and organisations who helped make the " +"Hubzilla possible." +msgstr "" + +#: ../../addon/donate/donate.php:53 +msgid "" +"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " +"their time and expertise - and often paying out of pocket for services they " +"share with others." +msgstr "" + +#: ../../addon/donate/donate.php:54 +msgid "" +"There is no corporate funding and no ads, and we do not collect and sell " +"your personal information. (We don't control your personal information - " +"you do.)" +msgstr "" + +#: ../../addon/donate/donate.php:55 +msgid "" +"Help support our ground-breaking work in decentralisation, web identity, and " +"privacy." +msgstr "" + +#: ../../addon/donate/donate.php:57 +msgid "" +"Your donations keep servers and services running and also helps us to " +"provide innovative new features and continued development." +msgstr "" + +#: ../../addon/donate/donate.php:60 +msgid "Donate" +msgstr "" + +#: ../../addon/donate/donate.php:62 +msgid "" +"Choose a project, developer, or public hub to support with a one-time " +"donation" +msgstr "" + +#: ../../addon/donate/donate.php:63 +msgid "Donate Now" +msgstr "" + +#: ../../addon/donate/donate.php:64 +msgid "" +"Or become a project sponsor (Hubzilla Project only)" +msgstr "" + +#: ../../addon/donate/donate.php:65 +msgid "" +"Please indicate if you would like your first name or full name (or nothing) " +"to appear in our sponsor listing" +msgstr "" + +#: ../../addon/donate/donate.php:66 +msgid "Sponsor" +msgstr "" + +#: ../../addon/donate/donate.php:69 +msgid "Special thanks to: " +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:44 +msgid "" +"This is a fairly comprehensive and complete guitar chord dictionary which " +"will list most of the available ways to play a certain chord, starting from " +"the base of the fingerboard up to a few frets beyond the twelfth fret " +"(beyond which everything repeats). A couple of non-standard tunings are " +"provided for the benefit of slide players, etc." +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:46 +msgid "" +"Chord names start with a root note (A-G) and may include sharps (#) and " +"flats (b). This software will parse most of the standard naming conventions " +"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:48 +msgid "" +"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " +"E7b13b11 ..." +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:51 +msgid "Guitar Chords" +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:52 +msgid "The complete online chord dictionary" +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:57 +msgid "Tuning" +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:58 +msgid "Chord name: example: Em7" +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:59 +msgid "Show for left handed stringing" +msgstr "" + +#: ../../addon/chords/chords.php:33 +msgid "Quick Reference" +msgstr "" + +#: ../../addon/libertree/libertree.php:38 +msgid "Post to Libertree" +msgstr "" + +#: ../../addon/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" +msgstr "" + +#: ../../addon/libertree/libertree.php:73 +msgid "Libertree API token" +msgstr "" + +#: ../../addon/libertree/libertree.php:77 +msgid "Libertree site URL" +msgstr "" + +#: ../../addon/libertree/libertree.php:81 +msgid "Post to Libertree by default" +msgstr "" + +#: ../../addon/libertree/libertree.php:85 +msgid "Libertree Post Settings" +msgstr "" + +#: ../../addon/libertree/libertree.php:99 +msgid "Libertree Settings saved." +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:45 +msgid "Flattr this!" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:83 +msgid "Flattr widget settings updated." +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:100 +msgid "Flattr user" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:104 +msgid "URL of the Thing to flattr" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:104 +msgid "If empty channel URL is used" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:108 +msgid "Title of the Thing to flattr" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:108 +msgid "If empty \"channel name on The Hubzilla\" will be used" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "Static or dynamic flattr button" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "static" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "dynamic" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "Alignment of the widget" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "left" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "right" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:120 +msgid "Enable Flattr widget" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:124 +msgid "Flattr Widget Settings" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:143 msgid "Post to GNU social" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:195 +#: ../../addon/statusnet/statusnet.php:195 msgid "" "Please contact your site administrator.
The provided API URL is not " "valid." msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:232 +#: ../../addon/statusnet/statusnet.php:232 msgid "We could not contact the GNU social API with the Path you entered." msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:266 +#: ../../addon/statusnet/statusnet.php:266 msgid "GNU social settings updated." msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:310 +#: ../../addon/statusnet/statusnet.php:310 msgid "Globally Available GNU social OAuthKeys" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:312 +#: ../../addon/statusnet/statusnet.php:312 msgid "" "There are preconfigured OAuth key pairs for some GNU social servers " "available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:327 +#: ../../addon/statusnet/statusnet.php:327 msgid "Provide your own OAuth Credentials" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:329 +#: ../../addon/statusnet/statusnet.php:329 msgid "" "No consumer key pair for GNU social found. Register your Hubzilla Account as " "an desktop client on your GNU social account, copy the consumer key pair " @@ -9807,27 +10025,27 @@ msgid "" "Hubzilla installation at your favourite GNU social installation." msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:333 +#: ../../addon/statusnet/statusnet.php:333 msgid "OAuth Consumer Key" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:337 +#: ../../addon/statusnet/statusnet.php:337 msgid "OAuth Consumer Secret" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:341 +#: ../../addon/statusnet/statusnet.php:341 msgid "Base API Path" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:341 +#: ../../addon/statusnet/statusnet.php:341 msgid "Remember the trailing /" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:345 +#: ../../addon/statusnet/statusnet.php:345 msgid "GNU social application name" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:368 +#: ../../addon/statusnet/statusnet.php:368 msgid "" "To connect to your GNU social account click the button below to get a " "security code from GNU social which you have to copy into the input box " @@ -9835,32 +10053,31 @@ msgid "" "posted to GNU social." msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:370 +#: ../../addon/statusnet/statusnet.php:370 msgid "Log in with GNU social" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:373 +#: ../../addon/statusnet/statusnet.php:373 msgid "Copy the security code from GNU social here" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:383 +#: ../../addon/statusnet/statusnet.php:383 msgid "Cancel Connection Process" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:385 +#: ../../addon/statusnet/statusnet.php:385 msgid "Current GNU social API is" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:389 msgid "Cancel GNU social Connection" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:401 -#: ../../extend/addon/addon/twitter/twitter.php:232 +#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:232 msgid "Currently connected to: " msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:406 +#: ../../addon/statusnet/statusnet.php:406 msgid "" "Note: Due your privacy settings (Hide your profile " "details from unknown viewers?) the link potentially included in public " @@ -9868,300 +10085,109 @@ msgid "" "informing the visitor that the access to your profile has been restricted." msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:411 msgid "Allow posting to GNU social" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:411 msgid "" "If enabled your public postings can be posted to the associated GNU-social " "account" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:415 msgid "Post to GNU social by default" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:415 msgid "" "If enabled your public postings will be posted to the associated GNU-social " "account by default" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:424 -#: ../../extend/addon/addon/twitter/twitter.php:255 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:255 msgid "Clear OAuth configuration" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:432 +#: ../../addon/statusnet/statusnet.php:432 msgid "GNU social Post Settings" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:891 +#: ../../addon/statusnet/statusnet.php:891 msgid "API URL" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:894 +#: ../../addon/statusnet/statusnet.php:894 msgid "Application name" msgstr "" -#: ../../extend/addon/addon/superblock/superblock.php:112 -msgid "Currently blocked" +#: ../../addon/qrator/qrator.php:48 +msgid "QR code" msgstr "" -#: ../../extend/addon/addon/superblock/superblock.php:114 -msgid "No channels currently blocked" +#: ../../addon/qrator/qrator.php:63 +msgid "QR Generator" msgstr "" -#: ../../extend/addon/addon/superblock/superblock.php:120 -msgid "\"Superblock\" Settings" +#: ../../addon/qrator/qrator.php:64 +msgid "Enter some text" msgstr "" -#: ../../extend/addon/addon/superblock/superblock.php:345 -msgid "Block Completely" +#: ../../addon/chess/chess.php:276 ../../addon/chess/chess.php:433 +msgid "Invalid game." msgstr "" -#: ../../extend/addon/addon/superblock/superblock.php:394 -msgid "superblock settings updated" +#: ../../addon/chess/chess.php:282 ../../addon/chess/chess.php:439 +msgid "You are not a player in this game." msgstr "" -#: ../../extend/addon/addon/testdrive/testdrive.php:104 -#, php-format -msgid "Your account on %s will expire in a few days." +#: ../../addon/chess/chess.php:315 +msgid "You must be a local channel to create a game." msgstr "" -#: ../../extend/addon/addon/testdrive/testdrive.php:105 -msgid "Your $Productname test account is about to expire." +#: ../../addon/chess/chess.php:333 +msgid "You must select one opponent that is not yourself." msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:21 -msgid "Three Dimensional Tic-Tac-Toe" +#: ../../addon/chess/chess.php:336 +msgid "Creating new game..." msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:54 -msgid "3D Tic-Tac-Toe" +#: ../../addon/chess/chess.php:342 +msgid "You must select white or black." msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:59 -msgid "New game" +#: ../../addon/chess/chess.php:349 +msgid "Error creating new game." msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:60 -msgid "New game with handicap" +#: ../../addon/chess/chess.php:381 ../../include/channel.php:1016 +msgid "Requested channel is not available." msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:61 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " +#: ../../addon/chess/chess.php:395 +msgid "You must select a local channel /chess/channelname" msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:62 -msgid "" -"In this case there are three levels. You win by getting three in a row on " -"any level, as well as up, down, and diagonally across the different levels." +#: ../../addon/chess/chess.php:923 +msgid "Enable notifications" msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:64 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." -msgstr "" - -#: ../../extend/addon/addon/tictac/tictac.php:183 -msgid "You go first..." -msgstr "" - -#: ../../extend/addon/addon/tictac/tictac.php:188 -msgid "I'm going first this time..." -msgstr "" - -#: ../../extend/addon/addon/tictac/tictac.php:194 -msgid "You won!" -msgstr "" - -#: ../../extend/addon/addon/tictac/tictac.php:200 -#: ../../extend/addon/addon/tictac/tictac.php:225 -msgid "\"Cat\" game!" -msgstr "" - -#: ../../extend/addon/addon/tictac/tictac.php:223 -msgid "I won!" -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:75 -msgid "Edit your profile and change settings." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:76 -msgid "Click here to see activity from your connections." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:77 -msgid "Click here to see your channel home." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:78 -msgid "You can access your private messages from here." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:79 -msgid "Create new events here." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:80 -msgid "" -"You can accept new connections and change permissions for existing ones " -"here. You can also e.g. create groups of contacts." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:81 -msgid "System notifications will arrive here" -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:82 -msgid "Search for content and users" -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:83 -msgid "Browse for new contacts" -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:84 -msgid "Launch installed apps" -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:85 -msgid "Looking for help? Click here." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:86 -msgid "" -"New events have occurred in your network. Click here to see what has " -"happened!" -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:87 -msgid "You have received a new private message. Click here to see from who!" -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:88 -msgid "There are events this week. Click here too see which!" -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:89 -msgid "You have received a new introduction. Click here to see who!" -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:90 -msgid "" -"There is a new system notification. Click here to see what has happened!" -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:93 -msgid "Click here to share text, images, videos and sound." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:94 -msgid "You can write an optional title for your update (good for long posts)." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:95 -msgid "Entering some categories here makes it easier to find your post later." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:96 -msgid "Share photos, links, location, etc." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:97 -msgid "" -"Only want to share content for a while? Make it expire at a certain date." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:98 -msgid "You can password protect content." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:99 -msgid "Choose who you share with." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:101 -msgid "Click here when you are done." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:104 -msgid "Adjust from which channels posts should be displayed." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:105 -msgid "Only show posts from channels in the specified privacy group." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:109 -msgid "" -"Easily find posts containing tags (keywords preceded by the \"#\" symbol)." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:110 -msgid "Easily find posts in given category." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:111 -msgid "Easily find posts by date." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:112 -msgid "" -"Suggested users who have volounteered to be shown as suggestions, and who we " -"think you might find interesting." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:113 -msgid "Here you see channels you have connected to." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:114 -msgid "Save your search so you can repeat it at a later date." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:117 -msgid "" -"If you see this icon you can be sure that the sender is who it say it is. It " -"is normal that it is not always possible to verify the sender, so the icon " -"will be missing sometimes. There is usually no need to worry about that." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:118 -msgid "" -"Danger! It seems someone tried to forge a message! This message is not " -"necessarily from who it says it is from!" -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:125 -msgid "" -"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " -"pause it at any time and continue where you left off by reloading the page, " -"or navigting to another page.

You can also advance by pressing the " -"return key" -msgstr "" - -#: ../../extend/addon/addon/twitter/twitter.php:99 +#: ../../addon/twitter/twitter.php:99 msgid "Post to Twitter" msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:154 +#: ../../addon/twitter/twitter.php:154 msgid "Twitter settings updated." msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:183 +#: ../../addon/twitter/twitter.php:183 msgid "" "No consumer key pair for Twitter found. Please contact your site " "administrator." msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:205 +#: ../../addon/twitter/twitter.php:205 msgid "" "At this Hubzilla instance the Twitter plugin was enabled but you have not " "yet connected your account to your Twitter account. To do so click the " @@ -10170,15 +10196,15 @@ msgid "" "be posted to Twitter." msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:207 +#: ../../addon/twitter/twitter.php:207 msgid "Log in with Twitter" msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:210 +#: ../../addon/twitter/twitter.php:210 msgid "Copy the PIN from Twitter here" msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:237 +#: ../../addon/twitter/twitter.php:237 msgid "" "Note: Due your privacy settings (Hide your profile " "details from unknown viewers?) the link potentially included in public " @@ -10186,615 +10212,1144 @@ msgid "" "the visitor that the access to your profile has been restricted." msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:242 +#: ../../addon/twitter/twitter.php:242 msgid "Allow posting to Twitter" msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:242 +#: ../../addon/twitter/twitter.php:242 msgid "" "If enabled your public postings can be posted to the associated Twitter " "account" msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:246 +#: ../../addon/twitter/twitter.php:246 msgid "Send public postings to Twitter by default" msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:246 +#: ../../addon/twitter/twitter.php:246 msgid "" "If enabled your public postings will be posted to the associated Twitter " "account by default" msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:264 +#: ../../addon/twitter/twitter.php:264 msgid "Twitter Post Settings" msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:773 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:95 -msgid "Submit Settings" +#: ../../addon/smileybutton/smileybutton.php:211 +msgid "Deactivate the feature" msgstr "" -#: ../../extend/addon/addon/upload_limits/upload_limits.php:25 -msgid "Show Upload Limits" +#: ../../addon/smileybutton/smileybutton.php:215 +msgid "Hide the button and show the smilies directly." msgstr "" -#: ../../extend/addon/addon/upload_limits/upload_limits.php:27 -msgid "Hubzilla configured maximum size: " +#: ../../addon/smileybutton/smileybutton.php:219 +msgid "Smileybutton Settings" msgstr "" -#: ../../extend/addon/addon/upload_limits/upload_limits.php:28 -msgid "PHP upload_max_filesize: " +#: ../../addon/piwik/piwik.php:85 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." msgstr "" -#: ../../extend/addon/addon/upload_limits/upload_limits.php:29 -msgid "PHP post_max_size (must be larger than upload_max_filesize): " -msgstr "" - -#: ../../extend/addon/addon/visage/visage.php:93 -msgid "Recent Channel/Profile Viewers" -msgstr "" - -#: ../../extend/addon/addon/visage/visage.php:98 -msgid "This plugin/addon has not been configured." -msgstr "" - -#: ../../extend/addon/addon/visage/visage.php:99 +#: ../../addon/piwik/piwik.php:88 #, php-format -msgid "Please visit the Visage settings on %s" +msgid "" +"If you do not want that your visits are logged this way you can " +"set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." msgstr "" -#: ../../extend/addon/addon/visage/visage.php:99 -msgid "your feature settings page" +#: ../../addon/piwik/piwik.php:96 +msgid "Piwik Base URL" msgstr "" -#: ../../extend/addon/addon/visage/visage.php:112 -msgid "No entries." +#: ../../addon/piwik/piwik.php:96 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" msgstr "" -#: ../../extend/addon/addon/visage/visage.php:166 -msgid "Enable Visage Visitor Logging" +#: ../../addon/piwik/piwik.php:97 +msgid "Site ID" msgstr "" -#: ../../extend/addon/addon/visage/visage.php:170 -msgid "Visage Settings" +#: ../../addon/piwik/piwik.php:98 +msgid "Show opt-out cookie link?" msgstr "" -#: ../../extend/addon/addon/wholikesme/wholikesme.php:29 -msgid "Who likes me?" +#: ../../addon/piwik/piwik.php:99 +msgid "Asynchronous tracking" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:45 -msgid "Post to WordPress" +#: ../../addon/piwik/piwik.php:100 +msgid "Enable frontend JavaScript error tracking" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:82 -msgid "Enable WordPress Post Plugin" +#: ../../addon/piwik/piwik.php:100 +msgid "This feature requires Piwik >= 2.2.0" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:86 -msgid "WordPress username" +#: ../../addon/tour/tour.php:75 +msgid "Edit your profile and change settings." msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:90 -msgid "WordPress password" +#: ../../addon/tour/tour.php:76 +msgid "Click here to see activity from your connections." msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:94 -msgid "WordPress API URL" +#: ../../addon/tour/tour.php:77 +msgid "Click here to see your channel home." msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:95 -msgid "Typically https://your-blog.tld/xmlrpc.php" +#: ../../addon/tour/tour.php:78 +msgid "You can access your private messages from here." msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:98 -msgid "WordPress blogid" +#: ../../addon/tour/tour.php:79 +msgid "Create new events here." msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:99 -msgid "For multi-user sites such as wordpress.com, otherwise leave blank" +#: ../../addon/tour/tour.php:80 +msgid "" +"You can accept new connections and change permissions for existing ones " +"here. You can also e.g. create groups of contacts." msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:105 -msgid "Post to WordPress by default" +#: ../../addon/tour/tour.php:81 +msgid "System notifications will arrive here" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:109 -msgid "Forward comments (requires hubzilla_wp plugin)" +#: ../../addon/tour/tour.php:82 +msgid "Search for content and users" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:113 -msgid "WordPress Post Settings" +#: ../../addon/tour/tour.php:83 +msgid "Browse for new contacts" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:129 -msgid "Wordpress Settings saved." +#: ../../addon/tour/tour.php:84 +msgid "Launch installed apps" msgstr "" -#: ../../extend/addon/addon/xmpp/xmpp.php:31 +#: ../../addon/tour/tour.php:85 +msgid "Looking for help? Click here." +msgstr "" + +#: ../../addon/tour/tour.php:86 +msgid "" +"New events have occurred in your network. Click here to see what has " +"happened!" +msgstr "" + +#: ../../addon/tour/tour.php:87 +msgid "You have received a new private message. Click here to see from who!" +msgstr "" + +#: ../../addon/tour/tour.php:88 +msgid "There are events this week. Click here too see which!" +msgstr "" + +#: ../../addon/tour/tour.php:89 +msgid "You have received a new introduction. Click here to see who!" +msgstr "" + +#: ../../addon/tour/tour.php:90 +msgid "" +"There is a new system notification. Click here to see what has happened!" +msgstr "" + +#: ../../addon/tour/tour.php:93 +msgid "Click here to share text, images, videos and sound." +msgstr "" + +#: ../../addon/tour/tour.php:94 +msgid "You can write an optional title for your update (good for long posts)." +msgstr "" + +#: ../../addon/tour/tour.php:95 +msgid "Entering some categories here makes it easier to find your post later." +msgstr "" + +#: ../../addon/tour/tour.php:96 +msgid "Share photos, links, location, etc." +msgstr "" + +#: ../../addon/tour/tour.php:97 +msgid "" +"Only want to share content for a while? Make it expire at a certain date." +msgstr "" + +#: ../../addon/tour/tour.php:98 +msgid "You can password protect content." +msgstr "" + +#: ../../addon/tour/tour.php:99 +msgid "Choose who you share with." +msgstr "" + +#: ../../addon/tour/tour.php:101 +msgid "Click here when you are done." +msgstr "" + +#: ../../addon/tour/tour.php:104 +msgid "Adjust from which channels posts should be displayed." +msgstr "" + +#: ../../addon/tour/tour.php:105 +msgid "Only show posts from channels in the specified privacy group." +msgstr "" + +#: ../../addon/tour/tour.php:109 +msgid "" +"Easily find posts containing tags (keywords preceded by the \"#\" symbol)." +msgstr "" + +#: ../../addon/tour/tour.php:110 +msgid "Easily find posts in given category." +msgstr "" + +#: ../../addon/tour/tour.php:111 +msgid "Easily find posts by date." +msgstr "" + +#: ../../addon/tour/tour.php:112 +msgid "" +"Suggested users who have volounteered to be shown as suggestions, and who we " +"think you might find interesting." +msgstr "" + +#: ../../addon/tour/tour.php:113 +msgid "Here you see channels you have connected to." +msgstr "" + +#: ../../addon/tour/tour.php:114 +msgid "Save your search so you can repeat it at a later date." +msgstr "" + +#: ../../addon/tour/tour.php:117 +msgid "" +"If you see this icon you can be sure that the sender is who it say it is. It " +"is normal that it is not always possible to verify the sender, so the icon " +"will be missing sometimes. There is usually no need to worry about that." +msgstr "" + +#: ../../addon/tour/tour.php:118 +msgid "" +"Danger! It seems someone tried to forge a message! This message is not " +"necessarily from who it says it is from!" +msgstr "" + +#: ../../addon/tour/tour.php:125 +msgid "" +"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " +"pause it at any time and continue where you left off by reloading the page, " +"or navigting to another page.

You can also advance by pressing the " +"return key" +msgstr "" + +#: ../../addon/sendzid/sendzid.php:25 +msgid "Extended Identity Sharing" +msgstr "" + +#: ../../addon/sendzid/sendzid.php:26 +msgid "" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with sites in the matrix." +msgstr "" + +#: ../../addon/tictac/tictac.php:21 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "" + +#: ../../addon/tictac/tictac.php:54 +msgid "3D Tic-Tac-Toe" +msgstr "" + +#: ../../addon/tictac/tictac.php:59 +msgid "New game" +msgstr "" + +#: ../../addon/tictac/tictac.php:60 +msgid "New game with handicap" +msgstr "" + +#: ../../addon/tictac/tictac.php:61 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " +msgstr "" + +#: ../../addon/tictac/tictac.php:62 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." +msgstr "" + +#: ../../addon/tictac/tictac.php:64 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "" + +#: ../../addon/tictac/tictac.php:183 +msgid "You go first..." +msgstr "" + +#: ../../addon/tictac/tictac.php:188 +msgid "I'm going first this time..." +msgstr "" + +#: ../../addon/tictac/tictac.php:194 +msgid "You won!" +msgstr "" + +#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 +msgid "\"Cat\" game!" +msgstr "" + +#: ../../addon/tictac/tictac.php:223 +msgid "I won!" +msgstr "" + +#: ../../addon/pageheader/pageheader.php:43 +msgid "Message to display on every page on this server" +msgstr "" + +#: ../../addon/pageheader/pageheader.php:48 +msgid "Pageheader Settings" +msgstr "" + +#: ../../addon/pageheader/pageheader.php:64 +msgid "pageheader Settings saved." +msgstr "" + +#: ../../addon/authchoose/authchoose.php:67 +msgid "Only authenticate automatically to sites of your friends" +msgstr "" + +#: ../../addon/authchoose/authchoose.php:67 +msgid "By default you are automatically authenticated anywhere in the network" +msgstr "" + +#: ../../addon/authchoose/authchoose.php:71 +msgid "Authchoose Settings" +msgstr "" + +#: ../../addon/authchoose/authchoose.php:85 +msgid "Atuhchoose Settings updated." +msgstr "" + +#: ../../addon/moremoods/moremoods.php:19 +msgid "lonely" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:20 +msgid "drunk" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:21 +msgid "horny" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:22 +msgid "stoned" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:23 +msgid "fucked up" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:24 +msgid "clusterfucked" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:25 +msgid "crazy" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:26 +msgid "hurt" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:27 +msgid "sleepy" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:28 +msgid "grumpy" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:29 +msgid "high" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:30 +msgid "semi-conscious" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:31 +msgid "in love" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:32 +msgid "in lust" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:33 +msgid "naked" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:34 +msgid "stinky" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:35 +msgid "sweaty" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:36 +msgid "bleeding out" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:37 +msgid "victorious" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:38 +msgid "defeated" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:39 +msgid "envious" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:40 +msgid "jealous" +msgstr "" + +#: ../../addon/xmpp/xmpp.php:31 msgid "XMPP settings updated." msgstr "" -#: ../../extend/addon/addon/xmpp/xmpp.php:53 +#: ../../addon/xmpp/xmpp.php:53 msgid "Enable Chat" msgstr "" -#: ../../extend/addon/addon/xmpp/xmpp.php:58 +#: ../../addon/xmpp/xmpp.php:58 msgid "Individual credentials" msgstr "" -#: ../../extend/addon/addon/xmpp/xmpp.php:64 +#: ../../addon/xmpp/xmpp.php:64 msgid "Jabber BOSH server" msgstr "" -#: ../../extend/addon/addon/xmpp/xmpp.php:69 +#: ../../addon/xmpp/xmpp.php:69 msgid "XMPP Settings" msgstr "" -#: ../../extend/addon/addon/xmpp/xmpp.php:92 +#: ../../addon/xmpp/xmpp.php:92 msgid "Jabber BOSH host" msgstr "" -#: ../../extend/addon/addon/xmpp/xmpp.php:93 +#: ../../addon/xmpp/xmpp.php:93 msgid "Use central userbase" msgstr "" -#: ../../extend/addon/addon/xmpp/xmpp.php:93 +#: ../../addon/xmpp/xmpp.php:93 msgid "" "If enabled, members will automatically login to an ejabberd server that has " "to be installed on this machine with synchronized credentials via the " "\"auth_ejabberd.php\" script." msgstr "" -#: ../../extend/addon/addon/chess/chess.php:276 -#: ../../extend/addon/addon/chess/chess.php:433 -msgid "Invalid game." +#: ../../addon/wholikesme/wholikesme.php:29 +msgid "Who likes me?" msgstr "" -#: ../../extend/addon/addon/chess/chess.php:282 -#: ../../extend/addon/addon/chess/chess.php:439 -msgid "You are not a player in this game." +#: ../../addon/pumpio/pumpio.php:148 +msgid "You are now authenticated to pumpio." msgstr "" -#: ../../extend/addon/addon/chess/chess.php:315 -msgid "You must be a local channel to create a game." +#: ../../addon/pumpio/pumpio.php:149 +msgid "return to the featured settings page" msgstr "" -#: ../../extend/addon/addon/chess/chess.php:333 -msgid "You must select one opponent that is not yourself." +#: ../../addon/pumpio/pumpio.php:163 +msgid "Post to Pump.io" msgstr "" -#: ../../extend/addon/addon/chess/chess.php:336 -msgid "Creating new game..." +#: ../../addon/pumpio/pumpio.php:198 +msgid "Pump.io servername" msgstr "" -#: ../../extend/addon/addon/chess/chess.php:342 -msgid "You must select white or black." +#: ../../addon/pumpio/pumpio.php:198 +msgid "Without \"http://\" or \"https://\"" msgstr "" -#: ../../extend/addon/addon/chess/chess.php:349 -msgid "Error creating new game." +#: ../../addon/pumpio/pumpio.php:202 +msgid "Pump.io username" msgstr "" -#: ../../extend/addon/addon/chess/chess.php:381 ../../include/channel.php:914 -msgid "Requested channel is not available." +#: ../../addon/pumpio/pumpio.php:202 +msgid "Without the servername" msgstr "" -#: ../../extend/addon/addon/chess/chess.php:395 -msgid "You must select a local channel /chess/channelname" +#: ../../addon/pumpio/pumpio.php:213 +msgid "You are not authenticated to pumpio" msgstr "" -#: ../../extend/addon/addon/chess/chess.php:923 -msgid "Enable notifications" +#: ../../addon/pumpio/pumpio.php:215 +msgid "(Re-)Authenticate your pump.io connection" msgstr "" -#: ../../extend/addon/addon/likebanner/likebanner.php:51 -msgid "Your Webbie:" +#: ../../addon/pumpio/pumpio.php:219 +msgid "Enable pump.io Post Plugin" msgstr "" -#: ../../extend/addon/addon/likebanner/likebanner.php:54 -msgid "Fontsize (px):" +#: ../../addon/pumpio/pumpio.php:223 +msgid "Post to pump.io by default" msgstr "" -#: ../../extend/addon/addon/likebanner/likebanner.php:68 -msgid "Link:" +#: ../../addon/pumpio/pumpio.php:227 +msgid "Should posts be public" msgstr "" -#: ../../extend/addon/addon/likebanner/likebanner.php:70 -msgid "Like us on Hubzilla" +#: ../../addon/pumpio/pumpio.php:231 +msgid "Mirror all public posts" msgstr "" -#: ../../extend/addon/addon/likebanner/likebanner.php:72 -msgid "Embed:" +#: ../../addon/pumpio/pumpio.php:237 +msgid "Pump.io Post Settings" msgstr "" -#: ../../extend/addon/addon/openid/Mod_Id.php:85 -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/channel.php:1230 -msgid "Male" +#: ../../addon/pumpio/pumpio.php:266 +msgid "PumpIO Settings saved." msgstr "" -#: ../../extend/addon/addon/openid/Mod_Id.php:87 -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/channel.php:1228 -msgid "Female" +#: ../../addon/ldapauth/ldapauth.php:61 +msgid "An account has been created for you." msgstr "" -#: ../../extend/addon/addon/openid/MysqlProvider.php:52 -msgid "First Name" +#: ../../addon/ldapauth/ldapauth.php:68 +msgid "Authentication successful but rejected: account creation is disabled." msgstr "" -#: ../../extend/addon/addon/openid/MysqlProvider.php:53 -msgid "Last Name" -msgstr "" - -#: ../../extend/addon/addon/openid/MysqlProvider.php:55 -msgid "Full Name" -msgstr "" - -#: ../../extend/addon/addon/openid/MysqlProvider.php:61 -msgid "Profile Photo 16px" -msgstr "" - -#: ../../extend/addon/addon/openid/MysqlProvider.php:62 -msgid "Profile Photo 32px" -msgstr "" - -#: ../../extend/addon/addon/openid/MysqlProvider.php:63 -msgid "Profile Photo 48px" -msgstr "" - -#: ../../extend/addon/addon/openid/MysqlProvider.php:64 -msgid "Profile Photo 64px" -msgstr "" - -#: ../../extend/addon/addon/openid/MysqlProvider.php:65 -msgid "Profile Photo 80px" -msgstr "" - -#: ../../extend/addon/addon/openid/MysqlProvider.php:66 -msgid "Profile Photo 128px" -msgstr "" - -#: ../../extend/addon/addon/openid/MysqlProvider.php:67 -msgid "Timezone" -msgstr "" - -#: ../../extend/addon/addon/openid/MysqlProvider.php:70 -msgid "Birth Year" -msgstr "" - -#: ../../extend/addon/addon/openid/MysqlProvider.php:71 -msgid "Birth Month" -msgstr "" - -#: ../../extend/addon/addon/openid/MysqlProvider.php:72 -msgid "Birth Day" -msgstr "" - -#: ../../extend/addon/addon/openid/MysqlProvider.php:73 -msgid "Birthdate" -msgstr "" - -#: ../../extend/addon/addon/openid/openid.php:49 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: ../../extend/addon/addon/openid/openid.php:49 -msgid "The error message was:" -msgstr "" - -#: ../../extend/addon/addon/openid/Mod_Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "" - -#: ../../extend/addon/addon/openid/Mod_Openid.php:188 -#: ../../include/auth.php:286 -msgid "Login failed." -msgstr "" - -#: ../../extend/addon/addon/authchoose/authchoose.php:67 -msgid "Only authenticate automatically to sites of your friends" -msgstr "" - -#: ../../extend/addon/addon/authchoose/authchoose.php:67 -msgid "By default you are automatically authenticated anywhere in the network" -msgstr "" - -#: ../../extend/addon/addon/authchoose/authchoose.php:71 -msgid "Authchoose Settings" -msgstr "" - -#: ../../extend/addon/addon/authchoose/authchoose.php:85 -msgid "Atuhchoose Settings updated." -msgstr "" - -#: ../../extend/addon/addon/mailtest/mailtest.php:19 -msgid "Send test email" -msgstr "" - -#: ../../extend/addon/addon/mailtest/mailtest.php:66 -msgid "Mail sent." -msgstr "" - -#: ../../extend/addon/addon/mailtest/mailtest.php:68 -msgid "Sending of mail failed." -msgstr "" - -#: ../../extend/addon/addon/mailtest/mailtest.php:77 -msgid "Mail Test" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:57 -msgid "Errors encountered deleting database table " -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:96 -msgid "Drop tables when uninstalling?" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:96 -msgid "" -"If checked, the Rendezvous database tables will be deleted when the plugin " -"is uninstalled." -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:97 -msgid "Mapbox Access Token" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:97 -msgid "" -"If you enter a Mapbox access token, it will be used to retrieve map tiles " -"from Mapbox instead of the default OpenStreetMap tile server." -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:162 -msgid "Rendezvous" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:167 -msgid "" -"This identity has been deleted by another member due to inactivity. Please " -"press the \"New identity\" button or refresh the page to register a new " -"identity. You may use the same name." -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:168 -msgid "Welcome to Rendezvous!" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:169 -msgid "" -"Enter your name to join this rendezvous. To begin sharing your location with " -"the other members, tap the GPS control. When your location is discovered, a " -"red dot will appear and others will be able to see you on the map." -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:171 -msgid "Let's meet here" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:174 -msgid "New marker" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:175 -msgid "Edit marker" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:176 -msgid "New identity" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:177 -msgid "Delete marker" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:178 -msgid "Delete member" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:179 -msgid "Edit proximity alert" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:180 -msgid "" -"A proximity alert will be issued when this member is within a certain radius " -"of you.

Enter a radius in meters (0 to disable):" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:180 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:185 -msgid "distance" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:181 -msgid "Proximity alert distance (meters)" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:182 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:184 -msgid "" -"A proximity alert will be issued when you are within a certain radius of the " -"marker location.

Enter a radius in meters (0 to disable):" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:183 -msgid "Marker proximity alert" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:186 -msgid "Reminder note" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:187 -msgid "" -"Enter a note to be displayed when you are within the specified proximity..." -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:199 -msgid "Add new rendezvous" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:200 -msgid "" -"Create a new rendezvous and share the access link with those you wish to " -"invite to the group. Those who open the link become members of the " -"rendezvous. They can view other member locations, add markers to the map, or " -"share their own locations with the group." -msgstr "" - -#: ../../extend/addon/addon/firefox/firefox.php:23 -msgid "Install Firefox Sharing Tools" -msgstr "" - -#: ../../extend/addon/addon/firefox/firefox.php:34 -msgid "Share content from Firefox to $Projectname" -msgstr "" - -#: ../../extend/addon/addon/firefox/firefox.php:37 -msgid "Install Firefox Sharing Tools to this web browser" -msgstr "" - -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:107 -msgid "Error retrieving wiki" -msgstr "" - -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:114 -msgid "Error creating zip file export folder" -msgstr "" - -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:132 -msgid "Error downloading wiki: " -msgstr "" - -#: ../../extend/addon/addon/opensearch/opensearch.php:26 +#: ../../addon/opensearch/opensearch.php:26 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "" -#: ../../extend/addon/addon/opensearch/opensearch.php:28 +#: ../../addon/opensearch/opensearch.php:28 msgctxt "opensearch" msgid "$Projectname" msgstr "" -#: ../../extend/addon/addon/opensearch/opensearch.php:43 +#: ../../addon/opensearch/opensearch.php:43 msgid "Search $Projectname" msgstr "" -#: ../../extend/addon/addon/diaspora/import_diaspora.php:16 -msgid "No username found in import file." +#: ../../addon/redfiles/redfiles.php:119 +msgid "Redmatrix File Storage Import" msgstr "" -#: ../../extend/addon/addon/diaspora/import_diaspora.php:41 -#: ../../include/import.php:62 -msgid "Unable to create a unique channel address. Import failed." +#: ../../addon/redfiles/redfiles.php:120 +msgid "This will import all your Redmatrix cloud files to this channel." msgstr "" -#: ../../extend/addon/addon/diaspora/diaspora.php:710 -msgid "Diaspora Protocol Settings updated." +#: ../../addon/redfiles/redfilehelper.php:64 +msgid "file" msgstr "" -#: ../../extend/addon/addon/diaspora/diaspora.php:728 -msgid "" -"The Diaspora protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." +#: ../../addon/hubwall/hubwall.php:19 +msgid "Send email to all members" msgstr "" -#: ../../extend/addon/addon/diaspora/diaspora.php:731 -msgid "Enable the Diaspora protocol for this channel" -msgstr "" - -#: ../../extend/addon/addon/diaspora/diaspora.php:735 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "" - -#: ../../extend/addon/addon/diaspora/diaspora.php:739 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "" - -#: ../../extend/addon/addon/diaspora/diaspora.php:744 -msgid "Followed hashtags (comma separated, do not include the #)" -msgstr "" - -#: ../../extend/addon/addon/diaspora/diaspora.php:749 -msgid "Diaspora Protocol Settings" -msgstr "" - -#: ../../extend/addon/addon/gnusoc/gnusoc.php:200 -msgid "GNU-Social Protocol Settings updated." -msgstr "" - -#: ../../extend/addon/addon/gnusoc/gnusoc.php:219 -msgid "" -"The GNU-Social protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "" - -#: ../../extend/addon/addon/gnusoc/gnusoc.php:222 -msgid "Enable the GNU-Social protocol for this channel" -msgstr "" - -#: ../../extend/addon/addon/gnusoc/gnusoc.php:226 -msgid "GNU-Social Protocol Settings" -msgstr "" - -#: ../../extend/addon/addon/gnusoc/gnusoc.php:417 -msgid "Follow" -msgstr "" - -#: ../../extend/addon/addon/gnusoc/gnusoc.php:420 +#: ../../addon/hubwall/hubwall.php:33 #, php-format -msgid "%1$s is now following %2$s" +msgid "$1%s Administrator" msgstr "" -#: ../../include/dba/dba_driver.php:189 +#: ../../addon/hubwall/hubwall.php:73 #, php-format -msgid "Cannot locate DNS info for database server '%s'" +msgid "%1$d of %2$d messages sent." msgstr "" -#: ../../include/language.php:367 ../../include/text.php:1774 -msgid "default" +#: ../../addon/hubwall/hubwall.php:81 +msgid "Send email to all hub members." msgstr "" -#: ../../include/language.php:380 -msgid "Select an alternate language" +#: ../../addon/hubwall/hubwall.php:93 +msgid "Sender Email address" msgstr "" -#: ../../include/follow.php:26 -msgid "Channel is blocked on this site." +#: ../../addon/hubwall/hubwall.php:94 +msgid "Test mode (only send to hub administrator)" msgstr "" -#: ../../include/follow.php:31 -msgid "Channel location missing." +#: ../../include/selectors.php:30 +msgid "Frequently" msgstr "" -#: ../../include/follow.php:73 -msgid "Response from remote channel was incomplete." +#: ../../include/selectors.php:31 +msgid "Hourly" msgstr "" -#: ../../include/follow.php:90 -msgid "Channel was deleted and no longer exists." +#: ../../include/selectors.php:32 +msgid "Twice daily" msgstr "" -#: ../../include/follow.php:140 ../../include/follow.php:175 -msgid "Protocol disabled." +#: ../../include/selectors.php:33 +msgid "Daily" msgstr "" -#: ../../include/follow.php:163 -msgid "Channel discovery failed." +#: ../../include/selectors.php:34 +msgid "Weekly" msgstr "" -#: ../../include/follow.php:202 -msgid "Cannot connect to yourself." +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "" + +#: ../../include/selectors.php:49 ../../include/channel.php:1336 +msgid "Neuter" +msgstr "" + +#: ../../include/selectors.php:49 ../../include/channel.php:1338 +msgid "Non-specific" +msgstr "" + +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "" + +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "" + +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "" + +#: ../../include/conversation.php:200 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "" + +#: ../../include/conversation.php:235 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:239 ../../include/text.php:1096 +#: ../../include/text.php:1101 +msgid "poked" +msgstr "" + +#: ../../include/conversation.php:688 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: ../../include/conversation.php:708 +msgid "Categories:" +msgstr "" + +#: ../../include/conversation.php:709 +msgid "Filed under:" +msgstr "" + +#: ../../include/conversation.php:734 +msgid "View in context" +msgstr "" + +#: ../../include/conversation.php:831 +msgid "remove" +msgstr "" + +#: ../../include/conversation.php:835 ../../include/nav.php:268 +msgid "Loading..." +msgstr "" + +#: ../../include/conversation.php:836 +msgid "Delete Selected Items" +msgstr "" + +#: ../../include/conversation.php:879 +msgid "View Source" +msgstr "" + +#: ../../include/conversation.php:889 +msgid "Follow Thread" +msgstr "" + +#: ../../include/conversation.php:898 +msgid "Unfollow Thread" +msgstr "" + +#: ../../include/conversation.php:989 +msgid "Activity/Posts" +msgstr "" + +#: ../../include/conversation.php:1009 +msgid "Edit Connection" +msgstr "" + +#: ../../include/conversation.php:1019 +msgid "Message" +msgstr "" + +#: ../../include/conversation.php:1153 +#, php-format +msgid "%s likes this." +msgstr "" + +#: ../../include/conversation.php:1153 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: ../../include/conversation.php:1157 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1159 +#, 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:1165 +msgid "and" +msgstr "" + +#: ../../include/conversation.php:1168 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1169 +#, php-format +msgid "%s like this." +msgstr "" + +#: ../../include/conversation.php:1169 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: ../../include/conversation.php:1212 +msgid "Set your location" +msgstr "" + +#: ../../include/conversation.php:1213 +msgid "Clear browser location" +msgstr "" + +#: ../../include/conversation.php:1261 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:1262 +msgid "Where are you right now?" +msgstr "" + +#: ../../include/conversation.php:1267 +msgid "Choose a different album..." +msgstr "" + +#: ../../include/conversation.php:1271 +msgid "Comments enabled" +msgstr "" + +#: ../../include/conversation.php:1272 +msgid "Comments disabled" +msgstr "" + +#: ../../include/conversation.php:1310 +msgid "Page link name" +msgstr "" + +#: ../../include/conversation.php:1313 +msgid "Post as" +msgstr "" + +#: ../../include/conversation.php:1327 +msgid "Toggle voting" +msgstr "" + +#: ../../include/conversation.php:1330 +msgid "Disable comments" +msgstr "" + +#: ../../include/conversation.php:1331 +msgid "Toggle comments" +msgstr "" + +#: ../../include/conversation.php:1339 +msgid "Categories (optional, comma-separated list)" +msgstr "" + +#: ../../include/conversation.php:1362 +msgid "Other networks and post services" +msgstr "" + +#: ../../include/conversation.php:1368 +msgid "Set publish date" +msgstr "" + +#: ../../include/conversation.php:1631 +msgid "Discover" +msgstr "" + +#: ../../include/conversation.php:1634 +msgid "Imported public streams" +msgstr "" + +#: ../../include/conversation.php:1639 +msgid "Commented Order" +msgstr "" + +#: ../../include/conversation.php:1642 +msgid "Sort by Comment Date" +msgstr "" + +#: ../../include/conversation.php:1646 +msgid "Posted Order" +msgstr "" + +#: ../../include/conversation.php:1649 +msgid "Sort by Post Date" +msgstr "" + +#: ../../include/conversation.php:1657 +msgid "Posts that mention or involve you" +msgstr "" + +#: ../../include/conversation.php:1666 +msgid "Activity Stream - by date" +msgstr "" + +#: ../../include/conversation.php:1672 +msgid "Starred" +msgstr "" + +#: ../../include/conversation.php:1675 +msgid "Favourite Posts" +msgstr "" + +#: ../../include/conversation.php:1682 +msgid "Spam" +msgstr "" + +#: ../../include/conversation.php:1685 +msgid "Posts flagged as SPAM" +msgstr "" + +#: ../../include/conversation.php:1760 ../../include/nav.php:358 +msgid "Status Messages and Posts" +msgstr "" + +#: ../../include/conversation.php:1773 ../../include/nav.php:371 +msgid "Profile Details" +msgstr "" + +#: ../../include/conversation.php:1783 ../../include/nav.php:381 +#: ../../include/photos.php:525 +msgid "Photo Albums" +msgstr "" + +#: ../../include/conversation.php:1791 ../../include/nav.php:389 +msgid "Files and Storage" +msgstr "" + +#: ../../include/conversation.php:1827 ../../include/nav.php:424 +msgid "Bookmarks" +msgstr "" + +#: ../../include/conversation.php:1830 ../../include/nav.php:427 +msgid "Saved Bookmarks" +msgstr "" + +#: ../../include/conversation.php:1841 ../../include/nav.php:438 +msgid "View Webpages" +msgstr "" + +#: ../../include/conversation.php:1910 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1913 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1916 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1919 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1922 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:1925 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "" + +#: ../../include/bookmarks.php:34 +#, php-format +msgid "%1$s's bookmarks" +msgstr "" + +#: ../../include/import.php:41 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "" + +#: ../../include/import.php:105 +msgid "Cloned channel not found. Import failed." msgstr "" #: ../../include/text.php:478 @@ -10834,11 +11389,6 @@ msgstr "" msgid "poke" msgstr "" -#: ../../include/text.php:1096 ../../include/text.php:1101 -#: ../../include/conversation.php:239 -msgid "poked" -msgstr "" - #: ../../include/text.php:1102 msgid "ping" msgstr "" @@ -11043,7 +11593,7 @@ msgstr "" msgid "Unknown Attachment" msgstr "" -#: ../../include/text.php:1386 ../../include/feedutils.php:777 +#: ../../include/text.php:1386 ../../include/feedutils.php:780 msgid "unknown" msgstr "" @@ -11059,6 +11609,10 @@ msgstr "" msgid "Download binary/encrypted content" msgstr "" +#: ../../include/text.php:1774 ../../include/language.php:367 +msgid "default" +msgstr "" + #: ../../include/text.php:1782 msgid "Page layout" msgstr "" @@ -11147,719 +11701,6 @@ msgstr "" msgid "Specify folder" msgstr "" -#: ../../include/account.php:35 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:37 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:43 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:75 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:79 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:157 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:224 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:291 -#, php-format -msgid "Registration confirmation for %s" -msgstr "" - -#: ../../include/account.php:360 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../include/account.php:382 -msgid "your registration password" -msgstr "" - -#: ../../include/account.php:388 ../../include/account.php:450 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../include/account.php:461 -msgid "Account approved." -msgstr "" - -#: ../../include/account.php:501 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: ../../include/account.php:780 ../../include/account.php:782 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/account.php:788 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/account.php:793 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/connections.php:128 -msgid "New window" -msgstr "" - -#: ../../include/connections.php:129 -msgid "Open the selected location in a different window or browser tab" -msgstr "" - -#: ../../include/connections.php:676 ../../include/event.php:1292 -msgid "Home, Voice" -msgstr "" - -#: ../../include/connections.php:677 ../../include/event.php:1293 -msgid "Home, Fax" -msgstr "" - -#: ../../include/connections.php:679 ../../include/event.php:1295 -msgid "Work, Voice" -msgstr "" - -#: ../../include/connections.php:680 ../../include/event.php:1296 -msgid "Work, Fax" -msgstr "" - -#: ../../include/datetime.php:147 -msgid "Birthday" -msgstr "" - -#: ../../include/datetime.php:149 -msgid "Age: " -msgstr "" - -#: ../../include/datetime.php:151 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: ../../include/datetime.php:286 ../../boot.php:2419 -msgid "never" -msgstr "" - -#: ../../include/datetime.php:292 -msgid "less than a second ago" -msgstr "" - -#: ../../include/datetime.php:310 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "" - -#: ../../include/datetime.php:321 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:324 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:327 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:330 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:333 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:336 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:339 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:576 -#, php-format -msgid "%1$s's birthday" -msgstr "" - -#: ../../include/datetime.php:577 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "" - -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "" - -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "" - -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "" - -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "" - -#: ../../include/selectors.php:49 ../../include/channel.php:1234 -msgid "Neuter" -msgstr "" - -#: ../../include/selectors.php:49 ../../include/channel.php:1236 -msgid "Non-specific" -msgstr "" - -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "" - -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "" - -#: ../../include/auth.php:148 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:275 -msgid "Failed authentication" -msgstr "" - -#: ../../include/bookmarks.php:34 -#, php-format -msgid "%1$s's bookmarks" -msgstr "" - -#: ../../include/attach.php:250 ../../include/attach.php:339 -msgid "Item was not found." -msgstr "" - -#: ../../include/attach.php:500 -msgid "No source file." -msgstr "" - -#: ../../include/attach.php:522 -msgid "Cannot locate file to replace" -msgstr "" - -#: ../../include/attach.php:540 -msgid "Cannot locate file to revise/update" -msgstr "" - -#: ../../include/attach.php:671 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "" - -#: ../../include/attach.php:685 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" - -#: ../../include/attach.php:855 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "" - -#: ../../include/attach.php:868 -msgid "Stored file could not be verified. Upload failed." -msgstr "" - -#: ../../include/attach.php:923 ../../include/attach.php:939 -msgid "Path not available." -msgstr "" - -#: ../../include/attach.php:988 ../../include/attach.php:1153 -msgid "Empty pathname" -msgstr "" - -#: ../../include/attach.php:1014 -msgid "duplicate filename or path" -msgstr "" - -#: ../../include/attach.php:1039 -msgid "Path not found." -msgstr "" - -#: ../../include/attach.php:1107 -msgid "mkdir failed." -msgstr "" - -#: ../../include/attach.php:1111 -msgid "database storage failed." -msgstr "" - -#: ../../include/attach.php:1159 -msgid "Empty path" -msgstr "" - -#: ../../include/event.php:22 ../../include/event.php:69 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../include/event.php:30 ../../include/event.php:73 -msgid "Starts:" -msgstr "" - -#: ../../include/event.php:40 ../../include/event.php:77 -msgid "Finishes:" -msgstr "" - -#: ../../include/event.php:1008 -msgid "This event has been added to your calendar." -msgstr "" - -#: ../../include/event.php:1208 -msgid "Not specified" -msgstr "" - -#: ../../include/event.php:1209 -msgid "Needs Action" -msgstr "" - -#: ../../include/event.php:1210 -msgid "Completed" -msgstr "" - -#: ../../include/event.php:1211 -msgid "In Process" -msgstr "" - -#: ../../include/event.php:1212 -msgid "Cancelled" -msgstr "" - -#: ../../include/nav.php:90 -msgid "Remote authentication" -msgstr "" - -#: ../../include/nav.php:90 -msgid "Click to authenticate to your home hub" -msgstr "" - -#: ../../include/nav.php:101 ../../include/nav.php:125 ../../boot.php:1590 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:101 ../../include/nav.php:125 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:104 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:107 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:109 -msgid "Edit your profile" -msgstr "" - -#: ../../include/nav.php:115 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:140 -msgid "Take me home" -msgstr "" - -#: ../../include/nav.php:142 -msgid "Log me out of this site" -msgstr "" - -#: ../../include/nav.php:147 -msgid "Create an account" -msgstr "" - -#: ../../include/nav.php:159 -msgid "Help and documentation" -msgstr "" - -#: ../../include/nav.php:162 -msgid "Search site @name, #tag, ?docs, content" -msgstr "" - -#: ../../include/nav.php:174 -msgid "Grid" -msgstr "" - -#: ../../include/nav.php:174 -msgid "Your grid" -msgstr "" - -#: ../../include/nav.php:175 -msgid "View your network/grid" -msgstr "" - -#: ../../include/nav.php:176 -msgid "Mark all grid notifications seen" -msgstr "" - -#: ../../include/nav.php:178 -msgid "Channel home" -msgstr "" - -#: ../../include/nav.php:179 -msgid "View your channel home" -msgstr "" - -#: ../../include/nav.php:180 -msgid "Mark all channel notifications seen" -msgstr "" - -#: ../../include/nav.php:186 -msgid "Notices" -msgstr "" - -#: ../../include/nav.php:186 -msgid "Notifications" -msgstr "" - -#: ../../include/nav.php:187 -msgid "View all notifications" -msgstr "" - -#: ../../include/nav.php:188 -msgid "Mark all system notifications seen" -msgstr "" - -#: ../../include/nav.php:190 -msgid "Private mail" -msgstr "" - -#: ../../include/nav.php:191 -msgid "View your private messages" -msgstr "" - -#: ../../include/nav.php:192 -msgid "Mark all private messages seen" -msgstr "" - -#: ../../include/nav.php:198 -msgid "Event Calendar" -msgstr "" - -#: ../../include/nav.php:199 -msgid "View events" -msgstr "" - -#: ../../include/nav.php:200 -msgid "Mark all events seen" -msgstr "" - -#: ../../include/nav.php:202 -msgid "Manage Your Channels" -msgstr "" - -#: ../../include/nav.php:204 -msgid "Account/Channel Settings" -msgstr "" - -#: ../../include/nav.php:212 -msgid "Site Setup and Configuration" -msgstr "" - -#: ../../include/nav.php:259 ../../include/conversation.php:835 -msgid "Loading..." -msgstr "" - -#: ../../include/nav.php:264 -msgid "@name, #tag, ?doc, content" -msgstr "" - -#: ../../include/nav.php:265 -msgid "Please wait..." -msgstr "" - -#: ../../include/nav.php:268 -msgid "Add Apps" -msgstr "" - -#: ../../include/nav.php:269 -msgid "Arrange Apps" -msgstr "" - -#: ../../include/nav.php:270 -msgid "Toggle System Apps" -msgstr "" - -#: ../../include/nav.php:362 ../../include/conversation.php:1760 -msgid "Status Messages and Posts" -msgstr "" - -#: ../../include/nav.php:375 ../../include/conversation.php:1773 -msgid "Profile Details" -msgstr "" - -#: ../../include/nav.php:385 ../../include/conversation.php:1783 -#: ../../include/photos.php:525 -msgid "Photo Albums" -msgstr "" - -#: ../../include/nav.php:393 ../../include/conversation.php:1791 -msgid "Files and Storage" -msgstr "" - -#: ../../include/nav.php:428 ../../include/conversation.php:1827 -msgid "Bookmarks" -msgstr "" - -#: ../../include/nav.php:431 ../../include/conversation.php:1830 -msgid "Saved Bookmarks" -msgstr "" - -#: ../../include/nav.php:442 ../../include/conversation.php:1841 -msgid "View Webpages" -msgstr "" - #: ../../include/contact_widgets.php:11 #, php-format msgid "%d invitation available" @@ -11906,353 +11747,37 @@ msgstr[1] "" msgid "show more" msgstr "" -#: ../../include/features.php:54 -msgid "General Features" +#: ../../include/markdown.php:139 ../../include/bbcode.php:332 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/features.php:59 -msgid "Multiple Profiles" +#: ../../include/follow.php:26 +msgid "Channel is blocked on this site." msgstr "" -#: ../../include/features.php:60 -msgid "Ability to create multiple profiles" +#: ../../include/follow.php:31 +msgid "Channel location missing." msgstr "" -#: ../../include/features.php:68 -msgid "Advanced Profiles" +#: ../../include/follow.php:73 +msgid "Response from remote channel was incomplete." msgstr "" -#: ../../include/features.php:69 -msgid "Additional profile sections and selections" +#: ../../include/follow.php:90 +msgid "Channel was deleted and no longer exists." msgstr "" -#: ../../include/features.php:77 -msgid "Profile Import/Export" +#: ../../include/follow.php:140 ../../include/follow.php:175 +msgid "Protocol disabled." msgstr "" -#: ../../include/features.php:78 -msgid "Save and load profile details across sites/channels" +#: ../../include/follow.php:163 +msgid "Channel discovery failed." msgstr "" -#: ../../include/features.php:86 -msgid "Web Pages" -msgstr "" - -#: ../../include/features.php:87 -msgid "Provide managed web pages on your channel" -msgstr "" - -#: ../../include/features.php:96 -msgid "Provide a wiki for your channel" -msgstr "" - -#: ../../include/features.php:113 -msgid "Private Notes" -msgstr "" - -#: ../../include/features.php:114 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "" - -#: ../../include/features.php:122 -msgid "Navigation Channel Select" -msgstr "" - -#: ../../include/features.php:123 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "" - -#: ../../include/features.php:131 -msgid "Photo Location" -msgstr "" - -#: ../../include/features.php:132 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "" - -#: ../../include/features.php:140 -msgid "Access Controlled Chatrooms" -msgstr "" - -#: ../../include/features.php:141 -msgid "Provide chatrooms and chat services with access control." -msgstr "" - -#: ../../include/features.php:150 -msgid "Provide alternate connection permission roles." -msgstr "" - -#: ../../include/features.php:158 -msgid "Smart Birthdays" -msgstr "" - -#: ../../include/features.php:159 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "" - -#: ../../include/features.php:167 -msgid "Event Timezone Selection" -msgstr "" - -#: ../../include/features.php:168 -msgid "Allow event creation in timezones other than your own." -msgstr "" - -#: ../../include/features.php:176 -msgid "Advanced Directory Search" -msgstr "" - -#: ../../include/features.php:177 -msgid "Allows creation of complex directory search queries" -msgstr "" - -#: ../../include/features.php:185 -msgid "Advanced Theme and Layout Settings" -msgstr "" - -#: ../../include/features.php:186 -msgid "Allows fine tuning of themes and page layouts" -msgstr "" - -#: ../../include/features.php:196 -msgid "Post Composition Features" -msgstr "" - -#: ../../include/features.php:200 -msgid "Large Photos" -msgstr "" - -#: ../../include/features.php:201 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "" - -#: ../../include/features.php:210 -msgid "Automatically import channel content from other channels or feeds" -msgstr "" - -#: ../../include/features.php:218 -msgid "Even More Encryption" -msgstr "" - -#: ../../include/features.php:219 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "" - -#: ../../include/features.php:227 -msgid "Enable Voting Tools" -msgstr "" - -#: ../../include/features.php:228 -msgid "Provide a class of post which others can vote on" -msgstr "" - -#: ../../include/features.php:236 -msgid "Disable Comments" -msgstr "" - -#: ../../include/features.php:237 -msgid "Provide the option to disable comments for a post" -msgstr "" - -#: ../../include/features.php:245 -msgid "Delayed Posting" -msgstr "" - -#: ../../include/features.php:246 -msgid "Allow posts to be published at a later date" -msgstr "" - -#: ../../include/features.php:254 -msgid "Content Expiration" -msgstr "" - -#: ../../include/features.php:255 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "" - -#: ../../include/features.php:263 -msgid "Suppress Duplicate Posts/Comments" -msgstr "" - -#: ../../include/features.php:264 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "" - -#: ../../include/features.php:275 -msgid "Network and Stream Filtering" -msgstr "" - -#: ../../include/features.php:279 -msgid "Search by Date" -msgstr "" - -#: ../../include/features.php:280 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: ../../include/features.php:288 ../../include/group.php:331 -msgid "Privacy Groups" -msgstr "" - -#: ../../include/features.php:289 -msgid "Enable management and selection of privacy groups" -msgstr "" - -#: ../../include/features.php:298 -msgid "Save search terms for re-use" -msgstr "" - -#: ../../include/features.php:306 -msgid "Network Personal Tab" -msgstr "" - -#: ../../include/features.php:307 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: ../../include/features.php:315 -msgid "Network New Tab" -msgstr "" - -#: ../../include/features.php:316 -msgid "Enable tab to display all new Network activity" -msgstr "" - -#: ../../include/features.php:324 -msgid "Affinity Tool" -msgstr "" - -#: ../../include/features.php:325 -msgid "Filter stream activity by depth of relationships" -msgstr "" - -#: ../../include/features.php:334 -msgid "Show friend and connection suggestions" -msgstr "" - -#: ../../include/features.php:342 -msgid "Connection Filtering" -msgstr "" - -#: ../../include/features.php:343 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "" - -#: ../../include/features.php:355 -msgid "Post/Comment Tools" -msgstr "" - -#: ../../include/features.php:359 -msgid "Community Tagging" -msgstr "" - -#: ../../include/features.php:360 -msgid "Ability to tag existing posts" -msgstr "" - -#: ../../include/features.php:368 -msgid "Post Categories" -msgstr "" - -#: ../../include/features.php:369 -msgid "Add categories to your posts" -msgstr "" - -#: ../../include/features.php:377 -msgid "Emoji Reactions" -msgstr "" - -#: ../../include/features.php:378 -msgid "Add emoji reaction ability to posts" -msgstr "" - -#: ../../include/features.php:387 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:395 -msgid "Dislike Posts" -msgstr "" - -#: ../../include/features.php:396 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: ../../include/features.php:404 -msgid "Star Posts" -msgstr "" - -#: ../../include/features.php:405 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/features.php:413 -msgid "Tag Cloud" -msgstr "" - -#: ../../include/features.php:414 -msgid "Provide a personal tag cloud on your channel page" -msgstr "" - -#: ../../include/features.php:425 -msgid "Premium Channel" -msgstr "" - -#: ../../include/features.php:426 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "" - -#: ../../include/network.php:751 -msgid "view full size" -msgstr "" - -#: ../../include/network.php:1691 ../../include/network.php:1692 -msgid "Friendica" -msgstr "" - -#: ../../include/network.php:1693 -msgid "OStatus" -msgstr "" - -#: ../../include/network.php:1694 -msgid "GNU-Social" -msgstr "" - -#: ../../include/network.php:1695 -msgid "RSS/Atom" -msgstr "" - -#: ../../include/network.php:1697 -msgid "Diaspora" -msgstr "" - -#: ../../include/network.php:1698 -msgid "Facebook" -msgstr "" - -#: ../../include/network.php:1699 -msgid "Zot" -msgstr "" - -#: ../../include/network.php:1700 -msgid "LinkedIn" -msgstr "" - -#: ../../include/network.php:1701 -msgid "XMPP/IM" -msgstr "" - -#: ../../include/network.php:1702 -msgid "MySpace" +#: ../../include/follow.php:186 +msgid "Cannot connect to yourself." msgstr "" #: ../../include/js_strings.php:5 @@ -12502,377 +12027,115 @@ msgctxt "calendar" msgid "All day" msgstr "" -#: ../../include/taxonomy.php:258 ../../include/taxonomy.php:279 -msgid "Tags" +#: ../../include/message.php:40 +msgid "Unable to determine sender." msgstr "" -#: ../../include/taxonomy.php:323 -msgid "Keywords" +#: ../../include/message.php:79 +msgid "No recipient provided." msgstr "" -#: ../../include/taxonomy.php:344 -msgid "have" +#: ../../include/message.php:84 +msgid "[no subject]" msgstr "" -#: ../../include/taxonomy.php:344 -msgid "has" +#: ../../include/message.php:214 +msgid "Stored post could not be verified." msgstr "" -#: ../../include/taxonomy.php:345 -msgid "want" +#: ../../include/activities.php:41 +msgid " and " msgstr "" -#: ../../include/taxonomy.php:345 -msgid "wants" +#: ../../include/activities.php:49 +msgid "public profile" msgstr "" -#: ../../include/taxonomy.php:346 -msgid "likes" +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../include/taxonomy.php:347 -msgid "dislikes" +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" msgstr "" -#: ../../include/group.php:26 +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: ../../include/attach.php:250 ../../include/attach.php:339 +msgid "Item was not found." +msgstr "" + +#: ../../include/attach.php:501 +msgid "No source file." +msgstr "" + +#: ../../include/attach.php:523 +msgid "Cannot locate file to replace" +msgstr "" + +#: ../../include/attach.php:541 +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:858 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "" + +#: ../../include/attach.php:871 +msgid "Stored file could not be verified. Upload failed." +msgstr "" + +#: ../../include/attach.php:932 ../../include/attach.php:948 +msgid "Path not available." +msgstr "" + +#: ../../include/attach.php:997 ../../include/attach.php:1162 +msgid "Empty pathname" +msgstr "" + +#: ../../include/attach.php:1023 +msgid "duplicate filename or path" +msgstr "" + +#: ../../include/attach.php:1048 +msgid "Path not found." +msgstr "" + +#: ../../include/attach.php:1116 +msgid "mkdir failed." +msgstr "" + +#: ../../include/attach.php:1120 +msgid "database storage failed." +msgstr "" + +#: ../../include/attach.php:1168 +msgid "Empty path" +msgstr "" + +#: ../../include/security.php:117 +msgid "guest:" +msgstr "" + +#: ../../include/security.php:531 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:268 -msgid "Add new connections to this privacy group" -msgstr "" - -#: ../../include/group.php:309 -msgid "edit" -msgstr "" - -#: ../../include/group.php:332 -msgid "Edit group" -msgstr "" - -#: ../../include/group.php:333 -msgid "Add privacy group" -msgstr "" - -#: ../../include/group.php:334 -msgid "Channels not in any privacy group" -msgstr "" - -#: ../../include/bbcode.php:194 ../../include/bbcode.php:1097 -#: ../../include/bbcode.php:1100 ../../include/bbcode.php:1105 -#: ../../include/bbcode.php:1108 ../../include/bbcode.php:1111 -#: ../../include/bbcode.php:1114 ../../include/bbcode.php:1119 -#: ../../include/bbcode.php:1122 ../../include/bbcode.php:1127 -#: ../../include/bbcode.php:1130 ../../include/bbcode.php:1133 -#: ../../include/bbcode.php:1136 -msgid "Image/photo" -msgstr "" - -#: ../../include/bbcode.php:233 ../../include/bbcode.php:1147 -msgid "Encrypted content" -msgstr "" - -#: ../../include/bbcode.php:249 -#, php-format -msgid "Install %s element: " -msgstr "" - -#: ../../include/bbcode.php:253 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "" - -#: ../../include/bbcode.php:332 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:409 ../../include/bbcode.php:417 -msgid "Click to open/close" -msgstr "" - -#: ../../include/bbcode.php:417 -msgid "spoiler" -msgstr "" - -#: ../../include/bbcode.php:1085 -msgid "$1 wrote:" -msgstr "" - -#: ../../include/import.php:41 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../include/import.php:105 -msgid "Cloned channel not found. Import failed." -msgstr "" - -#: ../../include/conversation.php:200 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "" - -#: ../../include/conversation.php:235 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:688 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../include/conversation.php:708 -msgid "Categories:" -msgstr "" - -#: ../../include/conversation.php:709 -msgid "Filed under:" -msgstr "" - -#: ../../include/conversation.php:734 -msgid "View in context" -msgstr "" - -#: ../../include/conversation.php:831 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:836 -msgid "Delete Selected Items" -msgstr "" - -#: ../../include/conversation.php:879 -msgid "View Source" -msgstr "" - -#: ../../include/conversation.php:889 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:898 -msgid "Unfollow Thread" -msgstr "" - -#: ../../include/conversation.php:989 -msgid "Activity/Posts" -msgstr "" - -#: ../../include/conversation.php:1009 -msgid "Edit Connection" -msgstr "" - -#: ../../include/conversation.php:1019 -msgid "Message" -msgstr "" - -#: ../../include/conversation.php:1153 -#, php-format -msgid "%s likes this." -msgstr "" - -#: ../../include/conversation.php:1153 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: ../../include/conversation.php:1157 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1159 -#, 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:1165 -msgid "and" -msgstr "" - -#: ../../include/conversation.php:1168 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1169 -#, php-format -msgid "%s like this." -msgstr "" - -#: ../../include/conversation.php:1169 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: ../../include/conversation.php:1212 -msgid "Set your location" -msgstr "" - -#: ../../include/conversation.php:1213 -msgid "Clear browser location" -msgstr "" - -#: ../../include/conversation.php:1261 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:1262 -msgid "Where are you right now?" -msgstr "" - -#: ../../include/conversation.php:1267 -msgid "Choose a different album..." -msgstr "" - -#: ../../include/conversation.php:1271 -msgid "Comments enabled" -msgstr "" - -#: ../../include/conversation.php:1272 -msgid "Comments disabled" -msgstr "" - -#: ../../include/conversation.php:1310 -msgid "Page link name" -msgstr "" - -#: ../../include/conversation.php:1313 -msgid "Post as" -msgstr "" - -#: ../../include/conversation.php:1327 -msgid "Toggle voting" -msgstr "" - -#: ../../include/conversation.php:1330 -msgid "Disable comments" -msgstr "" - -#: ../../include/conversation.php:1331 -msgid "Toggle comments" -msgstr "" - -#: ../../include/conversation.php:1339 -msgid "Categories (optional, comma-separated list)" -msgstr "" - -#: ../../include/conversation.php:1362 -msgid "Other networks and post services" -msgstr "" - -#: ../../include/conversation.php:1368 -msgid "Set publish date" -msgstr "" - -#: ../../include/conversation.php:1631 -msgid "Discover" -msgstr "" - -#: ../../include/conversation.php:1634 -msgid "Imported public streams" -msgstr "" - -#: ../../include/conversation.php:1639 -msgid "Commented Order" -msgstr "" - -#: ../../include/conversation.php:1642 -msgid "Sort by Comment Date" -msgstr "" - -#: ../../include/conversation.php:1646 -msgid "Posted Order" -msgstr "" - -#: ../../include/conversation.php:1649 -msgid "Sort by Post Date" -msgstr "" - -#: ../../include/conversation.php:1657 -msgid "Posts that mention or involve you" -msgstr "" - -#: ../../include/conversation.php:1666 -msgid "Activity Stream - by date" -msgstr "" - -#: ../../include/conversation.php:1672 -msgid "Starred" -msgstr "" - -#: ../../include/conversation.php:1675 -msgid "Favourite Posts" -msgstr "" - -#: ../../include/conversation.php:1682 -msgid "Spam" -msgstr "" - -#: ../../include/conversation.php:1685 -msgid "Posts flagged as SPAM" -msgstr "" - -#: ../../include/conversation.php:1910 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1913 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1916 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1919 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1922 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1925 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/help.php:33 -msgid "Help:" -msgstr "" - -#: ../../include/help.php:65 -msgid "Not Found" +"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/items.php:851 ../../include/items.php:903 @@ -12944,118 +12207,6 @@ msgctxt "edit_activity" msgid "Comment" msgstr "" -#: ../../include/photos.php:111 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "" - -#: ../../include/photos.php:118 -msgid "Image file is empty." -msgstr "" - -#: ../../include/photos.php:257 -msgid "Photo storage failed." -msgstr "" - -#: ../../include/photos.php:297 -msgid "a new photo" -msgstr "" - -#: ../../include/photos.php:301 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "" - -#: ../../include/photos.php:530 -msgid "Upload New Photos" -msgstr "" - -#: ../../include/zot.php:646 -msgid "Invalid data packet" -msgstr "" - -#: ../../include/zot.php:662 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../include/zot.php:2310 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - -#: ../../include/zot.php:3770 -msgid "invalid target signature" -msgstr "" - -#: ../../include/acl_selectors.php:208 -msgid "Who can see this?" -msgstr "" - -#: ../../include/acl_selectors.php:209 -msgid "Custom selection" -msgstr "" - -#: ../../include/acl_selectors.php:210 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " -"the scope of \"Show\"." -msgstr "" - -#: ../../include/acl_selectors.php:211 -msgid "Show" -msgstr "" - -#: ../../include/acl_selectors.php:212 -msgid "Don't show" -msgstr "" - -#: ../../include/acl_selectors.php:245 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
These " -"permissions set who is allowed to view the post." -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/dir_fns.php:141 -msgid "Directory Options" -msgstr "" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "" - #: ../../include/channel.php:33 msgid "Unable to obtain identity information from database" msgstr "" @@ -13093,301 +12244,1061 @@ msgstr "" msgid "Default Profile" msgstr "" -#: ../../include/channel.php:1060 +#: ../../include/channel.php:497 +msgid "Unable to retrieve modified identity" +msgstr "" + +#: ../../include/channel.php:1162 msgid "Create New Profile" msgstr "" -#: ../../include/channel.php:1080 +#: ../../include/channel.php:1182 msgid "Visible to everybody" msgstr "" -#: ../../include/channel.php:1153 ../../include/channel.php:1273 +#: ../../include/channel.php:1255 ../../include/channel.php:1375 msgid "Gender:" msgstr "" -#: ../../include/channel.php:1155 ../../include/channel.php:1328 +#: ../../include/channel.php:1257 ../../include/channel.php:1430 msgid "Homepage:" msgstr "" -#: ../../include/channel.php:1156 +#: ../../include/channel.php:1258 msgid "Online Now" msgstr "" -#: ../../include/channel.php:1232 +#: ../../include/channel.php:1334 msgid "Trans" msgstr "" -#: ../../include/channel.php:1278 +#: ../../include/channel.php:1380 msgid "Like this channel" msgstr "" -#: ../../include/channel.php:1302 +#: ../../include/channel.php:1404 msgid "j F, Y" msgstr "" -#: ../../include/channel.php:1303 +#: ../../include/channel.php:1405 msgid "j F" msgstr "" -#: ../../include/channel.php:1310 +#: ../../include/channel.php:1412 msgid "Birthday:" msgstr "" -#: ../../include/channel.php:1323 +#: ../../include/channel.php:1425 #, php-format msgid "for %1$d %2$s" msgstr "" -#: ../../include/channel.php:1326 +#: ../../include/channel.php:1428 msgid "Sexual Preference:" msgstr "" -#: ../../include/channel.php:1332 +#: ../../include/channel.php:1434 msgid "Tags:" msgstr "" -#: ../../include/channel.php:1334 +#: ../../include/channel.php:1436 msgid "Political Views:" msgstr "" -#: ../../include/channel.php:1336 +#: ../../include/channel.php:1438 msgid "Religion:" msgstr "" -#: ../../include/channel.php:1340 +#: ../../include/channel.php:1442 msgid "Hobbies/Interests:" msgstr "" -#: ../../include/channel.php:1342 +#: ../../include/channel.php:1444 msgid "Likes:" msgstr "" -#: ../../include/channel.php:1344 +#: ../../include/channel.php:1446 msgid "Dislikes:" msgstr "" -#: ../../include/channel.php:1346 +#: ../../include/channel.php:1448 msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/channel.php:1348 +#: ../../include/channel.php:1450 msgid "My other channels:" msgstr "" -#: ../../include/channel.php:1350 +#: ../../include/channel.php:1452 msgid "Musical interests:" msgstr "" -#: ../../include/channel.php:1352 +#: ../../include/channel.php:1454 msgid "Books, literature:" msgstr "" -#: ../../include/channel.php:1354 +#: ../../include/channel.php:1456 msgid "Television:" msgstr "" -#: ../../include/channel.php:1356 +#: ../../include/channel.php:1458 msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/channel.php:1358 +#: ../../include/channel.php:1460 msgid "Love/Romance:" msgstr "" -#: ../../include/channel.php:1360 +#: ../../include/channel.php:1462 msgid "Work/employment:" msgstr "" -#: ../../include/channel.php:1362 +#: ../../include/channel.php:1464 msgid "School/education:" msgstr "" -#: ../../include/channel.php:1385 +#: ../../include/channel.php:1487 msgid "Like this thing" msgstr "" -#: ../../include/channel.php:2154 +#: ../../include/channel.php:2256 #, php-format msgid "User '%s' deleted" msgstr "" -#: ../../include/security.php:117 -msgid "guest:" +#: ../../include/event.php:22 ../../include/event.php:69 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/security.php:531 +#: ../../include/event.php:30 ../../include/event.php:73 +msgid "Starts:" +msgstr "" + +#: ../../include/event.php:40 ../../include/event.php:77 +msgid "Finishes:" +msgstr "" + +#: ../../include/event.php:1008 +msgid "This event has been added to your calendar." +msgstr "" + +#: ../../include/event.php:1208 +msgid "Not specified" +msgstr "" + +#: ../../include/event.php:1209 +msgid "Needs Action" +msgstr "" + +#: ../../include/event.php:1210 +msgid "Completed" +msgstr "" + +#: ../../include/event.php:1211 +msgid "In Process" +msgstr "" + +#: ../../include/event.php:1212 +msgid "Cancelled" +msgstr "" + +#: ../../include/event.php:1292 ../../include/connections.php:676 +msgid "Home, Voice" +msgstr "" + +#: ../../include/event.php:1293 ../../include/connections.php:677 +msgid "Home, Fax" +msgstr "" + +#: ../../include/event.php:1295 ../../include/connections.php:679 +msgid "Work, Voice" +msgstr "" + +#: ../../include/event.php:1296 ../../include/connections.php:680 +msgid "Work, Fax" +msgstr "" + +#: ../../include/network.php:751 +msgid "view full size" +msgstr "" + +#: ../../include/network.php:1691 ../../include/network.php:1692 +msgid "Friendica" +msgstr "" + +#: ../../include/network.php:1693 +msgid "OStatus" +msgstr "" + +#: ../../include/network.php:1694 +msgid "GNU-Social" +msgstr "" + +#: ../../include/network.php:1695 +msgid "RSS/Atom" +msgstr "" + +#: ../../include/network.php:1696 +msgid "ActivityPub" +msgstr "" + +#: ../../include/network.php:1698 +msgid "Diaspora" +msgstr "" + +#: ../../include/network.php:1699 +msgid "Facebook" +msgstr "" + +#: ../../include/network.php:1700 +msgid "Zot" +msgstr "" + +#: ../../include/network.php:1701 +msgid "LinkedIn" +msgstr "" + +#: ../../include/network.php:1702 +msgid "XMPP/IM" +msgstr "" + +#: ../../include/network.php:1703 +msgid "MySpace" +msgstr "" + +#: ../../include/language.php:380 +msgid "Select an alternate language" +msgstr "" + +#: ../../include/acl_selectors.php:208 +msgid "Who can see this?" +msgstr "" + +#: ../../include/acl_selectors.php:209 +msgid "Custom selection" +msgstr "" + +#: ../../include/acl_selectors.php:210 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." +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " +"the scope of \"Show\"." msgstr "" -#: ../../include/oembed.php:315 +#: ../../include/acl_selectors.php:211 +msgid "Show" +msgstr "" + +#: ../../include/acl_selectors.php:212 +msgid "Don't show" +msgstr "" + +#: ../../include/acl_selectors.php:245 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
These " +"permissions set who is allowed to view the post." +msgstr "" + +#: ../../include/dba/dba_driver.php:190 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" + +#: ../../include/bbcode.php:194 ../../include/bbcode.php:1097 +#: ../../include/bbcode.php:1100 ../../include/bbcode.php:1105 +#: ../../include/bbcode.php:1108 ../../include/bbcode.php:1111 +#: ../../include/bbcode.php:1114 ../../include/bbcode.php:1119 +#: ../../include/bbcode.php:1122 ../../include/bbcode.php:1127 +#: ../../include/bbcode.php:1130 ../../include/bbcode.php:1133 +#: ../../include/bbcode.php:1136 +msgid "Image/photo" +msgstr "" + +#: ../../include/bbcode.php:233 ../../include/bbcode.php:1147 +msgid "Encrypted content" +msgstr "" + +#: ../../include/bbcode.php:249 +#, php-format +msgid "Install %s element: " +msgstr "" + +#: ../../include/bbcode.php:253 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "" + +#: ../../include/bbcode.php:409 ../../include/bbcode.php:417 +msgid "Click to open/close" +msgstr "" + +#: ../../include/bbcode.php:417 +msgid "spoiler" +msgstr "" + +#: ../../include/bbcode.php:1085 +msgid "$1 wrote:" +msgstr "" + +#: ../../include/oembed.php:317 msgid " by " msgstr "" -#: ../../include/oembed.php:316 +#: ../../include/oembed.php:318 msgid " on " msgstr "" -#: ../../include/oembed.php:345 +#: ../../include/oembed.php:347 msgid "Embedded content" msgstr "" -#: ../../include/oembed.php:354 +#: ../../include/oembed.php:356 msgid "Embedding disabled" msgstr "" -#: ../../include/message.php:40 -msgid "Unable to determine sender." +#: ../../include/features.php:54 +msgid "General Features" msgstr "" -#: ../../include/message.php:79 -msgid "No recipient provided." +#: ../../include/features.php:59 +msgid "Multiple Profiles" msgstr "" -#: ../../include/message.php:84 -msgid "[no subject]" +#: ../../include/features.php:60 +msgid "Ability to create multiple profiles" msgstr "" -#: ../../include/message.php:214 -msgid "Stored post could not be verified." +#: ../../include/features.php:68 +msgid "Advanced Profiles" msgstr "" -#: ../../util/nconfig.php:34 -msgid "Source channel not found." +#: ../../include/features.php:69 +msgid "Additional profile sections and selections" msgstr "" -#: ../../view/theme/redbasic/php/config.php:16 -#: ../../view/theme/redbasic/php/config.php:19 -msgid "Focus (Hubzilla default)" +#: ../../include/features.php:77 +msgid "Profile Import/Export" msgstr "" -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Theme settings" +#: ../../include/features.php:78 +msgid "Save and load profile details across sites/channels" msgstr "" -#: ../../view/theme/redbasic/php/config.php:100 -msgid "Narrow navbar" +#: ../../include/features.php:86 +msgid "Web Pages" msgstr "" -#: ../../view/theme/redbasic/php/config.php:101 -msgid "Navigation bar background color" +#: ../../include/features.php:87 +msgid "Provide managed web pages on your channel" msgstr "" -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Navigation bar icon color " +#: ../../include/features.php:96 +msgid "Provide a wiki for your channel" msgstr "" -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Navigation bar active icon color " +#: ../../include/features.php:113 +msgid "Private Notes" msgstr "" -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Link color" +#: ../../include/features.php:114 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "" -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Set font-color for banner" +#: ../../include/features.php:122 +msgid "Navigation Channel Select" msgstr "" -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Set the background color" +#: ../../include/features.php:123 +msgid "Change channels directly from within the navigation dropdown menu" msgstr "" -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Set the background image" +#: ../../include/features.php:131 +msgid "Photo Location" msgstr "" -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Set the background color of items" +#: ../../include/features.php:132 +msgid "If location data is available on uploaded photos, link this to a map." msgstr "" -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Set the background color of comments" +#: ../../include/features.php:140 +msgid "Access Controlled Chatrooms" msgstr "" -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Set font-size for the entire application" +#: ../../include/features.php:141 +msgid "Provide chatrooms and chat services with access control." msgstr "" -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Examples: 1rem, 100%, 16px" +#: ../../include/features.php:150 +msgid "Provide alternate connection permission roles." msgstr "" -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Set font-color for posts and comments" +#: ../../include/features.php:158 +msgid "Smart Birthdays" msgstr "" -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Set radius of corners" +#: ../../include/features.php:159 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." msgstr "" -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Example: 4px" +#: ../../include/features.php:167 +msgid "Event Timezone Selection" msgstr "" -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Set shadow depth of photos" +#: ../../include/features.php:168 +msgid "Allow event creation in timezones other than your own." msgstr "" -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set maximum width of content region in pixel" +#: ../../include/features.php:176 +msgid "Advanced Directory Search" msgstr "" -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Leave empty for default width" +#: ../../include/features.php:177 +msgid "Allows creation of complex directory search queries" msgstr "" -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Left align page content" +#: ../../include/features.php:185 +msgid "Advanced Theme and Layout Settings" msgstr "" -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set size of conversation author photo" +#: ../../include/features.php:186 +msgid "Allows fine tuning of themes and page layouts" msgstr "" -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set size of followup author photos" +#: ../../include/features.php:196 +msgid "Post Composition Features" msgstr "" -#: ../../boot.php:1571 -msgid "Create an account to access services and applications" +#: ../../include/features.php:200 +msgid "Large Photos" msgstr "" -#: ../../boot.php:1593 -msgid "Login/Email" +#: ../../include/features.php:201 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" msgstr "" -#: ../../boot.php:1594 -msgid "Password" +#: ../../include/features.php:210 +msgid "Automatically import channel content from other channels or feeds" msgstr "" -#: ../../boot.php:1595 -msgid "Remember me" +#: ../../include/features.php:218 +msgid "Even More Encryption" msgstr "" -#: ../../boot.php:1598 -msgid "Forgot your password?" +#: ../../include/features.php:219 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" msgstr "" -#: ../../boot.php:2136 -msgid "toggle mobile" +#: ../../include/features.php:227 +msgid "Enable Voting Tools" msgstr "" -#: ../../boot.php:2289 +#: ../../include/features.php:228 +msgid "Provide a class of post which others can vote on" +msgstr "" + +#: ../../include/features.php:236 +msgid "Disable Comments" +msgstr "" + +#: ../../include/features.php:237 +msgid "Provide the option to disable comments for a post" +msgstr "" + +#: ../../include/features.php:245 +msgid "Delayed Posting" +msgstr "" + +#: ../../include/features.php:246 +msgid "Allow posts to be published at a later date" +msgstr "" + +#: ../../include/features.php:254 +msgid "Content Expiration" +msgstr "" + +#: ../../include/features.php:255 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "" + +#: ../../include/features.php:263 +msgid "Suppress Duplicate Posts/Comments" +msgstr "" + +#: ../../include/features.php:264 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "" + +#: ../../include/features.php:275 +msgid "Network and Stream Filtering" +msgstr "" + +#: ../../include/features.php:279 +msgid "Search by Date" +msgstr "" + +#: ../../include/features.php:280 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: ../../include/features.php:288 ../../include/group.php:332 +msgid "Privacy Groups" +msgstr "" + +#: ../../include/features.php:289 +msgid "Enable management and selection of privacy groups" +msgstr "" + +#: ../../include/features.php:298 +msgid "Save search terms for re-use" +msgstr "" + +#: ../../include/features.php:306 +msgid "Network Personal Tab" +msgstr "" + +#: ../../include/features.php:307 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "" + +#: ../../include/features.php:315 +msgid "Network New Tab" +msgstr "" + +#: ../../include/features.php:316 +msgid "Enable tab to display all new Network activity" +msgstr "" + +#: ../../include/features.php:324 +msgid "Affinity Tool" +msgstr "" + +#: ../../include/features.php:325 +msgid "Filter stream activity by depth of relationships" +msgstr "" + +#: ../../include/features.php:334 +msgid "Show friend and connection suggestions" +msgstr "" + +#: ../../include/features.php:342 +msgid "Connection Filtering" +msgstr "" + +#: ../../include/features.php:343 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "" + +#: ../../include/features.php:355 +msgid "Post/Comment Tools" +msgstr "" + +#: ../../include/features.php:359 +msgid "Community Tagging" +msgstr "" + +#: ../../include/features.php:360 +msgid "Ability to tag existing posts" +msgstr "" + +#: ../../include/features.php:368 +msgid "Post Categories" +msgstr "" + +#: ../../include/features.php:369 +msgid "Add categories to your posts" +msgstr "" + +#: ../../include/features.php:377 +msgid "Emoji Reactions" +msgstr "" + +#: ../../include/features.php:378 +msgid "Add emoji reaction ability to posts" +msgstr "" + +#: ../../include/features.php:387 +msgid "Ability to file posts under folders" +msgstr "" + +#: ../../include/features.php:395 +msgid "Dislike Posts" +msgstr "" + +#: ../../include/features.php:396 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: ../../include/features.php:404 +msgid "Star Posts" +msgstr "" + +#: ../../include/features.php:405 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: ../../include/features.php:413 +msgid "Tag Cloud" +msgstr "" + +#: ../../include/features.php:414 +msgid "Provide a personal tag cloud on your channel page" +msgstr "" + +#: ../../include/features.php:425 +msgid "Premium Channel" +msgstr "" + +#: ../../include/features.php:426 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "" + +#: ../../include/taxonomy.php:267 ../../include/taxonomy.php:288 +msgid "Tags" +msgstr "" + +#: ../../include/taxonomy.php:332 +msgid "Keywords" +msgstr "" + +#: ../../include/taxonomy.php:353 +msgid "have" +msgstr "" + +#: ../../include/taxonomy.php:353 +msgid "has" +msgstr "" + +#: ../../include/taxonomy.php:354 +msgid "want" +msgstr "" + +#: ../../include/taxonomy.php:354 +msgid "wants" +msgstr "" + +#: ../../include/taxonomy.php:355 +msgid "likes" +msgstr "" + +#: ../../include/taxonomy.php:356 +msgid "dislikes" +msgstr "" + +#: ../../include/account.php:35 +msgid "Not a valid email address" +msgstr "" + +#: ../../include/account.php:37 +msgid "Your email domain is not among those allowed on this site" +msgstr "" + +#: ../../include/account.php:43 +msgid "Your email address is already registered at this site." +msgstr "" + +#: ../../include/account.php:75 +msgid "An invitation is required." +msgstr "" + +#: ../../include/account.php:79 +msgid "Invitation could not be verified." +msgstr "" + +#: ../../include/account.php:157 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/account.php:224 +msgid "Failed to store account information." +msgstr "" + +#: ../../include/account.php:291 #, php-format -msgid "[$Projectname] Website SSL error for %s" +msgid "Registration confirmation for %s" msgstr "" -#: ../../boot.php:2294 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "" - -#: ../../boot.php:2413 +#: ../../include/account.php:360 #, php-format -msgid "[$Projectname] Cron tasks not running on %s" +msgid "Registration request at %s" msgstr "" -#: ../../boot.php:2418 -msgid "Cron/Scheduled tasks not running." +#: ../../include/account.php:382 +msgid "your registration password" +msgstr "" + +#: ../../include/account.php:388 ../../include/account.php:450 +#, php-format +msgid "Registration details for %s" +msgstr "" + +#: ../../include/account.php:461 +msgid "Account approved." +msgstr "" + +#: ../../include/account.php:501 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: ../../include/account.php:780 ../../include/account.php:782 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/account.php:788 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/account.php:793 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/datetime.php:147 +msgid "Birthday" +msgstr "" + +#: ../../include/datetime.php:149 +msgid "Age: " +msgstr "" + +#: ../../include/datetime.php:151 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: ../../include/datetime.php:292 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:310 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "" + +#: ../../include/datetime.php:321 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:324 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:327 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:330 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:333 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:336 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:339 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:576 +#, php-format +msgid "%1$s's birthday" +msgstr "" + +#: ../../include/datetime.php:577 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "" + +#: ../../include/nav.php:90 +msgid "Remote authentication" +msgstr "" + +#: ../../include/nav.php:90 +msgid "Click to authenticate to your home hub" +msgstr "" + +#: ../../include/nav.php:99 ../../include/nav.php:123 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:102 +msgid "Your profile page" +msgstr "" + +#: ../../include/nav.php:105 +msgid "Manage/Edit profiles" +msgstr "" + +#: ../../include/nav.php:107 +msgid "Edit your profile" +msgstr "" + +#: ../../include/nav.php:113 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:138 +msgid "Take me home" +msgstr "" + +#: ../../include/nav.php:140 +msgid "Log me out of this site" +msgstr "" + +#: ../../include/nav.php:145 +msgid "Create an account" +msgstr "" + +#: ../../include/nav.php:157 +msgid "Help and documentation" +msgstr "" + +#: ../../include/nav.php:160 +msgid "Search site @name, #tag, ?docs, content" +msgstr "" + +#: ../../include/nav.php:171 +msgid "Grid" +msgstr "" + +#: ../../include/nav.php:171 +msgid "Your grid" +msgstr "" + +#: ../../include/nav.php:172 +msgid "View your network/grid" +msgstr "" + +#: ../../include/nav.php:173 +msgid "Mark all grid notifications seen" +msgstr "" + +#: ../../include/nav.php:175 +msgid "Channel home" +msgstr "" + +#: ../../include/nav.php:176 +msgid "View your channel home" +msgstr "" + +#: ../../include/nav.php:177 +msgid "Mark all channel notifications seen" +msgstr "" + +#: ../../include/nav.php:183 +msgid "Notices" +msgstr "" + +#: ../../include/nav.php:183 +msgid "Notifications" +msgstr "" + +#: ../../include/nav.php:184 +msgid "View all notifications" +msgstr "" + +#: ../../include/nav.php:185 +msgid "Mark all system notifications seen" +msgstr "" + +#: ../../include/nav.php:187 +msgid "Private mail" +msgstr "" + +#: ../../include/nav.php:188 +msgid "View your private messages" +msgstr "" + +#: ../../include/nav.php:189 +msgid "Mark all private messages seen" +msgstr "" + +#: ../../include/nav.php:195 +msgid "Event Calendar" +msgstr "" + +#: ../../include/nav.php:196 +msgid "View events" +msgstr "" + +#: ../../include/nav.php:197 +msgid "Mark all events seen" +msgstr "" + +#: ../../include/nav.php:199 +msgid "Manage Your Channels" +msgstr "" + +#: ../../include/nav.php:201 +msgid "Account/Channel Settings" +msgstr "" + +#: ../../include/nav.php:203 +msgid "Shared Files" +msgstr "" + +#: ../../include/nav.php:203 +msgid "New files shared with me" +msgstr "" + +#: ../../include/nav.php:208 +msgid "Public stream" +msgstr "" + +#: ../../include/nav.php:208 +msgid "Public stream activities" +msgstr "" + +#: ../../include/nav.php:215 +msgid "Site Setup and Configuration" +msgstr "" + +#: ../../include/nav.php:274 +msgid "@name, #tag, ?doc, content" +msgstr "" + +#: ../../include/nav.php:275 +msgid "Please wait..." +msgstr "" + +#: ../../include/nav.php:278 +msgid "Add Apps" +msgstr "" + +#: ../../include/nav.php:279 +msgid "Arrange Apps" +msgstr "" + +#: ../../include/nav.php:280 +msgid "Toggle System Apps" +msgstr "" + +#: ../../include/photos.php:111 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "" + +#: ../../include/photos.php:118 +msgid "Image file is empty." +msgstr "" + +#: ../../include/photos.php:257 +msgid "Photo storage failed." +msgstr "" + +#: ../../include/photos.php:297 +msgid "a new photo" +msgstr "" + +#: ../../include/photos.php:301 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "" + +#: ../../include/photos.php:530 +msgid "Upload New Photos" +msgstr "" + +#: ../../include/zot.php:653 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:680 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:2338 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../include/zot.php:3946 +msgid "invalid target signature" +msgstr "" + +#: ../../include/group.php:26 +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:268 +msgid "Add new connections to this privacy group" +msgstr "" + +#: ../../include/group.php:310 +msgid "edit" +msgstr "" + +#: ../../include/group.php:333 +msgid "Edit group" +msgstr "" + +#: ../../include/group.php:334 +msgid "Add privacy group" +msgstr "" + +#: ../../include/group.php:335 +msgid "Channels not in any privacy group" +msgstr "" + +#: ../../include/connections.php:128 +msgid "New window" +msgstr "" + +#: ../../include/connections.php:129 +msgid "Open the selected location in a different window or browser tab" +msgstr "" + +#: ../../include/auth.php:148 +msgid "Logged out." +msgstr "" + +#: ../../include/auth.php:275 +msgid "Failed authentication" +msgstr "" + +#: ../../include/help.php:33 +msgid "Help:" +msgstr "" + +#: ../../include/help.php:65 +msgid "Not Found" msgstr "" diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css index d7638714b..a3a8ce0be 100644 --- a/view/css/bootstrap-red.css +++ b/view/css/bootstrap-red.css @@ -5,13 +5,13 @@ nav .badge { position: absolute; font-size: 0.75rem; - line-height: 0.75; } @media screen and (min-width: 767px) { nav .badge { top: 0px; left: 0px; + line-height: 0.75; } } diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 17956ef31..37277b612 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -483,6 +483,7 @@ footer { #nav-search-text { width: 280px; + padding: .15rem .5rem; } #nav-search-text::-webkit-input-placeholder { diff --git a/view/theme/redbasic/schema/bluegrid.css b/view/theme/redbasic/schema/bluegrid.css deleted file mode 100644 index 46e28197e..000000000 --- a/view/theme/redbasic/schema/bluegrid.css +++ /dev/null @@ -1,515 +0,0 @@ -body { - background-size: auto; -} - -.generic-content-wrapper-styled { - background-color: rgba(67,72,138,.8); - color: #FFF; -} - -.generic-content-wrapper-styled .btn-default:hover, #profile-jot-wrapper .btn-default:hover { - border: 1px solid #FFF; -} - -#profile-jot-wrapper { - background-color: inherit; - border: none; -} - -.generic-content-wrapper-styled a:hover, .generic-content-wrapper-styled a:focus, .generic-content-wrapper-styled .field.checkbox:hover label, .generic-content-wrapper-styled .field.checkbox:focus label, .allcontact-link:hover, .allcontact-link:focus { - color: rgba(255,255,255,.8); -} - -.generic-content-wrapper, .profile-jot-text, .comment-edit-text-empty, .comment-edit-text-full, input.widget-input, .wall-item-content-wrapper, .section-title-wrapper, .section-content-wrapper { - border-radius: 0px !important; -} - -.generic-content-wrapper { - background-color: rgba(255,255,255,.8); - color: #4d4d4d; -} - -.wall-item-content-wrapper { - background-color: #FFF; -} - -.hide-comments-outer, .wall-item-content-wrapper.comment, .wall-item-comment-wrapper { - background-color: transparent; -} - -.generic-content-wrapper-styled .generic-content-wrapper { - color: #4D4D4D; -} - -.generic-content-wrapper-styled .generic-content-wrapper a { - color: #43488A; -} - -.generic-content-wrapper #profile-jot-wrapper { - background-color: transparent; - color: #4D4D4D; -} - -.generic-content-wrapper input#jot-title, .generic-content-wrapper input#jot-pagetitle { - color: #4D4D4D; -} - -.generic-content-wrapper input#jot-title:hover, .generic-content-wrapper input#jot-title:focus { - color: #4D4D4D; - border-radius: 0px; -} - - -.fn, .widget h3, .nav-tabs a, .generic-content-wrapper-styled a, .dropdown-menu > li > a, #channels-desc, input#jot-title { - color: #fff; - border-radius: 0px -} - -ul.dropdown-menu.acpopup > li.textcomplete-item > a { - color: #43488A; -} - -ul.dropdown-menu.acpopup > li.textcomplete-item > a:hover, ul.dropdown-menu.acpopup > li.textcomplete-item > a:focus { - background-color: #43488A; - color: #FFF; - cursor: pointer; -} - -input#jot-title:hover, input#jot-title:focus { - color: #43488A; - border-radius: 0px; -} - -.navbar-inverse { - background-color: transparent; - border-color: transparent; - background-image: none; -} - -.navbar-inverse .navbar-nav > .active > a { - background-image: none; - background: rgba(255,255,255,.5); -} - -.navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { - background: rgba(255,255,255,.5); -} - -.navbar-inverse .navbar-nav > li > a:hover, -.navbar-inverse .navbar-nav > li > a:focus { - color: #43488A; - background: rgba(255,255,255,.5); -} - -.navbar-inverse .navbar-nav > .open > a, -.navbar-inverse .navbar-nav > .open > a:hover, -.navbar-inverse .navbar-nav > .open > a:focus { - background-color: #43488A; - color: #fff; -} - -#nav-search-text { - color: #fff; - background-color: #43488A; - border-radius: 0px; - border-color: transparent; -} - -nav .dropdown-menu, .wall-item-tools .dropdown-menu, .section-title-wrapper .dropdown-menu, .section-content-wrapper .dropdown-menu { - background-color: #43488A; - color: #fff; - border-radius: 0; - border: none; - box-shadow: 0px 6px 12px rgba(45,48,92,.176); -} - -.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover { - color: #43488A; - background-color: rgba(255,255,255,.7); - text-decoration: underline; -} - -.vcard .dropdown-menu { - background-color: rgba(255,255,255,.97); - border-radius: 0; - border: none; - box-shadow: 0px 6px 12px rgba(169,169,169,.176); -} - -.vcard .dropdown-menu a, .fc-today { - color: #43488A; -} - -.vcard .dropdown-menu > li > a:focus, .vcard .dropdown-menu > li > a:hover { - color: #43488A; - background-color: rgba( 255,255,255,.7); - text-decoration: underline; -} - -nav .badge { - background-color: rgba(255,255,255,.8); - color: #43488A; - border-radius: 0px !important; -} - -nav .badge:hover, nav .badge:focus { - background-color: rgba(67,72,138,.8); - color: #FFF; -} - -.field.checkbox > div > input:checked + label .onoffswitch-switch { - background-color: #43488A; -} - -.widget .field.checkbox:hover label { - color: rgba(255,255,255,.8); -} - -.widget .conv-participants { - color: #BBB; -} - -.widget .active:hover .conv-participants, .widget .active:focus .conv-participants { - color: inherit; -} - -.help-block, .comment-icon, .jot-icons, .admin-icons { - color: inherit; -} - -#adminpage table tr:hover, #adminpage table tr:hover a, #adminpage table tr td.tools a:hover, #adminpage table tr:focus, #adminpage table tr:focus a, #adminpage table tr td.tools a:focus { - color: #43488A; -} - -#adminpage table tr:hover .tools a, #adminpage table tr:focus .tools a, .generic-content-wrapper-styled > .descriptive-text { - color: #FFF; -} - -.generic-content-wrapper-styled > .sources-links { - font-weight: bold; -} - -.wall-item-tools .btn { - border-color: #43488A; -} - -.vcard, #contact-block, .widget { - background-color: rgba(67,72,138,.8); - color: #fff; - border-radius: 0; - border: none; - box-shadow: 0px 6px 12px rgba(45,48,92,.176); -} - -.tags a { - color: inherit; -} - -#profile-photo-wrapper { - border: none; -} - -.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { - color: #43488A; - text-decoration: none; - border: none; -} - -.nav-tabs > li.active { - background-color: rgba(255,255,255,.5); -} - -.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover { - border-color: transparent; -} - -.nav-tabs.nav-justified { - background-color: rgba(67,72,138,.8); - border-bottom: 1px solid rgba(255,255,255,.5); - border-radius: 0px; -} - -.nav-tabs.nav-justified > li > a { - border-bottom: 1px solid transparent; - border-radius: 0px; -} - -.nav > li > a:focus, .nav > li > a:hover { - text-decoration: underline; - background-color: rgba(255,255,255,.5); - color: #43488A; - border-radius: 0; - border-color: transparent; -} - -.nav > li > a { - color: #FFF; - border-radius: 0px; -} - -.fc-event { - border: none !important; - background-color: rgba(255,255,255,.7) !important; - color: #43488A !important; - text-shadow: none !important; -} - -div.rateme { - border-radius: 0px; - font-weight: 400; -} - -div.rateme:hover, div.rateme:focus, a.rateme:hover, a.rateme:focus { - background-color: #43488A; - border-radius: 0px; - color: #FFF; - font-weight: 400; - -webkit-transition: all .3s ease-in-out; - -moz-transition: all .3s ease-in-out; - transition: all .3s ease-in-out; -} - -.info { - background: rgba(255,255,255,.7) url("/images/hz-32.png") no-repeat scroll 15px center !important; - color: #43488A !important; -} - -.notice { - background: rgba(215,43,52,.7) url("/images/hz-white-32.png") no-repeat scroll 15px center !important; - color: #FFF !important; -} - -#chatTopBar { - background-color: rgba(255,255,255,.8); - color: #4d4d4d; - height: 500px; - width: 596px; - overflow-y: auto; -} - -.chat-item-text { - border-radius: 0px; - padding: 5px; - background-color: #FFF; -} - -input { - border-radius: 0px; -} - -.home-welcome { - color: #FFF; - margin-bottom: 30px; -} - -#login-main { - margin-top: 0; - color: #EEE; -} - -#remember_me_container label:hover, #remember_container label:hover { - color: #FFF; -} - -#login-main #lost-password-link, #login-main #register-link { - color: #FFF; -} - -#nav-login .modal-content { - background-color: #43488A; - background-image: url('/images/bggrid.png'); - box-shadow: 0 5px 15px rgba(0,0,0,.3); - -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.3); -} - -#nav-login h3, #nav-login button.close { - color: #EEE; -} - -#nav-login .modal-header { - border-bottom: none; -} - -.directory-item { - margin-bottom: 0px; - padding-bottom: 20px; - background-color: #FFF; -} - -.directory-item.lframe { - background-color: transparent !important; -} - -.contact-entry-wrapper { - border: 1px solid rgba(255,255,255,.5); -} - -.contact-entry-edit:hover a, .contact-entry-edit:focus a, .generic-content-wrapper-styled > p > span.btn.btn-default > a:hover,.generic-content-wrapper-styled > p > span.btn.btn-default > a:focus, div#profile-edit-links a:hover, div#profile-edit-links a:focus { - color: #43488A; -} - -.profile-edit-side-link, input#profile-photo-upload, .allcontact-link, #newchannel-form .descriptive-paragraph { - color: #FFF; -} - -.profile-edit-side-link:hover, .profile-edit-side-link:focus { - color: #FFF; - text-decoration: none; -} - -.section-content-info-wrapper { - color: #fff; - background-color: #43488A; -} - -.section-content-info-wrapper a { - color: #fff; -} - -.btn, #event-edit-form .btn, input.directory-rating-submit { - border: 1px solid #FFF; - color: #FFF; - background-color: #43488A; - border-radius: 0; - font-weight: 400; - -webkit-transition: all .3s ease-in-out; - -moz-transition: all .3s ease-in-out; - transition: all .3s ease-in-out; -} - -.btn:hover, .btn:focus, #event-edit-form .btn:hover, #event-edit-form .btn:focus { - border: 1px solid #FFF; - outline: 0; - color: #43488A; - background-color: #FFF; -} - -.btn-default:hover, .btn-default:focus, .open > .dropdown-toggle.btn-default, input.directory-rating-submit:hover, input.directory-rating-submit:focus { - border: 1px solid #43488A; - outline: 0; - color: #43488A; - background-color: #FFF; -} - -.btn-primary, input#event-submit, input#rmagic-submit-button, input#lostpass-submit-button, input#side-follow-submit, .profile-edit-submit-wrapper > input.profile-edit-submit-button, input#profile-photo-submit, form#chat-form > input, div#adminpage > form > div.submit > input, input.sources-submit, input.contact-edit-submit, input#dbtn-submit, input#newchannel-submit-button, input#contacts-search-submit, input#register-submit-button { - background-color: #FFF; - color: #43488A; - border-radius: 0px; - -webkit-transition: all .3s ease-in-out; - -moz-transition: all .3s ease-in-out; - transition: all .3s ease-in-out; -} - -.btn-primary:hover, .btn-primary:focus, input#event-submit:hover, input#event-submit:focus, input#rmagic-submit-button:hover, input#rmagic-submit-button:focus, input#lostpass-submit-button:hover, input#lostpass-submit-button:focus, input#side-follow-submit:hover, input#side-follow-submit:focus, .profile-edit-submit-wrapper > input.profile-edit-submit-button:hover, .profile-edit-submit-wrapper > input.profile-edit-submit-button:focus, input#profile-photo-submit:hover, input#profile-photo-submit:focus, form#chat-form > input:hover, form#chat-form > input:focus, div#adminpage > form > div.submit > input:hover, div#adminpage > form > div.submit > input:focus, input.sources-submit:hover, input.sources-submit:focus, input.contact-edit-submit:focus, input.contact-edit-submit:hover, input#dbtn-submit:hover, input#dbtn-submit:focus, input#newchannel-submit-button:hover, input#newchannel-submit-button:focus, input#contacts-search-submit:hover, input#contacts-search-submit:focus, input#register-submit-button:hover, input#register-submit-button:focus { - border-color: #FFF; - background-color: #43488A; - color: #FFF; - border-radius: 0px; -} - -.comment-tools .btn, #prvmail-tools .btn, .generic-content-wrapper .btn { - border: 1px solid #43488A; - color: #43488A; - background-color: #FFF; -} - -.comment-tools .btn:hover, .comment-tools .btn:focus, #prvmail-tools .btn:hover, #prvmail-tools .btn:focus, .generic-content-wrapper .btn:hover, .generic-content-wrapper .btn:focus { - border: 1px solid #43488A !important; - color: #FFF; - background-color: #43488A; -} - -.comment-tools .btn-primary, #prvmail-submit .btn-primary, .settings-submit-wrapper .btn-primary, .generic-content-wrapper .btn-primary { - background-color: #43488A; - color: #FFF; - border: 1px solid #43488A; -} - -.comment-tools .btn-primary:hover, .comment-tools .btn-primary:focus, #prvmail-submit .btn-primary:hover, #prvmail-submit .btn-primary:focus, .settings-submit-wrapper .btn-primary:hover, .settings-submit-wrapper .btn-primary:focus, .generic-content-wrapper .btn-primary:hover, .generic-content-wrapper .btn-primary:focus { - border-color: #43488A; - background-color: #FFF; - color: #43488A; -} - -.btn-success { - color: #FFF !important; - background-color: #5CB85C !important; - border-color: #4CAE4C !important; -} - -.btn-success:hover, .btn-success:focus { - color: #FFF !important; - background-color: #449D44 !important; - border-color: #398439 !important; -} - -.btn-warning { - color: #FFF !important; - background-color: #F0AD4E !important; - border-color: #EEA236 !important; -} - -.btn-warning:hover, .btn-warning:focus { - color: #FFF !important; - background-color: #EC971F !important; - border-color: #D58512 !important; -} - -.btn-danger, form#chat-destroy > input { - background-color: #D9534F !important; - border-color: #D43F3A !important; - color: #FFF !important; -} -.btn-danger:hover, .btn-danger:focus, form#chat-destroy > input:hover, form#chat-destroy > input:focus { - color: #FFF !important; - background-color: #C9302C !important; - border-color: #AC2925 !important; -} - -a:hover > .fa-trash-o { - color: #C9302C !important; -} - -@media screen and (max-width: 767px) { - .navbar-inverse .navbar-collapse { - background-color: #43488A; - border: none; - } - .navbar-inverse .navbar-toggle { - border-color: #576295; - background-color: #43488A; - border-radius: 0px; - } - .navbar-inverse .navbar-toggle .icon-bar { - background-color: #FFF; - } - .navbar-inverse .navbar-toggle .fa-arrow-circle-down, .navbar-inverse .navbar-toggle .fa-arrow-circle-right, .navbar-inverse .navbar-toggle .fa-arrow-circle-up, .navbar-inverse .navbar-toggle .fa-arrow-circle-left, .navbar-inverse .navbar-toggle .fa-question-circle { - color: #FFF; - } - .navbar-inverse .navbar-toggle:hover .fa-arrow-circle-down, .navbar-inverse .navbar-toggle:focus .fa-arrow-circle-down, .navbar-inverse .navbar-toggle:hover .fa-arrow-circle-right, .navbar-inverse .navbar-toggle:focus .fa-arrow-circle-right, .navbar-inverse .navbar-toggle:hover .fa-arrow-circle-up, .navbar-inverse .navbar-toggle:focus .fa-arrow-circle-up, .navbar-inverse .navbar-toggle:hover .fa-arrow-circle-left, .navbar-inverse .navbar-toggle:focus .fa-arrow-circle-left { - color: #43488A; - } - .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { - background-color: #FFF !important; - } - .navbar-toggle:hover .icon-bar , .navbar-toggle:focus .icon-bar { - background-color: #43488A !important; - } -} - -.help-content { - color: #FFF; - border: none; -} - -.help-content a { - color: #FFF; - font-weight: 600; -} - -.help-content-open { - -moz-box-shadow: none; - -webkit-box-shadow: none; - box-shadow: none; -} - diff --git a/view/theme/redbasic/schema/bluegrid.php b/view/theme/redbasic/schema/bluegrid.php deleted file mode 100644 index fdb552611..000000000 --- a/view/theme/redbasic/schema/bluegrid.php +++ /dev/null @@ -1,28 +0,0 @@ -